Night Routine

  1. Detach myself from my laptop
  2. Shower
  3. Brush teeth
  4. Drink one glass of water (or more) (Step #3 makes this even more refreshing because of the mint)
  5. Go on laptop to check for any new emails or listen to some music
  6. Lock laptop and close lid
  7. Sleep

Disable NoScript “Changelog” page from auto-loading after update

If you notice that a page has been loading after every time you update the NoScript add-on in Firefox, you can disable it by typing about:config in your address bar, and setting noscript.firstRunRedirection to false (you can do so by simply double-clicking on it). Apparently there is some debate over why this page loads after every update, and why there seems to be so many frequent updates.

Patch for WLM (MSN) 2009

Remove ads, nudge shaking/delays, and more from the newest MSN (well, technically Windows Live Messenger), with A-Patch. I also like to use MsgPlus for additional features.

Reinforcement

… after tonight, the fact that I can’t dance has been reinforced.

Disable WordPress Autosave

WordPress has a feature where revisions are kept of each post. I found this annoying and found a page that describes that to disable this feature, add define(‘WP_POST_REVISIONS’, false); to your wp-config.php file.

EDIT: Found a query to delete all page revisions from the database:

DELETE a,b,c
FROM wp_posts a
LEFT JOIN wp_term_relationships b ON (a.ID = b.object_id)
LEFT JOIN wp_postmeta c ON (a.ID = c.post_id)
WHERE a.post_type = ‘revision’