<?xml version="1.0" encoding="ISO-8859-1"?>
    <?xml-stylesheet type="text/css" href="http://stabeler.com/atom.css" ?>
  <feed xmlns="http://www.w3.org/2005/Atom" xml:lang="en-GB">

    <title>Stabeler.com Atom 1.0 blog feed</title>
    <link rel="self" href="http://stabeler.com/blog/atom.xml"/>
    <link rel="alternate" type="text/html" href="http://stabeler.com/blog/"/>
    <author>
      <name>Matt Stabeler</name>
    </author>
    <id>http://stabeler.com/</id>
    <generator>Stabeler.com blog</generator>
    <updated>2008-07-02T11:08:49Z</updated>

      <entry>
       <title>90% Networked Sony Devices. Good news for ubicomp researchers? As long as there is an api! </title>
       <link rel="alternate" type="text/html"
        href="http://stabeler.com/blog/510/"/>
        
      <id>http://stabeler.com/blog/510/</id>
        
       <updated>2008-07-02T11:08:49Z</updated>
       <published>2008-07-02T10:23:58Z</published>
       <author>
         <name>Matt Stabeler</name>
         <uri>http://mattstabeler.co.uk/</uri>
         <email>atomfeed@stabeler.com</email>
       </author><content type="xhtml" xml:lang="en"
        xml:base="http://stabeler.com/">
         <div xmlns="http://www.w3.org/1999/xhtml">
          Sony Goal: 90% of ALL Our Products Networked By 2010<br />
<br />
An <a href="http://gizmodo.com/5021343/sony-goal-90-of-all-our-products-networked-by-2010">article at Gizmodo</a> suggested that sony are planning to make 90% of their devices networked by 2010, which is pretty interesting, as it means Ubicomp researchers can munge all these things together to make cool new systems! That is, if the devices can be programmed and tinkered with. <br />
<br />
However this will hopefully mean the more consumer devices will become 'connected' and therefore accessible by pervasive systems at least in some minor way. One issue I see though is that of privacy, if all of these devices are connected, we have to make sure that the data they are transmitting is non-private or reliably encrypted, and of course network attack proof!<br />

          
         </div>
       </content>
      </entry>
      <entry>
       <title>Here Be Dragons - Firefox 3</title>
       <link rel="alternate" type="text/html"
        href="http://stabeler.com/blog/509/"/>
        
      <id>http://stabeler.com/blog/509/</id>
        
       <updated>2008-06-20T8:57:49Z</updated>
       <published>2008-06-20T8:57:49Z</published>
       <author>
         <name>Matt Stabeler</name>
         <uri>http://mattstabeler.co.uk/</uri>
         <email>atomfeed@stabeler.com</email>
       </author><content type="xhtml" xml:lang="en"
        xml:base="http://stabeler.com/">
         <div xmlns="http://www.w3.org/1999/xhtml">
          <a href="/news-blog/images/?image=1213948669_here_be_dragons_firefox.jpg" class="right" title="View larger image(s)"><img src="/news-blog/images/thumbnails/1213948669_here_be_dragons_firefox.jpg" title="Blog Image 1213948669_here_be_dragons_firefox.jpg" width="200" height="138" alt="Blog Image 1213948669_here_be_dragons_firefox.jpg" /></a>I found this amusing when trying to muck around with Firefox 3's configuration settings by putting about:config into the address bar :)
          
         </div>
       </content>
      </entry>
      <entry>
       <title>FOAF Explorer</title>
       <link rel="alternate" type="text/html"
        href="http://stabeler.com/blog/508/"/>
        
      <id>http://stabeler.com/blog/508/</id>
        
       <updated>2008-06-18T13:41:18Z</updated>
       <published>2008-06-18T13:36:20Z</published>
       <author>
         <name>Matt Stabeler</name>
         <uri>http://mattstabeler.co.uk/</uri>
         <email>atomfeed@stabeler.com</email>
       </author><content type="xhtml" xml:lang="en"
        xml:base="http://stabeler.com/">
         <div xmlns="http://www.w3.org/1999/xhtml">
          I've been mucking around with some <a href="http://www.foaf-project.org/">FOAF</a> stuff recently, and spent some time making a FOAF exploring application.<br />
