<?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>*Terms and Conditions apply &#187; Meh</title>
	<atom:link href="http://pf.skynet.ie/blog/category/meh/feed/" rel="self" type="application/rss+xml" />
	<link>http://pf.skynet.ie/blog</link>
	<description>David Dolphin&#039;s Blog</description>
	<lastBuildDate>Sat, 16 Jul 2011 01:59:03 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.4</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Cisco EPC2425 in bridging mode</title>
		<link>http://pf.skynet.ie/blog/142/cisco-epc2425-in-bridging-mode/</link>
		<comments>http://pf.skynet.ie/blog/142/cisco-epc2425-in-bridging-mode/#comments</comments>
		<pubDate>Wed, 22 Sep 2010 00:12:50 +0000</pubDate>
		<dc:creator>David Dolphin</dc:creator>
				<category><![CDATA[Meh]]></category>

		<guid isPermaLink="false">http://pf.skynet.ie/blog/?p=142</guid>
		<description><![CDATA[I&#8217;m using a DD-WRT&#8217;d Linksys WRT54GS with my UPC broadband. I wanted to put the UPC router (EPC 2425) in bridge mode leaving all routing up to the Linksys.
My firmware revision is epc2425-E10-5-v202r12812-100519cs_upc . Boards.ie provided some useful information about places to look for the setting as it was not immediately available. For future reference, [...]]]></description>
			<content:encoded><![CDATA[<p>I&#8217;m using a DD-WRT&#8217;d Linksys WRT54GS with my UPC broadband. I wanted to put the UPC router (EPC 2425) in bridge mode leaving all routing up to the Linksys.</p>
<p>My firmware revision is epc2425-E10-5-v202r12812-100519cs_upc . Boards.ie provided some useful information about places to look for the setting as it was not immediately available. For future reference, user: admin, pass: W2402 gives access to the advanced settings page.</p>
<p>As it turns out, you can also access the router though the 192.168.100.1 IP, despite the fact that my network was 192.168.1.0/24. The settings accessible via 192.168.100.1 and 192.168.1.1 are different.</p>
<p>&#8220;Gateway Mode&#8221; was not listed in the menu under .1.1, but was on the .100.1 config page. The link is accessible using either IP, on <a href="http://192.168.100.1/GatewayMode.asp">http://192.168.100.1/GatewayMode.asp</a> or <a href="http://192.168.1.1/GatewayMode.asp">http://192.168.1.1/GatewayMode.asp</a>, and can be set using either.</p>
]]></content:encoded>
			<wfw:commentRss>http://pf.skynet.ie/blog/142/cisco-epc2425-in-bridging-mode/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>ASP page include (w/ PHP comparison for reference)</title>
		<link>http://pf.skynet.ie/blog/124/asp-page-include-w-php-comparison-for-reference/</link>
		<comments>http://pf.skynet.ie/blog/124/asp-page-include-w-php-comparison-for-reference/#comments</comments>
		<pubDate>Mon, 15 Mar 2010 18:49:21 +0000</pubDate>
		<dc:creator>David Dolphin</dc:creator>
				<category><![CDATA[Meh]]></category>

		<guid isPermaLink="false">http://pf.skynet.ie/blog/?p=124</guid>
		<description><![CDATA[I&#8217;ve had to do a project in ASP for college. It&#8217;s taken me a while to wrap my head around the following construct in ASP, the idea is that you include a file from a HTTP GET variable, with path parsing (to ensure you don&#8217;t leave your application open to attack). This allows you to [...]]]></description>
			<content:encoded><![CDATA[<p>I&#8217;ve had to do a project in ASP for college. It&#8217;s taken me a while to wrap my head around the following construct in ASP, the idea is that you include a file from a HTTP GET variable, with path parsing (to ensure you don&#8217;t leave your application open to attack). This allows you to have a common header and footer and change the body of the page as necessary.</p>
<p>Make sure you&#8217;re handling your 404&#8217;s correctly. In this example 404.{asp,php} doesn&#8217;t actually exist, so it will naturally 404. Maybe not the prettiest, but this is a bit of a hack.</p>
<p>This is the code in PHP:</p>
<pre>&lt;?php
$MyFile = $_GET['page'];

if ($MyFile == "")
	$MyFile = "homepage";

$MyFile = str_replace('.', '', $MyFile);
$MyFile = str_replace('/', '', $MyFile);
$MyFile = str_replace('\\', '', $MyFile);

$MyFile = 'pages/' . $MyFile . '.php';

if (file_exists($MyFile)) {
	include($MyFile);
} else {
	header( 'Location: http://doma.in/404.php');
};
?&gt;</pre>
<p>And this is the equivilant ASP:</p>
<pre>&lt;%
Dim MyFile
MyFile = Request.QueryString("page")

If MyFile="" Then
	MyFile = "homepage"
End If

MyFile = replace(MyFile,".","")
MyFile = replace(MyFile,"/","")
MyFile = replace(MyFile,"\","")

MyFile = "pages/" &amp; MyFile &amp; ".asp"

Dim FileSystemObject
Set FileSystemObject=Server.CreateObject("Scripting.FileSystemObject")
If FileSystemObject.FileExists(Server.MapPath(MyFile))=true Then
	Server.Execute(MyFile)
Else
	Response.Redirect("404.asp")
End If

Set FileSystemObject=nothing
%&gt;</pre>
]]></content:encoded>
			<wfw:commentRss>http://pf.skynet.ie/blog/124/asp-page-include-w-php-comparison-for-reference/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>More Updates</title>
		<link>http://pf.skynet.ie/blog/62/more-updates/</link>
		<comments>http://pf.skynet.ie/blog/62/more-updates/#comments</comments>
		<pubDate>Sat, 28 Mar 2009 02:27:29 +0000</pubDate>
		<dc:creator>David Dolphin</dc:creator>
				<category><![CDATA[Meh]]></category>

		<guid isPermaLink="false">http://pf.csn.ul.ie/blog/?p=62</guid>
		<description><![CDATA[Last week Skycon won the UL Society event of the year award. We&#8217;ll be putting Skycon forward for BICS. For the posters I used a set of nasty bash scripts to create some horible LaTeX which resulted in an ok PDF, to print every xkcd created (at the time of printing). Martin Scharrer then helped [...]]]></description>
			<content:encoded><![CDATA[<p>Last week <a title="Skycon '09" href="http://skycon.skynet.ie">Skycon</a> won the UL Society event of the year award. We&#8217;ll be putting Skycon forward for <a title="Board of Irish College Societies" href="http://www.bics.ie/">BICS</a>. For the posters I used a set of <a href="http://www.skynet.ie/~tyrion/pro/posters/xkcd/sh/">nasty bash scripts</a> to create some <a href="http://www.skynet.ie/~tyrion/pro/posters/xkcd/xkcd_poster_4.tex">horible LaTeX</a> which resulted in an <a href="http://www.skynet.ie/~tyrion/pro/posters/xkcd/xkcd_poster_4.pdf">ok PDF</a>, to print every xkcd created (at the time of printing). <a href="http://www.scharrer-online.de/">Martin Scharrer</a> then <a href="http://www.skynet.ie/~tyrion/pro/posters/xkcd/xkcd_poster_4_martin_improve.tex">helped with the LaTeX</a>, and the results were <a href="http://www.skynet.ie/~tyrion/pro/posters/xkcd/xkcd_poster_4_martin_improve.pdf">even better</a>. Unfortunatly Martins <a href="http://www.skynet.ie/~tyrion/pro/posters/xkcd/martin_mail.txt">additions</a> came after the printing had been done, but I&#8217;ll know for next time.</p>
<p>I ran in the ULSU elections this week, for the post of Communications officer and lost (1080 votes to 1196 votes). There was some great election coverage on blogs (<a href="http://ulgrapevine.blogspot.com/" target="_blank">The UL Grapevine</a>, <a href="http://theulstory.blogspot.com/" target="_blank">The UL Story</a>, <a href="http://ulvoteforme.blogspot.com/" target="_blank">UL Vote For Me</a> and <a href="http://unfocal.blogspot.com/" target="_blank">UnFocal</a>) and in Forums (<a href="http://pie.boards.ie/vbulletin/showthread.php?t=2055517926">boards.ie</a> and <a href="http://www.ulsu.ie/forum/index.php?topic=2087.0">the ULSU Forums</a>)</p>
<p>I got my FYP in, the <a title="David Dolphin - Evaluation of WARP3D" href="http://www.skynet.ie/~tyrion/fyp/cd/david-dolphin_fyp-report.pdf">write-up is available</a> and the source Matlab files I wrote to visualise WARP3D problems (extendable to general Patran results files) are also online, nicknamed <a title="WarpViz - Matlab Visualisation tools for WARP3D and Patran" href="http://www.skynet.ie/~tyrion/fyp/cd/WarpViz/">WarpViz</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://pf.skynet.ie/blog/62/more-updates/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>The Nokia N810 (and why I prefer the ASUS eee901)</title>
		<link>http://pf.skynet.ie/blog/57/the-nokia-n810-and-why-i-prefer-the-asus-eee901/</link>
		<comments>http://pf.skynet.ie/blog/57/the-nokia-n810-and-why-i-prefer-the-asus-eee901/#comments</comments>
		<pubDate>Tue, 16 Dec 2008 21:07:53 +0000</pubDate>
		<dc:creator>David Dolphin</dc:creator>
				<category><![CDATA[Meh]]></category>

		<guid isPermaLink="false">http://pf.csn.ul.ie/blog/?p=57</guid>
		<description><![CDATA[I like the idea of small portable devices used to connect to the internet. They&#8217;re not going to be ideal for CAD work, writing a thesis, or churning out thousands of lines of code. But they should work fine in many situations where an internet connecton comes in handy. Fireing off a quick mail between [...]]]></description>
			<content:encoded><![CDATA[<p>I like the idea of small portable devices used to connect to the internet. They&#8217;re not going to be ideal for CAD work, writing a thesis, or churning out thousands of lines of code. But they should work fine in many situations where an internet connecton comes in handy. Fireing off a quick mail between lectures, checking cinema times in the pub, pulling up Wikipedia/IMDB when watching a movie, grabbing a Podcast when waiting for the bus, IRC on the bus, &amp;c. As a student price is also an important factor.</p>
<p>About 19 months ago, at <a href="http://skycon.skynet.ie">Skycon &#8216;07</a>, I got a brief look at <a href="http://mjg59.livejournal.com">Matthew Garretts</a> <a href="http://europe.nokia.com/A4305062">Nokia N800 internet tablet</a>. I&#8217;d read about them online and was drawn in. They looked set to fill the gap in the market left after the demise of the PDA, somewhere between smartphone and laptop.</p>
<p>Later in 2007, at <a href="http://www.froscon.de/index.php?id=15&amp;L=1&amp;no_cache=1">FrOSCon</a> I got to play with a 770 and N800 properly. I was one of the FrOSCon Crew/Helfers, manning a camcorder for a track. <a href="http://www.tarent.com/en/node/117">Tarent</a> were showing off some Java collaboration app on the Nokia Internet Tablets and the <a href="http://www.productwiki.com/irex-iliad/">iRex iLiad</a>. I borrowed an N800 for a day while on the camcorder and played with it.</p>
<p>One of the first things which threw me with the N800 was the keyboard. I remember having to find an actual QWERTY keyboard in order to realise what symbols my SSH password was composed of, thanks to the offputting touchscreen layout. My main thought comming away from the N800 was &#8220;this&#8217;d be great with a proper keyboard&#8221;.</p>
<p>So I kept an eye on forums (<a href="http://www.internettablettalk.com/">internettablettalk</a>++) and was delighted to hear that the N810 was coming with a keyboard. Surely this would trounce a small laptop, due to longer battery life and more portability. You can&#8217;t comfortably put any laptop in your pocket. The Asus eeePC line of sub-notebook/mini-laptops started taking the world by storm last Christmas. At <a href="http://www.cebit.de/homepage_e">CeBIT</a> <a href="http://davem.skynet.ie/Photos/CeBit/tyrion/DSC00285.JPG">I got my hands on an eee900</a>. Its major drawback seemed to be the relatively short battery life, compared to the tablets.</p>
<p>Then the eee901 was announced which boasted a vastly superior battery life thanks to the Atom processor. My stedfast desires for a tablet were waning.</p>
<p>I saw an N810 at <a href="http://www.thelasthope.org/">The Last Hope</a>, and a 901 at <a href="http://www.defcon.org/">DEFCON</a>, but didn&#8217;t get a chance to play with either of them. I got my hands on an eee1000 at <a href="http://www.ubuntu-ie.org/node/14">Software Freedom Day</a> in Dublin and found that while the specs were great it was starting to stray from the carry-everywhere-device I was looking for, due to the increased size.</p>
<p>So, having not fully experimented with either the N810 or eee901 I took a leap and went with the eee901 a few weeks back. And within a week the 8Gb SSD failed (yes, I got a Windows XP version, <a href="http://www.sharptext.com/">Sharptext</a> don&#8217;t do Linux boxes). And then the VGA out failed.</p>
<p>I rang the wholesaler who I purchased the eee901 from and was told that I&#8217;d have to return it to ASUS. Rang ASUS and was told that I&#8217;d have to ship it to .de and that I&#8217;d be without it for 6 weeks. Nuts to that. I&#8217;ll return it in January when I won&#8217;t need it (as much).</p>
<p>I&#8217;ve read stories in the past of <a href="http://yro.slashdot.org/article.pl?sid=07/09/12/0011209">manufacturers not repairing laptops when the OS has been replaced</a>. That and the fact that the wireless drivers still aren&#8217;t 100% means that I&#8217;ve been using the eee901 with Windows XP and 4Gb of storage space.</p>
<p>One of the first people to criticise me when I got the eee901 was <a href="http://www.grizi.net/">Joe</a>, telling me that the tablet was a better choice. After all the hardware trouble I went through I started to think that maybe he was right.</p>
<p>Last week Internet Tablet Talk <a href="http://www.internettablettalk.com/2008/12/02/internet-tablet-talk-to-become-talkmaemoorg/">announced that they were becoming talk.maemo.org</a>. Community driven (sites) forums or wikis are usually the best place to find out about a given device, product, service, band, $thing. The <a href="http://www.misticriver.net ">Mistic River</a> forums are a fantastic resource for all things iRiver (unfortunately the H320 hasn&#8217;t seen much action since it recorded the HOPE/DEFCON interviews). <a href="http://www.musewiki.org/">Muse Wiki</a> is another great example of a community driven site.</p>
<p>One of the best things about community sites is that the good and the bad come out, freedom of speech is (usually) a high priority. If a certain feature needs fixing then a post will go up and irate users will pin their avatar to a petition. I&#8217;m reasonably sure (but have no proof) that the likes of Nokia, Muse and iRiver will keep an eye on these user sites from time to time. It&#8217;s effectively free feedback. If they want to continue pleasing their most loyal fans then fixing current problems seems like the logical step.</p>
<p>So news of the largest Nokia Internet Tablet community site merging with the official site for the device OS, and Nokia funding the site, makes for interesting news. I brought it up in the pub on Friday and boots mentioned that he had an N810 lying at the back of a drawer, unused. Very kindly he let me borrow it. And I&#8217;ve been using the N810.</p>
<p>The first thing I&#8217;ve noticed about the N810 over the N800 is that it seems to be much more sluggish. After a fresh flash (4.2008.36-5) and a reboot, with no extra applications installed there is ~10Mb free from 128Mb of RAM. In five days I&#8217;ve had to restart the device maybe 8 times, due to the browser locking up, or web audio streams no longer playing.</p>
<p>When the N810 works it&#8217;s great, I&#8217;ve been listening to more radio and reading more news because of it. The status light is nice. The IM application is great too, but could do with MSN/Yahoo IM support by default. The ability to easily install 3rd Party Apps is a godsend because some of the default options are woesome (I&#8217;m looking at you terminal, with your lack of font or colour options).</p>
<p>There seems to be a ton of processes running on the device. I taped out this post so far on the N810 (in the OS Notes app, wordpress in the Web application was too slow) and have a few other programs running, three web browser windows and roxterm with an SSH session to a Skynet screen session. I have ten extra apps installed (advanced-backlight, bash2, grsync, load-applet, mauku, mnotify, openssh-client, roxterm, rsync and sudser). There are 90+ processes running and the loads are is ~2. I&#8217;ve seen a 5 minute average load of 5+ on this, when the device was idle for 5 minutes.</p>
<p>The UI is very shiney, but I get the feeling that the maemo project are putting form before function. I&#8217;d be more than happy with no gradiends or rounded corners if it meant the device was snappier. XP has a &#8220;classic mode&#8221; option, why not maemo OS2008 too?</p>
<p>My other big gripe is with the keyboard. The main keyboard has 40 keys and lets you input 71 characters (plus backspace, enter and control). The iGo Bluetooth keyboard I have has 50 keys but allows you to input 97 symbols, plus the standard control, alt, meta, backspace, tab, escape, enter, delete. iGo pull it off by having two function keys, which would make life with the N810 easier.</p>
<p>irssi is painful without tab, alt, escape, or square brackets (to obtain an escape). I&#8217;ve found that Ctrl+i is tab and Ctrl+Fn+e is an escape character. I still cant find a Page up (unless I remap the keyboard) so reading scrollback is out for now.</p>
<p>The BBC site lets me watch the news with no problem. RTÉ claims I don&#8217;t have RealPlayer installed, even though there is a Real media player on the N810.</p>
<p>All these little things add up, while the internet tablets are a major step up in terms of functionality and useability from any smartphone I&#8217;ve used, it&#8217;s still not up a replacement for a laptop. While I&#8217;d really like to own one of these devices, I would have to own a laptop first. I&#8217;ll be sorry when I have to give the N810 back to boots.</p>
]]></content:encoded>
			<wfw:commentRss>http://pf.skynet.ie/blog/57/the-nokia-n810-and-why-i-prefer-the-asus-eee901/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Yeah, I&#8217;m probabbly crazy&#8230;</title>
		<link>http://pf.skynet.ie/blog/56/yeah-im-probabbly-crazy/</link>
		<comments>http://pf.skynet.ie/blog/56/yeah-im-probabbly-crazy/#comments</comments>
		<pubDate>Tue, 21 Oct 2008 03:54:02 +0000</pubDate>
		<dc:creator>David Dolphin</dc:creator>
				<category><![CDATA[Meh]]></category>

		<guid isPermaLink="false">http://pf.csn.ul.ie/blog/?p=56</guid>
		<description><![CDATA[&#8230;but you only live once, right?
Last Wednesday I was chatting with artemis and she mentioned that she was in Warsaw. So, I decided to book flights &#38; pay a visit (for the weekend just gone). This was my first trip to Poland and it really took me by surprise.
I was expecting grey and drab, dull [...]]]></description>
			<content:encoded><![CDATA[<p>&#8230;but you only live once, right?</p>
<p>Last Wednesday I was chatting with artemis and she mentioned that she was in Warsaw. So, I decided to book flights &amp; pay a visit (for the weekend just gone). This was my first trip to Poland and it really took me by surprise.</p>
<p>I was expecting grey and drab, dull and monotenous, the classic bloc stereotype. However, I found another modern European capital. I feel that you can tell allot about a city based on what advertisements it displays. Warsaw seemed to match advertisements one would see in New York, London, Paris or Brussels (fashion, consumer electronics, &amp;c.).</p>
<p>When someone loses in a certain situation another typically wins. It would appear that Poland are striding ahead while the West worries about recessions and cutbacks. I&#8217;m told that Warsaw is the most expensive city in Poland, but it still feels cheap by Western prices. You can&#8217;t beat €1 for a glass of beer or shot of Vodka in a local bistro.</p>
<p>In other news, I got an ASUS EeePC 901 on Friday. The thing is a trooper. It lasted a good 7+ hours on Saturday, 2 on the bus reading Heroes comics, 3 in the airport on the internet and then another 2 in the air reading comics again.</p>
<p>Myself and Hugh have started a WLAN project, with the aim of connecting 5 houses in college court. We&#8217;re currently waiting on parts from <a title="DX" href="http://www.dealextreme.com/">Deal Extreme</a>.</p>
<p>I&#8217;ve started driving lessons again. Have one tomorrow.</p>
<p>I&#8217;m chair of Clubs and Societies Council this year. It&#8217;s a line for the CV, but it means I don&#8217;t get to argue and make points in council meetings, which I really enjoyed (and I&#8217;m pretty sure everyone else hated).</p>
<p>I suddenly see that I have little to no free time in 4th year, and it&#8217;s only going to get worse as my project load increases. I can see myself living in here (AM-061) for the next few weeks.</p>
<p>I&#8217;ve started thinking about next year too, and what I&#8217;m going to do with myself once I graduate. No hard plans yet.</p>
<p>I&#8217;m just after toying with <a title="Photosynth" href="http://photosynth.net/Default.aspx">Microsoft&#8217;s Photosynth</a>. I only managed to copy 13 photos off my camera before it died, so I&#8217;ll have to give it a larger set of photos. At the moment it doesn&#8217;t look terribly impressive, it&#8217;s just a iPhone-UI-esque 1999 panoramic image viewer. I do like the way you can license the photos under a Creative Commons license, considering <a title="Slashdot:  Microsoft Treating &quot;Windows-Only&quot; As Open Source" href="http://developers.slashdot.org/developers/08/10/04/1515244.shtml">recent licensing hiccups</a>.</p>
<p>I&#8217;ve been toying with the idea of going to <a title="25th Chaos Communication Congress" href="http://events.ccc.de/congress/2008/">25C3</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://pf.skynet.ie/blog/56/yeah-im-probabbly-crazy/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>J1 USA Work &amp; Travel Student Handbook</title>
		<link>http://pf.skynet.ie/blog/51/j1-usa-work-travel-student-handbook/</link>
		<comments>http://pf.skynet.ie/blog/51/j1-usa-work-travel-student-handbook/#comments</comments>
		<pubDate>Tue, 01 Jul 2008 20:11:53 +0000</pubDate>
		<dc:creator>David Dolphin</dc:creator>
				<category><![CDATA[Abroad]]></category>
		<category><![CDATA[America]]></category>
		<category><![CDATA[Meh]]></category>

		<guid isPermaLink="false">http://pf.csn.ul.ie/blog/?p=51</guid>
		<description><![CDATA[Just incase I (or any of you) need it in the furure, here is the link to the USIT/SEVIS/CIEE J1handbook for 2008 (and a local mirror on Skynet).
]]></description>
			<content:encoded><![CDATA[<p>Just incase I (or any of you) need it in the furure, here is the link to the <a title="USIT J1 Handbook" href="https://www.j1online.ie/EntryForms/docs/j1handbook.pdf">USIT/SEVIS/CIEE J1handbook</a> for 2008 (and a <a title="J1 Handbook Mirror" href="http://pf.skynet.ie/misc/j1handbook.pdf">local mirror on Skynet</a>).</p>
]]></content:encoded>
			<wfw:commentRss>http://pf.skynet.ie/blog/51/j1-usa-work-travel-student-handbook/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>This year so far&#8230;</title>
		<link>http://pf.skynet.ie/blog/46/this-year-so-far/</link>
		<comments>http://pf.skynet.ie/blog/46/this-year-so-far/#comments</comments>
		<pubDate>Fri, 02 May 2008 19:42:03 +0000</pubDate>
		<dc:creator>David Dolphin</dc:creator>
				<category><![CDATA[Meh]]></category>

		<guid isPermaLink="false">http://pf.csn.ul.ie/blog/?p=46</guid>
		<description><![CDATA[Here are a few things I&#8217;ve done since my last post (in approximate chronological order):

Became President of the University of Limerick Computer Society (Skynet).
Received a 1Gb iPod shuffle as a Christmas present. It works well with Winamp 5.5 out of the box. I use it for listening to podcasts (Lugradio, Off the Hook and Off [...]]]></description>
			<content:encoded><![CDATA[<p>Here are a few things I&#8217;ve done since my last post (in approximate chronological order):</p>
<ul>
<li>Became President of the <a href="http://www.skynet.ie">University of Limerick Computer Society (Skynet)</a>.</li>
<li>Received a <a href="http://en.wikipedia.org/wiki/IPod_shuffle#Second_generation" title="iPod shuffle, 2nd Gen">1Gb iPod shuffle</a> as a Christmas present. It works well with <a href="http://en.wikipedia.org/wiki/Winamp" title="Winamp">Winamp</a> 5.5 out of the box. I use it for listening to podcasts (<a href="http://www.lugradio.org/" title="Lugradio">Lugradio</a>, <a href="http://www.2600.com/offthehook/" title="2600: Off the Hook">Off the Hook</a> and <a href="http://www.2600.com/offthewall/" title="2600: Off the Wall">Off the Wall</a>) and music while cycling in and out of college.</li>
<li>Finished my Co-Op with <a href="http://www.vekoma.com/" title="Vekoma">Vekoma</a>. Overall a very worthwhile experience.</li>
<li>Set up a <a href="http://en.wikipedia.org/wiki/Twitter" title="Wikipedia: Twitter">Twitter</a> account (<a href="http://twitter.com/ddol" title="David Dolphin's Twitter">ddol</a>) to add to my collection (<a href="http://www.linkedin.com/in/daviddolphin" title="Linkedin">Linkedin</a>, <a href="http://www.bebo.com/tyrion92" title="Bebo">Bebo</a>, <a href="http://www.facebook.com/people/David_Dolphin/605896171" title="Facebook">Facebook</a> and <a href="http://del.icio.us/tyrion92" title="del.icio.us">del.icio.us</a>).</li>
<li>Went to <a href="http://en.wikipedia.org/wiki/Kitzb%C3%BChel" title="Kitzbühe">Kitzbühe</a> for a Snowboarding trip. Crashed into a Scottish kid (Rory) in my group accidentally and sent him to hospital. Was summoned to the local Police station. In Austria ski crashes are as serious as car crashes. Rory was OK, just bruised. Sorry Rory.</li>
<li>Organized (with the Skynet committee):
<ul>
<li>Weekly social meetings (Lunch and Pints). These have been a great success and have brought the social side of Skynet back to life.</li>
<li>Trip for Skynet members to <a href="http://www.cebit.de/homepage_e" title="CeBIT: English">CeBIT &#8216;08</a>. <a href="http://www.grizi.net/blog2/2008/03/17/cebit-trip/" title="Joe's CeBIT report">Joe wrote about it</a> and Dave has a <a href="http://davem.skynet.ie/Photos/CeBit/" title="davem CeBIT photos">collection of photos</a> up (<a href="http://davem.skynet.ie/Photos/cebit.tar" title="CeBIT tar">tar here</a>).</li>
<li>Intersocs weekend. Met new faces from <a href="https://www.socs.nuigalway.ie/gallery/gallery.php?g2_view=core.ShowItem&amp;g2_itemId=10450" title="NUIG Photos">NUIG</a>. Went paintballing. Had a party to wish <a href="http://blogs.nonado.net/artemis" title="Dianne Gordon's Blog">Dianne</a> farewell in her voyages to New York (<a href="http://photos.killminus9.net/dianes_party/" title="Photos by Cian Davis">photos</a>).</li>
</ul>
</li>
<li>Setup and, with <a href="http://www.skynet.ie/~swamptin/" title="Eoghan O'Brien (Swamp Thing)">Eoghan O&#8217;Brien</a>, ran <a href="http://rag.skynet.ie/" title="Rag Radio">RagRadio</a>. Many thanks to <a href="http://rag.skynet.ie/?path=about" title="About RagRadio">all the presenters</a> and listeners for making it a great experience. Special thanks to Eoghan who was a fantastic station manager.</li>
<li>Off the back of RagRadio myself and Eoghan have formed a company, Internet Audio Networks Ltd. or IAN. More details to come over the summer.</li>
<li>Watched <a href="http://www.imdb.com/title/tt0390384/" title="IMDB: Primer">Primer</a>. <a href="http://twitter.com/ddol/statuses/779879237" title="Twitter post re: Primer">Was blown away</a>.</li>
<li>Ran <a href="http://game.skynet.ie" title="The Skynet Game">The Skynet Game 2008</a>. Received bonus <a href="http://game.skynet.ie/?p=clues" title="The Skynet Game Clues">clues</a> from <a href="http://cjb.ie/" title="m1">m1</a>, <a href="http://cheez.nonado.net" title="Mark Shaw">Mark </a>and <a href="http://www.productwiki.com/erik/" title="Erik Kalviainen">Erik</a> (from <a href="http://www.productwiki.com/" title="ProductWiki">ProductWiki</a>), many thanks to you guys. Congrats to the <a href="http://game.skynet.ie/?p=winners" title="The Skynet Game Winners">winners</a>; <a href="http://www.grizi.net/" title="Joe's Homepage">Joe</a>, <a href="http://www.skynet.ie/~moonpie/" title="Eoin">Eoin</a> and <a href="http://www.facebook.com/people/Shane_OCallaghan/663476286" title="Shane O'Callaghan">Shane</a>. Will be open sourcing to the webapp Soon <sup>TM</sup>. My previous blog post was a clue in this years game (answer was charlie).</li>
<li>Decided to do a J1 this summer in New York. Currently finding a job and accommodation.</li>
<li>Signed up to be an <a href="http://www.ul.ie/admissions/newprospectus/Undergraduate/general/orientation.shtml" title="UL Orientation">Orientation Guide</a> for September 2008.</li>
<li>Gave a talk to first years on the joys of doing <a href="http://www.ul.ie/coop/coop/students/internationalcoop.shtml" title="International Co-Op">Co-Op abroad</a>. Was given a free dinner by the Co-Op office in the Millstream private dining restaurant for it. By far the best food on campus.</li>
<li>Received my Final Year Project (FYP) Title: <em>Evaluation of an <a href="http://en.wikipedia.org/wiki/Open_source" title="Open Source">open-source</a> <a href="http://en.wikipedia.org/wiki/Finite_element" title="Finite Element">finite element</a> package, <a href="http://cern49.cee.uiuc.edu/cfm/warp3d.html" title="WARP3D">WARP3D</a></em>. FEA is one of my favorite modules so far and this is FEA under the GPL. Ultimate Win!</li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://pf.skynet.ie/blog/46/this-year-so-far/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Greatest Hits</title>
		<link>http://pf.skynet.ie/blog/44/greatest-hits/</link>
		<comments>http://pf.skynet.ie/blog/44/greatest-hits/#comments</comments>
		<pubDate>Sun, 23 Dec 2007 22:58:39 +0000</pubDate>
		<dc:creator>David Dolphin</dc:creator>
				<category><![CDATA[Meh]]></category>

		<guid isPermaLink="false">http://pf.csn.ul.ie/blog/?p=44</guid>
		<description><![CDATA[
]]></description>
			<content:encoded><![CDATA[<p align="center"><a href="http://pf.skynet.ie/images/misc/DSCI0427.JPG" title="Greatest Hits"><img src="http://pf.skynet.ie/images/misc/tmpphpKF2zZj.jpg" title="Greatest Hits" alt="Greatest Hits" align="middle" border="0" height="169" hspace="0" vspace="0" width="300" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://pf.skynet.ie/blog/44/greatest-hits/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Last weekend (and radios on a plane)</title>
		<link>http://pf.skynet.ie/blog/42/last-weekend-and-radios-on-a-plane/</link>
		<comments>http://pf.skynet.ie/blog/42/last-weekend-and-radios-on-a-plane/#comments</comments>
		<pubDate>Wed, 21 Nov 2007 16:02:14 +0000</pubDate>
		<dc:creator>David Dolphin</dc:creator>
				<category><![CDATA[Meh]]></category>

		<guid isPermaLink="false">http://pf.csn.ul.ie/blog/?p=42</guid>
		<description><![CDATA[Belated congratulations to Steve and Nóirín on their wedding, I&#8217;m not sure where in the world they are at the moment but I&#8217;m sure they&#8217;re having a ball.
I was only able to make the wedding afters but it was great to see a bunch of familiar faces (diamond, noirin, cheez, zoney, bruce, luisa, atlas, drusilla, [...]]]></description>
			<content:encoded><![CDATA[<p>Belated congratulations to Steve and Nóirín on their wedding, I&#8217;m not sure where in the world they are at the moment but I&#8217;m sure they&#8217;re having a ball.</p>
<p>I was only able to make the wedding afters but it was great to see a bunch of familiar faces (diamond, noirin, cheez, zoney, bruce, luisa, atlas, drusilla, ducky, dredg, liv, froodie, braz, artemis, rosie, tony) and some new faces (john, daniel and many others). It was my first time in the Radisson SAS St. Helen&#8217;s and it is a stunning setting for such an event.</p>
<p>Went home on Friday and was pleasantly surprised to find that Ciaran would be in Waterford for the weekend.</p>
<p>So many things happened over the weekend; I bought myself a jacket, I sat on the <a href="http://www.waterfordcity.ie/city/plaza.htm" title="The Plaza">Plaza </a>drinking cans and Kopparbergs for a good 3 hours while talking to Ciaran, I drank most of a bottle of Absinth, I fell asleep on my living room floor, I laughed, I got a sorely needed injection of sociability.</p>
<p>I also met up with bigbro and rach in DUB and chatted about political matters, plus I retrieved my PXC 250&#8217;s. Many thanks again to Gar and Rach for dropping off the headphones.</p>
<p>On the flight back to EIN the battery in my H320 swelled a bit and put pressure on the hard drive, forcing the head to a stand still (in to the platter I think, I&#8217;m quite sure this can&#8217;t be good for the player). Without access to MP3&#8217;s or Video  (and not wanting to just stare at a headrest for 50 mins) I did the only other thing possible, I switched on the FM receiver in my player, just to see what would happen.</p>
<p>I know there are funny laws about broadcasting in the electromagnetic spectrum while on a plane (for fear of interfering with cockpit instrumentation) but I suspect there is nothing saying I cant use my DAP to pick up FM signals (but I may well be wrong).</p>
<p>Anyway, a few things happened:</p>
<ol>
<li>I could pick up several BBC channels perfectly while we were over the UK (at 14,000 ft). I assumed (incorrectly) that a plane was a Farady cage and would block external electromagnetic waves. This leads to the question &#8220;If the UK/US has nationwide WiMax (or its successor) coverage in the future will we be able to use it on planes?&#8221;.</li>
<li>Reception was pristine for extended periods (10-15mins) and would then rapidly  decline (within 2-3 seconds it would go from almost no noise to complete static).  I assume this was due to geographical features (or lack thereof) on the ground and the speed we were travelling at).</li>
<li>I found a band of complete silence from 101.5-101.7Mhz. There was a little static at 101.75Mhz (the iRiver only steps up in 0.5Mhz increments) and 101.8Mhz was back to normal static. This remained for the entire flight duration, it was coming from the plane somewhere. Unfortunately I wasn&#8217;t able to record it (swollen battery) but I suspect it was either an iTrip (which had been left on in hand baggage while the iPod had been turned off and so was transmitting nothing) or some component of the plane itself (Boeing 737-800).</li>
</ol>
<p>That&#8217;s about it, it was a superb break and now I&#8217;m back in The Netherlands.</p>
]]></content:encoded>
			<wfw:commentRss>http://pf.skynet.ie/blog/42/last-weekend-and-radios-on-a-plane/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>New earbuds &#8211; Sennheiser MX 350</title>
		<link>http://pf.skynet.ie/blog/41/new-earbuds-sennheiser-mx-350/</link>
		<comments>http://pf.skynet.ie/blog/41/new-earbuds-sennheiser-mx-350/#comments</comments>
		<pubDate>Wed, 07 Nov 2007 19:08:25 +0000</pubDate>
		<dc:creator>David Dolphin</dc:creator>
				<category><![CDATA[Meh]]></category>

		<guid isPermaLink="false">http://pf.csn.ul.ie/blog/?p=41</guid>
		<description><![CDATA[My stock iRiver H320 earbuds finally died last Friday as I was on the train from Roermond to Maastricht. I had a few minutes before my train to Leuven left so I popped in the Free Record Shop in Maastricht Station.
I grabbed a pair of Sennheiser MX 350&#8217;s for ~&#8364;11 and they are great (for [...]]]></description>
			<content:encoded><![CDATA[<p>My stock iRiver H320 earbuds finally died last Friday as I was on the train from Roermond to Maastricht. I had a few minutes before my train to Leuven left so I popped in the <a href="http://en.wikipedia.org/wiki/Free_Record_Shop" title="Free Record Shop">Free Record Shop</a> in Maastricht Station.</p>
<p>I grabbed a pair of <a href="http://reviews.cnet.com/headphones-headsets/sennheiser-mx-350-headphones/4505-6468_7-31212897.html" title="Cnet Review">Sennheiser MX 350</a>&#8217;s for ~&euro;11 and they are great (for the price). They are comfortable (I&#8217;ve worn them for about 4 hours straight with no problems), have quite good sound quality (again, for the design / price) and stay in my ears.</p>
<p>I still prefer my <a href="http://reviews.cnet.com/headphones-headsets/sennheiser-pxc-250/4505-6468_7-21258924.html?tag=prod.txt.1" title="Cnet Review">Sennheiser PXC 250</a>&#8217;s (but I left them in Ireland <img src='http://pf.skynet.ie/blog/wp-includes/images/smilies/icon_sad.gif' alt=':(' class='wp-smiley' />  ).</p>
]]></content:encoded>
			<wfw:commentRss>http://pf.skynet.ie/blog/41/new-earbuds-sennheiser-mx-350/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

