MultiMonitor Support and Windows Vista, XP

Among my many gripes about Windows Vista (see My Struggles with Windows Vista), is the lack of truly useful window management shortcuts.  Multiple monitor configurations are becoming increasingly common, and the Windows desktop simply hasn’t kept pace.  Sure, if I’m willing to click on numerous UI elements, I can reliably move a maximized window from …

Debian or Ubuntu Linux runlevel configuration tool to start service

Task: Command line tool to manage services / Ubuntu runlevel update-rc.d automatically updates the System V style init script links /etc/rcrunlevel.d/NNname to scripts /etc/init.d/name. These are run by init when changing runlevels and are generally used to start and stop. For example turn on ssh service type the command:

Unable to login to plesk 9.0.1 after upgrade from 9.0

SSO (single sign on) is used to provide seamless browsing from one product panel to another without having to relogin everytime. In Plesk 9 SSO is mainly used to provide integration with Parallels Plesk Billing. If you are not using Plesk Billing then you can disable SSO. [QUOTE]I also wonder if changing the “Full Hostname” …

Using jQuery with Other Libraries / no conflict

GENERAL The jQuery library, and virtually all of its plugins are constrained within the jQuery namespace. As a general rule, “global” objects are stored inside the jQuery namespace as well, so you shouldn’t get a clash between jQuery and any other library (like Prototype, MooTools, or YUI). That said, there is one caveat: By default, jQuery …

PHP – Countdown Script

< ? $day = 16; // Day $month = 7; // Month $year = 2001; // Year if ($month == 1) $month_name= "January"; if ($month == 2) $month_name= "February"; if ($month == 3) $month_name= "March"; if ($month == 4) $month_name= "April"; if ($month == 5) $month_name= "May"; if ($month == 6) $month_name= "June"; if ($month …