<?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>LegHumped.com&#187; Technology &#187; Leghumped</title>
	<atom:link href="http://www.leghumped.com/blog/category/technology/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.leghumped.com/blog</link>
	<description>Coding snippets, tutorials and procrastinations about C#, Java and Linux.</description>
	<lastBuildDate>Sun, 30 May 2010 14:00:46 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0</generator>
		<item>
		<title>Idiots Guide to Installing PHP</title>
		<link>http://www.leghumped.com/blog/2008/01/24/idiots-guide-to-installing-php/</link>
		<comments>http://www.leghumped.com/blog/2008/01/24/idiots-guide-to-installing-php/#comments</comments>
		<pubDate>Thu, 24 Jan 2008 10:30:33 +0000</pubDate>
		<dc:creator>Harry Jennerway</dc:creator>
				<category><![CDATA[Programming]]></category>
		<category><![CDATA[Technology]]></category>
		<category><![CDATA[dreamhost]]></category>
		<category><![CDATA[how-to]]></category>
		<category><![CDATA[installation script]]></category>
		<category><![CDATA[installing php]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[php]]></category>
		<category><![CDATA[putty]]></category>
		<category><![CDATA[shell scripts]]></category>

		<guid isPermaLink="false">http://leghumped.com/blog/2008/01/24/idiots-guide-to-installing-php/</guid>
		<description><![CDATA[If you have hosting with Dreamhost or any other host which gives you a shell account, you can install your own custom version of PHP. I needed to compile PHP with GMP support for the OpenID login plugin for WordPress, so I spent the whole day tweaking trying to get everything working. There&#39;s a page [...]]]></description>
			<content:encoded><![CDATA[<p>If you have hosting with Dreamhost or any other host which gives you a shell account, you can install your own custom version of PHP. I needed to compile PHP with GMP support for the OpenID login plugin for WordPress, so I spent the whole day tweaking trying to get everything working. There&#39;s a page on <a href="http://wiki.dreamhost.com/Installing_PHP5">Dreamhost&#39;s Wiki</a> which has a script, but it still took me hours to get right. I&#39;ve written a quick guide to help avoid the mistakes which slowed me down.</p>
<ol>
<li>The first thing you need to do is download <a href="http://www.chiark.greenend.org.uk/~sgtatham/putty/">Putty</a> and set it up to connect to your host.</li>
<li>We&#39;re going to create a few shell scripts to install PHP and all the other packages it requires. It&#39;s probably easiest to make your edits in notepad or another text editor, then copy and paste them into Putty by right-clicking. If you just create the files then upload them, there tend to be problems with line breaks and the script doesn&#39;t work.</li>
<li>Start by downloading the <a href="http://leghumped.com/php_prep.sh">preparation script</a> and the <a href="http://leghumped.com/php_inst.sh">installation script</a>. Open them with a text edtitor and change the line <strong>export DOMAIN=&#34;yourdomainhere.com&#34;</strong> to match the domain you&#39;re installing the CGI script on. This should be the directory the domain is served from. Eg&#58; If your site serves files from &#47;home&#47;someone&#47;xyz.com, use xyz.com. The version information may need updating, because I won&#39;t be updating this script.</li>
<li>The first script we need to set up will download the different packages and extract them. Once you&#39;re done editing, hit CTRL+A in your text editor, then copy everything to your clipboard. Create a new file by typing <strong>nano php_prep.sh</strong> at the command prompt.</li>
<li>Paste the contents of your clipboard into the new file by right clicking in Putty, then hit CTRL+O to save the file, then CTRL+X to exit nano. </li>
<li>In *nix you need to make files excutable before you can run them. Do this by typing <strong>chmod +x php_prep.sh</strong></li>
<li>Now we need to set up the script which does the installing. Create a new file by typing <strong>nano php_inst.sh</strong> at the prompt, then copy and paste the contents of your edited php_inst.sh file by right clicking the terminal. Hit CTRL+O, Return, then CTRL+X to save and exit.</li>
<li>Make the file executable by typing <strong>chmod +x php_inst.sh</strong></li>
<li>Now that everything&#39;s set up, we can run the first script by typing <strong>.&#47;php_prep.sh</strong> at the prompt. It might take a while but if there are no errors you should eventually see &#34;Done downloading and unpacking prerequisites&#34;.</li>
<li>Run the installation script using <strong>.&#47;php_inst.sh</strong> . This might take a while to complete, so start solitaire or something.</li>
<li>When everything&#39;s finished, you should see &#34;INSTALL COMPLETE!&#34; and have a shiny new custom version of PHP installed.</li>
<li>If you don&#39;t already have one, create a .htaccess file at the root of your domain. You can do this by typing <strong>nano .htaccess</strong>. Add the following lines&#58;

<div class="wp_syntax"><div class="code"><pre class="apache" style="font-family:monospace;"><span style="color: #00007f;">Options</span> +ExecCGI
<span style="color: #00007f;">AddHandler</span> php-cgi .php
<span style="color: #00007f;">Action</span> php-cgi /cgi-bin/php.cgi</pre></div></div>

</li>
<li>That should be it. If there were no errors, you can test your installation by viewing a PHP file on your site. Hopefully you&#39;ll either see no change, but it&#39;s possible you&#39;ll see a load of errors.</li>
</ol>
<p>If you have problems installing, the <a href="http://discussion.dreamhost.com/">Dreamhost forums</a> might be a good place to ask for help.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.leghumped.com/blog/2008/01/24/idiots-guide-to-installing-php/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>in_array() and implode() for Java</title>
		<link>http://www.leghumped.com/blog/2007/12/20/in_array-and-implode-for-java/</link>
		<comments>http://www.leghumped.com/blog/2007/12/20/in_array-and-implode-for-java/#comments</comments>
		<pubDate>Thu, 20 Dec 2007 14:06:30 +0000</pubDate>
		<dc:creator>Harry Jennerway</dc:creator>
				<category><![CDATA[Programming]]></category>
		<category><![CDATA[Technology]]></category>
		<category><![CDATA[custom method]]></category>
		<category><![CDATA[implode]]></category>
		<category><![CDATA[in array]]></category>
		<category><![CDATA[inarray]]></category>
		<category><![CDATA[in_array]]></category>
		<category><![CDATA[java]]></category>
		<category><![CDATA[java equivalent php]]></category>

		<guid isPermaLink="false">http://leghumped.com/blog/2007/12/20/in_array-and-implode-for-java/</guid>
		<description><![CDATA[I&#39;m still getting to grips with Java, but there a few functions I miss coming from PHP. in_array lacks a Java equivalent, as does the implode function. Here are the equvalent methods in Java&#58; implode&#40;&#41; public static String implode&#40;String&#91;&#93; ary, String delim&#41; &#123; String out = &#34;&#34;; for&#40;int i=0; i&#60;ary.length; i++&#41; &#123; if&#40;i!=0&#41; &#123; out [...]]]></description>
			<content:encoded><![CDATA[<p>I&#39;m still getting to grips with Java, but there a few functions I miss coming from PHP. <em>in_array </em> lacks a Java equivalent, as does the <em>implode</em> function. Here are the equvalent methods in Java&#58;</p>
<p><strong>implode&#40;&#41;</strong></p>

<div class="wp_syntax"><div class="code"><pre class="java" style="font-family:monospace;"><span style="color: #000000; font-weight: bold;">public</span> <span style="color: #000000; font-weight: bold;">static</span> <span style="color: #003399;">String</span> implode<span style="color: #009900;">&#40;</span><span style="color: #003399;">String</span><span style="color: #009900;">&#91;</span><span style="color: #009900;">&#93;</span> ary, <span style="color: #003399;">String</span> delim<span style="color: #009900;">&#41;</span> <span style="color: #009900;">&#123;</span>
    <span style="color: #003399;">String</span> out <span style="color: #339933;">=</span> <span style="color: #0000ff;">&quot;&quot;</span><span style="color: #339933;">;</span>
    <span style="color: #000000; font-weight: bold;">for</span><span style="color: #009900;">&#40;</span><span style="color: #000066; font-weight: bold;">int</span> i<span style="color: #339933;">=</span><span style="color: #cc66cc;">0</span><span style="color: #339933;">;</span> i<span style="color: #339933;">&lt;</span>ary.<span style="color: #006633;">length</span><span style="color: #339933;">;</span> i<span style="color: #339933;">++</span><span style="color: #009900;">&#41;</span> <span style="color: #009900;">&#123;</span>
        <span style="color: #000000; font-weight: bold;">if</span><span style="color: #009900;">&#40;</span>i<span style="color: #339933;">!=</span><span style="color: #cc66cc;">0</span><span style="color: #009900;">&#41;</span> <span style="color: #009900;">&#123;</span> out <span style="color: #339933;">+=</span> delim<span style="color: #339933;">;</span> <span style="color: #009900;">&#125;</span>
        out <span style="color: #339933;">+=</span> ary<span style="color: #009900;">&#91;</span>i<span style="color: #009900;">&#93;</span><span style="color: #339933;">;</span>
    <span style="color: #009900;">&#125;</span>
    <span style="color: #000000; font-weight: bold;">return</span> out<span style="color: #339933;">;</span>
<span style="color: #009900;">&#125;</span></pre></div></div>

<p><strong>in_array&#40;&#41;</strong></p>

<div class="wp_syntax"><div class="code"><pre class="java" style="font-family:monospace;"><span style="color: #000000; font-weight: bold;">public</span> <span style="color: #000000; font-weight: bold;">static</span> <span style="color: #000066; font-weight: bold;">boolean</span> in_array<span style="color: #009900;">&#40;</span><span style="color: #003399;">DefaultListModel</span> haystack, <span style="color: #003399;">String</span> needle<span style="color: #009900;">&#41;</span> <span style="color: #009900;">&#123;</span>
    <span style="color: #000000; font-weight: bold;">for</span><span style="color: #009900;">&#40;</span><span style="color: #000066; font-weight: bold;">int</span> i<span style="color: #339933;">=</span><span style="color: #cc66cc;">0</span><span style="color: #339933;">;</span>i<span style="color: #339933;">&lt;</span>haystack.<span style="color: #006633;">size</span><span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>i<span style="color: #339933;">++</span><span style="color: #009900;">&#41;</span> <span style="color: #009900;">&#123;</span>
        <span style="color: #000000; font-weight: bold;">if</span><span style="color: #009900;">&#40;</span>haystack.<span style="color: #006633;">get</span><span style="color: #009900;">&#40;</span>i<span style="color: #009900;">&#41;</span>.<span style="color: #006633;">toString</span><span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span>.<span style="color: #006633;">equals</span><span style="color: #009900;">&#40;</span>needle<span style="color: #009900;">&#41;</span><span style="color: #009900;">&#41;</span> <span style="color: #009900;">&#123;</span>
            <span style="color: #000000; font-weight: bold;">return</span> <span style="color: #000066; font-weight: bold;">true</span><span style="color: #339933;">;</span>
        <span style="color: #009900;">&#125;</span>
    <span style="color: #009900;">&#125;</span>
    <span style="color: #000000; font-weight: bold;">return</span> <span style="color: #000066; font-weight: bold;">false</span><span style="color: #339933;">;</span>
<span style="color: #009900;">&#125;</span></pre></div></div>

]]></content:encoded>
			<wfw:commentRss>http://www.leghumped.com/blog/2007/12/20/in_array-and-implode-for-java/feed/</wfw:commentRss>
		<slash:comments>7</slash:comments>
		</item>
		<item>
		<title>Limit and Offset clauses in MSSQL</title>
		<link>http://www.leghumped.com/blog/2007/12/09/limit-and-offset-clauses-in-mssql/</link>
		<comments>http://www.leghumped.com/blog/2007/12/09/limit-and-offset-clauses-in-mssql/#comments</comments>
		<pubDate>Sun, 09 Dec 2007 16:23:08 +0000</pubDate>
		<dc:creator>Harry Jennerway</dc:creator>
				<category><![CDATA[Programming]]></category>
		<category><![CDATA[Technology]]></category>

		<guid isPermaLink="false">http://leghumped.com/blog/2007/12/09/limit-and-offset-clauses-in-mssql/</guid>
		<description><![CDATA[Until SQL server 2008&#39;s released, there&#8217;s no easy way to page reults or only show the first n results. I searched around for a while until I found this on MSDN. SELECT TOP limitnumber FROM &#40; SELECT TOP &#40;limitnumber/ offset&#41; * limitnumber&#41; * FROM tablename AS T1 WHERE clauses ORDER BY sortfield DESC&#41; AS T2 [...]]]></description>
			<content:encoded><![CDATA[<p>Until SQL server 2008&#39;s released, there&#8217;s no easy way to page reults or only show the first <em>n</em> results. I searched around for a while until I found this on MSDN.</p>

<div class="wp_syntax"><div class="code"><pre class="sql" style="font-family:monospace;"><span style="color: #993333; font-weight: bold;">SELECT</span> TOP limitnumber
    <span style="color: #993333; font-weight: bold;">FROM</span> <span style="color: #66cc66;">&#40;</span>
        <span style="color: #993333; font-weight: bold;">SELECT</span> TOP <span style="color: #66cc66;">&#40;</span>limitnumber<span style="color: #66cc66;">/</span> offset<span style="color: #66cc66;">&#41;</span> <span style="color: #66cc66;">*</span> limitnumber<span style="color: #66cc66;">&#41;</span> <span style="color: #66cc66;">*</span> 
        <span style="color: #993333; font-weight: bold;">FROM</span> tablename 
            <span style="color: #993333; font-weight: bold;">AS</span> T1 
            <span style="color: #993333; font-weight: bold;">WHERE</span> clauses 
            <span style="color: #993333; font-weight: bold;">ORDER</span> <span style="color: #993333; font-weight: bold;">BY</span> sortfield <span style="color: #993333; font-weight: bold;">DESC</span><span style="color: #66cc66;">&#41;</span> 
        <span style="color: #993333; font-weight: bold;">AS</span> T2 
        <span style="color: #993333; font-weight: bold;">ORDER</span> <span style="color: #993333; font-weight: bold;">BY</span> sortfield <span style="color: #993333; font-weight: bold;">ASC</span>;</pre></div></div>

<p>The <em>LIMIT</em> and <em>OFFSET</em> values are the same as in PostgreSQL or MySQL. <em>limitnumber</em> is the number to show per page, and <em>offset</em> is the starting row.</p>
<p><a href="http://msdn.microsoft.com/library/default.asp?url=/library/en-us/dnpag/html/scalenethowto05.asp" class="rmore">MSDN Article</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.leghumped.com/blog/2007/12/09/limit-and-offset-clauses-in-mssql/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>More Space on Your iPod Touch</title>
		<link>http://www.leghumped.com/blog/2007/11/27/more-space-on-your-ipod-touch/</link>
		<comments>http://www.leghumped.com/blog/2007/11/27/more-space-on-your-ipod-touch/#comments</comments>
		<pubDate>Tue, 27 Nov 2007 14:55:03 +0000</pubDate>
		<dc:creator>Harry Jennerway</dc:creator>
				<category><![CDATA[Technology]]></category>

		<guid isPermaLink="false">http://leghumped.com/blog/2007/11/27/more-space-on-your-ipod-touch/</guid>
		<description><![CDATA[I bought a shiny new iPod touch, and after unlocking it to install custom applications, I soon filled the 300Mb applications partition. If you need more than 300Mb for apps (which you more than likely will if you install more than a couple), you can create a sym link to the music partition. SSH into [...]]]></description>
			<content:encoded><![CDATA[<p>I bought a shiny new iPod touch, and after <a href="http://www.touchdev.net/wiki/Jailbreak_1.1.2">unlocking it</a> to install custom applications, I soon filled the 300Mb applications partition. If you need more than 300Mb for apps (which you more than likely will if you install more than a couple), you can create a sym link to the music partition.</p>
<ol>
<li>SSH into your iPod using a client such as <a href="http://www.chiark.greenend.org.uk/~sgtatham/putty/">Putty</a> with the iPod&#39;s IP address, user&#58; root, password&#58; alpine.</li>
<li>Move the applications folder to /private/var/Applications by typing <strong>mv /Applications /private/var/Applications</strong></li>
<li>Change directory to <strong>/</strong> by typing <strong>cd /</strong></li>
<li>Create a link to the new applications directory&#58; <strong>ln -s /private/var/Applications Applications</strong></li>
<li>Now when you list the directory using <strong>ls -la</strong>, you should see something like <strong>lrwxr-xr-x  1 root admin   25 Oct 12 22:31 Applications -> /private/var/Applications</strong></li>
<li>Reboot your iPhone and fill up yet more space with useless applications&#33;</li>
</ol>
<p>&#91;Via&#58; <a href="http://forums.macrumors.com/showthread.php?t=367850" class="rmore">MacRumours</a>&#93;</p>
]]></content:encoded>
			<wfw:commentRss>http://www.leghumped.com/blog/2007/11/27/more-space-on-your-ipod-touch/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Inserting Multiple Rows with MSSQL</title>
		<link>http://www.leghumped.com/blog/2007/11/14/inserting-multiple-rows-with-mssql/</link>
		<comments>http://www.leghumped.com/blog/2007/11/14/inserting-multiple-rows-with-mssql/#comments</comments>
		<pubDate>Wed, 14 Nov 2007 20:34:55 +0000</pubDate>
		<dc:creator>Harry Jennerway</dc:creator>
				<category><![CDATA[Programming]]></category>
		<category><![CDATA[Technology]]></category>

		<guid isPermaLink="false">http://leghumped.com/blog/2007/11/14/inserting-multiple-rows-with-mssql/</guid>
		<description><![CDATA[I&#39;ve been working on adding support for Microsoft SQL Server to iZeit, and there are a few things I&#39;ve noticed. Firstly, whereas you can addin multiple rows in MySQL or Postgres by using INSERT INTO tablename &#40;field1,field2,field3&#41; VALUES &#40;r1c1, r1c2, r1c3&#41;, &#40;r2c1,r2c2,r2c3&#41; MSSQL fails and throws an error. Instead, you have to use UNION ALL, [...]]]></description>
			<content:encoded><![CDATA[<p>I&#39;ve been working on adding support for Microsoft SQL Server to <a href="http://www.izeit.nu">iZeit</a>, and there are a few things I&#39;ve noticed. Firstly, whereas you can addin multiple rows in MySQL or Postgres by using</p>

<div class="wp_syntax"><div class="code"><pre class="sql" style="font-family:monospace;"><span style="color: #993333; font-weight: bold;">INSERT</span> <span style="color: #993333; font-weight: bold;">INTO</span> tablename <span style="color: #66cc66;">&#40;</span>field1<span style="color: #66cc66;">,</span>field2<span style="color: #66cc66;">,</span>field3<span style="color: #66cc66;">&#41;</span> <span style="color: #993333; font-weight: bold;">VALUES</span> <span style="color: #66cc66;">&#40;</span>r1c1<span style="color: #66cc66;">,</span> r1c2<span style="color: #66cc66;">,</span> r1c3<span style="color: #66cc66;">&#41;</span><span style="color: #66cc66;">,</span> <span style="color: #66cc66;">&#40;</span>r2c1<span style="color: #66cc66;">,</span>r2c2<span style="color: #66cc66;">,</span>r2c3<span style="color: #66cc66;">&#41;</span></pre></div></div>

<p>MSSQL fails and throws an error. Instead, you have to use UNION ALL, which I always thought was more resource intensive.</p>

<div class="wp_syntax"><div class="code"><pre class="sql" style="font-family:monospace;"><span style="color: #993333; font-weight: bold;">INSERT</span> <span style="color: #993333; font-weight: bold;">INTO</span> tablename <span style="color: #66cc66;">&#40;</span>field1<span style="color: #66cc66;">,</span>field2<span style="color: #66cc66;">,</span>field3<span style="color: #66cc66;">&#41;</span> <span style="color: #993333; font-weight: bold;">SELECT</span> <span style="color: #66cc66;">&#40;</span>r1c1<span style="color: #66cc66;">,</span> r1c2<span style="color: #66cc66;">,</span> r1c3<span style="color: #66cc66;">&#41;</span> <span style="color: #993333; font-weight: bold;">UNION</span> <span style="color: #993333; font-weight: bold;">ALL</span> <span style="color: #993333; font-weight: bold;">SELECT</span> <span style="color: #66cc66;">&#40;</span>r2c1<span style="color: #66cc66;">,</span>r2c2<span style="color: #66cc66;">,</span>r2c3<span style="color: #66cc66;">&#41;</span></pre></div></div>

<p>The second major annoyance is that MSSQL doesn&#39;t like ORDER BY clauses with text fields. Understandably you can&#39;t sort a field containing an image, but why can&#39;t it sort a text field alphabetically? One thing I still haven&#39;t found a workaround for is the LIMIT and OFFSET clauses, which MSSQL doesn&#39;t support.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.leghumped.com/blog/2007/11/14/inserting-multiple-rows-with-mssql/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Britons Send 4Billion Texts per Week</title>
		<link>http://www.leghumped.com/blog/2007/11/05/britons-send-4billion-texts-per-week/</link>
		<comments>http://www.leghumped.com/blog/2007/11/05/britons-send-4billion-texts-per-week/#comments</comments>
		<pubDate>Mon, 05 Nov 2007 09:28:55 +0000</pubDate>
		<dc:creator>Harry Jennerway</dc:creator>
				<category><![CDATA[Latest news]]></category>
		<category><![CDATA[Technology]]></category>

		<guid isPermaLink="false">http://leghumped.com/blog/2007/11/05/britons-send-4billion-texts-per-week/</guid>
		<description><![CDATA[Britons are now sending more then 4 billion texts weekly. That&#39;s more than were sent in the whole of 1999 and 25% more than one year ago. In September, 4.8 billion texts were sent, about 4,000 per second! That&#8217;s some furious texting. People would be better off with Blackberrys though&#8230; Read More &#91;BBC News&#93;]]></description>
			<content:encoded><![CDATA[<p>Britons are now sending more then 4 billion texts weekly. That&#39;s more than were sent in the whole of 1999 and 25% more than one year ago. In September, 4.8 billion texts were sent, about 4,000 per second!</p>
<p>That&#8217;s some furious texting. People would be better off with Blackberrys though&#8230;</p>
<p><a href="http://news.bbc.co.uk/2/hi/technology/7075005.stm" class="rmore" title="Read More">Read More &#91;BBC News&#93;</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.leghumped.com/blog/2007/11/05/britons-send-4billion-texts-per-week/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Quid: The New Space Currency</title>
		<link>http://www.leghumped.com/blog/2007/10/17/quid-the-new-space-currency/</link>
		<comments>http://www.leghumped.com/blog/2007/10/17/quid-the-new-space-currency/#comments</comments>
		<pubDate>Wed, 17 Oct 2007 15:58:29 +0000</pubDate>
		<dc:creator>Harry Jennerway</dc:creator>
				<category><![CDATA[Latest news]]></category>
		<category><![CDATA[Technology]]></category>

		<guid isPermaLink="false">http://leghumped.com/blog/2007/10/17/quid-the-new-space-currency/</guid>
		<description><![CDATA[Scientists have devised a new currency to be used in space. The Quid &#39;coins&#39; are made from a polymer which unlike credit cards or regular coins, have no sharp edges which could damage space suits. The Quid is expected to be used in the upcoming inflatable space hotel and aboard Virgin&#39;s SpaceShipTwo. The current exchange [...]]]></description>
			<content:encoded><![CDATA[<p><img src="http://images.leghumped.com/quid.jpg" alt="Quid space currency" class="alignleft" />
<p>Scientists have devised a new currency to be used in space. The Quid &#39;coins&#39; are made from a polymer which unlike credit cards or regular coins, have no sharp edges which could damage space suits.</p>
<p>The Quid is expected to be used in the upcoming inflatable space hotel and aboard Virgin&#39;s SpaceShipTwo.</p>
<p>The current exchange rate is about 1 Quid to &#163;6.25.</p>
<p><a href="http://news.bbc.co.uk/1/hi/business/7029564.stm" class="rmore">Read more &#91;BBC News&#93;</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.leghumped.com/blog/2007/10/17/quid-the-new-space-currency/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>8k for a Paintball Panzer</title>
		<link>http://www.leghumped.com/blog/2007/10/01/8k-for-a-paintball-panzer/</link>
		<comments>http://www.leghumped.com/blog/2007/10/01/8k-for-a-paintball-panzer/#comments</comments>
		<pubDate>Mon, 01 Oct 2007 14:24:36 +0000</pubDate>
		<dc:creator>Harry Jennerway</dc:creator>
				<category><![CDATA[Funny]]></category>
		<category><![CDATA[Technology]]></category>

		<guid isPermaLink="false">http://leghumped.com/blog/2007/10/01/8k-for-a-paintball-panzer/</guid>
		<description><![CDATA[It might seem like a lot of money, but when you think you could have your own road-legal panzer to protect you from the agony of being hit by paintballs, &#163;8,000 doesn&#39;t seem that much. It also has a working paintball cannon. I Want One of Those &#91; Via&#58; Gizmodo&#93;]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.iwantoneofthose.com/paintball-panzer/index.html" class="nodecor"><img src="http://images.leghumped.com/panzer.jpg" alt="Paintball Panzer" class="centered" style="border: 1px solid #000;" /></a></p>
<p>It might seem like a lot of money, but when you think you could have your own road-legal panzer to protect you from the agony of being hit by paintballs, &#163;8,000 doesn&#39;t seem that much. It also has a working paintball cannon.</p>
<p><a href="http://www.iwantoneofthose.com/paintball-panzer/index.html" class="rmore">I Want One of Those</a> &#91; Via&#58; <a href="http://uk.gizmodo.com/2007/09/27/paintball_panzer_rules_the_bat.html" class="rmore">Gizmodo</a>&#93;</p>
]]></content:encoded>
			<wfw:commentRss>http://www.leghumped.com/blog/2007/10/01/8k-for-a-paintball-panzer/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Creating a Bootable USB Flash Drive</title>
		<link>http://www.leghumped.com/blog/2007/09/07/creating-a-bootable-usb-flash-drive/</link>
		<comments>http://www.leghumped.com/blog/2007/09/07/creating-a-bootable-usb-flash-drive/#comments</comments>
		<pubDate>Fri, 07 Sep 2007 10:28:54 +0000</pubDate>
		<dc:creator>Harry Jennerway</dc:creator>
				<category><![CDATA[Technology]]></category>

		<guid isPermaLink="false">http://leghumped.com/blog/2007/09/07/creating-a-bootable-usb-flash-drive/</guid>
		<description><![CDATA[I spent hours yesterday trying to get my laptop to boot from a USB key. I could probably have burnt 100 bootable CDs with the files on, but I wanted a USB key. So here&#39;s how to create one. Download and extract these files. Included are files for a bootable floppy and a copy of [...]]]></description>
			<content:encoded><![CDATA[<p>I spent hours yesterday trying to get my laptop to boot from a USB key. I could probably have burnt 100 bootable CDs with the files on, but I wanted a USB key. So here&#39;s how to create one.</p>
<blockquote>
<ol>
<li>Download and extract <a href="http://mi6.nu/usbboot.zip">these files</a>. Included are files for a bootable floppy and a copy of the HP USB disk format utility.</li>
<li>Using the HP format utility &#40;HPUSBFW.exe&#41;, check &#34;Create a DOS boot disk&#34; and browse to where you extracted the &#34;DOS files&#34; directory.</li>
<li>That&#39;s it&#33;. Automated commands can be run using autoexec.bat</li>
</ol>
</blockquote>
]]></content:encoded>
			<wfw:commentRss>http://www.leghumped.com/blog/2007/09/07/creating-a-bootable-usb-flash-drive/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Tesla Coil Plays Mario Tune</title>
		<link>http://www.leghumped.com/blog/2007/06/24/tesla-coil-plays-mario-tune/</link>
		<comments>http://www.leghumped.com/blog/2007/06/24/tesla-coil-plays-mario-tune/#comments</comments>
		<pubDate>Sun, 24 Jun 2007 09:27:53 +0000</pubDate>
		<dc:creator>Harry Jennerway</dc:creator>
				<category><![CDATA[Technology]]></category>

		<guid isPermaLink="false">http://leghumped.com/blog/2007/06/24/262/</guid>
		<description><![CDATA[A Tesla Coil that plays the Super Mario theme tune through high voltage sparks&#8230; nifty. [kml_flashembed movie="http://www.youtube.com/v/3ff_AXVlo9U"" height="350" width="425" /] Source &#91;Via&#58; BoingBoing&#93;]]></description>
			<content:encoded><![CDATA[<p>A Tesla Coil that plays the Super Mario theme tune through high voltage sparks&#8230; nifty.</p>
<div class="center">[kml_flashembed movie="http://www.youtube.com/v/3ff_AXVlo9U"" height="350" width="425" /]</div>
<p><a href="http://www.hauntedfrog.com/gt/movies/2007/duckon/SingingTeslaShow.html" class="rmore">Source</a> &#91;Via&#58; <a href="http://www.boingboing.net/2007/06/20/singing_tesla_coil_v.html" class="rmore">BoingBoing</a>&#93;</p>
]]></content:encoded>
			<wfw:commentRss>http://www.leghumped.com/blog/2007/06/24/tesla-coil-plays-mario-tune/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