<br />
This is very basic and does not work completely, but it is quite interesting.<br />
<br />
<br />
It uses the <a href="http://joseki.sourceforge.net/">Joseki</a> project to perform SPARQL queries on remote RDF files (i.e. It does pretty much the same as <a href="http://construct-infrastructure.org">Construct</a> does, but supports a FROM clause, in which you can specify a remote resource).<br />
<br />
The project is currently on <a href="http://precision.ucd.ie/~matt/foafexplorer/">my server</a>. But requires that I have the Joseki server running, so may not work.<br />
<br />
Using the following SPARQL query, it is possible to get some data out about a person. However, there is a flaw which I have not solved: How to get only that information about the top level person! As at the moment, I am using the rdf:ID="#me" part of a <a href="http://mattstabeler.co.uk/foaf.rdf">FOAF profile</a> to get the data, but this is not a defined standard, so somehow it needs a more general way of finding it.<br />
<br />
<code><br />
    PREFIX foaf: &amp;lt;http://xmlns.com/foaf/0.1/&amp;gt; <br />
    PREFIX rdf: &amp;lt;http://www.w3.org/1999/02/22-rdf-syntax-ns&amp;gt; <br />
    SELECT ?name ?nick ?title ?homepage ?mbox ?mbox_sha1sum ?img ?depiction ?surname ?family_name ?givenname ?firstName ?gender ?img ?workplaceHomepage ?workInfoHomepage ?schoolHomepage<br />
    FROM &amp;lt;http://mattstabeler.co.uk/foaf.rdf&amp;gt;<br />
    WHERE   {<br />
      OPTIONAL { <br />
         &amp;lt;http://mattstabeler.co.uk/foaf.rdf#me&amp;gt; foaf:name ?name. <br />
         ?y foaf:name ?name. <br />
      }<br />
      OPTIONAL { ?x  foaf:nick ?nick . }<br />
      OPTIONAL { ?x  foaf:title ?title . }<br />
      OPTIONAL { ?x  foaf:homepage ?homepage . }<br />
      OPTIONAL { ?x  foaf:mbox ?mbox . }<br />
      OPTIONAL { ?x  foaf:mbox_sha1sum ?mbox_sha1sum . }<br />
      OPTIONAL { ?x  foaf:img ?img . }<br />
      OPTIONAL { ?x  foaf:depiction ?depiction . }<br />
      OPTIONAL { ?x  foaf:surname ?surname . }<br />
      OPTIONAL { ?x  foaf:family_name ?family_name . }<br />
      OPTIONAL { ?x  foaf:givenname ?givenname . }<br />
      OPTIONAL { ?x  foaf:firstName ?firstName . }<br />
      OPTIONAL { ?x  foaf:gender ?gender . }<br />
      OPTIONAL { ?x  foaf:workplaceHomepage ?workplaceHomepage . }<br />
      OPTIONAL { ?x  foaf:workInfoHomepage ?workInfoHomepage . }<br />
      OPTIONAL { ?x  foaf:schoolHomepage ?schoolHomepage . }<br />
    } <br />
</code><br />
<br />
<br />
If anyone is interested in the code, its a bit ropey, but I will be happy to send it on.<br />
<br />
Other useful SPARQL queries:<br />
<br />
Find who the Person knows<br />
<code><br />
    PREFIX foaf: &amp;lt;http://xmlns.com/foaf/0.1/&amp;gt; <br />
    PREFIX rdfs: &amp;lt;http://www.w3.org/2000/01/rdf-schema#&amp;gt; <br />
    SELECT ?name ?seeAlso ?mbox_sha1sum<br />
    FROM  &amp;lt;http://mattstabeler.co.uk/foaf.rdf&amp;gt;<br />
    WHERE   {<br />
      ?x foaf:name ?name .<br />
      OPTIONAL { ?x  rdfs:seeAlso ?seeAlso . }<br />
    } <br />
</code><br />
<br />
Find out a Person's OnlineAccounts<br />
<code><br />
    PREFIX foaf: &amp;lt;http://xmlns.com/foaf/0.1/&amp;gt; <br />
    SELECT  ?accountName ?accountProfilePage ?accountServiceHomepage<br />
    FROM  &amp;lt;http://mattstabeler.co.uk/foaf.rdf#me&amp;gt;<br />
    WHERE   { <br />
      OPTIONAL{?x foaf:accountName ?accountName .}<br />
      OPTIONAL{?x foaf:accountServiceHomepage  ?accountServiceHomepage  .}<br />
      OPTIONAL{?x foaf:accountProfilePage   ?accountProfilePage   . }<br />
    }<br />
