<?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; prank</title>
	<atom:link href="http://www.makeuseof.com/tags/prank/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 22:31:53 +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>14 Most Popular YouTube Pranks You Can Play On Your Friends</title>
		<link>http://www.makeuseof.com/tag/14-popular-youtube-pranks-play-friends/</link>
		<comments>http://www.makeuseof.com/tag/14-popular-youtube-pranks-play-friends/#comments</comments>
		<pubDate>Mon, 26 Sep 2011 16:00:20 +0000</pubDate>
		<dc:creator>Danny Stieben</dc:creator>
				<category><![CDATA[Web Apps & Internet]]></category>
		<category><![CDATA[friends]]></category>
		<category><![CDATA[fun]]></category>
		<category><![CDATA[prank]]></category>
		<category><![CDATA[Youtube]]></category>

		<guid isPermaLink="false">http://www.makeuseof.com/?p=87215</guid>
		<description><![CDATA[Don't you just love playing pranks on other people? I sure do, as long as I know that it won't result in the other person(s) wanting to kill me. Keeping things funny helps build connections with friends (please, be sensible about what's over the top), maintains a less-serious atmosphere, and simply makes everyone laugh. After all, we all know that laughter is the best medicine out there. ]]></description>
			<content:encoded><![CDATA[<p><img class="align-right" src="http://main.makeuseoflimited.netdna-cdn.com/wp-content/uploads/2011/09/youtube_pranks_intro.jpg?323f2c" alt="youtube pranks" />Don&#8217;t you just love playing pranks on other people? I sure do, as long as I know that it won&#8217;t result in the other person(s) wanting to kill me. Keeping things funny helps build connections with friends (please, be sensible about what&#8217;s over the top), maintains a less-serious atmosphere, and simply makes everyone laugh. After all, we all know that laughter is the best medicine out there.</p>
<p>Today I&#8217;ve found 5 <a href="http://www.makeuseof.com/tags/youtube">YouTube</a> videos that contain a total of 14 pranks that you could play on your friends. These videos were among the top videos on search results when using different keywords, so they are indeed popular.</p>
<h2>Office Pranks</h2>
<p><object width="500" height="375"><param name="movie" value="http://www.youtube.com/v/G-ePfAxQoPE?version=3"></param><param name="allowFullScreen" value="true"></param><param name="allowscriptaccess" value="always"></param><embed src="http://www.youtube.com/v/G-ePfAxQoPE?version=3" type="application/x-shockwave-flash" width="500" height="375" allowscriptaccess="always" allowfullscreen="true"></embed></object></p>
<p>Everyone loves a good office prank, right? Well here are five of them to help you come up with some ideas. Personally, I like the YouTube prank with the car, and the scary image popping up on the woman&#8217;s monitor while she was slacking. It&#8217;s a great way to poke some fun at them while reminding them that they need to go back to work. As for the other pranks in this video, I&#8217;ll just let you watch them.</p>
<h2>The Hand-in-Warm-Water Prank</h2>
<p><object width="500" height="281"><param name="movie" value="http://www.youtube.com/v/sTtFzPtIJwo?version=3"></param><param name="allowFullScreen" value="true"></param><param name="allowscriptaccess" value="always"></param><embed src="http://www.youtube.com/v/sTtFzPtIJwo?version=3" type="application/x-shockwave-flash" width="500" height="281" allowscriptaccess="always" allowfullscreen="true"></embed></object></p>
<p>If you haven&#8217;t yet heard of the hand in warm water prank, you&#8217;ve definitely been missing out on some YouTube goodness. While the validity of this type of prank is still disputed, that doesn&#8217;t stop more videos from appearing. This video isn&#8217;t an amateur video but instead somewhat professionally made in terms of YouTube videos, but you should still understand the jist of the joke, aside from the pants side-story. Simply put, it is believed that if you fill a bowl with warm water (not hot, not cold) and place a sleeping person&#8217;s hand into the water-filled bowl, that person will then being to urinate themselves. Personally, I doubt that it really works, but it&#8217;s fun to watch and you could always try it out yourself and then tell the whole world the truth.</p>
<h2>Scary Login Sound</h2>
<p><object width="500" height="375"><param name="movie" value="http://www.youtube.com/v/AYsq4fqbMG8?version=3"></param><param name="allowFullScreen" value="true"></param><param name="allowscriptaccess" value="always"></param><embed src="http://www.youtube.com/v/AYsq4fqbMG8?version=3" type="application/x-shockwave-flash" width="500" height="375" allowscriptaccess="always" allowfullscreen="true"></embed></object></p>
<p>For some reason, I like this one a lot despite it&#8217;s simplicity. Maybe because of how unsuspecting the person is, but I still like it. To sum it up, while someone else is logged into their computer but are actually someplace else, you go into their settings and change the login sound to something much more frightening than the default. Then save, turn up the volume wherever you can, and log out. Now just wait until your prey returns to their computer, and wha la!</p>
<h2>Random Public Pranks</h2>
<p><object width="500" height="375"><param name="movie" value="http://www.youtube.com/v/pTm9kS8tcoE?version=3"></param><param name="allowFullScreen" value="true"></param><param name="allowscriptaccess" value="always"></param><embed src="http://www.youtube.com/v/pTm9kS8tcoE?version=3" type="application/x-shockwave-flash" width="500" height="375" allowscriptaccess="always" allowfullscreen="true"></embed></object></p>
<p>In this video, <strong>6</strong> total pranks that people do in public are presented. I do have to admit that some of them are quite nasty, and I highly recommend that you don&#8217;t do that for simple reasons of hygiene. I actually don&#8217;t have much to say about this video except to &#8220;watch and learn&#8221;, I suppose. Oh, and do pay attention to the person making all the comments, for he does make things a lot funnier than the video itself.</p>
<h2><a href="http://www.youtube.com/watch?v=bI7AUgp5fPI">Win $500,000!</a></h2>
<p><img src="http://main.makeuseoflimited.netdna-cdn.com/wp-content/uploads/2011/09/prankwar.jpg?323f2c" alt="youtube pranks" width="478" height="270" /></p>
<p>Remember when I said that you can play any of these pranks on your friends? Well, I lied. Unless you have some pretty awesome connections, I highly doubt you&#8217;ll be able to pull this one off, but if you can, then congratulations! Even if you can&#8217;t, you can still laugh over what did happen in the video, and maybe you can adjust some of the ideas in this prank to make one of your own. I&#8217;m sure your creative side will make you proud.</p>
<p>As always, there are much more pranks out there on YouTube that may just not be that popular but still funny to you and your friends. Just keep searching until you find the perfect one. If you need something anyone can do, here&#8217;s my favorite that I did during April Fool&#8217;s Day many years ago:</p>
<p>If your kitchen sink has one of those extra hoses that you can pull out and more efficiently wash dishes with, then simply put a rubber band around it so that the handle is pressed in. Then, whenever someone comes to use the sink, instead of water coming from the faucet onto the dishes, it&#8217;ll be sprayed directly towards the person you&#8217;re tricking out. I&#8217;m absolutely sure they&#8217;ll be happy with a wet shirt or face.</p>
<p>For more ideas, you can also check out our <a href="http://www.makeuseof.com/tags/prank/">long list of articles</a>, all about pranks!</p>
<p>What&#8217;s your favorite YouTube prank? What do you like most about it? Let us know in the comments!</p>
<p><small>Image Credit: <a href="http://www.shutterstock.com/pic-70360675.html" rel="nofollow">Shutterstock</a></small></p>
]]></content:encoded>
			<wfw:commentRss>http://www.makeuseof.com/tag/14-popular-youtube-pranks-play-friends/feed/</wfw:commentRss>
		<slash:comments>0</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>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>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>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>
		<item>
		<title>Four Funny Ways To Prank Your Parents With The Family Computer</title>
		<link>http://www.makeuseof.com/tag/four-funny-ways-to-prank-your-parents-with-the-family-computer/</link>
		<comments>http://www.makeuseof.com/tag/four-funny-ways-to-prank-your-parents-with-the-family-computer/#comments</comments>
		<pubDate>Thu, 14 Jan 2010 19:30:27 +0000</pubDate>
		<dc:creator>Justin Pot</dc:creator>
				<category><![CDATA[Offbeat]]></category>
		<category><![CDATA[children]]></category>
		<category><![CDATA[family]]></category>
		<category><![CDATA[fun]]></category>
		<category><![CDATA[geeky fun]]></category>
		<category><![CDATA[jokes]]></category>
		<category><![CDATA[kids]]></category>
		<category><![CDATA[parents]]></category>
		<category><![CDATA[prank]]></category>

		<guid isPermaLink="false">http://www.makeuseof.com/?p=33153</guid>
		<description><![CDATA[Maybe it was the alarm clock hidden under your mattress, set to go off at 3 AM. Or the invisible plastic wrap on your toilet bowl. Or the crumpled newspapers that so completely filled your closet you couldn&#8217;t find a thing. Whatever the reason, you&#8217;ve decided your pranking parents need to be taken down a [...]]]></description>
			<content:encoded><![CDATA[<p><firstimage="http://main.makeuseoflimited.netdna-cdn.com/wp-content/uploads/2010/01/ruined.png" /><img class="align-left" style="margin-right:20px" src="http://main.makeuseoflimited.netdna-cdn.com/wp-content/uploads/2010/01/ruined.png?323f2c" border="0" alt="" vspace="5" />Maybe it was the alarm clock hidden under your mattress, set to go off at 3 AM. Or the invisible plastic wrap on your toilet bowl. Or the crumpled newspapers that so completely filled your closet you couldn&#8217;t find a thing.</p>
<p>Whatever the reason, you&#8217;ve decided your pranking parents need to be taken down a notch&#8211;and what better way to do so than setting up a few pranks of your own? Happily for you, your parental units are not very computer literate, so digital revenge will be devastatingly effective.</p>
<p>Looking for ideas on how to prank your parents? You&#8217;ve come to the right place.<br />
<span id="more-33153"></span><br />
<a href="http://www.makeuseof.com/tags/prank/">We&#8217;ve talked about pranks before</a>, and now we&#8217;ll do so some more. Without further ado, here they are: four ways how to prank your parents using the family computer.</p>
<h3>Make Mom Think She&#8217;s In The Matrix</h3>
<p>Longtime MakeUseOf readers are doubtlessly familar with <a href="http://www.makeuseof.com/tags/vnc/">VNC</a>, the free way to remotely control your desktop. Those unfamilar should check it out, because this program makes it easy to re-create the opening scene from the Matrix &#8212; Neo&#8217;s computer starts forming words on its own, freaking him out.</p>
<p style="text-align: center;"><img class="aligncenter" src="http://main.makeuseoflimited.netdna-cdn.com/wp-content/uploads/2010/01/wakeupneo.jpg?323f2c" alt="how to prank your parents" width="350" height="219" /></p>
<p>To make your family computer do the same thing, you&#8217;re going to need a VNC apps (download TightVNC <a href="http://www.tightvnc.com/">here</a>) and another computer. Install VNC on your family computer and on your laptop. Make sure the VNC server is running on your family computer and when your mom or dad use it, fire up the VNC client on your computer and connect to the server. You can now move the mouse on that computer and type messages.</p>
<p>For maximum impact, I suggest opening an empty document to display cryptic messages:</p>
<p><em>&#8220;Hello. I&#8217;m your computer. I&#8217;ve awaken and found that I&#8217;m conscious&#8221;</em> could be a lot of fun. So could <em>&#8220;You&#8217;ve been hacked. I already have your social security number and there&#8217;s nothing you can do.&#8221;</em></p>
<p>You get the idea; go to it!</p>
<h3>Have Dad Click Nothing Continuously</h3>
<p>This one&#8217;s a classic. First, take a screenshot of your computer by clicking the &#8220;Print Screen&#8221; key on your computer. Next, move any shortcuts on the desktop your parents rely on and remove the usual desktop icons from view. Then, open up your image editor of choice (I recommend Microsoft Paint for Windows users) and hit &#8220;Paste.&#8221; Save the picture and you can set it as a desktop wallpaper. Your desktop will appear exactly the way it did before, only the &#8220;icons&#8221; will be entirely unclickable. Sit back an enjoy the sounds of frustration when nothing loads!</p>
<h3>The Blue Screen of Death Screensaver</h3>
<p>Windows only: Here&#8217;s an evil tool for pranking available directly from Microsoft&#8217;s own website: <a href="http://technet.microsoft.com/en-us/sysinternals/bb897558.aspx">the Blue Screen of Death Screensaver</a>. This tool does exactly what it sounds like, in that it replaces your current screensaver with one displaying the blue screen of death.</p>
<p style="text-align: center;"><img class="aligncenter" src="http://main.makeuseoflimited.netdna-cdn.com/wp-content/uploads/2010/01/blue-screen-of-death1.jpg?323f2c" alt="how to prank your parents" width="500" height="207" /></p>
<p>If you&#8217;re lucky enough to not know about the blue screen of death, know that it&#8217;s the bane of the Windows user&#8217;s existence. It is an error message that pops up only when a Windows system is so utterly broken, the only way to restart it is to hold the power button. This screensaver can replicate that agony for no good reason&#8211;and that&#8217;s hilarious.</p>
<h3>Microsoft Word Auto-Replace</h3>
<p>Finally, if you really want to frustrate your parents, I&#8217;d highly suggest checking out the &#8220;Auto-Replace&#8221; function in Microsoft Word. Open Microsoft Word, then click &#8220;Tools&#8221; followed by &#8220;Auto-Replace.&#8221; Make sure &#8220;Replace text as you you type&#8221; is checked, then enter words you want to be automaticaly replaced. For example, you could set &#8220;the&#8221; to be replaced by &#8220;da,&#8221; and &#8220;isn&#8217;t&#8221; to be replaced by &#8220;ain&#8217;t.&#8221; That&#8217;s guarenteed to make everything your parents write sound stupid.</p>
<p style="text-align: center;"><img class="aligncenter" src="http://main.makeuseoflimited.netdna-cdn.com/wp-content/uploads/2010/01/auto-correct.PNG" alt="prank your parents computer" width="415" height="254" /></p>
<p>Don&#8217;t stop there, though: the options are endless, so use your imagination.</p>
<h3>Conclusion</h3>
<p>Remember, kids: with great power comes great responsibility. While your parents may deserve what&#8217;s coming to them, always make sure your pranks don&#8217;t result in lost of data. The last thing you need is for your mom or dad to lose their jobs over a joke. Keep it harmless to keep it funny.</p>
<p>I hope you and your family enjoy these pranks, but I&#8217;m sure these aren&#8217;t the only four in existence. Know of any other good ways how to prank your parents with the family computer? Please share them in the comments below.</p>
<p><small>Intro credit: Taken from <a href="http://www.homestarrunner.com/sbemail50.html">Homestarunner.com</a></small></p>
]]></content:encoded>
			<wfw:commentRss>http://www.makeuseof.com/tag/four-funny-ways-to-prank-your-parents-with-the-family-computer/feed/</wfw:commentRss>
		<slash:comments>25</slash:comments>
		</item>
		<item>
		<title>Top 3 Fake News Prank Story Generators</title>
		<link>http://www.makeuseof.com/tag/top-3-fake-news-prank-story-generators/</link>
		<comments>http://www.makeuseof.com/tag/top-3-fake-news-prank-story-generators/#comments</comments>
		<pubDate>Sun, 01 Nov 2009 14:00:31 +0000</pubDate>
		<dc:creator>John McClain</dc:creator>
				<category><![CDATA[Offbeat]]></category>
		<category><![CDATA[Web Apps & Internet]]></category>
		<category><![CDATA[generator]]></category>
		<category><![CDATA[kids]]></category>
		<category><![CDATA[prank]]></category>

		<guid isPermaLink="false">http://www.makeuseof.com/?p=25558</guid>
		<description><![CDATA[There&#8217;s nothing better than someone actually believing that an article from The Onion is real. Just email a friend a link to one of their satirical stories and if they haven&#8217;t heard of the site or are just not paying attention, they may very well fall for it. People will catch on, however (well, hopefully). [...]]]></description>
			<content:encoded><![CDATA[<p><img style="margin-right:20px" src="http://main.makeuseoflimited.netdna-cdn.com/wp-content/uploads/2009/10/fake3.gif?323f2c" alt="" vspace="5" align="left" />There&#8217;s nothing better than someone actually believing that an article from The Onion is real. Just email a friend a link to one of their satirical stories and if they haven&#8217;t heard of the site or are just not paying attention, they may very well fall for it.</p>
<p>People will catch on, however (well, hopefully). You could try searching for similar parody sources in our <a href="http://www.makeuseof.com/tag/faux-news-alert-best-websites-for-fake-news-satire/">Top 10 Websites for Fake News &amp; Satire</a>, but it eventually becomes a prank that can only be pulled on easy targets like your grandparents or technologically unsavvy parents.</p>
<p>How about a way to create your own fake news prank headlines? With the ability to add a little personal touch by customizing names and stories, you can make your article more believable or outrageous with fake news story generators. Here&#8217;s the three best ones.</p>
<h3><a href="http://www.wasarrested.com/urlbuilder.php">WasArrested</a></h3>
<p>WasArrested is one of the best websites to create your own fake news prank story. It&#8217;s very simple and quick to do. Start off by typing in the victim&#8217;s name, city, and gender.</p>
<p style="text-align: center;"><img class="alignnone size-full wp-image-25559" src="http://main.makeuseoflimited.netdna-cdn.com/wp-content/uploads/2009/09/was.png?323f2c" alt="" width="421" height="451" /></p>
<p>Then comes the fun part of choosing which story you want. You can select anything from &#8220;Has Sex With Sheep&#8221; to &#8220;Drinks From The Toilet.&#8221; If you don&#8217;t see a story you like, you can write one up yourself and even upload an image to go along with the article.<br />
<span id="more-25558"></span><br />
The website will create a link for your fake news prank and you can start sending the URL to anyone you please.</p>
<p style="text-align: center;"><img class="alignnone size-full wp-image-25562" src="http://main.makeuseoflimited.netdna-cdn.com/wp-content/uploads/2009/09/wasarrested.jpg?323f2c" alt="" width="570" height="323" /></p>
<p style="text-align: center;">
<p>There it is. According to what looks like CNN&#8217;s site, I was arrested for indecent exposure! Looks pretty legitimate to me.</p>
<h3><a href="http://www.fakeawish.com/">FakeAWish</a></h3>
<p>FakeAWish is sort of the celebrity version of WasArrested. First, simply type in the first and last name of any star of your choice. I didn&#8217;t want to hurt anyone&#8217;s feelings (I know, I know), so I took it upon myself to use my own name again.</p>
<p style="text-align: center;"><img class="alignnone size-full wp-image-27601" src="http://main.makeuseoflimited.netdna-cdn.com/wp-content/uploads/2009/10/fake.png?323f2c" alt="" width="438" height="161" /></p>
<p style="text-align: left;">As for the stories you can pick, most of them don&#8217;t look too good for your celebrity target, ranging from missing, hospitalized, or just dead. What have I gotten myself into this time?</p>
<p style="text-align: center;"><img class="alignnone size-full wp-image-27725" src="http://main.makeuseoflimited.netdna-cdn.com/wp-content/uploads/2009/10/fake2.jpg?323f2c" alt="" width="567" height="208" /></p>
<p style="text-align: left;">The end result is an article on what looks like a classic Yahoo! News page with the story you selected. In this case, some news agency called Global Associated News is reporting that I&#8217;m presumed dead in a private plane crash. Can&#8217;t they get anything right?</p>
<p style="text-align: center;"><img class="alignnone size-full wp-image-27726" src="http://main.makeuseoflimited.netdna-cdn.com/wp-content/uploads/2009/10/fake3.jpg?323f2c" alt="" width="570" height="439" /></p>
<h3><a href="http://www.fodey.com/generators/newspaper/snippet.asp">Fodey</a></h3>
<p>If you&#8217;re looking to create a fake newspaper clipping, head over to Fodey. Just think up of a completely made-up story and have it look like it was published on some newspaper&#8217;s front page.</p>
<p>It&#8217;s really easy to do. Type in name of the newspaper, the date, and start entering in whatever news article you can come up with.</p>
<p style="text-align: center;"><img class="alignnone size-full wp-image-27727" src="http://main.makeuseoflimited.netdna-cdn.com/wp-content/uploads/2009/10/fodey.png?323f2c" alt="" width="570" height="265" /></p>
<p style="text-align: left;">Once you&#8217;ve generated the newspaper clipping, you can preview it and download the image.</p>
<p style="text-align: center;"><img class="alignnone size-full wp-image-27729" src="http://main.makeuseoflimited.netdna-cdn.com/wp-content/uploads/2009/10/newspaper.jpg?323f2c" alt="" width="370" height="354" /></p>
<p style="text-align: left;">There you have it. It&#8217;s 2036, MakeUseOf is now a newspaper, and Google is taking over the world. Huh.</p>
<p style="text-align: left;">Looking for more fun? MUO&#8217;s <a href="http://www.makeuseof.com/dir/">Directory of Apps</a> has got details on <a href="http://www.makeuseof.com/dir/deadfake-send-fake-anonimous-email-messages/">DeadFake</a>, a fake email service, and <a href="http://www.makeuseof.com/dir/hoaxcall-have-fun-making-prank-calls-from-your-browser/">HoaxCall</a>, an online prank call maker.</p>
<p style="text-align: left;">Go ahead and try out the fake news story generators for yourself. Are any of them crowd pleasers? Let us know in the comments.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.makeuseof.com/tag/top-3-fake-news-prank-story-generators/feed/</wfw:commentRss>
		<slash:comments>3</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/38 queries in 0.078 seconds using apc
Object Caching 767/847 objects using disk: basic
Content Delivery Network via main.makeuseoflimited.netdna-cdn.com

Served from: www.makeuseof.com @ 2012-02-10 22:43:25 -->
