Jun 25

Yod’m 3D - Windows Virtual Desktop Manager

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 utilizes DirectX 9 to force your desktop into a cube but does not require that awesome of a video card.

Yod'm 3D sample image

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: ,
This post has been viewed 545 times.
Jun 22

Public Webcams for your amusement

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:
This post has been viewed 330 times.
Jun 19

ForumSmileys v0.8 released for Pidgin/Gaim

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.

ForumSmileys v0.8
Read the rest of this entry »

Tags: ,
This post has been viewed 5361 times.
Jun 16

CacheViewer for Firefox - Easily save cached items

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: , ,
This post has been viewed 487 times.
Jun 16

[Video] Josh Hopkins - Feigning Interest (NSFW)

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.

after the jump. Read the rest of this entry »

Tags: ,
This post has been viewed 408 times.
Jun 16

Mailbox Map - USPS mailbox locator that uses an interactive map

Mailbox Map is a USPS mailbox locator that uses Google Maps to be interactive.

Tags:
This post has been viewed 352 times.
Jun 15

Comcast vs. Verizon SpeedTest

Comcast (Blast! Plan 16Mb/1Mb):
Comcast Speed Test Result Speedtest.net
Comcast Speed Test Result DSLReports.com

Verizon (Power Plan 3.0Mb/768k):
Verizon Speed Test Result Speedtest.net
Verizon Speed Test Result DSLReports.com

Tags: , ,
This post has been viewed 742 times.
Jun 15

XAMPP - Portable Web Development

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: , ,
This post has been viewed 736 times.
Jun 14

Pidgin - Ctrl-Enter to Send Message

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:\\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: ,
This post has been viewed 12300 times.
Jun 06

vi Tips and Tricks

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: ,
This post has been viewed 361 times.