</code><br />

          
         </div>
       </content>
      </entry>
      <entry>
       <title>Structured PhD, Module Results</title>
       <link rel="alternate" type="text/html"
        href="http://stabeler.com/blog/507/"/>
        
      <id>http://stabeler.com/blog/507/</id>
        
       <updated>2008-06-16T11:02:29Z</updated>
       <published>2008-06-16T11:02:29Z</published>
       <author>
         <name>Matt Stabeler</name>
         <uri>http://mattstabeler.co.uk/</uri>
         <email>atomfeed@stabeler.com</email>
       </author><content type="xhtml" xml:lang="en"
        xml:base="http://stabeler.com/">
         <div xmlns="http://www.w3.org/1999/xhtml">
          As part of my Structured PhD Program, I have to take a number of modules for the structured part (as I skipped doing a Masters degree). Today, the results were released, and I managed to do OK! :)<br />
<br />
Graded Modules:<br />
<br />
Machine Learning (5) - B+<br />
Natural Computing (5) - A+<br />
Distributed Systems (5) - A+<br />
Agent Oriented Software (10) - A<br />
<br />
Pass/Fail Modules:<br />
<br />
Core Research Skills (2.5) - Pass<br />
Intro. to Entepreneurship (2.5) - Distinction<br />
<br />
<br />
Which all adds up to the 30 credits I need (?)(along with writing a transfer report which I am yet to write) to help me to get to stage II of my PhD, which has no coursework requirement, but will be much, much harder! :)
          
         </div>
       </content>
      </entry>
      <entry>
       <title>GENI - Geneological Mapping</title>
       <link rel="alternate" type="text/html"
        href="http://stabeler.com/blog/506/"/>
        
      <id>http://stabeler.com/blog/506/</id>
        
       <updated>2008-06-12T10:08:10Z</updated>
       <published>2008-06-12T10:08:10Z</published>
       <author>
         <name>Matt Stabeler</name>
         <uri>http://mattstabeler.co.uk/</uri>
         <email>atomfeed@stabeler.com</email>
       </author><content type="xhtml" xml:lang="en"
        xml:base="http://stabeler.com/">
         <div xmlns="http://www.w3.org/1999/xhtml">
          I was catching up on blogs this morning, and found geffys <a href="http://blog.geoffgarside.co.uk/post/35577715/geni-com">post</a> about the <a href="http://www.geni.com/">GENI</a> site, which lets you map out your family tree - it's pretty interesting and very addictive!
          
         </div>
       </content>
      </entry>
      <entry>
       <title>Mario Kart Menace?</title>
       <link rel="alternate" type="text/html"
        href="http://stabeler.com/blog/505/"/>
        
      <id>http://stabeler.com/blog/505/</id>
        
       <updated>2008-06-10T9:07:34Z</updated>
       <published>2008-06-10T9:07:34Z</published>
       <author>
         <name>Matt Stabeler</name>
         <uri>http://mattstabeler.co.uk/</uri>
         <email>atomfeed@stabeler.com</email>
       </author><content type="xhtml" xml:lang="en"
        xml:base="http://stabeler.com/">
         <div xmlns="http://www.w3.org/1999/xhtml">
          <a href="/news-blog/images/?image=1213085254_mariogg7_2.jpg" class="right" title="View larger image(s)"><img src="/news-blog/images/thumbnails/1213085254_mariogg7_2.jpg" title="Blog Image 1213085254_mariogg7_2.jpg" width="76" height="200" alt="Blog Image 1213085254_mariogg7_2.jpg" /></a>We have Mario Kart at our place too, I wondered why Laura is so keen on taking bananas to work!<br />
