Site Meter

Posts Tagged “tweak”

I recently installed a solid state drive into my desktop computer. This article from TweakTown highlights some of the changes you should make to Windows 7 to take advantage of your SSD.

For those of you that asked, I have a 60GB OCZ Vertex 2.

Tags: , , , ,

Comments No Comments »

A friend sent this to me today. Firefox uses a bunch of .sqlite files to manage it’s persistent data like your preferences in the “awesomebar”. These files can get quite big and cause a slow computer when using firefox; especially when using the awesomebar and closing the application.

OS X users can use this command to “compact” these files:

for f in ~/.mozilla/firefox/*/*.sqlite; do sqlite3 $f 'VACUUM;'; done

Windows users can make use of the SQLite addon to do the same thing. Install the addon, then go to %appdata%mozillafirefoxprofilesxxxxx and look for the .sqlite files.

Tags: , , , ,

Comments 2 Comments »