<?xml version="1.0" encoding="UTF-8"?>
<!-- generator="wordpress/2.2" -->
<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/"
	>

<channel>
	<title>NIrving</title>
	<link>http://www.nirving.com</link>
	<description>I said Stroke not Poke</description>
	<pubDate>Thu, 08 May 2008 02:41:49 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.2</generator>
	<language>en</language>
			<item>
		<title>Watch the BBC iPlayer outside of the UK</title>
		<link>http://www.nirving.com/2008/05/08/watch-the-bbc-iplayer-outside-of-the-uk/</link>
		<comments>http://www.nirving.com/2008/05/08/watch-the-bbc-iplayer-outside-of-the-uk/#comments</comments>
		<pubDate>Thu, 08 May 2008 02:41:49 +0000</pubDate>
		<dc:creator>nirving</dc:creator>
		
		<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.nirving.com/2008/05/08/watch-the-bbc-iplayer-outside-of-the-uk/</guid>
		<description><![CDATA[After a morning of tinkering I have managed to get the BBC iPlayer to work without using a web proxy for the browser, which means that you can go to one URL and view the BBC Videos for the past week.
It still requires a proxy, but this is only for the backend server and all [...]]]></description>
			<content:encoded><![CDATA[<p>After a morning of tinkering I have managed to get the BBC iPlayer to work without using a web proxy for the browser, which means that you can go to one URL and view the BBC Videos for the past week.</p>
<p>It still requires a proxy, but this is only for the backend server and all connections are over your normal ISP connection and not via my proxy, so you get the videos as fast as your ISP can serve them.</p>
<p>Now not sure of the legality of it all and not sure how long the UK proxy will stay alive, but it works and now I can catch up with the BBC Programmes over here in Australia.</p>
<p>The link is <a href="http://www.darkedges.com/proxy/curl.php" rel="nofollow" target="_blank">www.darkedges.com/proxy/curl.php<img src="http://forums.whirlpool.net.au/im/extlink.gif" align="top" border="0" vspace="2" width="6" height="6" /></a> and is a little slow, but stay with it as it does work.</p>
<p>Just found an issue with Parental Guidance, but should not take too long to figure out.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.nirving.com/2008/05/08/watch-the-bbc-iplayer-outside-of-the-uk/feed/</wfw:commentRss>
		</item>
		<item>
		<title>can you crack the code???</title>
		<link>http://www.nirving.com/2008/03/30/can-you-crack-the-code/</link>
		<comments>http://www.nirving.com/2008/03/30/can-you-crack-the-code/#comments</comments>
		<pubDate>Sun, 30 Mar 2008 12:35:28 +0000</pubDate>
		<dc:creator>nirving</dc:creator>
		
		<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.nirving.com/2008/03/30/can-you-crack-the-code/</guid>
		<description><![CDATA[goto  http://www.worstpreviews.com/headline.php?id=3258 and crack the first message.
]]></description>
			<content:encoded><![CDATA[<p>goto  <a href="http://www.worstpreviews.com/headline.php?id=3258">http://www.worstpreviews.com/headline.php?id=3258</a> and crack the first message.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.nirving.com/2008/03/30/can-you-crack-the-code/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Batch Code Formatting using Eclipse Code Formatter, but without Eclipse.</title>
		<link>http://www.nirving.com/2007/06/01/batch-code-formatting-using-eclipse-code-formatter-but-without-eclipse/</link>
		<comments>http://www.nirving.com/2007/06/01/batch-code-formatting-using-eclipse-code-formatter-but-without-eclipse/#comments</comments>
		<pubDate>Fri, 01 Jun 2007 00:08:22 +0000</pubDate>
		<dc:creator>nirving</dc:creator>
		
		<category><![CDATA[J2EE]]></category>

		<guid isPermaLink="false">http://www.nirving.com/2007/06/01/batch-code-formatting-using-eclipse-code-formatter-but-without-eclipse/</guid>
		<description><![CDATA[I have been trying to find a decent code formatting solution for a project I am doing with NetBeans. I tried Jalopy, but it could not match the power of the Code Formatte within Eclipse. I then found that some helpful chappy had made it possible to do Batch Code Formatting using Eclipse from the [...]]]></description>
			<content:encoded><![CDATA[<p>I have been trying to find a decent code formatting solution for a project I am doing with NetBeans. I tried Jalopy, but it could not match the power of the Code Formatte within Eclipse. I then found that some helpful chappy had made it possible to do Batch Code Formatting using Eclipse from the command line. This would not do for what I wanted to do, so I looked at the source code and found that with some tweaking I could run this without having the Eclipse executable, only the core JARs. After that discovery I thought this would be a nice Ant Task and so I made a fairly simple one, which works for what I want to do.</p>
<p>You can download the code and JAR from <a href="http://www.darkedges.com/java/ant/JavaCodeFormatter.zip">http://www.darkedges.com/java/ant/JavaCodeFormatter.zip</a>  and use it in your Ant build file as follows.</p>
<p><code>&lt;taskdef name="jcf" classname="com.darkedges.ant.JavaCodeFormatterTask" classpathref="jcf.class.path" /&gt;<br />
&lt;jcf config="config/config.xml" verbose="true"&gt;<br />
&lt;fileset dir="src" includes="**/*.java" /&gt;<br />
&lt;/jcf&gt;</code></p>
<p>You can enable verbose and quiet mode by setting <code>verbose="true"</code> or <code>quiet="true"</code>.</p>
<p>Now I am not a great Ant Task writer, so please be gentle on my code, and I had to change 2 lines of code as I couldnot figure out how to initialise the <code>Platform </code>Object, so perhaps a bright spark can take what I have done and make it better.</p>
<p>One thing I would like to see is the Code Formatter only saving changes if there has been some code format changes, as otherwise Ant will recompile your code base again. Oh and there is also a Command Line version there too, I am just too busy to document this all at present</p>
]]></content:encoded>
			<wfw:commentRss>http://www.nirving.com/2007/06/01/batch-code-formatting-using-eclipse-code-formatter-but-without-eclipse/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Nerd Score</title>
		<link>http://www.nirving.com/2007/03/19/nerd-score/</link>
		<comments>http://www.nirving.com/2007/03/19/nerd-score/#comments</comments>
		<pubDate>Sun, 18 Mar 2007 20:57:26 +0000</pubDate>
		<dc:creator>nirving</dc:creator>
		
		<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.nirving.com/2007/03/19/nerd-score/</guid>
		<description><![CDATA[
]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.nerdtests.com/ft_nq.php?im"><img src="http://www.nerdtests.com/images/ft/nq.php?val=1678" alt="I am nerdier than 59% of all people. Are you nerdier? Click here to find out!" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.nirving.com/2007/03/19/nerd-score/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Tiger Balm can be used for what?</title>
		<link>http://www.nirving.com/2007/02/05/tiger-balm-can-be-used-for-what/</link>
		<comments>http://www.nirving.com/2007/02/05/tiger-balm-can-be-used-for-what/#comments</comments>
		<pubDate>Mon, 05 Feb 2007 02:43:11 +0000</pubDate>
		<dc:creator>nirving</dc:creator>
		
		<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.nirving.com/2007/02/05/tiger-balm-can-be-used-for-what/</guid>
		<description><![CDATA[My future sister in law just came back from a business trip to Hong Kong. Since I get a lot of aches and pain with my feet I use a lot of Tiger Balm to help out. However the red version stains the sheets, so when she saw the white version and was told it [...]]]></description>
			<content:encoded><![CDATA[<p>My future sister in law just came back from a business trip to Hong Kong. Since I get a lot of aches and pain with my feet I use a lot of Tiger Balm to help out. However the red version stains the sheets, so when she saw the white version and was told it does not stain she brought me one.<br />
As I was reading the packaging I read out what could be sooved by the miracle product from the mystic east. &#8220;Headaches, stuffy nose, insect bites, itchiness, muscular aches and pains, sprains and flatulence. Apply Tiger Balm gently on the affected area.&#8221; Yes you have read correctly, &#8220;<strong>flatulence</strong>&#8220;. Then I began to wonder, where on my body do I apply this to solve this problem? I know it burns like hell when it heats up and there is no way I am spreading that around that area.<br />
for those doubters, take a look @</p>
<p><a href="http://www.nirving.com/wp-content/uploads/2007/02/tigerbalm-closeup.gif" title="Tiger Balm - Close Up"><img src="http://www.nirving.com/wp-content/uploads/2007/02/tigerbalm-closeup.gif" alt="Tiger Balm - Close Up" /></a><br />
<a href="http://www.nirving.com/wp-content/uploads/2007/02/tigerbalm.gif" title="Tiger Balm"><img src="http://www.nirving.com/wp-content/uploads/2007/02/tigerbalm.gif" alt="Tiger Balm" /></a><br />
After some digging around I found out how to apply this for flatulence</p>
<blockquote><p>Massage Tiger Balm into your tummy then relax with a warm, moist towel covering your stomach and abdomen. Repeat the process when the towel cools down.</p></blockquote>
<p>@ <a href="http://www.medekit.com/controller/Info/page/tiger-balm/Tig%3C/a%3EerBalm-productfocusfortravelfirstaid.html">http://www.medekit.com/controller/Info/page/tiger-balm/TigerBalm-productfocusfortravelfirstaid.htm</a></p>
<p>Also</p>
<blockquote><p>Hello, I was on a forum and somebody mentioned that it says on your site at the bottom for What is Tiger Balm used for: &#8220;It is also effective in relieving headaches due to tension; itching due to mosquito bites; and flatulence.&#8221; http://www.tigerbalm.com/02_whatis.htmI was just wondering if you could tell me how it relieves  flatulence, and the procedure to use that fix? Everyone knows how it&#8217;s used for muscle pains and insect bites, but the flatulence is a new one.</p>
<p>Thanks alot,</p>
<p>Paul, a loyal Tiger Balm user</p>
<p>Dear Paul</p>
<p>Sorry for the belated reply. The answer to your question is per below.</p>
<p>Mint Oil and Menthol are aromatic carminatives. Tiger Balm contain Mint Oil and menthol, which have shown to have beneficial effect on gastrointestinal function. After being applied on the affected area topically, the mint&#8217;s carminative properties work by relaxing the esophageal sphincter though a local action and thus allowing gas pressure to escape the stomach. ( Reference: Peppermint Monograph, Herbal Companion to AHFS DI 2001 published by American Society of Health-System Pharmacists Inc USA ).</p>
<p>Hope the above helps.</p>
<p>Thank you for your trust and support in Tiger Balm.</p>
<p>Rgds<br />
Haw Par Healthcare Ltd</p>
<p>Tony Yong<br />
Regional Manager</p></blockquote>
<p>@ <a href="http://forum.kungfumagazine.com/forum/archive/index.php/t-8594.html" target="_blank">http://forum.kungfumagazine.com/forum/archive/index.php/t-8594.html</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.nirving.com/2007/02/05/tiger-balm-can-be-used-for-what/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Seems that my blog has hit my work</title>
		<link>http://www.nirving.com/2007/02/04/seems-that-my-blog-has-hit-my-work/</link>
		<comments>http://www.nirving.com/2007/02/04/seems-that-my-blog-has-hit-my-work/#comments</comments>
		<pubDate>Sat, 03 Feb 2007 23:26:55 +0000</pubDate>
		<dc:creator>nirving</dc:creator>
		
		<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.nirving.com/2007/02/04/seems-that-my-blog-has-hit-my-work/</guid>
		<description><![CDATA[I just received an email from my boss telling the staff about my blog. It seems that he has a Google Web Alert for &#8220;First Point Global&#8221; and that my last post (final email to NAB) was indexed by Google last Friday. So I guess in another week he will get another Web Alert informing [...]]]></description>
			<content:encoded><![CDATA[<p>I just received an email from my boss telling the staff about my blog. It seems that he has a Google Web Alert for &#8220;First Point Global&#8221; and that my last post (final email to NAB) was indexed by Google last Friday. So I guess in another week he will get another Web Alert informing him of this post, and so I am sure the cycle will continue.<br />
It seems that nobody from FPG looked at my blog anyway so I guess all my secret&#8217;s are safe for now, but who knows what the future holds.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.nirving.com/2007/02/04/seems-that-my-blog-has-hit-my-work/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Final email @ NAB</title>
		<link>http://www.nirving.com/2007/01/31/final-email-nab/</link>
		<comments>http://www.nirving.com/2007/01/31/final-email-nab/#comments</comments>
		<pubDate>Wed, 31 Jan 2007 06:15:32 +0000</pubDate>
		<dc:creator>nirving</dc:creator>
		
		<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.nirving.com/2007/01/31/final-email-nab/</guid>
		<description><![CDATA[Hi All,
To those who don&#8217;t know my journey to today, let me tell you a story. Unlike most stories there are no heros, villians or magic pies, just little old boring me and my dream. I left the UK on May 30th 2003 to start my epic journey down under, to live with my fiancee [...]]]></description>
			<content:encoded><![CDATA[<p>Hi All,<br />
To those who don&#8217;t know my journey to today, let me tell you a story. Unlike most stories there are no heros, villians or magic pies, just little old boring me and my dream. I left the UK on May 30th 2003 to start my epic journey down under, to live with my fiancee Narelle, which would take me from London to New York, Miama, San Jose (Costa Rica), Dallas, Los Angeles, Auckland and finally Melbourne in around 5 days. I was on a mission to replace our Estonian Development Team with that of a Costa Rican Development Team and had to hire 5 local J2EE developers in the course of a weekend and train them remotely once I landed in Melbourne.</p>
<p>Within 2 weeks of landing in Melbourne I was called back to Costa Rica, this time for a little longer, but this journey almost ruined my new life with my Fiancee as I worked too hard to hand over my role to a guy called Edgar. We communicate mainly through broken English (he was not my choice  for tech lead, but he was the best of a bad bunch) and the ancient art of doodles and at the end I was happy to hand the reigns over to this guy and  start my new life in Australia.</p>
<p>I then spent the next 9 months trying to earn a living, as working on a Working Holiday Visa is a little too easy for an employee to say &#8220;Yeah your great and would suit our project nicely, but we are looking for 3 months to perm.&#8221; So instead I worked as</p>
<ul>
<li>a delivery guy for Ikea (lasted 4 hours until my driver drove the hire van through a bridge just a tad too short for the roof)</li>
<li>a call center operator for Telstra Country Wide to gain email addresses.</li>
<li>a tele-marketeer for AAPT (sorry if you got a call from, but I needed to earn a crust)</li>
<li>a tele-marketerr for Fuji Xerox.</li>
</ul>
<p>Eventually I got an interview for the National Australia Bank, where they wanted to employee me as an Analyst Programmer to develop Perl Scripts to nterface into SAP, whilst the rest of the team worked on implementing SAP. I was optimistic at first, seemed to handle the Interview correctly and then when I was finished I was escorted out one of the Interviewers said &#8220;Enjoy the rest of your stay in Australia&#8221;. I was gutted, but eventually I got a call back to say  the job was mine, but I needed to pass some probabity checks. 3 weeks later I was working for the bank in a short term contract (I think I had just over 2 months left on my visa) developing Perl Scripts to convert SAP Data into LDAP for Central ID.</p>
<p>All was going well and then it got better when I met Tristan, as he had to go to the UK to help with IB UK for some reason. I was to take over some of the work he could not do in the J2EE space, and I got my first real development gig, extending HelpDesk and USRPA. At first Tristan was not happy that I was walking in his foot steps, but after some crazy Kung-Fu moves I won him over, and then the next day he left the project to come and work for CBIB. Needless to say during this time I needed to extend my stay and got a Business Visa with the support of my Agency and the bank because&lt; without me apparently the sky would fall down, or something similiar.</p>
<p>3 changes of management later, 2, floor and 1 building move I was offered the opportunity to work in the hallowed CBIB project. It was considered the  Holy Grail of jobs in the bank and everybody wanted to be with CBIB. I umm&#8217;d and arr&#8217;d for a while as I did not want to leave Central ID as it was  a great team, but for me it was the best choice. That was nearly 2 years of my life in that team.</p>
<p>The rest you all know, and if you don&#8217;t I think I have said enough about my beginnings with the Bank. Needless to say I have had the opportunity to  work with some great people, learnt some new tricks and even taught a couple myself. I think the Wiki is testiment to my powers, which is one of  the inventions I wished Central ID had and is a great way to share knowledge.</p>
<p>Now there are a number of great people working on this project and within the Bank itself and if I was to name names I think it would take too long  and be of little point. Those people know who they are and I tip my cap in honour of knowing you, the rest I give my thanks for letting me part of a  great company. I am moving on to greener pastures and a couple of you may know the name of First Point Global as a number of them worked on this  project.</p>
<p>It has been an experience for me, some highs and lows and I would invite you to Madissons opposite 500 Bourke Street from 4pm, as my old team has  invited me out for some drinks. I cannot afford to buy any drinks due to reasons beyond my control, but you are most welcome as I believe Happy Hour  is around that time.</p>
<p>For those wanting to keep in contact my email address is <a href="mailto:nirving@darkedges.com" class="moz-txt-link-abbreviated">nirving@darkedges.com</a> and for those wanting to ask me TAM questions it is <a href="mailto:nicholas.z.irving@nab.com.au" class="moz-txt-link-abbreviated">nicholas.z.irving@nab.com.au</a></p>
<p>All the best for the future of the projects you work on.</p>
<p>Nicholas Irving<br />
<a href="mailto:nirving@darkedges.com" class="moz-txt-link-abbreviated">nirving@darkedges.com</a></p>
<p>P.S. I can tell you the secrets of how to get 100% first time on LMS, but it is gonna cost you as no matter how many times they upgrade it I always find a way to beat it.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.nirving.com/2007/01/31/final-email-nab/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Whiz Kids - 80&#8217;s Computer Hackers @ it best</title>
		<link>http://www.nirving.com/2007/01/31/whiz-kids-80s-computer-hackers-it-best/</link>
		<comments>http://www.nirving.com/2007/01/31/whiz-kids-80s-computer-hackers-it-best/#comments</comments>
		<pubDate>Wed, 31 Jan 2007 06:15:10 +0000</pubDate>
		<dc:creator>nirving</dc:creator>
		
		<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.nirving.com/2007/01/31/whiz-kids-80s-computer-hackers-it-best/</guid>
		<description><![CDATA[I was riding up from Anglesea over the weekend when I was talking with Relle about some old shows that I loved to watch in the 80&#8217;s. One in particular entered my head as being something I would like to see again and I could not remember the name of it. All I could remember [...]]]></description>
			<content:encoded><![CDATA[<p>I was riding up from Anglesea over the weekend when I was talking with Relle about some old shows that I loved to watch in the 80&#8217;s. One in particular entered my head as being something I would like to see again and I could not remember the name of it. All I could remember was that it involved kids solving crime using computers, how hard could that be to find?</p>
<p>First thing I found was an 80&#8217;s tv website over @  <a href="http://www.series-80.net/us/" target="_blank">http://www.series-80.net/us/</a> with has over 123 TV Shows from the 80&#8217;s. Then I had to review the shows it had, and found other classics like The A Team, Street Hawk, The Fall Guy and Air Wolf. Towards the end I found what I was looking for Whiz Kids.</p>
<p>It is desrribed as &#8220;Richie, Ham, Jeremy and Alice are teenagers living outside Los Angeles. They are also computer hackers who worked as amateur detectives in their spare time. Llewellen Farley is a reporter who is a source for the kids and sometimes asks them for help on stories he is writing. Farley&#8217;s brother-in-law is Lieutenant Quinn who also provides the kids with help.&#8221; So next on my travels was to find a video of it, and I found some on You Tube, mainly shot from a video camera in front of the TV, and so in desperation I wanted to find the episodes online. Thank god for <a href="http://www.iisohunt.com/" target="_blank">isoHunt</a> as it had <a href="http://www.isohunt.com/torrents/?ihq=whiz+kids" target="_blank">1 guy</a> with a torrent to the episodes, but @ over 7 gig in size it is a little to large to download in one hit.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.nirving.com/2007/01/31/whiz-kids-80s-computer-hackers-it-best/feed/</wfw:commentRss>
		</item>
		<item>
		<title>The World&#8217;s Most Expensive Coffee is From Beans Cycled Through an Indonesian  Monkey&#8217;s Digestive Sys</title>
		<link>http://www.nirving.com/2007/01/31/the-worlds-most-expensive-coffee-is-from-beans-cycled-through-an-indonesian-monkeys-digestive-sys/</link>
		<comments>http://www.nirving.com/2007/01/31/the-worlds-most-expensive-coffee-is-from-beans-cycled-through-an-indonesian-monkeys-digestive-sys/#comments</comments>
		<pubDate>Tue, 30 Jan 2007 19:49:32 +0000</pubDate>
		<dc:creator>nirving</dc:creator>
		
		<category><![CDATA[Interweb]]></category>

		<guid isPermaLink="false">http://www.nirving.com/2007/01/31/the-worlds-most-expensive-coffee-is-from-beans-cycled-through-an-indonesian-monkeys-digestive-sys/</guid>
		<description><![CDATA[Kope Luwak-gourmet coffee from Indonesia from beans digested by an animal-Truth!:
 Kopi Luwak does exist, is very expensive, and is made from coffee beans passed through the digestive system of an Indonesian animal, but it&#8217;s more like a cat than a monkey.  According to a feature article by the Manila Coffee House, which sells [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.truthorfiction.com/rumors/k/kopiluwak.htm">Kope Luwak-gourmet coffee from Indonesia from beans digested by an animal-Truth!</a>:</p>
<blockquote><p> Kopi Luwak does exist, is very expensive, and is made from coffee beans passed through the digestive system of an Indonesian animal, but it&#8217;s more like a cat than a monkey.  According to a feature article by the Manila Coffee House, which sells the stuff, the people who harvest the digested beans don&#8217;t really have to pick through cat litter to get it.  The animal processes the beans and excretes them whole, unscratched, and without dung.
<p>  The animal is a palm civet, a dark brown tree-dwelling cat-like creature found throughout Southeast Asia. The scientific name is paradoxurus hermaphroditus.  </p>
<p> According to the Manila Coffee House, the palm civet just happens to like to ingest the ripest and reddest coffee beans, which also happen to be the ones best for brewing.  The cat eats the outer covering of the beans in the same way that is accomplished by de-pulping machines.  Something happens to the beans in the journey through the cat&#8217;s intestines that gives it a flavor that is celebrated by coffee drinkers. </p>
<p>At this point, most of the beans are purchased by Japanese buyers.</p>
</blockquote>
<p> Well I never. If this takes up in Melbourne then I guess that there would be no problems with people drinking recycled water. I guess this is something Bracksie will pull out to say that we should not do this, as who wants to drink water that has gone through somebdoy 9 times? Oh I guess that would be me as I come from London, where the water is recycled and I have had no side effect yet!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.nirving.com/2007/01/31/the-worlds-most-expensive-coffee-is-from-beans-cycled-through-an-indonesian-monkeys-digestive-sys/feed/</wfw:commentRss>
		</item>
		<item>
		<title>AIM Phone Line - +1 310 601 5826</title>
		<link>http://www.nirving.com/2007/01/24/aim-phone-line-1-310-601-5826/</link>
		<comments>http://www.nirving.com/2007/01/24/aim-phone-line-1-310-601-5826/#comments</comments>
		<pubDate>Tue, 23 Jan 2007 19:36:29 +0000</pubDate>
		<dc:creator>nirving</dc:creator>
		
		<category><![CDATA[VOIP]]></category>

		<category><![CDATA[Interweb]]></category>

		<guid isPermaLink="false">http://www.nirving.com/2007/01/24/aim-phone-line-1-310-601-5826/</guid>
		<description><![CDATA[Free Internet Phone Service From AIM Phoneline - Free Local Phone Number:
I got me one of those phone numbers that allows anybody to call me on +1 310 601 5826 and talk to me. Wonder if I will get a call from the President of the United States congratulating me on this new number. Or [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.aimphoneline.com/index.adp?promo=778961&#038;page=welcome">Free Internet Phone Service From AIM Phoneline - Free Local Phone Number</a>:<br />
I got me one of those phone numbers that allows anybody to call me on +1 310 601 5826 and talk to me. Wonder if I will get a call from the President of the United States congratulating me on this new number. Or could I get a missed dial call from somebody trying to dump their partner of 3 years because they discovered they were sleeping with Elmo (not the the doll but the voice actor).<br />
I don&#8217;t mind what you say it is all in good fun.</p>
<blockquote />
]]></content:encoded>
			<wfw:commentRss>http://www.nirving.com/2007/01/24/aim-phone-line-1-310-601-5826/feed/</wfw:commentRss>
		</item>
	</channel>
</rss>