<br />
Originally from <a href="http://www.jasonnurse.com/blog/2008/05/29/JackJohnsonBetterTogether.aspx">Jason Nurse</a>
          
         </div>
       </content>
      </entry>
      <entry>
       <title>Back from Australia, it seems the sunshine was hiding in Ireland!</title>
       <link rel="alternate" type="text/html"
        href="http://stabeler.com/blog/504/"/>
        
      <id>http://stabeler.com/blog/504/</id>
        
       <updated>2008-06-07T15:45:31Z</updated>
       <published>2008-06-07T15:44:45Z</published>
       <author>
         <name>Matt Stabeler</name>
         <uri>http://mattstabeler.co.uk/</uri>
         <email>atomfeed@stabeler.com</email>
       </author><content type="xhtml" xml:lang="en"
        xml:base="http://stabeler.com/">
         <div xmlns="http://www.w3.org/1999/xhtml">
          We returned today from Australia, and are both glad the epic 28 hour journey is finally over, and it seems we are more likely to get a nice sun-tan here!<br />
<br />
I've put all of the pictures online now - the comprehensive list...<br />
<br />
<ul><br />
 <li><a href="/gallery/archived/pervasive08/">pervasive08</a></li><br />
 <li><a href="/gallery/archived/Australia2008_part1/">Australia2008_part1</a></li><br />
 <li><a href="/gallery/archived/Australia2008_part2/">Australia2008_part2</a></li><br />
 <li><a href="/gallery/archived/Australia2008_part3/">Australia2008_part3</a></li><br />
 <li><a href="/gallery/archived/Australia2008_surfing/">Australia2008_surfing</a></li><br />
</ul><br />

          
         </div>
       </content>
      </entry>
      <entry>
       <title>Lets try again, Hunting for sunshine on the Gold Coast, Via Hippie Town</title>
       <link rel="alternate" type="text/html"
        href="http://stabeler.com/blog/503/"/>
        
      <id>http://stabeler.com/blog/503/</id>
        
       <updated>2008-06-04T8:39:13Z</updated>
       <published>2008-06-04T8:39:13Z</published>
       <author>
         <name>Matt Stabeler</name>
         <uri>http://mattstabeler.co.uk/</uri>
         <email>atomfeed@stabeler.com</email>
       </author><content type="xhtml" xml:lang="en"
        xml:base="http://stabeler.com/">
         <div xmlns="http://www.w3.org/1999/xhtml">
          We met up with Vicky and Neil in Brisbane before we headed up the coast, they were planning a camping trip anyway, so they met with us in Noosa. <br />
<br />
We spent the afternoon and evening with them, and after a few beers and some expert weather predictions (by ourselves) we came to the conclusion that Laura and I should head south to the Gold coast. That way we might get a chance at getting some sunshine!<br />
<br />
We headed back through Brisbane, and went south, stopping briefly at Surfers Paradise, and a couple of other beaches, before settling in Coolongatta for the night - not alot to say about it, but we drank cheap beer at the surf club! <br />
<br />
Next morning we headed off to Byron bay, where we stayed in a camp site, with hot showers! We ended up staying there for two nights, as FINALLY the sun came out! :) Just as we were heading into Nimbin, the Maruajana capital of New South Wales. We just had a quick walk around, but were offered 'weed' by every third person we walked passed, so we ducked into the Museum there, which is probably really cool if your stoned but was a little odd!<br />
<br />
Today we had our first surf lesson which was very cool! There are some pictures, but i'll have to put them on later..... <br />
<br />
'Wildlife' Spotted so far:<br />
<br />
Kangaroos (at a distance)<br />
Lots of birds<br />
A few Bugs<br />
nothing scary :)<br />
one lizard.<br />
 
          
         </div>
       </content>
      </entry>
      <entry>
       <title>First night in a Jucy Campervan, Maroochidore</title>
       <link rel="alternate" type="text/html"
        href="http://stabeler.com/blog/502/"/>
        
      <id>http://stabeler.com/blog/502/</id>
        
       <updated>2008-05-31T4:24:35Z</updated>
       <published>2008-05-31T4:13:19Z</published>
       <author>
         <name>Matt Stabeler</name>
         <uri>http://mattstabeler.co.uk/</uri>
         <email>atomfeed@stabeler.com</email>
       </author><content type="xhtml" xml:lang="en"
        xml:base="http://stabeler.com/">
         <div xmlns="http://www.w3.org/1999/xhtml">
          <a href="/news-blog/images/?image=1212203599_IMG_1867__Desktop_Resolution_.JPG" class="right" title="View larger image(s)"><img src="/news-blog/images/thumbnails/1212203599_IMG_1867__Desktop_Resolution_.JPG" title="Blog Image 1212203599_IMG_1867__Desktop_Resolution_.JPG" width="200" height="160" alt="Blog Image 1212203599_IMG_1867__Desktop_Resolution_.JPG" /></a>The second night at the hostel was a bit odd - we stayed in a 4 person dorm room - all was ok til 3am when a drunk/stoned Germand decided that he wanted my bunk. We dissuaded him, but Laura was a little worried about that, we couldnt wait to get our camper!<br />
