windows 7

Restoring PC Stickies

0

I use a program called “Stickies” to temporarily keep track of notes throughout the day (similar to the OS X program with the same name, but for Windows). It creates resizable, styleable post-it-note-esque boxes on my desktop that can be repositioned, deleted, or serve as reminders (visually, and with audible alarms). I restarted my machine a few days ago and was prompted to choose a file from which to restore my stickies settings. My heart sunk as the backup restoration failed – but I knew somehow I’d get them back, and I did. Here’s how:

  1. Right-click on the stickies icon in the taskbar hidden icons area
  2. Select “About Stickies v7.0beta” – yours may say something different
  3. A window will open. At the bottom, click the ellipsis (…) to go to the data directory folder
  4. Right-click again on the stickies icon in the hidden icons area and select “Exit” to quit the program
  5. Go to the data directory folder you just opened and duplicate the last file that contains usable data (you can usually tell if the file size is larger, or open it with a code editor and search for significant text)
  6. Duplicate the backup file by copying and pasting it (ctrl+c, then ctrl+v)
  7. Find the file stickies.ini in the data directory and rename it stickies.ini.old
  8. Rename the file you copied stickies.ini
  9. Restart your Stickies program, and you should be back in business

Using Windows 7 Symlinks

2

I ran into a problem with integrating my web development/design projects on my computer with my local webserver. To further explain:

  • I keep all my professional work, including client files, on a separate hard drive partition so that I can easily and regularly back them up, let’s call it g:\
  • Client files for web projects are organized as such: g:\clients\client-name\project-name , so that if a long-term client wants a site redesign, I can easily keep these separate rather than dumping them into a single public_html directory for each client
  • My local testing server is pointed at a different partition, let’s call it h:\
  • I want to be able to serve individual projects via the testing server, but only work on the project files

Naturally, I thought of unix aliases but I’m currently running Windows 7 so I tried shortcuts. Didn’t work. After a little digging, I found the solution: symlinks (which work in numerous OSes – thanks for the correction). From the command line, type:

mklink /D H:\target\directory\linkname G:\clients\client-name\project-name

mklink /D creates a symlink, or a soft link that is the Windows equivalent to unix aliases. The first argument is the directory where you want the link to be placed, and the second is the source directory. Easy as pie.

Be careful when deleting/writing content – the linked directory allows you to manipulate the original file!

Testing for IE6

1

I recently got a new laptop and needed to get my machine ready for web development . I’d previously been using MAMP on my Mac and running Parallels for testing in the IEs. After some deliberation, I decided on XAMPP for Windows – I’m running 7. XAMPP installs Apache, MySQL, PHP, Perl, ASP, Mercury, FileZilla, and a slew of other daemons/services. There are some potential conflicts with the PHP/MySQL versions used for Drupal, but after testing, I haven’t run into any issues. Even if it becomes problematic, I can always manually configure a different version of either PHP or MySQL.

After getting my testing server up and running, I needed a way to test for IE6. Yes, I’m on Windows – but Windows 7 never shipped with IE6 or 7, unlike Vista – so standalone solutions no longer work. I just found a program that solves this issue – and is able to render pages simulating IE5.5-8. IETester v0.4.2 is the current version, though it has been out since March of 2009. Somehow, it entirely missed my radar – probably because I was still running XP and didn’t broaden my queries.

I should say this: IE6 support doesn’t come for free. Clients whose user-base is heavy in the IE6 department can’t afford to not support those users. So, while I can develop for such users – they won’t be getting the same experience – and certainly not without an increased cost. It is my job to push internet standards, including A-level, modern browsers; efficiencies in development/production cut costs over the long-run especially for larger clients. When I have to dick around making tweaks because one idiot browser still won’t die, it’s annoying. For all business owners, large and small: please entertain this suggestion:

Encourage your users to upgrade their browsers.

Obnoxious/semi-invasive design via javascript-based browser sniffing would do wonders to bump browsers into gear. Hell, even showing a simple survey that asks “Do you ride a dinosaur to work? Why do you use an ancient browser?” followed by multiple choices that lead back to a site that encourages browser upgrades.

This tangent is officially over.

I had been running Sun’s Virtual Machine with an XP installation to do IE6 testing, but this alternative has made things easier. The only real issue is sharing files between the host – Windows 7 – and the guest – Windows XP in the VM. That shouldn’t be too difficult, but time is important and I’d rather stick with what works for now.

With that said, my nose is back to the grindstone (though it won’t really move much at all).

Windows 7 Task Manager and Fixing Taskbar Auto-Hide Glitch

2

It seems as though Windows 7′s taskbar auto-hide feature doesn’t work from time to time. Whether it be because:

  1. heavens, a new program was installed
    —or—
  2. blast! your computer has been on for a few hours

that still-clunky response to the OS X dock is, well, still clunky. To enable auto-hide to begin with:

  1. Right-click on the taskbar and select Properties
  2. In the Taskbar tab, uncheck “Lock the taskbar” and check “Auto-hide the taskbar”.
  3. press Apply/OK et voilà.

If no “et voilà”, here’s a quick fix that tends to fix any Microsoft OS GUI (at least they’re consistent)—but please, save all important working files before doing this (I am not responsible for your machine or data losses!):

  1. Run the task manager. You could do the old shortcut (alt+ctrl+del), or jump straight to it with ctrl+shift+esc.

    You get bonus nerd points for doing it with two fingers.

  2. Stop the explorer process! There may be multiple explorers running—order them by memory usage, and stop the largest one. Alternatively, just stop them all.
  3. With task manager open, go to File>New Task(Run…) and type:
    C:\Windows\explorer.exe

    or, wherever your explorer executable is. Unless you’re a super dork and had a reason to move it, it should be here.

  4. Your taskbar should now work appropriately. If not, yell: “THANKS BILL” and shake your nerd-fist.
Go to Top