<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	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:itunes="http://www.itunes.com/dtds/podcast-1.0.dtd"
	xmlns:media="http://search.yahoo.com/mrss/"
	>
<channel>
	<title>Comments on: phonelosers.org dummies guide to red boxing</title>
	<atom:link href="http://www.phonelosers.org/redbox/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.phonelosers.org</link>
	<description>The Phone Losers of America and their prank calls have been on the web for more than 10 years now.  PLA has existed in many carnations, the latest being this podcast.  The show promises to entertain and inform with computer hacker and phone phreak themed tutorials, prank phone calls, songs, skits and parody commercials.  This comedy podcast has no regular schedule or format but so far has managed to put out a show at least every couple of weeks.  Be sure to visit the website for a complete archive of the PLA&#039;s past 10 years of content.</description>
	<lastBuildDate>Sat, 21 Aug 2010 16:35:51 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.1</generator>
	<item>
		<title>By: anon</title>
		<link>http://www.phonelosers.org/redbox/comment-page-1/#comment-523004</link>
		<dc:creator>anon</dc:creator>
		<pubDate>Tue, 29 Sep 2009 12:23:25 +0000</pubDate>
		<guid isPermaLink="false">http://www.phonelosers.org/redbox/#comment-523004</guid>
		<description>i see reference to this working for mabell and co only, but no mention of qwest. id love to know if it works for qwest phones, since thier one of the larger phone companys around</description>
		<content:encoded><![CDATA[<p>i see reference to this working for mabell and co only, but no mention of qwest. id love to know if it works for qwest phones, since thier one of the larger phone companys around</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Ethan</title>
		<link>http://www.phonelosers.org/redbox/comment-page-1/#comment-502270</link>
		<dc:creator>Ethan</dc:creator>
		<pubDate>Sat, 06 Jun 2009 15:50:51 +0000</pubDate>
		<guid isPermaLink="false">http://www.phonelosers.org/redbox/#comment-502270</guid>
		<description>Hey, my verizon cell phone service was cut
off when I could only pay $800 instead of 
the $1000 I owed. Is there a way to use the
cell I have and make calls without paying 
for service? And or can I make a payphone 
look like it is coming from my phone?</description>
		<content:encoded><![CDATA[<p>Hey, my verizon cell phone service was cut<br />
off when I could only pay $800 instead of<br />
the $1000 I owed. Is there a way to use the<br />
cell I have and make calls without paying<br />
for service? And or can I make a payphone<br />
look like it is coming from my phone?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Harry the Bastard</title>
		<link>http://www.phonelosers.org/redbox/comment-page-1/#comment-455479</link>
		<dc:creator>Harry the Bastard</dc:creator>
		<pubDate>Sat, 30 Aug 2008 15:51:33 +0000</pubDate>
		<guid isPermaLink="false">http://www.phonelosers.org/redbox/#comment-455479</guid>
		<description>use a program called AUDACITY to generate the tones - then use your ipod and headphones</description>
		<content:encoded><![CDATA[<p>use a program called AUDACITY to generate the tones &#8211; then use your ipod and headphones</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: drg00n</title>
		<link>http://www.phonelosers.org/redbox/comment-page-1/#comment-454115</link>
		<dc:creator>drg00n</dc:creator>
		<pubDate>Mon, 25 Aug 2008 08:43:26 +0000</pubDate>
		<guid isPermaLink="false">http://www.phonelosers.org/redbox/#comment-454115</guid>
		<description>oops meant DSP stuff re: java
sound processor stuff</description>
		<content:encoded><![CDATA[<p>oops meant DSP stuff re: java<br />
sound processor stuff</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: drg00n</title>
		<link>http://www.phonelosers.org/redbox/comment-page-1/#comment-454114</link>
		<dc:creator>drg00n</dc:creator>
		<pubDate>Mon, 25 Aug 2008 08:37:43 +0000</pubDate>
		<guid isPermaLink="false">http://www.phonelosers.org/redbox/#comment-454114</guid>
		<description>for whatever it&#039;s worth, I was able to implement this in Java using the Javax JSP stuff:
************************************************


package org.drg00n.util.dtmf;

import javax.sound.sampled.AudioFormat;
import javax.sound.sampled.AudioSystem;
import javax.sound.sampled.SourceDataLine;

/*Implement a DTMF dialer with javax&#039;s DSP
 * Tone tables are in tones.java
 */

public class DTMF {

	public static void generateTones(float hz1, float hz2, int msecs, int volume)
			throws Exception {
		float frequency = 44100.0F;
		int samplesize = 8;
		int channels;
		boolean signed = true;
		boolean bigendian = false;
		byte[] buf;
		double ttpi = (2.0 * Math.PI);
		AudioFormat format;
		buf = new byte[2];
		channels = 1;
		format = new AudioFormat(frequency, samplesize, channels, signed,
				bigendian);
		SourceDataLine sdl = AudioSystem.getSourceDataLine(format);
		sdl.open(format);
		sdl.start();
		for (int i = 0; i &lt; msecs * frequency / 1000; i++) {

			double angle = i / (frequency / hz1) * ttpi;
			double angle2 = i / (frequency / hz2) * ttpi;
			buf[0] = (byte) (((Math.sin(angle)) + (Math.sin(angle2))) * 10);
			sdl.write(buf, 0, 1);
		}
		sdl.drain();
		sdl.stop();
		sdl.close();
	}
}

********************************************
then create a class for the coins using your data on the frequencies and times for each coin:
********************************************

package org.drg00n.util.dtmf;

public class payphone {

	public static void qaurter() throws Exception {
		DTMF.generateTones(1700, 2200, 33, 100);
		DTMF.generateTones(0, 0, 33, 100);
		DTMF.generateTones(1700, 2200, 33, 100);
		DTMF.generateTones(0, 0, 33, 100);
		DTMF.generateTones(1700, 2200, 33, 100);
		DTMF.generateTones(0, 0, 33, 100);
		DTMF.generateTones(1700, 2200, 33, 100);
		DTMF.generateTones(0, 0, 33, 100);
		DTMF.generateTones(1700, 2200, 33, 100);
		DTMF.generateTones(0, 0, 33, 100);
	}
	
	public static void dime() throws Exception {
		DTMF.generateTones(1700, 2200, 66, 100);
		DTMF.generateTones(0, 0, 66, 0);
		DTMF.generateTones(1700, 2200, 66, 100);	
	}
	
	public static void nickle() throws Exception {
		DTMF.generateTones(1700, 2200, 66, 100);
	}
}


************************************************
then you call the coin you want and it beeps out of the sound card:

a main class to beep the coin tones:
************************************


package org.drg00n.util.dtmf;

public class dialer {

	public static void main(String[] args) {

		/*
		 * Dial some DTMF Tones: 
		 */
		
		try {

		//	payphone.dime();
		//	payphone.nickle();
			payphone.qaurter();
			
		} catch (Exception e) {
			e.printStackTrace();
		}
	}

}</description>
		<content:encoded><![CDATA[<p>for whatever it&#8217;s worth, I was able to implement this in Java using the Javax JSP stuff:<br />
************************************************</p>
<p>package org.drg00n.util.dtmf;</p>
<p>import javax.sound.sampled.AudioFormat;<br />
import javax.sound.sampled.AudioSystem;<br />
import javax.sound.sampled.SourceDataLine;</p>
<p>/*Implement a DTMF dialer with javax&#8217;s DSP<br />
 * Tone tables are in tones.java<br />
 */</p>
<p>public class DTMF {</p>
<p>	public static void generateTones(float hz1, float hz2, int msecs, int volume)<br />
			throws Exception {<br />
		float frequency = 44100.0F;<br />
		int samplesize = 8;<br />
		int channels;<br />
		boolean signed = true;<br />
		boolean bigendian = false;<br />
		byte[] buf;<br />
		double ttpi = (2.0 * Math.PI);<br />
		AudioFormat format;<br />
		buf = new byte[2];<br />
		channels = 1;<br />
		format = new AudioFormat(frequency, samplesize, channels, signed,<br />
				bigendian);<br />
		SourceDataLine sdl = AudioSystem.getSourceDataLine(format);<br />
		sdl.open(format);<br />
		sdl.start();<br />
		for (int i = 0; i &lt; msecs * frequency / 1000; i++) {</p>
<p>			double angle = i / (frequency / hz1) * ttpi;<br />
			double angle2 = i / (frequency / hz2) * ttpi;<br />
			buf[0] = (byte) (((Math.sin(angle)) + (Math.sin(angle2))) * 10);<br />
			sdl.write(buf, 0, 1);<br />
		}<br />
		sdl.drain();<br />
		sdl.stop();<br />
		sdl.close();<br />
	}<br />
}</p>
<p>********************************************<br />
then create a class for the coins using your data on the frequencies and times for each coin:<br />
********************************************</p>
<p>package org.drg00n.util.dtmf;</p>
<p>public class payphone {</p>
<p>	public static void qaurter() throws Exception {<br />
		DTMF.generateTones(1700, 2200, 33, 100);<br />
		DTMF.generateTones(0, 0, 33, 100);<br />
		DTMF.generateTones(1700, 2200, 33, 100);<br />
		DTMF.generateTones(0, 0, 33, 100);<br />
		DTMF.generateTones(1700, 2200, 33, 100);<br />
		DTMF.generateTones(0, 0, 33, 100);<br />
		DTMF.generateTones(1700, 2200, 33, 100);<br />
		DTMF.generateTones(0, 0, 33, 100);<br />
		DTMF.generateTones(1700, 2200, 33, 100);<br />
		DTMF.generateTones(0, 0, 33, 100);<br />
	}</p>
<p>	public static void dime() throws Exception {<br />
		DTMF.generateTones(1700, 2200, 66, 100);<br />
		DTMF.generateTones(0, 0, 66, 0);<br />
		DTMF.generateTones(1700, 2200, 66, 100);<br />
	}</p>
<p>	public static void nickle() throws Exception {<br />
		DTMF.generateTones(1700, 2200, 66, 100);<br />
	}<br />
}</p>
<p>************************************************<br />
then you call the coin you want and it beeps out of the sound card:</p>
<p>a main class to beep the coin tones:<br />
************************************</p>
<p>package org.drg00n.util.dtmf;</p>
<p>public class dialer {</p>
<p>	public static void main(String[] args) {</p>
<p>		/*<br />
		 * Dial some DTMF Tones:<br />
		 */</p>
<p>		try {</p>
<p>		//	payphone.dime();<br />
		//	payphone.nickle();<br />
			payphone.qaurter();</p>
<p>		} catch (Exception e) {<br />
			e.printStackTrace();<br />
		}<br />
	}</p>
<p>}</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Brian</title>
		<link>http://www.phonelosers.org/redbox/comment-page-1/#comment-447713</link>
		<dc:creator>Brian</dc:creator>
		<pubDate>Tue, 05 Aug 2008 01:39:06 +0000</pubDate>
		<guid isPermaLink="false">http://www.phonelosers.org/redbox/#comment-447713</guid>
		<description>Just the other day I found a semi-broken pay phone that didn&#039;t take money, the mechinism must have been broken. So when I played my red box, it would drop the played ammount :]. Cleaned that thing right out, went into the store it was at and bought a lot of stuff. They&#039;ll never know.</description>
		<content:encoded><![CDATA[<p>Just the other day I found a semi-broken pay phone that didn&#8217;t take money, the mechinism must have been broken. So when I played my red box, it would drop the played ammount :]. Cleaned that thing right out, went into the store it was at and bought a lot of stuff. They&#8217;ll never know.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Rick</title>
		<link>http://www.phonelosers.org/redbox/comment-page-1/#comment-446375</link>
		<dc:creator>Rick</dc:creator>
		<pubDate>Wed, 30 Jul 2008 13:02:00 +0000</pubDate>
		<guid isPermaLink="false">http://www.phonelosers.org/redbox/#comment-446375</guid>
		<description>Neat site.
Back in the 70&#039;s there was a publication called TEL, Telephone Electronics Line.
Do you know of any online copies of TEL around?
I could kick myself for dumping a pile of issues way back when.
Rick</description>
		<content:encoded><![CDATA[<p>Neat site.<br />
Back in the 70&#8242;s there was a publication called TEL, Telephone Electronics Line.<br />
Do you know of any online copies of TEL around?<br />
I could kick myself for dumping a pile of issues way back when.<br />
Rick</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: dem0nseed (The DMF Crew)</title>
		<link>http://www.phonelosers.org/redbox/comment-page-1/#comment-270071</link>
		<dc:creator>dem0nseed (The DMF Crew)</dc:creator>
		<pubDate>Fri, 17 Aug 2007 13:33:04 +0000</pubDate>
		<guid isPermaLink="false">http://www.phonelosers.org/redbox/#comment-270071</guid>
		<description>I dusted off and tried my redbox outside of a circle k gas station in southwest, Florida and it dumped out 75 cents. I was so excited that I ran away and didnt even try to make a call :)</description>
		<content:encoded><![CDATA[<p>I dusted off and tried my redbox outside of a circle k gas station in southwest, Florida and it dumped out 75 cents. I was so excited that I ran away and didnt even try to make a call :)</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: neco</title>
		<link>http://www.phonelosers.org/redbox/comment-page-1/#comment-259966</link>
		<dc:creator>neco</dc:creator>
		<pubDate>Sun, 22 Jul 2007 12:21:52 +0000</pubDate>
		<guid isPermaLink="false">http://www.phonelosers.org/redbox/#comment-259966</guid>
		<description>&lt;i&gt;yeh red boxes are dead&lt;/i&gt;</description>
		<content:encoded><![CDATA[<p><i>yeh red boxes are dead</i></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Hello.jpg</title>
		<link>http://www.phonelosers.org/redbox/comment-page-1/#comment-172206</link>
		<dc:creator>Hello.jpg</dc:creator>
		<pubDate>Fri, 06 Apr 2007 01:57:48 +0000</pubDate>
		<guid isPermaLink="false">http://www.phonelosers.org/redbox/#comment-172206</guid>
		<description>YakBak came out when i was about 12 and i never paid for calls again, i bought the more expensive one with a three sound memory, and a bucketload of distorion effects and silly sounds, tho simple this worked tons better then the homemade boxes my friends made.

And it worked for almost a decade.</description>
		<content:encoded><![CDATA[<p>YakBak came out when i was about 12 and i never paid for calls again, i bought the more expensive one with a three sound memory, and a bucketload of distorion effects and silly sounds, tho simple this worked tons better then the homemade boxes my friends made.</p>
<p>And it worked for almost a decade.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Crusader</title>
		<link>http://www.phonelosers.org/redbox/comment-page-1/#comment-148443</link>
		<dc:creator>Crusader</dc:creator>
		<pubDate>Mon, 26 Mar 2007 20:56:24 +0000</pubDate>
		<guid isPermaLink="false">http://www.phonelosers.org/redbox/#comment-148443</guid>
		<description>Hey Mikey, you know that you can snip a few wires in the back of the phone that has a muted mouthpiece and you will be abble to use it. Look around on www.hellboundhackers.org in the articles and there are other good ones.</description>
		<content:encoded><![CDATA[<p>Hey Mikey, you know that you can snip a few wires in the back of the phone that has a muted mouthpiece and you will be abble to use it. Look around on <a href="http://www.hellboundhackers.org" rel="nofollow">http://www.hellboundhackers.org</a> in the articles and there are other good ones.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Jake</title>
		<link>http://www.phonelosers.org/redbox/comment-page-1/#comment-114125</link>
		<dc:creator>Jake</dc:creator>
		<pubDate>Sun, 11 Mar 2007 19:59:28 +0000</pubDate>
		<guid isPermaLink="false">http://www.phonelosers.org/redbox/#comment-114125</guid>
		<description>Rat Shack apparently hasn&#039;t sold parts in years.  No crystals, no dialers, no redb0xx0rz.  I&#039;d suggest other sources.</description>
		<content:encoded><![CDATA[<p>Rat Shack apparently hasn&#8217;t sold parts in years.  No crystals, no dialers, no redb0xx0rz.  I&#8217;d suggest other sources.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Joe Maahma</title>
		<link>http://www.phonelosers.org/redbox/comment-page-1/#comment-48310</link>
		<dc:creator>Joe Maahma</dc:creator>
		<pubDate>Thu, 22 Feb 2007 06:52:56 +0000</pubDate>
		<guid isPermaLink="false">http://www.phonelosers.org/redbox/#comment-48310</guid>
		<description>Nice info! Too bad red boxes haven&#039;t worked for years.</description>
		<content:encoded><![CDATA[<p>Nice info! Too bad red boxes haven&#8217;t worked for years.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Mikey</title>
		<link>http://www.phonelosers.org/redbox/comment-page-1/#comment-8193</link>
		<dc:creator>Mikey</dc:creator>
		<pubDate>Sun, 28 Jan 2007 17:04:34 +0000</pubDate>
		<guid isPermaLink="false">http://www.phonelosers.org/redbox/#comment-8193</guid>
		<description>Sadly In Toronto all the Bell pay phones mute the mouth piece.</description>
		<content:encoded><![CDATA[<p>Sadly In Toronto all the Bell pay phones mute the mouth piece.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Mike</title>
		<link>http://www.phonelosers.org/redbox/comment-page-1/#comment-2010</link>
		<dc:creator>Mike</dc:creator>
		<pubDate>Sat, 13 Jan 2007 03:15:27 +0000</pubDate>
		<guid isPermaLink="false">http://www.phonelosers.org/redbox/#comment-2010</guid>
		<description>Great info, well writen!
I didn&#039;t know if red boxes were still around.
thank you!

Mike</description>
		<content:encoded><![CDATA[<p>Great info, well writen!<br />
I didn&#8217;t know if red boxes were still around.<br />
thank you!</p>
<p>Mike</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: ahmed jamoussi</title>
		<link>http://www.phonelosers.org/redbox/comment-page-1/#comment-522</link>
		<dc:creator>ahmed jamoussi</dc:creator>
		<pubDate>Mon, 08 Jan 2007 15:42:38 +0000</pubDate>
		<guid isPermaLink="false">http://www.phonelosers.org/redbox/#comment-522</guid>
		<description>How can i build a blue box to generate 2600mhz tone?</description>
		<content:encoded><![CDATA[<p>How can i build a blue box to generate 2600mhz tone?</p>
]]></content:encoded>
	</item>
</channel>
</rss>
