<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>MakeUseOf &#187; jokes</title>
	<atom:link href="http://www.makeuseof.com/tags/jokes/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.makeuseof.com</link>
	<description>Cool Websites, Software and Internet Tips</description>
	<lastBuildDate>Fri, 10 Feb 2012 21:31:21 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
		<item>
		<title>Create A Freaky Possessed Computer With Windows Script For Halloween</title>
		<link>http://www.makeuseof.com/tag/create-possessed-computer-windows-script/</link>
		<comments>http://www.makeuseof.com/tag/create-possessed-computer-windows-script/#comments</comments>
		<pubDate>Fri, 28 Oct 2011 16:01:50 +0000</pubDate>
		<dc:creator>Ryan Dube</dc:creator>
				<category><![CDATA[Cool Windows Apps & Tricks]]></category>
		<category><![CDATA[halloween]]></category>
		<category><![CDATA[jokes]]></category>
		<category><![CDATA[prank]]></category>
		<category><![CDATA[scripts]]></category>
		<category><![CDATA[visual basic]]></category>
		<category><![CDATA[windows tips]]></category>

		<guid isPermaLink="false">http://www.makeuseof.com/?p=90586</guid>
		<description><![CDATA[There are a lot of fun pranks you can play on your friends with a computer. You've probably seen all of those creepy YouTube videos that people forward to each other for a good scare. Not long ago, Justin covered a few really funny ways to prank your parents with a computer too. All of those ideas are fun, but this year, how about creeping out your friends a bit with your very own programming skill?]]></description>
			<content:encoded><![CDATA[<p><img class="align-right" src="http://main.makeuseoflimited.netdna-cdn.com/wp-content/uploads/2011/10/phantomtype.png?323f2c" alt="typing ghost" />There are a lot of fun pranks you can play on your friends with a computer. You&#8217;ve probably seen all of those creepy <a href="http://www.makeuseof.com/tag/14-popular-youtube-pranks-play-friends/">YouTube videos</a> that people forward to each other for a good scare. Not long ago, Justin covered a few really funny ways to <a href="http://www.makeuseof.com/tag/four-funny-ways-to-prank-your-parents-with-the-family-computer/">prank your parents</a> with a computer too. All of those ideas are fun, but this year, how about creeping out your friends a bit with your very own programming skill?</p>
<p>In this article, I&#8217;m going to show you how you can create your own little Windows script that will run on just about any modern Windows computer. All you have to do is open up Notepad, type up this script, save it as a .wsf file and then have your friends open up the file. The script will automatically open up Notepad and then start typing &#8211; complete with typewriter sound effects &#8211; just like the computer itself is possessed by a typing ghost.</p>
<p>The real beauty of this little script is how creative you are with launching it. Insert it into the computer&#8217;s startup folder so it launches when the computer starts, or replace one of their favorite desktop shortcuts to link to your file instead of their application!</p>
<h2>Scripting A Possessed Typing Computer</h2>
<p>The idea for this came from an experience at college, when I walked past a professor&#8217;s office and saw that he had an old DOS computer that was typing all by itself. He was a Computer Science professor, and he&#8217;d clearly written a DOS program that could type all by itself, complete with sound effects, pauses and everything. Very authentic. In this article, you&#8217;re going to do the same thing, just with Windows and using VB Script to accomplish the job. I&#8217;ll walk you through the process.</p>
<p>First step &#8211; download a typewriter WAV file from any of your favorite <a href="http://www.makeuseof.com/dir/soundbible-wav-sounds-free-to-download/">free WAV file websites</a>.</p>
<p style="text-align: center;"><img class="aligncenter" style="border-width: 1px; border-color: black; border-style: solid;" src="http://main.makeuseoflimited.netdna-cdn.com/wp-content/uploads/2011/10/typing1.png?323f2c" alt="typing ghost" width="563" height="433" /></p>
<p>Preferably download one that lasts from 30 seconds to a minute, depending on how much text you want your phantom app to type on the screen by itself. Save the file to <em>c:/windows/Media/</em> with the rest of the Windows sound files so it&#8217;ll be easy to find later.</p>
<p style="text-align: center;"><img class="aligncenter" style="border-width: 1px; border-color: black; border-style: solid;" src="http://main.makeuseoflimited.netdna-cdn.com/wp-content/uploads/2011/10/typing2.png?323f2c" alt="" width="536" height="390" /></p>
<p>Next, open up a text file and save it as a .wsf file. In my case I called it &#8220;<em>phantomtype.wsf</em>&#8220;. Declare all of the required variables, set up your text file link and then type the text that you want your typing ghost app to type on the screen.</p>
<p>&nbsp;</p>
<pre>&lt;job&gt;
&lt;script language="VBScript"&gt;
Option Explicit
On Error Resume Next

Dim NoteShell
Dim SoundShell
Dim strText
Dim intTextLen
Dim x
Dim intPause
Dim strTempText

strSoundFile = "C:\Windows\Media\typewriter1.wav"

strText = "Hello. My name is Ryan. I have possessed your computer</pre>
<pre>and there is nothing you can do about it. Of course, I suppose you</pre>
<pre>can always close the window if you want to, but that wouldn't be any fun!"</pre>
<p>&nbsp;</p>
<p>Pretty simple so far right? The two &#8220;Shell&#8221; variables are basically the shell commands that are going to launch Notepad and your sound file. The phantom typing will come from your script sending keystrokes to the Notepad app behind the scenes. Accomplishing that is easy &#8211; you just use &#8220;CreateObject&#8221; to set up your two application objects, and then launch each app, waiting a tiny bit between each launch.</p>
<p>&nbsp;</p>
<pre>Set NoteShell = CreateObject("WScript.Shell")
Set SoundShell = CreateObject("Wscript.Shell")

NoteShell.Run "notepad"
WScript.Sleep 1000

SoundShell.Run "C:\Windows\Media\typewriter1.wav", 0, True
WScript.Sleep 500</pre>
<p><span style="font-family: monospace;"><br />
</span></p>
<p>Now, the victim will see Notepad pop up on the screen, and after a second, the typewriter typing sound will start. At that moment, you will start sending ghostly text to the screen, just like someone is sitting there typing. Here&#8217;s how that part works.</p>
<p>&nbsp;</p>
<pre>intTextLen = Len(strText)
intPause = 100

For x = 1 to intTextLen
	strTempText = Mid(strText,x,1)
	NoteShell.SendKeys strTempText

	WScript.Sleep intPause

	If intPause &lt;= 500 Then
		intPause = intPause + 100
	Else
		intPause = 100
	End If
Next</pre>
<p><span style="font-family: monospace;"><br />
</span></p>
<p>This may look complicated, but don&#8217;t worry, it&#8217;s not at all. The first line checks the length of the long string of text that you typed up at the start of this program. That&#8217;s the text that you want to magically appear &#8211; one letter at a time &#8211; on the screen. The next line creates a starting pause (a tenth of a second) between each typed letter.</p>
<p>The For loop that you see below that basically starts at position 1, extracts a single letter from your text, sends that letter to Notepad, and then waits a little bit before moving forward to the next letter in your text. Pretty cool huh?</p>
<p>And to keep things authentic, the little &#8220;IF&#8221; statement keeps adding and subtracting pause time between typed letters to make the whole thing look really authentic, like someone is sitting right there typing.</p>
<p>Now close up the script.</p>
<pre>WScript.Quit
&lt;/script&gt;
&lt;/job&gt;
</pre>
<p>Save the file again &#8211; making sure you&#8217;ve got the &#8220;wsf&#8221; extension &#8211; and you&#8217;re done. Double click the file and check out your haunted computer!</p>
<p>Here&#8217;s my script in action (I wish you could hear the typing sounds, it&#8217;s a riot!)</p>
<p style="text-align: center;"><img class="aligncenter" style="border-width: 1px; border-color: black; border-style: solid;" src="http://main.makeuseoflimited.netdna-cdn.com/wp-content/uploads/2011/10/typing3.png?323f2c" alt="typing ghost" width="420" height="253" /></p>
<p>Like most programs, it could use a little perfecting if you&#8217;re up to it. The sound file needs to match the amount of time it takes for the typing to finish. Or, you could loop both the typing and the sound, but you&#8217;ll need to come up with a way to let the person close the typing ghost application. If you don&#8217;t, the &#8220;sendkeys&#8221; will just continue typing no matter what window they open&#8230;which, is actually a pretty funny virus-like behavior, but not something that I would recommend you do to your friends.</p>
<p>So give this creepy little script a try and let us know what your friends thought about it. Did you come up with any other ways to perfect it? Share your thoughts in the comments section below.<br />
<small></small></p>
<p><small>Image Credit : <a href="http://image.shutterstock.com/display_pic_with_logo/208936/208936,1287452408,1/stock-photo-a-young-woman-experiences-the-horror-of-what-he-saw-on-the-internet-63277774.jpg" rel="nofollow">Shutterstock</a></small></p>
]]></content:encoded>
			<wfw:commentRss>http://www.makeuseof.com/tag/create-possessed-computer-windows-script/feed/</wfw:commentRss>
		<slash:comments>10</slash:comments>
		</item>
		<item>
		<title>6 More Prank Websites To Give You Ideas For Playing Practical Jokes On Your Friends</title>
		<link>http://www.makeuseof.com/tag/6-prank-websites-give-ideas-play-practical-jokes-friends/</link>
		<comments>http://www.makeuseof.com/tag/6-prank-websites-give-ideas-play-practical-jokes-friends/#comments</comments>
		<pubDate>Tue, 10 May 2011 19:31:45 +0000</pubDate>
		<dc:creator>Saikat Basu</dc:creator>
				<category><![CDATA[MakeUseOf Lists]]></category>
		<category><![CDATA[Offbeat]]></category>
		<category><![CDATA[Web Apps & Internet]]></category>
		<category><![CDATA[fun]]></category>
		<category><![CDATA[jokes]]></category>
		<category><![CDATA[prank]]></category>

		<guid isPermaLink="false">http://www.makeuseof.com/?p=74729</guid>
		<description><![CDATA[Nobody has said that April has the only reserved day for pranks. Thankfully, and for some, quite irksomely pranks are a year round activity. It can be embarrassing, it can be hilarious, it can be downright ugly too, but more often that if done tastefully, is sheer fun. That is, if you aren’t the subject of the prank.]]></description>
			<content:encoded><![CDATA[<p><firstimage="http://main.makeuseoflimited.netdna-cdn.com/wp-content/uploads/2011/05/Pranks.jpg" /><img class="align-right" src="http://main.makeuseoflimited.netdna-cdn.com/wp-content/uploads/2011/05/Pranks.jpg?323f2c" alt="prank websites"/>Nobody has said that April has the only reserved day for pranks. Thankfully, and for some, quite irksome pranks are a year round activity. It can be embarrassing, it can be hilarious, it can be downright ugly too, but more often, if done tastefully, it can be sheer fun. That is, if you aren’t the subject of the prank.</p>
<p>My colleague Angela struck the funny bone of our readers (and probably jarred a few more) with her <a href="http://www.makeuseof.com/tag/5-websites-find-hilarious-practical-joke-ideas/">5 Websites To Get Hilarious Practical Joke Ideas</a>. I too took home a few really &#8216;practical&#8217; ideas. The post and reader comments showed me two things – practical jokes and pranks have no age bar, and there are lots more where those five funny websites came from.</p>
<p>So, here’s a lineup of six more fun websites and blogs that might tickle the mischievous parts of your brain.</p>
<h2><a href="http://www.rotteneggs.com/">Rotten Eggs</a></h2>
<p><img class="aligncenter" style="border: 0pt none;" src="http://main.makeuseoflimited.netdna-cdn.com/wp-content/uploads/2011/05/Pranks01.jpg?323f2c" alt="prank websites" width="580" height="372" /></p>
<p>Rotten Eggs seems to be undergoing a makeover. But its ‘eggs’ directory is there and points to some pranks you can play with some planning and cunningness. Rotten Eggs is the community for pranksters and if tomfoolery is a hobby, you can also check out their wiki called <a href="http://www.prankpedia.com/wiki/Main_Page">Prankepedia</a> which only has 12 articles so far, but could do with a push.</p>
<h2><a href="http://hacks.mit.edu/Hacks/Gallery.html">The MIT Gallery of Hacks</a></h2>
<p><img class="aligncenter" style="border: 0pt none;" src="http://main.makeuseoflimited.netdna-cdn.com/wp-content/uploads/2011/05/Pranks02.jpg?323f2c" alt="playing practical jokes" width="580" height="291" /></p>
<p>Geeks apparently define pranks as hacks as the IHTFP (Interesting Hacks To Fascinate People) Gallery says &#8211; The word hack at MIT usually refers to a clever, benign, and &#8220;ethical&#8221; prank or practical joke, which is both challenging for the perpetrators and amusing to the MIT community (and sometimes even the rest of the world!).It could be the upside-down lounge or the Wikipedia cleanup tags placed all around campus, geeky pranks are taken to new ‘lows’.</p>
<h2><a href="http://improveverywhere.com/">Improv Everywhere</a></h2>
<p><img class="aligncenter" style="border: 0pt none;" src="http://main.makeuseoflimited.netdna-cdn.com/wp-content/uploads/2011/05/Pranks03.jpg?323f2c" alt="playing practical jokes" width="580" height="419" /></p>
<p>The site carries out ‘social missions’ that prove &#8211; that a prank doesn’t have to involve humiliation or embarrassment; it can simply be about making someone laugh, smile, or stop to notice the world around them. The agents of social mayhem operate in and around the New York City area. You can pick up ideas from their website and use it for fun. The site has engineered more than 100 prank missions; the unauthorized autograph signing in the Metropolitan Museum of Art with an actor who bears a striking resemblance to King Philip IV of Spain is just one of them.</p>
<h2><a href="http://urbanprankster.com/">Urban Prankster</a></h2>
<p><img class="aligncenter" style="border: 0pt none;" src="http://main.makeuseoflimited.netdna-cdn.com/wp-content/uploads/2011/05/Pranks04.jpg?323f2c" alt="playing practical jokes" width="580" height="417" /></p>
<p>The prank blog is all about pranks, hacks, community art, and other creative endeavors that take place in public places in cities across the world. Some space is given to funny and clever ads. This site shares a common link with the last site as its founder Charlie Todd is associated with this one as well.</p>
<h2><a href="http://www.zug.com/">Zug</a></h2>
<p><img class="aligncenter" style="border: 0pt none;" src="http://main.makeuseoflimited.netdna-cdn.com/wp-content/uploads/2011/05/Pranks05.jpg?323f2c" alt="playing practical jokes friends" width="580" height="347" /></p>
<p>When you are trying to pick up some prank ideas then this passes with flying colors with its collection of practical jokes. It is one of the oldest if it’s About page is right. I liked reading about the <a href="http://www.zug.com/pranks/harvard-vs-mit/index.html">Harvard VS MIT</a> face-off to see who the better pranksters among the two are.</p>
<h2><a href="http://www.mtv.com/shows/pranked/series.jhtml">MTV Pranked</a></h2>
<p><img class="aligncenter" style="border: 0pt none;" src="http://main.makeuseoflimited.netdna-cdn.com/wp-content/uploads/2011/05/Pranks06.jpg?323f2c" alt="prank websites" width="580" height="303" /></p>
<p>Pranked is a MTV episodic show that’s till on air and covers pranks caught on camera. The camera captures homemade pranks that are thought up, planned, executed and filmed by kids and normal everyday people, with no help from experts. You can view the Pranked videos (72 of them) along with bonus clips online too.</p>
<p>Not everybody will like pranks. But I am sure there protests will be downed by the rowdy laughter when the practical joke you play succeeds. Nothing succeeds like a prank that’s well thought out and seen through. Which is the best prank you have played till date? Where you inspired by a <a href="http://www.makeuseof.com/tags/prank/">prank</a> site like these? Let us know.</p>
<p><small>Image Credit: <a rel="nofollow" href="http://www.shutterstock.com/pic.mhtml?id=74537107">Shutterstock</a></small></p>
]]></content:encoded>
			<wfw:commentRss>http://www.makeuseof.com/tag/6-prank-websites-give-ideas-play-practical-jokes-friends/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>10 Websites For Geek Humor &amp; Computer Jokes</title>
		<link>http://www.makeuseof.com/tag/10-websites-geek-humor-computer-jokes/</link>
		<comments>http://www.makeuseof.com/tag/10-websites-geek-humor-computer-jokes/#comments</comments>
		<pubDate>Fri, 18 Mar 2011 18:31:26 +0000</pubDate>
		<dc:creator>Saikat Basu</dc:creator>
				<category><![CDATA[MakeUseOf Lists]]></category>
		<category><![CDATA[Offbeat]]></category>
		<category><![CDATA[Web Apps & Internet]]></category>
		<category><![CDATA[comedy]]></category>
		<category><![CDATA[fun]]></category>
		<category><![CDATA[geeks]]></category>
		<category><![CDATA[geeky fun]]></category>
		<category><![CDATA[humor]]></category>
		<category><![CDATA[jokes]]></category>

		<guid isPermaLink="false">http://www.makeuseof.com/?p=67531</guid>
		<description><![CDATA[&#8220;There&#8217;s no place like 127.0.0.1&#8243;. Didn&#8217;t get it? That&#8217;s geek humor. Just so that you know, it&#8217;s a play on the familiar &#8220;“ &#8220;There&#8217;s no place like home.&#8221; From the outside, the world of bits and bytes might seem very dry indeed. But if you have spent any time in a digital office or even [...]]]></description>
			<content:encoded><![CDATA[<p><img class="align-right" src="http://main.makeuseoflimited.netdna-cdn.com/wp-content/uploads/2011/03/Shutterstock-Humor.jpg?323f2c" alt="computer jokes" /><em>&#8220;There&#8217;s no place like 127.0.0.1&#8243;.</em></p>
<p>Didn&#8217;t get it? That&#8217;s geek humor. Just so that you know, it&#8217;s a play on the familiar &#8220;“ &#8220;There&#8217;s no place like home.&#8221;</p>
<p>From the outside, the world of bits and bytes might seem very dry indeed. But if you have spent any time in a digital office or even better, at an IT help desk, you would know that it&#8217;s fertile ground for jokes. Computer errors and mishaps are the banana peels of the geek world.</p>
<p><span id="more-67531"></span><br />
The one advantage that geeks have is that we can poke fun at machines too and the slip-ups they cause in our lives. In fact, having a developed sense of humor is a prime requisite for surviving the stresses of a digital workplace. Fortunately, if you look around there&#8217;s lot to poke fun and laugh at. Remember, even a company like <a href="http://www.makeuseof.com/tag/smile-google-8-funny-websites-based-google/">Google laughs at itself</a>.</p>
<p>Humor cannot be built up with long introductions. The path to the joke should be the shortest possible, so sally over to these tech humor websites and give those laugh lines a workout.</p>
<h2><a href="http://www.techcomedy.com/">Tech Comedy</a></h2>
<p style="text-align: center;"><img class="aligncenter" style="border: 0pt none;" src="http://main.makeuseoflimited.netdna-cdn.com/wp-content/uploads/2011/03/Geek-Humor01.jpg?323f2c" alt="computer jokes" width="580" height="286" /></p>
<p>Real life is funny and this site mirrors it.  It&#8217;s a collection of humorous anecdotes and first-person accounts of support personnel when non-geeks bring their computers in. As they say, the guy whom you dial for help hears all the crazy stories and we can all have a laugh as a result.</p>
<h2><a href="http://www.cracked.com/humor-tech.html">Cracked</a></h2>
<p style="text-align: center;"><img class="aligncenter" style="border: 0pt none;" src="http://main.makeuseoflimited.netdna-cdn.com/wp-content/uploads/2011/03/Geek-Humor02.jpg?323f2c" alt="funny computer jokes" width="580" height="369" /></p>
<p>This site is a must visit for any guy who fancies a laugh, period. It just so happens that they have an entire section devoted to ribbing the guy who&#8217;s high on hi-tech. Here, you don&#8217;t get one liner jokes or stories; instead you face their sarcasm dripping articles that looks at everything from absurd angles. Also, don&#8217;t miss the photo captions. If you read through, it makes for loads of laughs. As a sample, try &#8211; <a title="Permanent Link to If The Internet Disappeared: Finding Answers Without Google" href="http://www.cracked.com/blog/if-internet-disappeared-finding-answers-without-google/">If The Internet Disappeared: Finding Answers Without Google</a></p>
<h2><a href="http://giveupinternet.com/">Give Up Internet</a></h2>
<p style="text-align: center;"><img class="aligncenter" style="border: 0pt none;" src="http://main.makeuseoflimited.netdna-cdn.com/wp-content/uploads/2011/03/Geek-Humor03.jpg?323f2c" alt="funny computer jokes" width="580" height="440" /></p>
<p>If the previous site is a bit text heavy, this one favors images. The above picture had me grinning. The tech humor blog is for the &#8220;internet people&#8221;, and it is built around news, pictures, funny comics, videos, and animated GIFs.</p>
<h2><a href="http://www.techchuff.com/">TechChuff</a></h2>
<p style="text-align: center;"><img class="aligncenter" style="border: 0pt none;" src="http://main.makeuseoflimited.netdna-cdn.com/wp-content/uploads/2011/03/Geek-Humor04.jpg?323f2c" alt="funny computer jokes" width="580" height="374" /></p>
<p>Their <em>About</em> page itself is worth a read and quite definitely lays down what the site aims to do. Don&#8217;t believe them when they say that the blog is a collaboration between Nissan, PepsiCo and the current Belizian government. It isn&#8217;t; instead it&#8217;s a satirical poke at everything and anything that&#8217;s digital. The site is a bit stagnant now, with its last update in 2010, but the stories are still worth a laugh.</p>
<h2><a href="http://www.geeksaresexy.net/">Geeks Are Sexy</a></h2>
<p style="text-align: center;"><img class="aligncenter" style="border: 0pt none;" src="http://main.makeuseoflimited.netdna-cdn.com/wp-content/uploads/2011/03/Geek-Humor05.jpg?323f2c" alt="technology computer jokes" width="580" height="439" /></p>
<p>It&#8217;s a personal opinion, but I do like the post titles the site comes up with. Geeks Are Sexy (or GAS for you) looks at tech happenings in an offbeat tone. Most of posts are news oriented, but the stuff that really interests me comes with &#8220;˜Humor&#8217; tag. Snippets, cartoons, videos, and animations make for some fun reading in the <em>Humor</em> section. The funnies are collated from various corners of the web and presented for our reading pleasure (like the <a href="http://mentalvasectomy.com/post/3740119156/its-funny-because-its-true">one</a> above).</p>
<h2><a href="http://www.geekculture.com/joyoftech/">The Joy Of Tech Comic</a></h2>
<p style="text-align: center;"><img class="aligncenter" style="border: 0pt none;" src="http://main.makeuseoflimited.netdna-cdn.com/wp-content/uploads/2011/03/Geek-Humor06.jpg?323f2c" alt="technology computer jokes" width="580" height="563" /></p>
<p>You could go to the parent site &#8220;“ <a href="http://www.geekculture.com/">GeekCulture</a> and still have a laugh as it showcases instances of geeky humor from around the web, or you could stay put and read the tech comics in the sub-section. The site has a decade&#8217;s worth of archives that you can sift through if you need regular doses of light reading. Then, you can take part in the polls too.</p>
<h2><a href="http://blogs.computerworld.com/sharky">Shark Tank</a></h2>
<p style="text-align: center;"><img class="aligncenter" style="border: 0pt none;" src="http://main.makeuseoflimited.netdna-cdn.com/wp-content/uploads/2011/03/Geek-Humor07.jpg?323f2c" alt="technology computer jokes" width="580" height="334" /></p>
<p>True stories from the tech world and as the blog says, it&#8217;s the place where IT and people&#8217;s cluelessness collides. Shark Tank courtesy, Sharky&#8217;s razor wit is a part of the online ComputerWorld.com website. You can even download a PDF on <em>The Best of Shark Tank</em> that has more than 70 tales of IT miseries documented by readers.</p>
<h2><a href="http://www.bash.org/">Bash.org</a></h2>
<p style="text-align: center;"><img class="aligncenter" style="border: 0pt none;" src="http://main.makeuseoflimited.netdna-cdn.com/wp-content/uploads/2011/03/Geek-Humor08.jpg?323f2c" alt="" width="580" height="245" /></p>
<p>I will let you figure this collection out for yourself. Urban Dictionary defines it as &#8211; a site with examples of people making complete asses of themselves on IRC or while instant messaging.</p>
<h2><a href="http://thegeekinvasion.com/">Geek Invasion</a></h2>
<p style="text-align: center;"><img class="aligncenter" style="border: 0pt none;" src="http://main.makeuseoflimited.netdna-cdn.com/wp-content/uploads/2011/03/Geek-Humor09.jpg?323f2c" alt="" width="580" height="416" /></p>
<p>The site says that it&#8217;s dedicated to feeding geeks &#8220;˜relevant information&#8217;. News bytes, images, and videos&#8221;¦some cool and some downright funny fill the geek&#8217;s day. For instance, <a title="What Grills Faster? Android, WinPhone or iPhone 4?" href="http://thegeekinvasion.com/technology/what-grills-faster-android-winphone-or-iphone-4/">What Grills Faster? Android, WinPhone or iPhone 4?</a> Find it out here.</p>
<h2><a href="http://www.makeuseof.com/tech-fun/">MakeUseOf.com &#8211; Geeky Fun</a></h2>
<p style="text-align: center;"><img class="aligncenter" style="border: 0pt none;" src="http://main.makeuseoflimited.netdna-cdn.com/wp-content/uploads/2011/03/Geek-Humor10.jpg?323f2c" alt="computer jokes" width="580" height="433" /></p>
<p>When I am plugging other websites, how can I forget my own; especially when we have so many years of happy pickings? It is one of the lesser known features of our site, so sometimes if you feel that you could do with a break&#8221;¦head here. The funnies are just a click away.</p>
<p>The geeky world is full of wit as it is of wisdom. If you still feel that your life could do with some more laughter, we won&#8217;t disappoint you. Here&#8217;s a collection of top-lined, high-on-the-laugh scale posts you should check out &#8220;“</p>
<p><a href="http://www.makeuseof.com/tag/55-geeky-line-jokes/">55 Geeky One Line Jokes</a> by Tina<br />
<a href="http://www.makeuseof.com/tag/7-hilarious-practical-joke-ideas-play-friends-computer/">7 Hilarious Practical Joke Ideas To Play On Your Friend&#8217;s Computer</a> by Ryan<br />
<a href="http://www.makeuseof.com/tag/5-websites-find-hilarious-practical-joke-ideas/">5 Websites To Get Hilarious Practical Joke Ideas</a> by Angela</p>
<p>We will continue to <a href="http://www.makeuseof.com/tags/jokes/">lighten up your mood</a>. Help us out by letting us know about your favorite watering hole for geeky humor.</p>
<p>Image Credit: <a rel="nofollow" href="http://www.shutterstock.com/pic-36581500.html?src=48b5769c8fb9d63e8a5e10ed4951ab52-1-112">Shutterstock</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.makeuseof.com/tag/10-websites-geek-humor-computer-jokes/feed/</wfw:commentRss>
		<slash:comments>21</slash:comments>
		</item>
		<item>
		<title>7 Hilarious Practical Joke Ideas To Play On Your Friend&#8217;s Computer [Windows]</title>
		<link>http://www.makeuseof.com/tag/7-hilarious-practical-joke-ideas-play-friends-computer/</link>
		<comments>http://www.makeuseof.com/tag/7-hilarious-practical-joke-ideas-play-friends-computer/#comments</comments>
		<pubDate>Wed, 02 Mar 2011 21:31:55 +0000</pubDate>
		<dc:creator>Ryan Dube</dc:creator>
				<category><![CDATA[How-To Articles]]></category>
		<category><![CDATA[Offbeat]]></category>
		<category><![CDATA[friends]]></category>
		<category><![CDATA[fun]]></category>
		<category><![CDATA[geeky fun]]></category>
		<category><![CDATA[jokes]]></category>
		<category><![CDATA[prank]]></category>

		<guid isPermaLink="false">http://www.makeuseof.com/?p=66046</guid>
		<description><![CDATA[For some people, playing a good practical joke isn&#8217;t only for April Fool&#8217;s day. Whether you&#8217;re the office prankster or you want to pull a really good one on your best friend, a personal computer is one of the best tools to do so. A computer is the type of device that lends itself to [...]]]></description>
			<content:encoded><![CDATA[<p><firstimage="http://main.makeuseoflimited.netdna-cdn.com/wp-content/uploads/2011/02/frustratedcomputer.jpg"><img class="align-left" style="border: 0px none;margin-left:20px;margin-top:5px;float:right;" src="http://main.makeuseoflimited.netdna-cdn.com/wp-content/uploads/2011/02/frustratedcomputer.jpg?323f2c" alt="computer practical jokes" width="300" height="204" />For some people, playing a good practical joke isn&#8217;t only for April Fool&#8217;s day. Whether you&#8217;re the office prankster or you want to pull a really good one on your best friend, a personal computer is one of the best tools to do so.</p>
<p>A computer is the type of device that lends itself to practical jokes, simply because it&#8217;s so easy to set things just enough off balance that an unsuspecting user will think things have gone completely awry. This doesn&#8217;t mean that you should do something that&#8217;s harmful, like infect it with a virus, but there are a number of little things you can do that will drive your friend up the wall.</p>
<p><span id="more-66046"></span><br />
Last year, Justin outlined four really funny things you could do with your home computer to <a href="http://www.makeuseof.com/tag/four-funny-ways-to-prank-your-parents-with-the-family-computer/">prank your unsuspecting parents</a>. This included classic computer pranks like tweaking Microsoft Word auto-replace or installing the blue screen of death screensaver. I enjoyed those so much that I thought it&#8217;s high time for another round of computer pranks that will have your friend ready to throw their computer in the trash!</p>
<h2>7 Computer Practical Jokes</h2>
<p>Some of these computer pranks are more advanced, and others are a bit basic. Choose the prank based on how computer savvy your friend is. One of the fastest and easiest ways to prank someone is to manipulate the behavior of their mouse. To do this, just go to into the <em>Control Panel</em> and find the <em>Mouse</em> settings. On the <em>Buttons</em> tab, you&#8217;ll see settings for the left and right mouse buttons.</p>
<p style="text-align: center;"><img class="aligncenter" style="border: 0pt none;" src="http://main.makeuseoflimited.netdna-cdn.com/wp-content/uploads/2011/02/prank1.jpg?323f2c" alt="computer pranks" width="482" height="481" /></p>
<p>Just switch the settings so that the right button is to &#8220;click&#8221; and the left button is the &#8220;shortcut menu.&#8221;  Now, when they try to click an icon or open a file, a menu will pop up rather than the file opening.</p>
<p>Another way you can tweak the mouse for a really funny prank is to slow down the pointer to the absolute slowest speed. To do this, instead of going to the <em>Buttons</em> tab, go into the <em>Pointer Options</em> and slide the pointer speed selection all the way down to the slowest setting.</p>
<p style="text-align: center;"><img class="aligncenter" style="border: 0pt none;" src="http://main.makeuseoflimited.netdna-cdn.com/wp-content/uploads/2011/02/prank5.jpg?323f2c" alt="computer practical jokes" width="489" height="558" /></p>
<p>If you&#8217;ve ever used a mouse that&#8217;s this slow, then you know how infuriating it can be. Again, these are only good for pranking non-computer savvy users, because average to advanced users will know exactly where to go in order to fix the mouse behavior.</p>
<p>Now, if you want to try something that is not so subtle, try tweaking the font color for Windows settings. Many people don&#8217;t realize how easy it is to alter the look of Windows. Changing the Windows font to white will render a lot of things completely invisible. Just open the <em>Window Color and Appearance</em> settings in the <em>Control Panel</em>, select the item you want to alter (like hyperlinks, window titles or window menu items) and set the font to white.</p>
<p style="text-align: center;"><img class="aligncenter" style="border: 0pt none;" src="http://main.makeuseoflimited.netdna-cdn.com/wp-content/uploads/2011/02/prank2.jpg?323f2c" alt="" width="463" height="500" /></p>
<p>A third great computer prank is a classic. The premise is that you will create a desktop background image that is identical to the user&#8217;s real desktop, except none of the icons are clickable. This confuses a lot of people into thinking their computer is locked up. Just take a quick snapshot of the desktop area using your <a href="http://www.makeuseof.com/tag/4-tools-for-creating-screenshots-and-screencasts/">favorite screenshot app</a>, or just using <em>Print Screen</em>.  Then, move all of the desktop icons to a temporary folder, completely clearing the normal desktop.</p>
<p>Now you&#8217;re ready to add your static picture as the desktop background. Just right click on the desktop, go to <em>Personalize</em> and click on <em>Desktop Backgrounds</em>.</p>
<p style="text-align: center;"><img class="aligncenter" style="border: 0pt none;" src="http://main.makeuseoflimited.netdna-cdn.com/wp-content/uploads/2011/02/prank3.jpg?323f2c" alt="" width="447" height="398" /></p>
<p>Go to the directory where you saved the bitmap of the desktop capture, and select it as your new desktop background. Now, when they try to click on the desktop icon over and over, nothing will happen!</p>
<p style="text-align: center;"><img class="aligncenter" style="border: 0pt none;" src="http://main.makeuseoflimited.netdna-cdn.com/wp-content/uploads/2011/02/prank4.jpg?323f2c" alt="" width="381" height="309" /></p>
<p>If that prank is a little too involved for you, another great joke you can play is altering a commonly used shortcut into an annoying audio file. All you have to do is right click on the icon and in the properties, just type in the location of a really funny audio file for the shortcut target.</p>
<p style="text-align: center;"><img class="aligncenter" style="border: 0pt none;" src="http://main.makeuseoflimited.netdna-cdn.com/wp-content/uploads/2011/02/prank6.jpg?323f2c" alt="computer pranks" width="398" height="325" /></p>
<p>One of the funniest audio tracks I&#8217;ve used for this is &#8220;Peanut Butter Jelly Time&#8221; &#8211; it&#8217;s hilarious watching their expression when one of the most annoying songs in the world starts blasting.</p>
<p>Another alternative to this prank is playing around in the <em>Startup</em> folder. On Windows 7, you can find <em>Startup</em> in the list of <em>Program Files</em> when you click start. Open up that folder and paste a shortcut to the annoying audio file into it.</p>
<p style="text-align: center;"><img class="aligncenter" style="border: 0pt none;" src="http://main.makeuseoflimited.netdna-cdn.com/wp-content/uploads/2011/02/prank7.jpg?323f2c" alt="" width="386" height="448" /></p>
<p>Turn up the sound and then turn off the computer. The next time they boot up the computer, watch their reaction!</p>
<p>This last prank is my own personal creation &#8211; I call it the &#8220;fake boot virus.&#8221; Basically, you create a Windows script that shuts down the computer, and put it in the <em>Startup </em>folder. Here is the script that will accomplish a complete shutdown of a Windows system without prompting.</p>
<div style="border: 1px solid; margin: 10px 0px; padding: 15px 10px 15px 50px; color: #00529b; background-color: #bde5f8; font-family: courier,lucida console,monospace;">&lt;job&gt;<br />
&lt;script language=&#8221;VBScript&#8221;&gt;</p>
<p>Dim objShell</p>
<p>Dim strComputer<br />
Dim strShutdown</p>
<p>Do<br />
strComputer = &#8220;Owner-PC&#8221;</p>
<p>strShutdown = &#8220;shutdown -s -t 0 -f -m \\&#8221; &amp; strComputer<br />
set objShell = CreateObject(&#8220;WScript.Shell&#8221;)<br />
objShell.Run strShutdown</p>
<p>Wscript.Quit</p>
<p>&lt;/script&gt;<br />
&lt;/job&gt;</p>
</div>
<p>Save it as &#8220;shutdown.wsf&#8221;, and place it in <em>Startup</em>. The moment they start up the PC, it will immediately shut down again. Watch as it dawns on them that they have some horrible computer virus! To end their misery, just boot it while holding down <em>Shift</em> (or into safe mode), and delete the file in the <em>Startup</em> folder.</p>
<p>Computer pranks like these are not always enjoyable for the person being pranked &#8211; after all, some people have to struggle enough as it is just to get the computer to work normally on a <em>good</em> day. But sometimes, pulling a good computer prank reminds people just how vulnerable we all are to assuming the absolute worst whenever something strange starts happening with our computers.</p>
<p>Have you ever played any of these pranks on anyone? Share your funny computer practical joke experiences in the comments section below &#8211; we want to hear them!</p>
<p><small>Image Credit: <a rel="nofollow" href="http://www.sxc.hu/photo/286892">Rajesh Sundaram</a></small></p>
]]></content:encoded>
			<wfw:commentRss>http://www.makeuseof.com/tag/7-hilarious-practical-joke-ideas-play-friends-computer/feed/</wfw:commentRss>
		<slash:comments>75</slash:comments>
		</item>
		<item>
		<title>55 Geeky One Line Jokes</title>
		<link>http://www.makeuseof.com/tag/55-geeky-line-jokes/</link>
		<comments>http://www.makeuseof.com/tag/55-geeky-line-jokes/#comments</comments>
		<pubDate>Tue, 04 Jan 2011 16:31:15 +0000</pubDate>
		<dc:creator>Tina Sieber</dc:creator>
				<category><![CDATA[Offbeat]]></category>
		<category><![CDATA[comedy]]></category>
		<category><![CDATA[fun]]></category>
		<category><![CDATA[geeks]]></category>
		<category><![CDATA[geeky fun]]></category>
		<category><![CDATA[jokes]]></category>

		<guid isPermaLink="false">http://www.makeuseof.com/?p=61625</guid>
		<description><![CDATA[Whether you&#8217;re a nerd, a geek, a programmer, or just a regular person interested in technology, you should enjoy some serious humor, otherwise this world is very sad. With this article you can also do something for your abs and burn off the excess Christmas treats. Start the New Year with a broad grin and [...]]]></description>
			<content:encoded><![CDATA[<p><firstimage="http://main.makeuseoflimited.netdna-cdn.com/wp-content/uploads/2010/12/OneLineJokes01.png"><img class="align-left" style="border: 0px none; margin-left: 20px; margin-top: 5px; float: right;" src="http://main.makeuseoflimited.netdna-cdn.com/wp-content/uploads/2010/12/OneLineJokes01.png?323f2c" border="0" alt="one-line jokes" width="250" height="182" />Whether you&#8217;re a nerd, a geek, a programmer, or just a regular person interested in technology, you should enjoy some serious humor, otherwise this world is very sad.</p>
<p>With this article you can also do something for your abs and burn off the excess Christmas treats. Start the New Year with a broad grin and lots of laughter. It&#8217;s healthy and contagious. Infect yourself with 50 hilarious geeky one-line jokes.</p>
<p><span id="more-61625"></span></p>
<h2>Logical</h2>
<ul>
<li>There are only 10 types of people in the world: those that understand binary and those that don&#8217;t.</li>
<li>Computers make very fast, very accurate mistakes.</li>
<li>Be nice to the nerds, for all you know they might be the next Bill Gates!</li>
<li>Artificial intelligence usually beats real stupidity.</li>
<li>To err is human &#8211; and to blame it on a computer is even more so.</li>
<li>CAPS LOCK &#8211; Preventing Login Since 1980.</li>
</ul>
<p>Get the <a title="CAPS Lock Joke" href="http://www.splitreason.com/product/makeuseof/977">CAPS LOCK joke on a T-Shirt</a> (as <a title="CAPS Lock Joke" href="http://www.splitreason.com/product/makeuseof/1057">Baby Tee</a>) from the <a title="MakeUseOf T-Shirts" href="http://www.splitreason.com/makeuseof#">MakeUseOf T-Shirt store</a>.</p>
<p style="text-align: center;"><img class="aligncenter" style="border: 0px initial initial;" src="http://main.makeuseoflimited.netdna-cdn.com/wp-content/uploads/2010/12/OneLineJokes03.png?323f2c" border="0" alt="funny one line jokes" width="406" height="280" /></p>
<h2>Browsing</h2>
<ul>
<li>The truth is out there. Anybody got the URL?</li>
<li>The Internet: where men are men, women are men, and children are FBI agents.</li>
<li>Some things Man was never meant to know. For everything else, there&#8217;s Google.</li>
</ul>
<h2>Operating Systems</h2>
<ul>
<li>The box said &#8216;Requires Windows Vista or better&#8217;. So I installed LINUX.</li>
<li>UNIX is basically a simple operating system, but you have to be a genius to understand the simplicity.</li>
<li>In a world without fences and walls, who needs Gates and Windows?</li>
<li>C://dos<br />
C://dos.run<br />
run.dos.run</li>
<li>Bugs come in through open Windows.</li>
<li>Penguins love cold, they wont survive the sun.</li>
<li>Unix is user friendly. It&#8217;s just selective about who its friends are.</li>
<li>Failure is not an option. It comes bundled with your Microsoft product.</li>
<li>NT is the only OS that has caused me to beat a piece of hardware to death with my bare hands.</li>
<li>My daily Unix command list: unzip; strip; touch; finger; mount; fsck; more; yes; unmount; sleep.</li>
<li>Microsoft: &#8220;You&#8217;ve got questions. We&#8217;ve got dancing paperclips.&#8221;</li>
<li>Erik Naggum: &#8220;Microsoft is not the answer. Microsoft is the question. NO is the answer.&#8221;</li>
<li>Windows isn&#8217;t a virus, viruses do something.</li>
<li>Computers are like air conditioners: they stop working when you open Windows.</li>
<li>Mac users swear by their Mac, PC users swear at their PC.</li>
</ul>
<p style="text-align: center;"><img class="aligncenter" style="border: 0px initial initial;" src="http://main.makeuseoflimited.netdna-cdn.com/wp-content/uploads/2010/12/OneLineJokes02.png?323f2c" border="0" alt="one line jokes" width="406" height="362" /></p>
<h2>Programming</h2>
<ul>
<li>If at first you don&#8217;t succeed; call it version 1.0.</li>
<li>My software never has bugs. It just develops random features.</li>
<li>I would love to change the world, but they won&#8217;t give me the source code.</li>
<li>The code that is the hardest to debug is the code that you know cannot possibly be wrong.</li>
<li>Beware of programmers that carry screwdrivers.</li>
<li>Programming today is a race between software engineers striving to build bigger and better idiot-proof programs, and the Universe trying to produce bigger and better idiots. So far, the Universe is winning.</li>
<li>The beginning of the programmer&#8217;s wisdom is understanding the difference between getting program to run and having a runnable program.</li>
<li>I&#8217;m not anti-social; I&#8217;m just not user friendly.</li>
<li>Hey! It compiles! Ship it!</li>
<li>If Ruby is not and Perl is the answer, you don&#8217;t understand the question.</li>
<li>The more I C, the less I see.</li>
<li>COBOL programmers understand why women hate periods.</li>
<li>Michael Sinz: &#8220;Programming is like sex, one mistake and you have to support it for the rest of your life.&#8221;</li>
<li>If you give someone a program, you will frustrate them for a day; if you teach them how to program, you will frustrate them for a lifetime.</li>
<li>Programmers are tools for converting caffeine into code.</li>
<li>My attitude isn&#8217;t bad. It&#8217;s in beta.</li>
</ul>
<p>Get the <a title="Beta Joke" href="http://www.splitreason.com/product/makeuseof/976">Beta joke on a T-Shirt</a> from the <a title="MakeUseOf T-Shirts" href="http://www.splitreason.com/makeuseof#">MakeUseOf T-Shirt store</a>.</p>
<p style="text-align: center;"><img class="aligncenter" style="border: 0px initial initial;" src="http://main.makeuseoflimited.netdna-cdn.com/wp-content/uploads/2010/12/OneLineJokes04.png?323f2c" border="0" alt="one line jokes" width="464" height="148" /></p>
<h2>Ad Absurdum</h2>
<ul>
<li>Enter any 11-digit prime number to continue.</li>
<li>E-mail returned to sender, insufficient voltage.</li>
<li>All wiyht. Rho sritched mg kegtops awound?</li>
<li>Black holes are where God divided by zero.</li>
<li>If I wanted a warm fuzzy feeling, I&#8217;d antialias my graphics!</li>
<li>If brute force doesn&#8217;t solve your problems, then you aren&#8217;t using enough.</li>
<li>SUPERCOMPUTER: what it sounded like before you bought it.</li>
<li>Evolution is God&#8217;s way of issuing upgrades.</li>
<li>Linus Torvalds: &#8220;Real men don&#8217;t use backups, they post their stuff on a public ftp server and let the rest of the world make copies.&#8221;</li>
<li>Hacking is like sex. You get in, you get out, and hope that you didn&#8217;t leave something that can be traced back to you.</li>
</ul>
<h2>Calculations</h2>
<ul>
<li>There are three kinds of people: those who can count and those who can&#8217;t.</li>
<li>Latest survey shows that 3 out of 4 people make up 75% of the world&#8217;s population.</li>
<li>Hand over the calculator, friends don&#8217;t let friends derive drunk.</li>
<li>An infinite crowd of mathematicians enters a bar. The first one orders a  pint, the second one a half pint, the third one a quarter pint&#8230; &#8220;I  understand&#8221;, says the bartender &#8211; and pours two pints.</li>
<li>1f u c4n r34d th1s u r34lly n33d t0 g37 l41d.</li>
</ul>
<p>Does your belly hurt, yet? MakeUseOf has more funny resources:</p>
<ul>
<li><a title="Best Joke Of The Day Sites" href="http://www.makeuseof.com/tag/5-joke-day-sites/">The 5 Best Joke Of The Day Sites Ever</a> by Saikat</li>
<li><a title="Practical Joke Ideas" href="http://www.makeuseof.com/tag/5-websites-find-hilarious-practical-joke-ideas/">5 Websites To Get Hilarious Practical Joke Ideas</a> by Angela</li>
<li><a title="Interent Memes" href="http://www.makeuseof.com/tag/overview-internet-memes-quickly-create/">A Brief Overview of Internet Memes &amp; How You Can Quickly Create Your Own</a> by Tim</li>
<li><a title="Funny Ways to Prank Your Parents" href="http://www.makeuseof.com/tag/four-funny-ways-to-prank-your-parents-with-the-family-computer/">Four Funny Ways To Prank Your Parents With The Family Computer</a> by Justin</li>
<li><a title="Scary Emails" href="http://www.makeuseof.com/tag/6-scary-emails-to-send-to-friends-practical-joke/">6 Scary Emails To Send To Friends As A Practical Joke</a> by Tina</li>
<li><a title="Best Daily Jokes Sites" href="http://www.makeuseof.com/tag/8-best-daily-jokes-sites-to-lighten-up-your-mood/">8 Best Daily Jokes Sites To Lighten Up Your Mood</a> by Tina</li>
<li><a title="Smile" href="http://www.makeuseof.com/tag/5-websites-with-thingsto-make-you-smile-light-up-your-day/">5 Websites With Things To Make You Smile &amp; Light Up Your Day</a> by Tina</li>
</ul>
<p>What is your favorite geek one-line joke?</p>
<p><small>Image credits: <a rel="nofollow" href="http://www.shutterstock.com/pic-53859172/stock-photo-on-line-chatting.html?src=6c156c2c8f66820266f4546d9b48c332-4-1">NinaMalyna</a>, <a rel="nofollow" href="http://www.shutterstock.com/pic-61564162/stock-vector-cute-penguin-with-baseball-bat-and-broken-window.html?src=6c156c2c8f66820266f4546d9b48c332-2-100">nex999</a>, <a rel="nofollow" href="http://www.shutterstock.com/pic-67440430/stock-photo-lemons.html?src=e95c6774ef4da48079b86a6017f14ab6-1-51"></a></small></p>
]]></content:encoded>
			<wfw:commentRss>http://www.makeuseof.com/tag/55-geeky-line-jokes/feed/</wfw:commentRss>
		<slash:comments>42</slash:comments>
		</item>
		<item>
		<title>5 Websites To Get Hilarious Practical Joke Ideas</title>
		<link>http://www.makeuseof.com/tag/5-websites-find-hilarious-practical-joke-ideas/</link>
		<comments>http://www.makeuseof.com/tag/5-websites-find-hilarious-practical-joke-ideas/#comments</comments>
		<pubDate>Tue, 19 Oct 2010 21:30:47 +0000</pubDate>
		<dc:creator>Angela Alcorn</dc:creator>
				<category><![CDATA[MakeUseOf Lists]]></category>
		<category><![CDATA[Offbeat]]></category>
		<category><![CDATA[fun]]></category>
		<category><![CDATA[jokes]]></category>
		<category><![CDATA[prank]]></category>

		<guid isPermaLink="false">http://www.makeuseof.com/?p=55907</guid>
		<description><![CDATA[Searching for a good practical joke site is a little like telling Google to search for a page full of spam. Most of the results are awful sites with the same practical jokes in all of them, repeating the same gags over and over in an attempt to get you to buy the latest prank [...]]]></description>
			<content:encoded><![CDATA[<p><firstimage="http://main.makeuseoflimited.netdna-cdn.com/wp-content/uploads/2010/10/shutterstock_62694169-cropped.jpg" /><img style="border: 0px none;margin-left:20px;float:right;" src="http://main.makeuseoflimited.netdna-cdn.com/wp-content/uploads/2010/10/shutterstock_62694169-cropped.jpg?323f2c" alt="practical joke ideas"/>Searching for a good practical joke site is a little like telling Google to search for a page full of spam. Most of the results are awful sites with the same practical jokes in all of them, repeating the same gags over and over in an attempt to get you to buy the latest prank joke product. The rest of the results are the stores for said products. It&#8217;s a little lacking in quality ideas.</p>
<p>In an attempt to uncover some <em>decent</em> practical joke ideas, these results have been <em>throughly</em> sifted for you. What&#8217;s left are some decent practical joke sites and a number of great articles with some clever practical joke ideas.</p>
<p><span id="more-55907"></span></p>
<h2>1. Museum of Hoaxes</h2>
<p>Featuring a wide variety of scams, hoaxes and <a href="http://www.museumofhoaxes.com/hoax/aprilfool/">April fool&#8217;s day jokes</a>, the <a href="http://www.museumofhoaxes.com/">Museum of Hoaxes</a> has listed some of the classier and grand-scale practical jokes ever pulled off. It&#8217;s certainly a good place to drum up ideas for your own mischief.</p>
<p style="text-align: center;"><img class="aligncenter" style="border: 0pt none;" src="http://main.makeuseoflimited.netdna-cdn.com/wp-content/uploads/2010/10/MuseumHoaxes-Screenshot.png?323f2c" alt="practical joke ideas"/></p>
<h2>2. Funny Practical Joke</h2>
<p><a href="http://www.funnypracticaljokes.com/">Funny Practical Jokes</a> has a range of different practical jokes, plus a handful of useful prank items you can buy. There&#8217;s plenty of great ideas, ranging from hiding onion in sweet foods to placing fake ads for bargains using your friend&#8217;s phone number. Should give you a few joke ideas.</p>
<p style="text-align: center;"><img class="aligncenter" style="border: 0pt none;" src="http://main.makeuseoflimited.netdna-cdn.com/wp-content/uploads/2010/10/Funny-Practical-Jokes.png?323f2c" alt="practical jokes"/></p>
<h2>3. Prankspace</h2>
<p><a href="http://www.prankspace.com/">Prankspace</a> is full of practical joke ideas, covering pranks from highschool, car pranks, college pranks and office pranks. Some of these would be quick and easy to do, others more difficult. Either way, there are plenty of ideas here, so it&#8217;s great for inspiration.</p>
<p style="text-align: center;"><img class="aligncenter" style="border: 0pt none;" src="http://main.makeuseoflimited.netdna-cdn.com/wp-content/uploads/2010/10/Prankspace-Screenshot2.png?323f2c" alt="practical jokes"/></p>
<h2>4. LolPranks</h2>
<p><a href="http://lolpranks.com/">LolPranks</a> is a very picture-heavy blog of practical jokes, with many jokes being the sorts of things you&#8217;d do to friends or teachers in school. At the very worst, it will give you a good reason not to drink at college parties.</p>
<p style="text-align: center;"><img class="aligncenter" style="border: 0pt none;" src="http://main.makeuseoflimited.netdna-cdn.com/wp-content/uploads/2010/10/LolPranks-Screenshot.jpg?323f2c" alt="practical jokes"/></p>
<h2>5. April Fool Zone</h2>
<p><a href="http://www.aprilfoolzone.com/">April Fool Zone</a> is a little lighter on ideas than some of the rest, but it still features a few classics and will certainly help you to come up with practical jokes you can easily pull off. There&#8217;s a whole section on computer pranks as well as a section on office pranks. It has a few of my favourites, like the desktop screenshot as wallpaper and the ultra-slow mouse. Things that are easy to do and will annoy workmates for a while.</p>
<p style="text-align: center;"><img class="aligncenter" style="border: 0pt none;" src="http://main.makeuseoflimited.netdna-cdn.com/wp-content/uploads/2010/10/April-Fool-Zone-Screenshot.png?323f2c" alt="practical joke ideas"/></p>
<h2>Practical Joke Articles</h2>
<p>While these aren&#8217;t sites wholly dedicated to the cause of practical jokes, they are fun-filled articles with great prank ideas. Some fabulous ideas in this collection.</p>
<ul>
<li> Duct Tape Guys have put together a selection of <a href="http://www.ducttapeguys.com/joker/index.html">practical jokes using duct tape</a>.</li>
<li> Wired made a list of <a href="http://www.wired.com/entertainment/theweb/news/2008/03/pranks08">top 10 April fool&#8217;s pranks for nerds</a>.</li>
<li> There&#8217;s a great instructable on <a href="http://www.instructables.com/id/April-Fools-Prank-List/">April fool&#8217;s day jokes involving computers</a>.</li>
<li>And for some random visual jokes you can play on people, you can&#8217;t go past <a href="http://improveverywhere.com/">Improv Everywhere</a>.</li>
</ul>
<h2>More MakeUseOf Articles on Jokes and Pranks</h2>
<p>Here&#8217;s some more reading on <a href="http://www.makeuseof.com/tags/jokes/">jokes</a> that you&#8217;ll love:</p>
<ul>
<li><a href="http://www.makeuseof.com/tag/8-best-daily-jokes-sites-to-lighten-up-your-mood/">8 Best Daily Jokes Sites to Lighten Your Mood</a></li>
<li><a href="http://www.makeuseof.com/tag/6-scary-emails-to-send-to-friends-practical-joke/">6 Scary Emails to Send as a Practical Joke</a></li>
<li><a href="http://www.makeuseof.com/tag/four-funny-ways-to-prank-your-parents-with-the-family-computer/">Four Funny Ways to Prank Your Parents With The Family Computer</a></li>
<li><a href="http://www.makeuseof.com/tag/4-free-april-fools-prank-ideas-friends-love/">4 Free April Fools Pranks Your Friends Will Love</a></li>
<li><a href="http://www.makeuseof.com/tag/two-great-n-simple-nerdy-pranks/">Two Great Simple and Nerdy Pranks to Play on Friends</a></li>
</ul>
<h2>Share Your Best Practical Jokes</h2>
<p>Here&#8217;s one of my favourite gags, the invisible rope.</p>
<div align="center"><object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" width="425" height="344" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,40,0"><param name="allowFullScreen" value="true" /><param name="allowscriptaccess" value="always" /><param name="src" value="http://www.youtube.com/v/PG4INDu9kNs?fs=1&amp;hl=en_US" /><param name="allowfullscreen" value="true" /><embed type="application/x-shockwave-flash" width="425" height="344" src="http://www.youtube.com/v/PG4INDu9kNs?fs=1&amp;hl=en_US" allowscriptaccess="always" allowfullscreen="true"></embed></object></div>
<p>Hopefully your quest for practical joke ideas has now armed you with ideas for some great laughs for you and your friends. If you have tried any great practical jokes or found anything new in one of these sites, let us know in the comments!</p>
<p><em>Image Credit: <a rel="nofollow" href="http://www.shutterstock.com/pic-62694169/stock-photo-confused-nerdy-guy-with-two-gadgets-making-a-face.html">Shutterstock</a></em></p>
]]></content:encoded>
			<wfw:commentRss>http://www.makeuseof.com/tag/5-websites-find-hilarious-practical-joke-ideas/feed/</wfw:commentRss>
		<slash:comments>20</slash:comments>
		</item>
		<item>
		<title>The 5 Best Joke Of The Day Sites Ever</title>
		<link>http://www.makeuseof.com/tag/5-joke-day-sites/</link>
		<comments>http://www.makeuseof.com/tag/5-joke-day-sites/#comments</comments>
		<pubDate>Fri, 15 Oct 2010 18:31:32 +0000</pubDate>
		<dc:creator>Saikat Basu</dc:creator>
				<category><![CDATA[MakeUseOf Lists]]></category>
		<category><![CDATA[Offbeat]]></category>
		<category><![CDATA[Web Apps & Internet]]></category>
		<category><![CDATA[fun]]></category>
		<category><![CDATA[jokes]]></category>

		<guid isPermaLink="false">http://www.makeuseof.com/?p=55737</guid>
		<description><![CDATA[You have got to be kidding! Well, that&#8217;s going to be your instant response rolled into an exclamation when you read the title. How can one narrow down to five best funny joke-of-the-day sites (or even more) when a simple search reveals so many more of them? Well, I can&#8217;t and won&#8217;t. Jokes more than [...]]]></description>
			<content:encoded><![CDATA[<p><firstimage="http://main.makeuseoflimited.netdna-cdn.com/wp-content/uploads/2010/10/Joke.jpg"><img class="align-left" style="border: 0px none; margin-left: 20px; margin-top: 5px; float: right;" src="http://main.makeuseoflimited.netdna-cdn.com/wp-content/uploads/2010/10/Joke.jpg?323f2c" alt="joke of the day" width="200" height="222" />You have got to be kidding! Well, that&#8217;s going to be your instant response rolled into an exclamation when you read the title. How can one narrow down to five best funny joke-of-the-day sites (or even more) when a simple search reveals so many more of them?</p>
<p>Well, I can&#8217;t and won&#8217;t. Jokes more than anything else rely on the sense of humor each one of us has. So, I will leave it to each of you to find your own. In the mixed bag of these five joke and humor sites you should definitely find something to laugh at.</p>
<p>If you don&#8217;t, then you can head over to some we had previously covered in the <a href="http://www.makeuseof.com/tag/8-best-daily-jokes-sites-to-lighten-up-your-mood/">8 Best Daily Jokes Sites To Lighten Up Your Mood</a>.</p>
<p><span id="more-55737"></span><br />
You can start off with a laugh first thing in the morning, thanks to email subscriptions, RSS feeds, and Twitter updates. So you just have to snap your fingers and get a joke delivered every day. Your job is to decide whether these five websites merit a place in your inbox.</p>
<p>Here are five funny pills for your funny-bone.</p>
<h2><a href="http://www.jokes.com/">Jokes.com</a></h2>
<p style="text-align: center;"><img class="aligncenter" src="http://main.makeuseoflimited.netdna-cdn.com/wp-content/uploads/2010/10/Jokes01.png?323f2c" alt="joke of the day" width="580" height="266" /></p>
<p>These guys walked away with the domain name that many would have bribed for.  It is one of Comedy Central&#8217;s &#8211; the U.S comedy network &#8211; web offerings. With just your email you can sign up to receive &#8220;the joke of the day&#8221; by email. A ZIP code is mandatory.</p>
<p>The best thing about the jokes on Jokes.com is that they are not rehashes, but original stuff from the comedians on Comedy Central. If you are on the site, you can search for jokes by the name of these comedians, by tag, or by category. You can also catch many of the jokes on video clips being told the way it should be told.</p>
<h2><a href="http://www.theonion.com/">The Onion</a></h2>
<p style="text-align: center;"><img class="aligncenter" src="http://main.makeuseoflimited.netdna-cdn.com/wp-content/uploads/2010/10/Joke4.jpg?323f2c" alt="joke of the day for today" width="580" height="473" /></p>
<p>Okay, this well known website leans less towards straight-up jokes and more towards satire. If you like caustic sarcasm which simmers slowly to trigger giggle explosions, you will love this site. They take on news and lampoon it for all its worth. From local, national, and international news, to the voices on the street, there&#8217;s lot of funny stuff flying around on the site. Like me, you might love their &#8220;˜Infographics&#8217;. For instance you might want to know why fewer Americans are marrying these days. Then there are the videos too.</p>
<p>You can subscribe to The Onion and choose to receive news tidbits either daily, weekly, or opt for just videos. The subscription box is right at the foot of the webpage.</p>
<h2><a href="http://www.sickipedia.org/">Sickipedia</a></h2>
<p style="text-align: center;"><img class="aligncenter" src="http://main.makeuseoflimited.netdna-cdn.com/wp-content/uploads/2010/10/Jokes02.png?323f2c" alt="joke of the day for today" width="579" height="334" /></p>
<p>Sick jokes test the limits of humor. And Sickipedia is an encyclopedia that&#8217;s full of it. You can even vote it up if it&#8217;s sick or push it down if it sucks. As contributions flood in, expect to get a great mix of the nasty and the outrageous. Join the Sickipedia community and get a few more perks like editing privileges.</p>
<p>Subscribing to Sickipedia needs a bit of rummaging around. The RSS Feed option is there in front of you where you can choose your timeframe and the content. A Google search revealed that there&#8217;s a <a href="http://twitter.com/sickipedia">Twitter</a> route too.</p>
<h2><a href="http://www.dailycomedy.com/">Daily Comedy</a></h2>
<p style="text-align: center;"><img class="aligncenter" src="http://main.makeuseoflimited.netdna-cdn.com/wp-content/uploads/2010/10/Jokes03.png?323f2c" alt="joke of the day for today" width="580" height="252" /></p>
<p>Daily Comedy is a well rounded website filled with funny stuff &#8211; funny news, fresh jokes, videos, and more. Daily Comedy also features a lot of fresh material from A-list comedians. You can also post your own content and create a page around it. You can get fresh content in your inbox each day by signing up for the &#8220;˜DailyLOL&#8217;.</p>
<h2><a href="http://oldjewstellingjokes.com/">Old Jews Telling Jokes</a></h2>
<p style="text-align: center;"><img class="aligncenter" src="http://main.makeuseoflimited.netdna-cdn.com/wp-content/uploads/2010/10/Jokes04.png?323f2c" alt="joke of the day" width="580" height="477" /></p>
<p>Slickly created and presented, Old Jews Telling Jokes are several mini-clips of standup comedy routines. The name of the site says all that&#8217;s to be said about the site. It&#8217;s almost an old-fashioned way of telling jokes, the way your favorite uncle or grand-parent probably tells them. You will have a neurologist, a dentist, a guy who is 50 and has run in four NY marathons, and more, relating funny anecdotes. Not every day, but the presentation is worth the gaps.</p>
<p>Take the RSS feed to receive updates, subscribe to their newsletter, and download the free podcasts from iTunes.</p>
<p>Well, the idea is to get a joke-of-the-day first thing in the morning so that you can go out of the door with a smile on your face. These five online joke stores can help to trigger it. For the rest of the day, you can check out a few other laughs from the websites featured in <a href="http://www.makeuseof.com/tag/5-websites-with-thingsto-make-you-smile-light-up-your-day/">5 Websites with Things to Make You Smile &amp; Light up Your Day</a>.</p>
<p>Which are the ones you would like to add to the list? Remember, laugh lines are better than worry lines.</p>
<p><small>Image Credit: <a href="http://www.shutterstock.com/pic-62449531.html">Shutterstock</a></small></p>
]]></content:encoded>
			<wfw:commentRss>http://www.makeuseof.com/tag/5-joke-day-sites/feed/</wfw:commentRss>
		<slash:comments>6</slash:comments>
		</item>
		<item>
		<title>4 Free April Fools Prank Ideas Your Friends Will Love</title>
		<link>http://www.makeuseof.com/tag/4-free-april-fools-prank-ideas-friends-love/</link>
		<comments>http://www.makeuseof.com/tag/4-free-april-fools-prank-ideas-friends-love/#comments</comments>
		<pubDate>Mon, 22 Mar 2010 19:30:13 +0000</pubDate>
		<dc:creator>Ryan Dube</dc:creator>
				<category><![CDATA[Offbeat]]></category>
		<category><![CDATA[Web Apps & Internet]]></category>
		<category><![CDATA[fun]]></category>
		<category><![CDATA[jokes]]></category>
		<category><![CDATA[prank]]></category>

		<guid isPermaLink="false">http://www.makeuseof.com/?p=38899</guid>
		<description><![CDATA[With April 1st approaching, it&#8217;s that time of year when everyone is looking for that funny and unique prank to play on a friend. Here at MakeUseOf, we&#8217;ve covered a number of cool pranks. I recently wrote about Ask Peter, a unique prank you can use to make your friends think something paranormal is going [...]]]></description>
			<content:encoded><![CDATA[<p><img style="border: 0px none; margin-right: 20px;" src="http://main.makeuseoflimited.netdna-cdn.com/wp-content/uploads/2010/03/viruswarning.jpg?323f2c" alt="" vspace="5" align="left" />With April 1st approaching, it&#8217;s that time of year when everyone is looking for that funny and unique prank to play on a friend. Here at MakeUseOf, we&#8217;ve covered a number of cool pranks. I recently wrote about <a href="http://www.makeuseof.com/tag/peter-work-code-prank/">Ask Peter</a>, a unique prank you can use to make your friends think something paranormal is going on. Justin described <a href="http://www.makeuseof.com/tag/four-funny-ways-to-prank-your-parents-with-the-family-computer/">4 funny ways to prank your parents</a>, and I wrote an article on <a href="http://www.makeuseof.com/tag/popular-prank-call-websites-how-they-work/">funny prank call websites</a>.</p>
<p>If that wasn&#8217;t enough, John wrote about <a href="http://www.makeuseof.com/tag/top-3-fake-news-prank-story-generators/">prank news story websites</a>, and now I&#8217;d like to cover 4 free April Fools prank ideas with small applications you can use to really fool your friends or family members. I&#8217;ve tested each of these programs, and as far as I can tell they are perfectly safe and very fun methods to prank your friends this April Fools.</p>
<p><span id="more-38899"></span></p>
<h3>Change Your Voice for a Funny Phone Call</h3>
<p>Have you ever considered calling a friend and pretending to be an IRS agent or maybe a long lost relative? Maybe you would like to tell your friend that an unknown uncle died and left them millions? Your friend would easily recognize your voice. So, the best option is to use free voice changing software, and then dial out using your computer and your favorite <a href="http://www.makeuseof.com/dir/cheapestvoip-tells-cheapest-voip-call-rates-country/">VoIP application</a>. Never fear! The perfect free voice-changing application is here, and it&#8217;s called <a href="http://www.screamingbee.com/product/MorphVOXJunior.aspx">Screaming Bee MorphVOX Junior</a>.</p>
<p style="text-align: center;"><img class="aligncenter" style="border: 0pt none;" src="http://main.makeuseoflimited.netdna-cdn.com/wp-content/uploads/2010/03/pranks1.jpg?323f2c" alt="free april fools prank ideas" width="292" height="469" /></p>
<p>This software is very fast and easy to set up. It sits between your microphone and any application you use and morphs your voice in whatever way you configure it to. The free version allows you to use an alternative male or female voice, or for a funny alternative, you can raise the level of your voice to sound like a tiny person! Another fun feature is the fact that you can click and insert sound effects into the call, such as a cuckoo clock, a drum roll (like after telling a joke), an alarm clock  or a screeching sound.</p>
<h3>Strange Windows Errors</h3>
<p>If you share a computer with a friend or with family members, and you really want to play a funny joke on other people who use the computer often, you can install the little <a href="http://www.donationcoder.com/Software/Mouser/DrWindows/index.html">Dr. Windows app</a> offered by DonationCoder. This application gets installed into the apps menu, and appears as just a small antivirus application called &#8220;Dr. Windows.&#8221; In reality, it&#8217;s counting down the minutes to when it delivers one of the strange error messages that you&#8217;ve set up.</p>
<p style="text-align: center;"><img class="aligncenter" style="border: 0pt none;" src="http://main.makeuseoflimited.netdna-cdn.com/wp-content/uploads/2010/03/pranks2.jpg?323f2c" alt="april fools prank ideas" width="220" height="236" /></p>
<p>Once you install the application, it appears in the system tray as a very small anti-virus application. Any user who isn&#8217;t very tech savvy should completely ignore it. When you first install it, right click on the icon and click on Options.</p>
<p style="text-align: center;"><img class="aligncenter" style="border: 0pt none;" src="http://main.makeuseoflimited.netdna-cdn.com/wp-content/uploads/2010/03/pranks3.jpg?323f2c" alt="free april fools prank ideas" width="289" height="336" /></p>
<p>Make sure to enable &#8220;Hide Options&#8221; so that when the user right clicks on the icon, nothing will happen. The only way to enter settings is to hold down the Ctrl key while right-clicking. The software comes with about 50 random Windows error messages that pup up either when you trigger them with the hotkey combination, or at a set interval that you enter.</p>
<p style="text-align: center;"><img class="aligncenter" style="border: 0pt none;" src="http://main.makeuseoflimited.netdna-cdn.com/wp-content/uploads/2010/03/pranks4.jpg?323f2c" alt="april fools pranks" width="284" height="127" /></p>
<p>The messages are fairly random and all pretty funny. If you have anyone using the computer who is just completely non tech-savvy at all, these will really throw them for a loop. Just sit back and watch them panic and pull out their hair in frustration&#8230;just try not to snicker too loudly!</p>
<h3>Install a Small Fake Virus</h3>
<p>We certainly spend a lot of time here at MakeUseOf focused on helping people avoid or get rid of viruses, adware and spyware on their computer. However, in the spirit of April 1st, I&#8217;d like to propose a safe and very funny application called <a href="http://lappet.110mb.com/lappet.html">Lappet</a>. Lappet is a completely safe and very funny fake computer virus that will inflict terror into the heart of just about any computer user who doesn&#8217;t know any better.</p>
<p style="text-align: center;"><img class="aligncenter" style="border: 0pt none;" src="http://main.makeuseoflimited.netdna-cdn.com/wp-content/uploads/2010/03/pranks5.jpg?323f2c" alt="april fools pranks" width="381" height="119" /></p>
<p>The reason I write that it would scare anyone who doesn&#8217;t know any better is because most of the savvy MUO readers would instantly recognize the progress bar as a very non-standard Windows app (what&#8217;s up with that horrid green color). But I&#8217;m sure many of you know someone who would completely fall for it.</p>
<p style="text-align: center;"><img class="aligncenter" style="border: 0pt none;" src="http://main.makeuseoflimited.netdna-cdn.com/wp-content/uploads/2010/03/pranks6.jpg?323f2c" alt="april fools pranks" width="403" height="167" /></p>
<p>Once the hard drive is &#8220;erased,&#8221; Windows crashes. Mind you &#8211; the app takes a screenshot and uses it as the background so that it appears the entire computer froze. The user may try clicking around, but almost nothing will work (there is the secret of simply pressing the &#8220;up&#8221; key to escape though).</p>
<p style="text-align: center;"><img class="aligncenter" style="border: 0pt none;" src="http://main.makeuseoflimited.netdna-cdn.com/wp-content/uploads/2010/03/pranks7.jpg?323f2c" alt="april fools day pranks" width="290" height="153" /></p>
<p>Finally, the very last window reveals the truth &#8211; that the entire episode was just a funny gag. The application doesn&#8217;t require any kind of install, it&#8217;s just an executable, so you can deliver it to your friend in whatever format works best &#8211; an email, a download from your website or blog or anything else that gets them to run it.</p>
<h3>Install a Very Scary Fake Computer Virus</h3>
<p>Another great computer prank you can use on your friends this April 1st is a full scale computer virus, packaged up as a promotion for real antivirus software. It&#8217;s actually a somewhat realistic fake virus called <a href="http://download.cnet.com/Ultimate/3000-2239_4-10536990.html">Ultimate</a>, which first asks if you really want to delete the Windows folder (it doesn&#8217;t matter what the user clicks, or whether they even click anything at all!)</p>
<p style="text-align: center;"><img class="aligncenter" style="border: 0pt none;" src="http://main.makeuseoflimited.netdna-cdn.com/wp-content/uploads/2010/03/pranks8.jpg?323f2c" alt="april fools day pranks" width="390" height="134" /></p>
<p>Before you know it, the next screen comes up that shows sections of Windows Explorer literally getting &#8220;deleted&#8221; and turning into black space. To the savvy user, this animation looks a little bit cheesy. But to the standard or amateur user, it could come across as convincing enough.</p>
<p style="text-align: center;"><img class="aligncenter" style="border: 0pt none;" src="http://main.makeuseoflimited.netdna-cdn.com/wp-content/uploads/2010/03/pranks9.jpg?323f2c" alt="april fools day pranks" width="408" height="326" /></p>
<p>Finally, once all contents of the Windows folder are deleted, the entire screen goes completely blank and stays that way, just long enough for the user&#8217;s heart to stop beating for a few moments. Then, very slowly, the following message prints across the screen.</p>
<p style="text-align: center;"><img class="aligncenter" style="border: 0pt none;" src="http://main.makeuseoflimited.netdna-cdn.com/wp-content/uploads/2010/03/pranks10.jpg?323f2c" alt="" /></p>
<p>After a few more keystrokes, the application closes and the user returns to their normal screen. This is also delivered in the form of a simple executable. If you can&#8217;t get your friends or family to run it from an email, you can always install it in the Startup folder on the computer of an unsuspecting friend of family member.</p>
<p>Do you know of any safe and scary or funny computer pranks that might come in handy for other MakeUseOf readers this April Fools? Share your own ideas for free April Fools prank ideas in the comments section below.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.makeuseof.com/tag/4-free-april-fools-prank-ideas-friends-love/feed/</wfw:commentRss>
		<slash:comments>11</slash:comments>
		</item>
		<item>
		<title>KON-BOOT &#8211; A Computer Prank Password-Bypass Tool</title>
		<link>http://www.makeuseof.com/tag/konboot-computer-prank-passwordbypass-tool/</link>
		<comments>http://www.makeuseof.com/tag/konboot-computer-prank-passwordbypass-tool/#comments</comments>
		<pubDate>Sun, 21 Mar 2010 19:30:59 +0000</pubDate>
		<dc:creator>Mike Fagan</dc:creator>
				<category><![CDATA[Cool Software Apps]]></category>
		<category><![CDATA[fun]]></category>
		<category><![CDATA[jokes]]></category>
		<category><![CDATA[password]]></category>
		<category><![CDATA[prank]]></category>

		<guid isPermaLink="false">http://www.makeuseof.com/?p=38668</guid>
		<description><![CDATA[Pranks are fun and rewarding.  They require creativity, planning, and execution, making them much more personal than another type of joke.  A good prank can take months or even years to plan, but these are usually on a large scale and take the effort of many people to execute. Unfortunately, we all do not have [...]]]></description>
			<content:encoded><![CDATA[<p><img style="border: 0px none; margin-right: 20px; margin-top: 20px; margin-bottom: 20px;" src="http://main.makeuseoflimited.netdna-cdn.com/wp-content/uploads/2010/03/blue-screen-of-death1.png?323f2c" alt="" vspace="5" align="left" /><a href="http://www.makeuseof.com/tags/prank/">Pranks</a> are fun and rewarding.  They require creativity, planning, and execution, making them much more personal than another type of joke.  A good prank can take months or even years to plan, but these are usually on a large scale and take the effort of many people to execute.</p>
<p>Unfortunately, we all do not have the time or resources for such endeavors. Therefore, most people focus on small pranks between friends to get our fill of shenanigans.</p>
<p>Computer pranks are the easiest and one of the most fun small scale pranks. Getting on someone&#8217;s computer and <a href="http://www.makeuseof.com/tag/four-funny-ways-to-prank-your-parents-with-the-family-computer/">changing their background</a>, messing with their desktop, or changing their homepage can lead to a good laugh, granted the person is a good sport.</p>
<p><span id="more-38668"></span><br />
But getting onto someone&#8217;s computer when they are not around can be a tall task.  Most people have passwords on their machines, thwarting any would-be pranksters.</p>
<p>Well, this problem can be solved with a small tool called KON-BOOT. Rather than cracking a Windows password, KON-BOOT bypasses it and lets you into the computer without typing one in.  Then, when you restart, everything is back to normal, that is, everything you didn&#8217;t change for the computer prank.</p>
<p><em>Editor&#8217;s note: MakeUseOf does not encourage using this tool for malicious purposes.</em></p>
<p>To get KON-BOOT, go to their website <a href="http://www.piotrbania.com/all/kon-boot/">here</a>.</p>
<p>Scroll down to the following for the download that will boot Windows.</p>
<p style="text-align: center;"><img class="aligncenter" style="border: 0pt none;" src="http://main.makeuseoflimited.netdna-cdn.com/wp-content/uploads/2010/03/KONBOOTDOWNLOAD.png?323f2c" alt="computer pranks" width="462" height="222" /></p>
<p>Download either the CD ISO or floppy image. For most uses, the CD will be just fine.</p>
<p>You will have to unzip the downloaded file and then burn the CD image or copy the floppy Image.  After that is done, you are ready to start the pranking fun.</p>
<p>Wait until a friend leaves his computer and make sure you have enough time to get the deed done. Pop in the CD and turn on the computer, making sure you boot from the CD.  This may require you to hit F12 at the BIOS screen and choose to boot from the CD.  You&#8217;ll know you&#8217;re there when you see the following.</p>
<p style="text-align: center;"><img class="aligncenter" style="border: 0pt none;" src="http://main.makeuseoflimited.netdna-cdn.com/wp-content/uploads/2010/03/KONBOOTSPLASH.png?323f2c" alt="computer pranks" width="510" height="376" /></p>
<p>At any time, hit Enter and you should see an ASCII art logo draw onto the screen and a few loading dialogs that should look something like this.</p>
<p style="text-align: center;"><img class="aligncenter" style="border: 0pt none;" src="http://main.makeuseoflimited.netdna-cdn.com/wp-content/uploads/2010/03/KONBOOTLOAD.png?323f2c" alt="computer pranks" width="580" height="321" /></p>
<p>The computer should then boot Windows and, if everything worked, you shouldn&#8217;t be prompted for a password.  Now you&#8217;re ready to do your computer prank.</p>
<p>For good-hearted jokes, I&#8217;d advise not doing anything devastating like messing with the system registry or files.</p>
<p>My favorite is to do a screen shot of the desktop (Justin also had it listed in his article <a href="http://www.makeuseof.com/tag/four-funny-ways-to-prank-your-parents-with-the-family-computer/">Four Funny Ways To Prank Your Parents With The Family Computer</a>).  Open Paint, paste the screenshot, save it, and set it as the desktop background.  Then hide the task bar and icons.  An unsuspecting victim will think their computer has frozen.</p>
<p>You could also set the desktop background to a blue screen while hiding the taskbar and icons.</p>
<p>Both of these usually freak out the victim, but are easily reversible, so no harm is done.</p>
<p>After you&#8217;ve finished your dirty deeds, you can just take out your disk and reboot the computer.  It will boot as normal, with your playful changes waiting to be discovered.</p>
<p>KON-BOOT is a powerful tool and should be used with discretion.  Clearly, it could be used for malicious purposes, but no one like a malicious person.</p>
<p>A computer prank like the one described above though can lead to a good laugh.  If your victim is a good sport, hopefully you&#8217;ll both be laughing about it!</p>
<p>I should mention that KON-BOOT also works with some Linux distributions, but the process is a little more involved than with Windows.  To find those steps, refer to the KON-BOOT <a href="http://www.piotrbania.com/all/kon-boot/">website</a>.</p>
<p>Go off, trick your friend, have fun, and stay out of trouble!</p>
<p>Know any other good cyber-prank tools?  Let us know in the comments below.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.makeuseof.com/tag/konboot-computer-prank-passwordbypass-tool/feed/</wfw:commentRss>
		<slash:comments>22</slash:comments>
		</item>
		<item>
		<title>6 Scary Emails To Send To Friends As A Practical Joke</title>
		<link>http://www.makeuseof.com/tag/6-scary-emails-to-send-to-friends-practical-joke/</link>
		<comments>http://www.makeuseof.com/tag/6-scary-emails-to-send-to-friends-practical-joke/#comments</comments>
		<pubDate>Thu, 11 Mar 2010 23:31:44 +0000</pubDate>
		<dc:creator>Tina Sieber</dc:creator>
				<category><![CDATA[Offbeat]]></category>
		<category><![CDATA[Web Apps & Internet]]></category>
		<category><![CDATA[email]]></category>
		<category><![CDATA[fun]]></category>
		<category><![CDATA[jokes]]></category>
		<category><![CDATA[prank]]></category>

		<guid isPermaLink="false">http://www.makeuseof.com/?p=37753</guid>
		<description><![CDATA[April is coming up and you know what that means, don&#8217;t you? April Fools&#8217; Day will be celebrated around the globe on April 1st. For you that means that it&#8217;s time to prepare pranks to play on your friends! If you have friends that live too far away to literally play a practical joke on [...]]]></description>
			<content:encoded><![CDATA[<p><img style="margin-right: 20px;" src="http://main.makeuseoflimited.netdna-cdn.com/wp-content/uploads/2010/03/Scaryemail07.png?323f2c" border="0" alt="" vspace="5" align="left" />April is coming up and you know what that means, don&#8217;t you? April Fools&#8217; Day will be celebrated around the globe on April 1st. For you that means that it&#8217;s time to prepare pranks to play on your friends!</p>
<p>If you have friends that live too far away to literally play a practical joke on them, you could send them an email instead. Here is a list of 6 scary emails to send to friends.</p>
<p><span id="more-37753"></span></p>
<h3><a href="http://www.scaryforkids.com/scary-stories/"><strong>Scary Stories</strong></a></h3>
<p>Do you know someone who is scared easily? Then you don&#8217;t have to come up with anything smart, you can simply send them a scary story just in time for bedtime. Maybe spice it up by adding some pictures or by sending it anonymously. <a href="http://www.scaryforkids.com">Scary For Kids</a> has a neat collection of scary stories.</p>
<p style="text-align: center;"><img class="aligncenter" style="border: 0pt none;" src="http://main.makeuseoflimited.netdna-cdn.com/wp-content/uploads/2010/03/ScaryeMail06.png?323f2c" border="0" alt="scary emails to send to friends" width="537" height="453" /></p>
<h3><a href="http://deadfake.com/Default.aspx"><strong>Dead Fake</strong></a></h3>
<p>Dead Fake is a service that lets you send anonymous emails. That alone is not a prank. The thing with this site is that you can make your email appear to come from anyone you choose. Do I need to say more?</p>
<p style="text-align: center;"><img class="aligncenter" style="border: 0pt none;" src="http://main.makeuseoflimited.netdna-cdn.com/wp-content/uploads/2010/03/Scaryemail03.png?323f2c" border="0" alt="scary emails to send to friends" width="580" height="254" /></p>
<p>You could pretend to be your friend&#8217;s boss or a government official and I&#8217;m sure you can come up with content that will scare your friend. After all, you know them best!</p>
<p>If you&#8217;re short of ideas, check out this <a href="http://funnyprankideas.com/Prank-Ideas/email-prank-ideas/">Prank Ideas</a> site.</p>
<h3><a href="http://www.haunted.org/html/fright_gauge.html"><strong>Fright Gauge</strong></a></h3>
<p>Do you have a friend who is very proud of their &#8220;visual acuity&#8221;? Send them this &#8220;<em>Find the Fiend</em>&#8221; gauge to reveal how well their eyesight is. It will show them just how much higher-than-average their perception skills really are.</p>
<p style="text-align: center;"><img class="aligncenter" style="border: 0pt none;" src="http://main.makeuseoflimited.netdna-cdn.com/wp-content/uploads/2010/03/ScaryeMail01.png?323f2c" border="0" alt="scary emails to send to friends" width="580" height="353" /></p>
<p>A similar page better suited for a younger audience is <a title="Where is Waldo" href="http://www.albinoblacksheep.com/flash/waldo">Where&#8217;s Waldo</a>.</p>
<h3><a href="http://www.liquidgeneration.com/6c552197"><strong>Online Hearing Test</strong></a></h3>
<p>For this one to work, you have to embed the code on a website or one of your social network profiles and then send your friend the link. Unfortunately, the source website gives quite a few clues to this being a fake test. However, if you manage to set this up somewhere, it&#8217;s one of the most scary tests to email a friend. Fortunately, the code to embed the test is included.</p>
<p style="text-align: center;"><img class="aligncenter" style="border: 0pt none;" src="http://main.makeuseoflimited.netdna-cdn.com/wp-content/uploads/2010/03/ScaryeMail04.png?323f2c" border="0" alt="funny scary emails to forward" width="580" height="301" /></p>
<p>A similar test is <a href="http://www.liquidgeneration.com/b058e185">Color Vision Deficiency</a>.</p>
<h3><a href="http://www.license.shorturl.com/"><strong>Driver&#8217;s License Search</strong></a></h3>
<p>This is a website prank. The site claims that the National Motor Vehicle License Organization is now required by law to provide public access to all US driver&#8217;s licenses online. It&#8217;s the perfect prank to play on someone who has been refusing to show you their passport or driver&#8217;s license with the claim that their picture was so ugly. You can now tell them how shocked you were by how ugly their photo really was.</p>
<p style="text-align: center;"><img class="aligncenter" style="border: 0pt none;" src="http://main.makeuseoflimited.netdna-cdn.com/wp-content/uploads/2010/03/ScaryeMail02.png?323f2c" border="0" alt="funny scary emails to forward" width="580" height="422" /></p>
<p><a href="http://www.mywot.com/">WOT</a> warns that this page has a poor reputation. Well, does it really surprise you?</p>
<h3><a href="http://www.thedexterhitlist.com"><strong>The Dexter Hit List</strong></a></h3>
<p>If you want to scare someone in the UK, take advantage of this ingenious video generator. Be sure to enter your victim&#8217;s full name, their real age range, an actual occupation, and a real characteristic of them into the form.</p>
<p>Your friend will receive a link to icetruck.tv, a video webpage. The video is that of a press conference in which a serial murder is described with hints to potential future victims. At the end of the video the prank is revealed, so no reasons to worry.</p>
<p style="text-align: center;"><img class="aligncenter" style="border: 0pt none;" src="http://main.makeuseoflimited.netdna-cdn.com/wp-content/uploads/2010/03/ScaryeMail05.png?323f2c" border="0" alt="funny scary emails to forward" width="580" height="375" /></p>
<p>The preview for the video did not work for me, the link that is emailed, however, worked perfectly.</p>
<p>Do you want to remain anonymous when sending scary emails to friends?</p>
<ul>
<li>Simon showed you <a title="Anonymous eMails" href="http://www.makeuseof.com/tag/how-to-send-completely-anonymous-emails/">How To Send Completely Anonymous Emails</a></li>
</ul>
<p>Are you looking for more scary stuff? Here is some material for you:</p>
<ul>
<li>Ryan found the <a title="Scary Stuff" href="http://www.makeuseof.com/tag/top-5-sites-with-scary-stuff-that-makes-you-jump/">Top 5 Sites With Scary Stuff That Makes You Jump</a></li>
<li>I gathered up the <a title="Spooky Websites" href="http://www.makeuseof.com/tag/top-5-spooky-websites-awake-night/">Top 5 Spooky Websites That Will Keep You Awake At Night</a></li>
<li>Sharninder listed the <a title="Free Horror Movies" href="http://www.makeuseof.com/tag/top-6-sites-to-watch-horror-movies-online-for-free-nb/">Top 6 Sites To Watch Horror Movies Online for Free</a></li>
</ul>
<p>If, however, you&#8217;re looking for more pranks to play, check out these articles:</p>
<ul>
<li>Justin described <a title="Computer Prank" href="http://www.makeuseof.com/tag/four-funny-ways-to-prank-your-parents-with-the-family-computer/">Four Funny Ways To Prank Your Parents With The Family Computer</a></li>
<li>John wrote about the <a title="News Prank" href="http://www.makeuseof.com/tag/top-3-fake-news-prank-story-generators/">Top 3 Fake News Prank Story Generators</a></li>
<li>Simon explained <a title="Office Prank" href="http://www.makeuseof.com/tag/two-great-n-simple-nerdy-pranks/">Two Great&#8217;n Simple Nerdy Office Pranks to Play On Friends</a></li>
<li>Ryan has written about <a title="Prank Call Websites" href="http://www.makeuseof.com/tag/popular-prank-call-websites-how-they-work/">4 Really Popular Prank Call Websites &amp; How They Work</a></li>
<li>I compiled a list of <a title="Prank Phone Number" href="http://www.makeuseof.com/tag/7-prank-phone-numbers-to-hand-a-bad-date-at-the-end-of-the-night/">20+ Prank Phone Numbers To Hand To A Bad Date</a></li>
</ul>
<p>What is the best prank you ever played on someone?</p>
<p>Image credits: <small><a title="skull" rel="nofollow" href="http://www.sxc.hu/photo/1108728">svilen001</a></small></p>
]]></content:encoded>
			<wfw:commentRss>http://www.makeuseof.com/tag/6-scary-emails-to-send-to-friends-practical-joke/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
	</channel>
</rss>

<!-- Performance optimized by W3 Total Cache. Learn more: http://www.w3-edge.com/wordpress-plugins/

Page Caching using memcached (Requested URI is rejected)
Database Caching 1/40 queries in 0.061 seconds using apc
Object Caching 758/840 objects using disk: basic
Content Delivery Network via main.makeuseoflimited.netdna-cdn.com

Served from: www.makeuseof.com @ 2012-02-10 21:44:02 -->
