Posts from April 2008

7 Office Pranks to Lighten the Mood

Are things a little stressful around your office? Maybe try one of these pranks on your co-workers to lighten up the mood. Castrating the Mouse This is a classic. There is nothing more frustrating than having your mouse jump all over the screen or simply not work at all. Most people can’t function with the keyboard alone. Simply remove the

My PHP Sandwich

What if I could control my world the same way that I control a website? Even if you don’t program I think you can understand this: <?php // sandwich options $meat = array(‘Ham’, ‘Turkey’, ‘Balogna’, ‘Tuna’); $bread = array(‘Whole Wheat’, ‘White’, ‘Potatoe’); $spread = array(‘Mayo’, ‘Mustard’, ‘French Dressing’); // get random sandwich ingredients $randomMeat = $meat[rand(0,count($meat)-1)]; $randomBread = $bread[rand(0,count($bread)-1)]; $randomSpread