Jun 25
Yod’m 3D by Chris ‘Soft is a free virtual desktop manager which mimics the 3D functionality of Beryl by “spinning” your desktops in a cube-like rotation. This software utilizes DirectX 9 to force your desktop into a cube but does not require that awesome of a video card.

I chose this desktop manager over the others merely for the fancy footwork displayed while changing desktops giving one the illusion of multiple desktops. Other desktop managers merely show windows, and hide others giving you the impression you are switching. The inclusion of a mapping of the desktops on a cube allows the user to believe there are more desktops.
Read the rest of this entry »
Tags:
recommendation,
software
This post has been viewed 545 times.
Jun 22
After searching around for a new network-based webcam, I found a few open and public viewable:
DanceCam - http://dancecam.as.ua.edu/ - chicks with tights doing naughty dances
Computime Reception - http://gw.computime.co.uk:8081/ - Reception area of business (potential upskirt cam)
CowCam - http://wc-lhd-afkalf.vet.uu.nl/ - MOOOO!
KennelCam - http://kennelcam.marioncountyfl.org/ - Naughty puppies caught by animal control
LegoLand - http://legocamera.marshall.edu/ - Picturesque city view of Lego land.
TeleRobot - http://130.95.52.185/ - Play with a robot and control it via a webcam. (Interface: http://telerobot.mech.uwa.edu.au/)
FitnessCam - http://tnpti.webhop.net/ - Orlando’s Finest Training Institution
Read the rest of this entry »
Tags:
video
This post has been viewed 330 times.
Jun 19
Update: Recommended by Ady Romantika, maintainer of PidginPortable
My custom smileys package for Pidgin has been released. ForumSmileys v0.8 is a collection of smileys from around the web that I’ve found on forums and such. There are over 170 smileys.
A sample has been provided below. Most icons are in the same style. Many animations.

Read the rest of this entry »
Tags:
customization,
software
This post has been viewed 5361 times.
Jun 16
CacheViewer is a plugin for Firefox which allows you easy access to your cache. It presents a nice easy front-end for your cache directory and allows you the option of saving files from either memory or disk.
Tags:
customization,
recommendation,
software
This post has been viewed 487 times.
Jun 16
Josh Hopkins - Feigning Interest
Actor and musician (he’s one threat away from being a triple threat!) Josh Hopkins sensitively explores the internal conflict experienced by a man who finds himself in the all-too-common situation of being on a date with a woman who is deeply boring yet still attractive enough to maintain his interest in having sex with her.
Video after the jump. Read the rest of this entry »
Tags:
comedy,
video
This post has been viewed 408 times.
Jun 16
Mailbox Map is a USPS mailbox locator that uses Google Maps to be interactive.
Tags:
hacking
This post has been viewed 352 times.
Jun 15
Comcast (Blast! Plan 16Mb/1Mb):


Verizon (Power Plan 3.0Mb/768k):


Tags:
irl,
networking,
rant
This post has been viewed 742 times.
Jun 15
XAMPP (eXtendable Apache MySQL PHP Perl, I think) is a quick and easy package for portable web development. It’s main purpose is to be an easy-to-install distribution for developers to get into the world of Apache. To make it convenient for developers XAMPP is configured with all features turned on. Just install one package to get a complete website back-end in minutes.
The default configuration includes the latest versions of the following:
- Apache - The base webserver
- SSL - SSL so you can browse via https://
- MySQL - Database backend
- PHP - Server-side scripting
- phpMyAdmin - Simple web based interface for managing the database
In addition to the defaults, the package includes many other additions, such as mod_rewrite, that just need to be enabled via a config file change.
The windows version is also built as a lite package which does not need to be setup! Just copy to your portable thumb drive and go!
Tags:
portableapps,
recommendation,
software
This post has been viewed 736 times.
Jun 14
Pidgin v2.0(.1) provides no easy way to change the key bindings (this is intentional) so you can use [Ctrl]-[Enter] to send your message rather than just [Enter] to send a message. This is a problem for me as I usually like to make my sent messages intentional rather than typing something I’ll regret and fat-fingering the [Enter] key.
Since I use the portable version of Pidgin the file to edit is: X:\PortableApps\PidginPortable\Data\settings\.purple\gtkrc-2.0
Its contents should be the following:
binding "pidgin-bindings"
{
# enter inserts a newline
bind "Return" { "insert-at-cursor" ("\n") }
# ctrl-Enter sends message
bind "<ctrl>Return" { "message_send" () }
}
widget "*pidgin_conv_entry" binding "pidgin-bindings"
UPDATE: You might also consider installing my Pidgin smiley theme: http://blog.ozmonet.com/2007/forumsmileys-v08-released-for-pidgingaim/
Tags:
customization,
software
This post has been viewed 12300 times.
Jun 06
Delete lines that contain string:
:g/string/d
Turn on|off line numbering:
:set [nu|nonu]
Number lines (filter the file through a unix command and replace with output):
:%!cat -n
Sort lines:
:%!sort
Sort and uniq:
:%!sort -u
Set textwidth for automatic line-wrapping as you type:
:set textwidth=80
Turn on|off syntax highlighting
:syn [on|off]
Force the filetype for syntax highlighting:
:set filetype=php
Use lighter coloring scheme for a dark background:
:set background=dark
Tags:
software,
vi
This post has been viewed 361 times.