<br />
We picked up our Camper yesterday in the pouring rain, and headed up the coast to explore a little.<br />
<br />
We went through Caloundra and ended up in Maroochidore, we spotted a wiked camper in a car park, and pulled up for a chat. We ended up staying there the night and sharing some tasty red wine that we picked up in hunters valley.<br />
<br />
Before we got to our camping site, we had to pop up to the Emergency department of the local hospital, for a little recurring problem... but all was ok!<br />
<br />
We ate a really nice place called the Boat Shed, we picked our meals, avoidning the expensive ones, only to be politely told by the waitress, that in fact we had picked entree's! (we thought they were slightly overpriced to start with!) so we ended up having a very nice dinner! but paying through the nose for it! hehe oh well<br />
<br />
This morning the rain had cleared and we saw some sunshine at last! We've moved up to Noosa to meey Neil and Vicky. <br />
<br />
More pictures <a href="http://www.stabeler.com/gallery/archived/Australia2008_part2">here</a>
          
         </div>
       </content>
      </entry>
      <entry>
       <title>From Hunters Valley to Rain on the Sunshine Coast</title>
       <link rel="alternate" type="text/html"
        href="http://stabeler.com/blog/501/"/>
        
      <id>http://stabeler.com/blog/501/</id>
        
       <updated>2008-05-29T4:17:09Z</updated>
       <published>2008-05-29T4:17:09Z</published>
       <author>
         <name>Matt Stabeler</name>
         <uri>http://mattstabeler.co.uk/</uri>
         <email>atomfeed@stabeler.com</email>
       </author><content type="xhtml" xml:lang="en"
        xml:base="http://stabeler.com/">
         <div xmlns="http://www.w3.org/1999/xhtml">
          We had a day of wine tasting in the Hunters Valley yesterday, which was pretty good fun, I didnt realise you could just turn up at the wineries, and they would server you their wine to taste. We went to four, the first, Sobels, being the best by far (in my opinion. We bought some Merlot), closely followed by Ivanhoe's. Apparenly Shiraz is what the valley is famous for though. At 40AUD (20GBP) each it wasnt too bad, but on top of that was lunch and the train (36AUD Return) to Missota. <br />
We made the mistake of not actually booking tour, and just getting a train ticket (to Newcastle), luckily the guy at the train station gave us details of a tour company, as otherwise we would have turned up to Newcastle, with little chance of getting a tourbus. <br />
<br />
Last night we it up to Brisbane and stayed last night at the <a href-="http://www.bunkbrisbane.com.au/">Bunks</a> backpackers hostel, which although the price (approx 96AUD) was the same as the hotel we stayed at in Sydney, the room was a little basic which we kind of expected, however the facilities in the hostel look great!<br />
<br />
Tonight we will probably just stay in a dorm room (36AUD each). We are planning to get a campervan tomorrow and head up the Sunshine Coast, but the weather forecast doesn't look good, with rain forecast until next Wednesday (when we fly back to Sydney!). <br />
<br />
So we may be washed out, but at least if we get a camper our accomodation will be a little cheaper! We could head inland a bit maybe, but we'll just have to see!<br />
<br />
The flight from Sydney to Brisbane was really nice - compared to crappy ryanair, the Virgin Blue flight had all the trappings of a long distance flight, helpful friendly staff, and most importantly - cheap! About the same cost of a ryanair flight from Dublin to Gatwick approx 40GBP.<br />
<br />
<br />
We're planning to meet Neil and Vicky tonight, which i'm really looking forward to, and with any luck we'll spend some time with them over the weekend too (Camping - dependant on weather!).<br />

          
         </div>
       </content>
      </entry>
  </feed>