<?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>hocuspokus &#187; geek</title>
	<atom:link href="http://hocuspokus.net/tag/geek/feed" rel="self" type="application/rss+xml" />
	<link>http://hocuspokus.net</link>
	<description>the life and times of a code monkey</description>
	<lastBuildDate>Fri, 12 Mar 2010 15:57:13 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Removing ._ Files From Mounted&#160;Drives</title>
		<link>http://hocuspokus.net/feeder/?FeederAction=clicked&amp;feed=Articles+%28RSS2%29&amp;seed=http%3A%2F%2Fhocuspokus.net%2F2010%2F02%2Fremoving-_-files-from-mounted-drives&amp;seed_title=Removing+._+Files+From+Mounted%26%23160%3BDrives</link>
		<comments>http://hocuspokus.net/feeder/?FeederAction=clicked&amp;feed=Articles+%28RSS2%29&amp;seed=http%3A%2F%2Fhocuspokus.net%2F2010%2F02%2Fremoving-_-files-from-mounted-drives&amp;seed_title=Removing+._+Files+From+Mounted%26%23160%3BDrives#comments</comments>
		<pubDate>Thu, 11 Feb 2010 20:05:57 +0000</pubDate>
		<dc:creator>Daz</dc:creator>
				<category><![CDATA[mac]]></category>
		<category><![CDATA[geek]]></category>
		<category><![CDATA[unix]]></category>

		<guid isPermaLink="false">http://hocuspokus.net/?p=405</guid>
		<description><![CDATA[Here&#8217;s a quick snippet of goodness to remove those annoying &#8216;._&#8217; files that Macs generate on mounted drives&#8230;


cd &#91;wherever you want to clean&#93;
find . -name &#34;._*&#34; -exec rm '{}' \; -print

]]></description>
			<content:encoded><![CDATA[<p>Here&#8217;s a quick snippet of goodness to remove those annoying &#8216;._&#8217; files that Macs generate on mounted drives&#8230;</p>


<div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;"><span style="color: #7a0874; font-weight: bold;">cd</span> <span style="color: #7a0874; font-weight: bold;">&#91;</span>wherever you want to clean<span style="color: #7a0874; font-weight: bold;">&#93;</span>
<span style="color: #c20cb9; font-weight: bold;">find</span> . <span style="color: #660033;">-name</span> <span style="color: #ff0000;">&quot;._*&quot;</span> <span style="color: #660033;">-exec</span> <span style="color: #c20cb9; font-weight: bold;">rm</span> <span style="color: #ff0000;">'{}'</span> \; <span style="color: #660033;">-print</span></pre></div></div>

]]></content:encoded>
			<wfw:commentRss>http://hocuspokus.net/feeder/?FeederAction=clicked&amp;feed=Articles+%28RSS2%29&amp;seed=http%3A%2F%2Fhocuspokus.net%2F2010%2F02%2Fremoving-_-files-from-mounted-drives&amp;seed_title=Removing+._+Files+From+Mounted%26%23160%3BDrives/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Creating Users on a Linux&#160;System</title>
		<link>http://hocuspokus.net/feeder/?FeederAction=clicked&amp;feed=Articles+%28RSS2%29&amp;seed=http%3A%2F%2Fhocuspokus.net%2F2010%2F01%2Fcreating-users-on-a-linux-system&amp;seed_title=Creating+Users+on+a+Linux%26%23160%3BSystem</link>
		<comments>http://hocuspokus.net/feeder/?FeederAction=clicked&amp;feed=Articles+%28RSS2%29&amp;seed=http%3A%2F%2Fhocuspokus.net%2F2010%2F01%2Fcreating-users-on-a-linux-system&amp;seed_title=Creating+Users+on+a+Linux%26%23160%3BSystem#comments</comments>
		<pubDate>Sat, 09 Jan 2010 11:13:42 +0000</pubDate>
		<dc:creator>Daz</dc:creator>
				<category><![CDATA[linux]]></category>
		<category><![CDATA[geek]]></category>
		<category><![CDATA[sudo]]></category>
		<category><![CDATA[user-management]]></category>

		<guid isPermaLink="false">http://hocuspokus.net/?p=399</guid>
		<description><![CDATA[It&#8217;s been a while since I&#8217;ve had to do any basic sysadmin stuff on a Linux box&#8230; seeing as I had to google the answers to this I thought I&#8217;d better write them down!

useradd syntax


useradd &#91;options&#93; &#123;username&#125;


Useful options are:


    -d
    declare the users home directory
    -m
 [...]]]></description>
			<content:encoded><![CDATA[<p>It&#8217;s been a while since I&#8217;ve had to do any basic sysadmin stuff on a Linux box&#8230; seeing as I had to google the answers to this I thought I&#8217;d better write them down!</p>

<p><strong>useradd syntax</strong></p>


<div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;">useradd <span style="color: #7a0874; font-weight: bold;">&#91;</span>options<span style="color: #7a0874; font-weight: bold;">&#93;</span> <span style="color: #7a0874; font-weight: bold;">&#123;</span>username<span style="color: #7a0874; font-weight: bold;">&#125;</span></pre></div></div>


<p>Useful options are:</p>

<dl>
    <dt>-d</dt>
    <dd>declare the users home directory</dd>
    <dt>-m</dt>
    <dd>force &#8216;useradd&#8217; to create the home directory</dd>
    <dt>-D</dt>
    <dd>accept the system defaults for account settings</dd>
</dl>

<p>An alternative for &#8216;useradd&#8217; though is &#8216;adduser&#8217;:</p>


<div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;">adduser <span style="color: #7a0874; font-weight: bold;">&#123;</span>username<span style="color: #7a0874; font-weight: bold;">&#125;</span></pre></div></div>


<p>This will then prompt you for all the information needed to set up the account.</p>

<p><strong>making the user an administrator (with sudo)</strong></p>

<p>As the root user&#8230;</p>


<div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;">visudo</pre></div></div>


<p>Then underneath the entry for &#8216;root&#8217; just add in an entry with the desired user name:</p>


<div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;"><span style="color: #7a0874; font-weight: bold;">&#123;</span>username<span style="color: #7a0874; font-weight: bold;">&#125;</span> <span style="color: #007800;">ALL</span>=<span style="color: #7a0874; font-weight: bold;">&#40;</span>ALL<span style="color: #7a0874; font-weight: bold;">&#41;</span> ALL</pre></div></div>

]]></content:encoded>
			<wfw:commentRss>http://hocuspokus.net/feeder/?FeederAction=clicked&amp;feed=Articles+%28RSS2%29&amp;seed=http%3A%2F%2Fhocuspokus.net%2F2010%2F01%2Fcreating-users-on-a-linux-system&amp;seed_title=Creating+Users+on+a+Linux%26%23160%3BSystem/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Add Git and SVN Branch to Bash&#160;Prompt</title>
		<link>http://hocuspokus.net/feeder/?FeederAction=clicked&amp;feed=Articles+%28RSS2%29&amp;seed=http%3A%2F%2Fhocuspokus.net%2F2009%2F07%2Fadd-git-and-svn-branch-to-bash-prompt&amp;seed_title=Add+Git+and+SVN+Branch+to+Bash%26%23160%3BPrompt</link>
		<comments>http://hocuspokus.net/feeder/?FeederAction=clicked&amp;feed=Articles+%28RSS2%29&amp;seed=http%3A%2F%2Fhocuspokus.net%2F2009%2F07%2Fadd-git-and-svn-branch-to-bash-prompt&amp;seed_title=Add+Git+and+SVN+Branch+to+Bash%26%23160%3BPrompt#comments</comments>
		<pubDate>Thu, 09 Jul 2009 19:58:06 +0000</pubDate>
		<dc:creator>Daz</dc:creator>
				<category><![CDATA[linux]]></category>
		<category><![CDATA[mac]]></category>
		<category><![CDATA[noteworthy]]></category>
		<category><![CDATA[bash]]></category>
		<category><![CDATA[command-line]]></category>
		<category><![CDATA[geek]]></category>
		<category><![CDATA[git]]></category>
		<category><![CDATA[os x]]></category>
		<category><![CDATA[svn]]></category>

		<guid isPermaLink="false">http://hocuspokus.net/?p=352</guid>
		<description><![CDATA[EDIT: (12-Mar-2010) slight update to the svn prompt code to give a better / more useful output&#8230;

I&#8217;ve seen things like this posted on the net before but never really had a chance to play with the idea.  But as I&#8217;m now using git and svn a lot more these days (fingers crossed i&#8217;ll be [...]]]></description>
			<content:encoded><![CDATA[<p><strong>EDIT:</strong> (12-Mar-2010) slight update to the svn prompt code to give a better / more useful output&#8230;</p>

<p>I&#8217;ve seen things like this posted on the net before but never really had a chance to play with the idea.  But as I&#8217;m now using git and svn a lot more these days (fingers crossed i&#8217;ll be totally free of cvs soon!) I thought it was about time I pulled my finger out.</p>

<p>So here&#8217;s the end goal, in a normal directory, we just get a normal bash promt, but in a directory controlled by git or svn, we also get an addition telling us the source control tool in use and the current branch:</p>

<p><img src="http://hocuspokus.net/wp-content/uploads/2009/07/git_svn_bash_terminal.png" alt="git_svn_bash_terminal" title="git_svn_bash_terminal" width="500" height="305" class="aligncenter size-full wp-image-358" /></p>

<p>So, fire up yer terminal and add the following to your <code>.profile</code>, <code>.bash_profile</code> or <code>.bashrc</code> (whichever one you use):</p>


<div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;">parse_git_branch <span style="color: #7a0874; font-weight: bold;">&#40;</span><span style="color: #7a0874; font-weight: bold;">&#41;</span> <span style="color: #7a0874; font-weight: bold;">&#123;</span>
	git name-rev HEAD <span style="color: #000000;">2</span><span style="color: #000000; font-weight: bold;">&gt;</span> <span style="color: #000000; font-weight: bold;">/</span>dev<span style="color: #000000; font-weight: bold;">/</span>null <span style="color: #000000; font-weight: bold;">|</span> <span style="color: #c20cb9; font-weight: bold;">sed</span> <span style="color: #ff0000;">'s#HEAD\ \(.*\)# (git::\1)#'</span>
<span style="color: #7a0874; font-weight: bold;">&#125;</span>
parse_svn_branch<span style="color: #7a0874; font-weight: bold;">&#40;</span><span style="color: #7a0874; font-weight: bold;">&#41;</span> <span style="color: #7a0874; font-weight: bold;">&#123;</span>
	parse_svn_url <span style="color: #000000; font-weight: bold;">|</span> <span style="color: #c20cb9; font-weight: bold;">sed</span> <span style="color: #660033;">-e</span> <span style="color: #ff0000;">'s#^'</span><span style="color: #ff0000;">&quot;<span style="color: #007800;">$(parse_svn_repository_root)</span>&quot;</span><span style="color: #ff0000;">'##g'</span> <span style="color: #000000; font-weight: bold;">|</span> <span style="color: #c20cb9; font-weight: bold;">awk</span> <span style="color: #ff0000;">'{print &quot; (svn::&quot;$1&quot;)&quot; }'</span>
<span style="color: #7a0874; font-weight: bold;">&#125;</span>
parse_svn_url<span style="color: #7a0874; font-weight: bold;">&#40;</span><span style="color: #7a0874; font-weight: bold;">&#41;</span> <span style="color: #7a0874; font-weight: bold;">&#123;</span>
	<span style="color: #c20cb9; font-weight: bold;">svn</span> info <span style="color: #000000;">2</span><span style="color: #000000; font-weight: bold;">&gt;/</span>dev<span style="color: #000000; font-weight: bold;">/</span>null <span style="color: #000000; font-weight: bold;">|</span> <span style="color: #c20cb9; font-weight: bold;">sed</span> <span style="color: #660033;">-ne</span> <span style="color: #ff0000;">'s#^URL: ##p'</span>
<span style="color: #7a0874; font-weight: bold;">&#125;</span>
parse_svn_repository_root<span style="color: #7a0874; font-weight: bold;">&#40;</span><span style="color: #7a0874; font-weight: bold;">&#41;</span> <span style="color: #7a0874; font-weight: bold;">&#123;</span>
	<span style="color: #c20cb9; font-weight: bold;">svn</span> info <span style="color: #000000;">2</span><span style="color: #000000; font-weight: bold;">&gt;/</span>dev<span style="color: #000000; font-weight: bold;">/</span>null <span style="color: #000000; font-weight: bold;">|</span> <span style="color: #c20cb9; font-weight: bold;">sed</span> <span style="color: #660033;">-ne</span> <span style="color: #ff0000;">'s#^Repository Root: ##p'</span>
<span style="color: #7a0874; font-weight: bold;">&#125;</span>
&nbsp;
<span style="color: #007800;">BLACK</span>=<span style="color: #ff0000;">&quot;\[\033[0;38m\]&quot;</span>
<span style="color: #007800;">RED</span>=<span style="color: #ff0000;">&quot;\[\033[0;31m\]&quot;</span>
<span style="color: #007800;">RED_BOLD</span>=<span style="color: #ff0000;">&quot;\[\033[01;31m\]&quot;</span>
<span style="color: #007800;">BLUE</span>=<span style="color: #ff0000;">&quot;\[\033[01;34m\]&quot;</span>
<span style="color: #007800;">GREEN</span>=<span style="color: #ff0000;">&quot;\[\033[0;32m\]&quot;</span>
&nbsp;
<span style="color: #7a0874; font-weight: bold;">export</span> <span style="color: #007800;">PS1</span>=<span style="color: #ff0000;">&quot;<span style="color: #007800;">$BLACK</span>[ \u@<span style="color: #007800;">$RED</span>\h <span style="color: #007800;">$GREEN</span>\w<span style="color: #007800;">$RED_BOLD</span><span style="color: #000099; font-weight: bold;">\$</span>(parse_git_branch)<span style="color: #000099; font-weight: bold;">\$</span>(parse_svn_branch)<span style="color: #007800;">$BLACK</span> ] &quot;</span></pre></div></div>


<p>Simples.  Now just open up a new terminal and move into a project directory using svn or git. <img src='http://hocuspokus.net/wp-content/plugins/smilies-themer/tango/face-smile.png' alt=':)' class='wp-smiley' /> </p>
]]></content:encoded>
			<wfw:commentRss>http://hocuspokus.net/feeder/?FeederAction=clicked&amp;feed=Articles+%28RSS2%29&amp;seed=http%3A%2F%2Fhocuspokus.net%2F2009%2F07%2Fadd-git-and-svn-branch-to-bash-prompt&amp;seed_title=Add+Git+and+SVN+Branch+to+Bash%26%23160%3BPrompt/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Some People Have Waaay Too Much&#160;Time&#8230;</title>
		<link>http://hocuspokus.net/feeder/?FeederAction=clicked&amp;feed=Articles+%28RSS2%29&amp;seed=http%3A%2F%2Fhocuspokus.net%2F2008%2F04%2Fsome-people-have-waaay-too-much-time&amp;seed_title=Some+People+Have+Waaay+Too+Much%26%23160%3BTime%26%238230%3B</link>
		<comments>http://hocuspokus.net/feeder/?FeederAction=clicked&amp;feed=Articles+%28RSS2%29&amp;seed=http%3A%2F%2Fhocuspokus.net%2F2008%2F04%2Fsome-people-have-waaay-too-much-time&amp;seed_title=Some+People+Have+Waaay+Too+Much%26%23160%3BTime%26%238230%3B#comments</comments>
		<pubDate>Mon, 21 Apr 2008 14:04:54 +0000</pubDate>
		<dc:creator>Daz</dc:creator>
				<category><![CDATA[snippets]]></category>
		<category><![CDATA[geek]]></category>

		<guid isPermaLink="false">http://hocuspokus.net/?p=134</guid>
		<description><![CDATA[This is one way to get your perfect coffee fix&#8230;


  If you&#8217;re both a coffee- and gadget-freak, this project by DIY&#8217;er Tim Hirzel will probably be a notably inspiring hack. By combining a fancy-pants Rancilio Silvia espresso machine, the multi-purpose Arduino micro-controller, a Wii nunchuk, and some seriously high-level hacking, Tim has created a [...]]]></description>
			<content:encoded><![CDATA[<p>This is one way to get your perfect coffee fix&#8230;</p>

<blockquote>
  <p>If you&#8217;re both a coffee- and gadget-freak, this project by DIY&#8217;er Tim Hirzel will probably be a notably inspiring hack. By combining a fancy-pants Rancilio Silvia espresso machine, the multi-purpose Arduino micro-controller, a Wii nunchuk, and some seriously high-level hacking, Tim has created a one-of-a-kind masterpiece. The typically straight-up espresso maker is now controlled electronically, allowing integration of a calendar, sleep timer, wake-up alarm, and temperature regulation. The system also allows a user to time its functions (to get that perfect cup of espresso), and the nunchuk can be used to alter settings on the unit. Be sure and take a look at the video after the break to see this mod in action.</p>
</blockquote>

<p><a href="http://www.engadget.com/2008/04/21/rancilios-silvia-espresso-machine-gets-hacked-via-the-arduino-a/" class="via">more</a></p>
<a href="http://hocuspokus.net/feeder/?FeederAction=clicked&amp;feed=Articles+%28RSS2%29&amp;seed=http%3A%2F%2Fhocuspokus.net%2F2008%2F04%2Fsome-people-have-waaay-too-much-time&amp;seed_title=Some+People+Have+Waaay+Too+Much%26%23160%3BTime%26%238230%3B" rel="bookmark" class="asides-permalink" title="Permanent Link to Some People Have Waaay Too Much&nbsp;Time&#8230;">(1)</a>]]></content:encoded>
			<wfw:commentRss>http://hocuspokus.net/feeder/?FeederAction=clicked&amp;feed=Articles+%28RSS2%29&amp;seed=http%3A%2F%2Fhocuspokus.net%2F2008%2F04%2Fsome-people-have-waaay-too-much-time&amp;seed_title=Some+People+Have+Waaay+Too+Much%26%23160%3BTime%26%238230%3B/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>COD4 Is&#160;Awesome!</title>
		<link>http://hocuspokus.net/feeder/?FeederAction=clicked&amp;feed=Articles+%28RSS2%29&amp;seed=http%3A%2F%2Fhocuspokus.net%2F2008%2F04%2Fcod4-is-awesome&amp;seed_title=COD4+Is%26%23160%3BAwesome%21</link>
		<comments>http://hocuspokus.net/feeder/?FeederAction=clicked&amp;feed=Articles+%28RSS2%29&amp;seed=http%3A%2F%2Fhocuspokus.net%2F2008%2F04%2Fcod4-is-awesome&amp;seed_title=COD4+Is%26%23160%3BAwesome%21#comments</comments>
		<pubDate>Sun, 13 Apr 2008 11:20:00 +0000</pubDate>
		<dc:creator>Daz</dc:creator>
				<category><![CDATA[games]]></category>
		<category><![CDATA[cod]]></category>
		<category><![CDATA[geek]]></category>
		<category><![CDATA[xbox360]]></category>

		<guid isPermaLink="false">http://hocuspokus.net/?p=129</guid>
		<description><![CDATA[Late to the game as always, I finally got onto COD4 last night.

Oh. my. god. This game is frigging awesome!

I had no idea what I was doing half the time, and spent most of the night watching replays of how I died, but I haven&#8217;t had a laugh like this with a game since Gears [...]]]></description>
			<content:encoded><![CDATA[<p>Late to the game as always, I finally got onto <a href="http://www.callofduty.com/">COD4</a> last night.</p>

<p>Oh. my. god. This game is frigging awesome!</p>

<p>I had no idea what I was doing half the time, and spent most of the night watching replays of how I died, but I haven&#8217;t had a laugh like this with a game since <a href="http://gearsofwar.com/">Gears of War</a> came out. <a href="http://www.halo3.com/">Halo 3</a> was good, great even - but it just didn&#8217;t have that stand out &#8216;you&#8217;re gonna remember this&#8217; feeling to it, it was just more, well, Halo.</p>

<p>Maybe this is because COD4 is my first COD game and i&#8217;ve just been missing out all of these years (the WWII stuff never really appealed).</p>

<p>Anyway, enough of my rambling&#8230;  If you own a machine capable of gaming in anyway, be it Xbox, PS3, Wii, PC, your toaster, whatever - you need to try out COD4.</p>

<p>Oh, and for real giggles, try an 18 player free-for-all on the world&#8217;s smallest map &#8216;Shipment&#8217;.  I think I had on average about 5 seconds between respawns! <img src='http://hocuspokus.net/wp-content/plugins/smilies-themer/tango/face-smile-big.png' alt=':D' class='wp-smiley' /> </p>
]]></content:encoded>
			<wfw:commentRss>http://hocuspokus.net/feeder/?FeederAction=clicked&amp;feed=Articles+%28RSS2%29&amp;seed=http%3A%2F%2Fhocuspokus.net%2F2008%2F04%2Fcod4-is-awesome&amp;seed_title=COD4+Is%26%23160%3BAwesome%21/feed</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Quake 3 for the iPod&#160;Touch/iPhone</title>
		<link>http://hocuspokus.net/feeder/?FeederAction=clicked&amp;feed=Articles+%28RSS2%29&amp;seed=http%3A%2F%2Fhocuspokus.net%2F2008%2F04%2Fquake-3-for-the-ipod-touch-iphone&amp;seed_title=Quake+3+for+the+iPod%26%23160%3BTouch%2FiPhone</link>
		<comments>http://hocuspokus.net/feeder/?FeederAction=clicked&amp;feed=Articles+%28RSS2%29&amp;seed=http%3A%2F%2Fhocuspokus.net%2F2008%2F04%2Fquake-3-for-the-ipod-touch-iphone&amp;seed_title=Quake+3+for+the+iPod%26%23160%3BTouch%2FiPhone#comments</comments>
		<pubDate>Fri, 11 Apr 2008 08:29:22 +0000</pubDate>
		<dc:creator>Daz</dc:creator>
				<category><![CDATA[snippets]]></category>
		<category><![CDATA[geek]]></category>
		<category><![CDATA[iphone]]></category>
		<category><![CDATA[ipod]]></category>

		<guid isPermaLink="false">http://hocuspokus.net/?p=127</guid>
		<description><![CDATA[I somehow managed to miss this one.  Quake 3 running on hacked iPod Touch&#8217;s!  They keep making it harder and harder to resist an iPhone/iPod Touch&#8230;


  Future generations will most likely divide the timeline of history at this point: when Quake 3 achieved motion-sensing, wireless network play on two iPod touches. Just [...]]]></description>
			<content:encoded><![CDATA[<p>I somehow managed to miss this one.  Quake 3 running on hacked iPod Touch&#8217;s!  They keep making it harder and harder to resist an iPhone/iPod Touch&#8230;</p>

<blockquote>
  <p>Future generations will most likely divide the timeline of history at this point: when Quake 3 achieved motion-sensing, wireless network play on two iPod touches. Just think, less than a year ago we were salivating (or at least mildly enthused) at the prospect of rocking Doom on this thing, and now Quake 3 Arena is yours for the taking &#8212; or at least will be once we get any sort of hard info on this app.</p>
</blockquote>

<p><a href="http://www.engadget.com/2008/04/05/quake-3-hits-the-ipod-touch-makes-for-portable-lan-party/" class="via">via</a></p>
<a href="http://hocuspokus.net/feeder/?FeederAction=clicked&amp;feed=Articles+%28RSS2%29&amp;seed=http%3A%2F%2Fhocuspokus.net%2F2008%2F04%2Fquake-3-for-the-ipod-touch-iphone&amp;seed_title=Quake+3+for+the+iPod%26%23160%3BTouch%2FiPhone" rel="bookmark" class="asides-permalink" title="Permanent Link to Quake 3 for the iPod&nbsp;Touch/iPhone">(0)</a>]]></content:encoded>
			<wfw:commentRss>http://hocuspokus.net/feeder/?FeederAction=clicked&amp;feed=Articles+%28RSS2%29&amp;seed=http%3A%2F%2Fhocuspokus.net%2F2008%2F04%2Fquake-3-for-the-ipod-touch-iphone&amp;seed_title=Quake+3+for+the+iPod%26%23160%3BTouch%2FiPhone/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Gears of War 2 -&#160;November</title>
		<link>http://hocuspokus.net/feeder/?FeederAction=clicked&amp;feed=Articles+%28RSS2%29&amp;seed=http%3A%2F%2Fhocuspokus.net%2F2008%2F02%2Fgears-of-war-2-november&amp;seed_title=Gears+of+War+2+-%26%23160%3BNovember</link>
		<comments>http://hocuspokus.net/feeder/?FeederAction=clicked&amp;feed=Articles+%28RSS2%29&amp;seed=http%3A%2F%2Fhocuspokus.net%2F2008%2F02%2Fgears-of-war-2-november&amp;seed_title=Gears+of+War+2+-%26%23160%3BNovember#comments</comments>
		<pubDate>Thu, 21 Feb 2008 13:57:58 +0000</pubDate>
		<dc:creator>Daz</dc:creator>
				<category><![CDATA[snippets]]></category>
		<category><![CDATA[gears]]></category>
		<category><![CDATA[geek]]></category>
		<category><![CDATA[microsoft]]></category>
		<category><![CDATA[xbox]]></category>

		<guid isPermaLink="false">http://hocuspokus.net/2008/02/21/gears-of-war-2-november/</guid>
		<description><![CDATA[This has officially just made my day!  


  Microsoft has officially announced that the Xbox 360 sequel to the popular shooter Gears of War will launch in November of this year.
  
  Much of the Xbox 360&#8217;s first year success was dependent on Epic&#8217;s Gears of War. It proved much more [...]]]></description>
			<content:encoded><![CDATA[<p>This has officially just made my day! <img src='http://hocuspokus.net/wp-content/plugins/smilies-themer/tango/face-smile-big.png' alt=':D' class='wp-smiley' /> </p>

<blockquote>
  <p>Microsoft has officially announced that the Xbox 360 sequel to the popular shooter Gears of War will launch in November of this year.</p>
  
  <p>Much of the Xbox 360&#8217;s first year success was dependent on Epic&#8217;s Gears of War. It proved much more than just substitute until Halo 3 arrived and really showed the gaming quality that the console could deliver. In fact, many still favour Marcus Fenix over Master Chief Petty Officer John-117.</p>
</blockquote>

<p><a href="http://www.reghardware.co.uk/2008/02/21/gears_of_war_2_release/" class="via">full story</a></p>
<a href="http://hocuspokus.net/feeder/?FeederAction=clicked&amp;feed=Articles+%28RSS2%29&amp;seed=http%3A%2F%2Fhocuspokus.net%2F2008%2F02%2Fgears-of-war-2-november&amp;seed_title=Gears+of+War+2+-%26%23160%3BNovember" rel="bookmark" class="asides-permalink" title="Permanent Link to Gears of War 2 -&nbsp;November">(0)</a>]]></content:encoded>
			<wfw:commentRss>http://hocuspokus.net/feeder/?FeederAction=clicked&amp;feed=Articles+%28RSS2%29&amp;seed=http%3A%2F%2Fhocuspokus.net%2F2008%2F02%2Fgears-of-war-2-november&amp;seed_title=Gears+of+War+2+-%26%23160%3BNovember/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>HP 2133&#160;UMPC</title>
		<link>http://hocuspokus.net/feeder/?FeederAction=clicked&amp;feed=Articles+%28RSS2%29&amp;seed=http%3A%2F%2Fhocuspokus.net%2F2008%2F02%2Fhp-2133-umpc&amp;seed_title=HP+2133%26%23160%3BUMPC</link>
		<comments>http://hocuspokus.net/feeder/?FeederAction=clicked&amp;feed=Articles+%28RSS2%29&amp;seed=http%3A%2F%2Fhocuspokus.net%2F2008%2F02%2Fhp-2133-umpc&amp;seed_title=HP+2133%26%23160%3BUMPC#comments</comments>
		<pubDate>Tue, 19 Feb 2008 20:53:47 +0000</pubDate>
		<dc:creator>Daz</dc:creator>
				<category><![CDATA[snippets]]></category>
		<category><![CDATA[eee]]></category>
		<category><![CDATA[geek]]></category>
		<category><![CDATA[hp]]></category>
		<category><![CDATA[laptop]]></category>
		<category><![CDATA[ultra-mobile]]></category>
		<category><![CDATA[umpc]]></category>

		<guid isPermaLink="false">http://hocuspokus.net/2008/02/19/hp-2133-umpc/</guid>
		<description><![CDATA[
Engadget are running a story with pics for HP&#8217;s answer to the Eee PC.  It does look quite sweet, but no details of the full spec or final price as yet.

If they could pitch this about the same price as the Eee - I could see this being quite sweet&#8230;  However, it says [...]]]></description>
			<content:encoded><![CDATA[<div style="text-align:center;"><img src='http://hocuspokus.net/wp-content/uploads/2008/02/hp-2133.jpg' alt='HP 2133Â UMPC' /></div>

<p><a href="http://www.engadget.com/">Engadget</a> are running a story with pics for HP&#8217;s answer to the Eee PC.  It does look quite sweet, but no details of the full spec or final price as yet.</p>

<p>If they could pitch this about the same price as the Eee - I could see this being quite sweet&#8230;  However, it says that it can come with Vista or Linux - my bet is that it&#8217;s going to be a touch more powerful than the Eee (it&#8217;ll need to be if Vista is an option!), and a shedload more cash!!!  Please let me be wrong, (on the cash point <img src='http://hocuspokus.net/wp-content/plugins/smilies-themer/tango/face-wink.png' alt=';)' class='wp-smiley' /> )!</p>

<p><a href="http://www.engadget.com/2008/02/19/hps-umpc-2133-revealed/" class="via">full story</a></p>
<a href="http://hocuspokus.net/feeder/?FeederAction=clicked&amp;feed=Articles+%28RSS2%29&amp;seed=http%3A%2F%2Fhocuspokus.net%2F2008%2F02%2Fhp-2133-umpc&amp;seed_title=HP+2133%26%23160%3BUMPC" rel="bookmark" class="asides-permalink" title="Permanent Link to HP 2133&nbsp;UMPC">(0)</a>]]></content:encoded>
			<wfw:commentRss>http://hocuspokus.net/feeder/?FeederAction=clicked&amp;feed=Articles+%28RSS2%29&amp;seed=http%3A%2F%2Fhocuspokus.net%2F2008%2F02%2Fhp-2133-umpc&amp;seed_title=HP+2133%26%23160%3BUMPC/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Stephen Fry on the Eee&#160;PC</title>
		<link>http://hocuspokus.net/feeder/?FeederAction=clicked&amp;feed=Articles+%28RSS2%29&amp;seed=http%3A%2F%2Fhocuspokus.net%2F2008%2F02%2Fstephen-fry-on-the-eee-pc&amp;seed_title=Stephen+Fry+on+the+Eee%26%23160%3BPC</link>
		<comments>http://hocuspokus.net/feeder/?FeederAction=clicked&amp;feed=Articles+%28RSS2%29&amp;seed=http%3A%2F%2Fhocuspokus.net%2F2008%2F02%2Fstephen-fry-on-the-eee-pc&amp;seed_title=Stephen+Fry+on+the+Eee%26%23160%3BPC#comments</comments>
		<pubDate>Mon, 04 Feb 2008 14:00:43 +0000</pubDate>
		<dc:creator>Daz</dc:creator>
				<category><![CDATA[linux]]></category>
		<category><![CDATA[snippets]]></category>
		<category><![CDATA[eee]]></category>
		<category><![CDATA[geek]]></category>

		<guid isPermaLink="false">http://hocuspokus.net/2008/02/04/stephen-fry-on-the-eee-pc/</guid>
		<description><![CDATA[I really like the Eee PC - some people at work here have them, and if I could get it past the wife, i&#8217;d happily have one!  

Seems like the well spoken geek Stephen Fry is quite a fan too:


  I am writing this article on a kind of mini John the Baptist, [...]]]></description>
			<content:encoded><![CDATA[<p>I really like the Eee PC - some people at work here have them, and if I could get it past the wife, i&#8217;d happily have one! <img src='http://hocuspokus.net/wp-content/plugins/smilies-themer/tango/face-wink.png' alt=';)' class='wp-smiley' /> </p>

<p>Seems like the well spoken geek Stephen Fry is quite a fan too:</p>

<blockquote>
  <p>I am writing this article on a kind of mini John the Baptist, a system that prepares the way of the software saviour whose coming will deliver the 90% of world computer users who suffer under Windows from the expensive, clumsy, costly, ugly, pricey toils of Microsoft.</p>
  
  <p>The Asus EEE PC perched on my knee combines GNU software with a Linux kernel powered by an Intel Celeron Mobile Processor to produce a very extraordinary little laptop. It weighs less than a kilogram, starts up from cold in about 12 seconds and shuts down in five. It has no internal hard disk and no CD drive. It offers 512MB of RAM, 4GB of storage and a seven-inch display; wireless, dial-out modem and ethernet adaptors are available for networking and internet connections, three USB ports, mini-jack sockets for headphones and microphone, a VGA out, an SD card slot and a built-in webcam. All for about Â£200 - less than the price of a show, dinner and taxi for two in Londonâ€™s West End.</p>
</blockquote>

<p><a href="http://stephenfry.com/blog/?p=39" class="via">read more</a></p>
<a href="http://hocuspokus.net/feeder/?FeederAction=clicked&amp;feed=Articles+%28RSS2%29&amp;seed=http%3A%2F%2Fhocuspokus.net%2F2008%2F02%2Fstephen-fry-on-the-eee-pc&amp;seed_title=Stephen+Fry+on+the+Eee%26%23160%3BPC" rel="bookmark" class="asides-permalink" title="Permanent Link to Stephen Fry on the Eee&nbsp;PC">(0)</a>]]></content:encoded>
			<wfw:commentRss>http://hocuspokus.net/feeder/?FeederAction=clicked&amp;feed=Articles+%28RSS2%29&amp;seed=http%3A%2F%2Fhocuspokus.net%2F2008%2F02%2Fstephen-fry-on-the-eee-pc&amp;seed_title=Stephen+Fry+on+the+Eee%26%23160%3BPC/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>SPARQL Graduates to W3C&#160;Recommendation</title>
		<link>http://hocuspokus.net/feeder/?FeederAction=clicked&amp;feed=Articles+%28RSS2%29&amp;seed=http%3A%2F%2Fhocuspokus.net%2F2008%2F01%2Fsparql-graduates-to-w3c-recommendation&amp;seed_title=SPARQL+Graduates+to+W3C%26%23160%3BRecommendation</link>
		<comments>http://hocuspokus.net/feeder/?FeederAction=clicked&amp;feed=Articles+%28RSS2%29&amp;seed=http%3A%2F%2Fhocuspokus.net%2F2008%2F01%2Fsparql-graduates-to-w3c-recommendation&amp;seed_title=SPARQL+Graduates+to+W3C%26%23160%3BRecommendation#comments</comments>
		<pubDate>Thu, 17 Jan 2008 14:35:06 +0000</pubDate>
		<dc:creator>Daz</dc:creator>
				<category><![CDATA[snippets]]></category>
		<category><![CDATA[geek]]></category>
		<category><![CDATA[sparql]]></category>

		<guid isPermaLink="false">http://hocuspokus.net/2008/01/17/sparql-graduates-to-w3c-recommendation/</guid>
		<description><![CDATA[I watched a presentation on this about 18 months ago at a conference and it looked pretty interesting - some good potential applications in the scientific field.  Glad to see things are progressing.


  &#8220;The W3C just gave SPARQL the stamp of approval. SPARQL is a query language for the Semantic Web, and differs [...]]]></description>
			<content:encoded><![CDATA[<p>I watched a presentation on this about 18 months ago at a conference and it looked pretty interesting - some good potential applications in the scientific field.  Glad to see things are progressing.</p>

<blockquote>
  <p>&#8220;The W3C just gave SPARQL the stamp of approval. SPARQL is a query language for the Semantic Web, and differs from other query languages in that is usable across different data sources. There are already 14 implementations of the spec available. Most of them are free software. There are also billions of relations out there that are query-able, thanks to the Linking Open Data project. The structured data of Wikipedia is now query-able at DBpedia. Also, have a look at Ivan Herman&#8217;s presentations on this topic.&#8221;</p>
</blockquote>

<p><a href="http://developers.slashdot.org/article.pl?sid=08/01/16/198205&#038;from=rss" class="via">via</a></p>
<a href="http://hocuspokus.net/feeder/?FeederAction=clicked&amp;feed=Articles+%28RSS2%29&amp;seed=http%3A%2F%2Fhocuspokus.net%2F2008%2F01%2Fsparql-graduates-to-w3c-recommendation&amp;seed_title=SPARQL+Graduates+to+W3C%26%23160%3BRecommendation" rel="bookmark" class="asides-permalink" title="Permanent Link to SPARQL Graduates to W3C&nbsp;Recommendation">(0)</a>]]></content:encoded>
			<wfw:commentRss>http://hocuspokus.net/feeder/?FeederAction=clicked&amp;feed=Articles+%28RSS2%29&amp;seed=http%3A%2F%2Fhocuspokus.net%2F2008%2F01%2Fsparql-graduates-to-w3c-recommendation&amp;seed_title=SPARQL+Graduates+to+W3C%26%23160%3BRecommendation/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
<!-- WP Super Cache is installed but broken. The path to wp-cache-phase1.php in wp-content/advanced-cache.php must be fixed! -->