<?xml version="1.0" encoding="utf-8"?>
<feed xmlns="http://www.w3.org/2005/Atom">
    <title>Nick Barkas</title>
    <link rel="alternate" type="text/html" href="http://moduli.net/" />
    <link rel="self" type="application/atom+xml" href="http://moduli.net/atom.xml" />
    <id>tag:moduli.net,2008-03-11://1</id>
    <updated>2008-07-12T12:56:31Z</updated>
    
    <generator uri="http://www.sixapart.com/movabletype/">Movable Type Open Source 4.1</generator>

<entry>
    <title>Dirhash Low Memory Event Handling Patch</title>
    <link rel="alternate" type="text/html" href="http://moduli.net/2008/07/dirhash-lowmem-patch.html" />
    <id>tag:moduli.net,2008://1.58</id>

    <published>2008-07-12T12:40:45Z</published>
    <updated>2008-07-12T12:56:31Z</updated>

    <summary>I now have some working code for my dirhash dynamic memory allocation Google Summer of Code project. It is currently being reviewed and needs further testing, but if you&apos;re feeling brave you can grab a patch against HEAD from my...</summary>
    <author>
        <name>Nick Barkas</name>
        <uri>http://moduli.net</uri>
    </author>
    
        <category term="soc" scheme="http://www.sixapart.com/ns/types#category" />
    
        <category term="tech" scheme="http://www.sixapart.com/ns/types#category" />
    
    <category term="freebsd" label="freebsd" scheme="http://www.sixapart.com/ns/types#tag" />
    <category term="soc" label="soc" scheme="http://www.sixapart.com/ns/types#tag" />
    
    <content type="html" xml:lang="en" xml:base="http://moduli.net/">
        <![CDATA[<p>I now have some working code for my dirhash dynamic memory allocation Google Summer of Code project. It is currently being reviewed and needs further testing, but if you're feeling brave you can grab a patch against HEAD from <a href="http://wiki.freebsd.org/DirhashDynamicMemory">my project page on the FreeBSD wiki</a>. </p>

<p>What the new code does is add an event handler for <code>vm_lowmem</code> events. When one of these events happens, the kernel will try to delete dirhashes that have not been used for <code>DH_RECLAIMAGE</code> seconds. This is currently set to five seconds, but I have no idea if this will be an optimal time. A bit of benchmarking and testing will be necessary to sort that out. If all dirhashes have been used more recently than <code>DH_RECLAIMAGE</code>, instead the first unlocked dirhash on the TAILQ list used to keep track of them all will be deleted. Due to how the existing dirhash code organizes this list based on a scoring system, the first hash on the list should be a mix of the the least recently used and least frequently used.</p>

<p>If my code turns out to work as it should, then the default maximum memory for dirhash can be safely increased quite a bit. If the system has plenty of spare memory, then lots will be available for dirhashes. Then if the system becomes low on memory, some of this dirhash memory will automatically be freed up for use by whatever else needs it. Hopefully we'll see some performance improvements overall on systems with lots of memory that need to deal with large directories, but I haven't done the benchmarks yet.</p>
]]>
        

    </content>
</entry>

<entry>
    <title>Back Home in Stockholm</title>
    <link rel="alternate" type="text/html" href="http://moduli.net/2008/07/back-home.html" />
    <id>tag:moduli.net,2008://1.57</id>

    <published>2008-07-12T11:57:38Z</published>
    <updated>2008-07-12T12:29:11Z</updated>

    <summary>I returned home to Stockholm nearly two weeks ago, but haven&apos;t managed to find time to post anything since then. It&apos;s good to be home. I missed Emma a great deal and it has been wonderful to get to spend...</summary>
    <author>
        <name>Nick Barkas</name>
        <uri>http://moduli.net</uri>
    </author>
    
        <category term="life" scheme="http://www.sixapart.com/ns/types#category" />
    
    <category term="iphone" label="iphone" scheme="http://www.sixapart.com/ns/types#tag" />
    <category term="travel" label="travel" scheme="http://www.sixapart.com/ns/types#tag" />
    
    <content type="html" xml:lang="en" xml:base="http://moduli.net/">
        <![CDATA[<p>I returned home to Stockholm nearly two weeks ago, but haven't managed to find time to post anything since then. It's good to be home. I missed Emma a great deal and it has been wonderful to get to spend time with her again. The weather is quite nice, though we've had some humid and rainy days. I don't mind those so much though. The amount of sunlight is amazing! In the middle of the night the sky is still bright if you look north, and it's pretty much fully daylight here by around three in the morning.</p>

<p>I have a new apartment in Lappkärrsberget, or Lappis, a big student neighborhood north of Stockholm University. Yesterday was my second trip to Ikea to finish getting furniture for the new place. The room is a little smaller than the one I had previously, but much cheaper and quite cute. Emma and my good friend Heydar also live in Lappis so I can visit them or they me with just a couple of minutes walk instead of a 30-45 minute trip by bike or Tunnelbana. I have a road right out my window but it is usually fairly quiet, and there are lots of trees to look at. A bunch of cows have been brought in to a nearby field, so I get to listen to them mooing too! I'll take some pictures of the new apartment soon.</p>

<p>My sister and her husband came to visit from Washington DC shortly after I returned from SF. They spent a couple of days with me in Stockholm and that was pretty fun. They then went on to Helsinki, St. Petersburg, and Tallinn before they come back here in a sort of loop around the Baltic Sea. Emma and I are getting on the ferry to Tallinn tonight to meet up with them and we'll all come back to Stockholm together in a couple of days. I am excited for the trip. I love the big Baltic ferries/party boats. And I've never been to Estonia, nor did I ever even think about it before I came to Sweden.</p>

<p>Oh, yesterday I bought an iPhone, now that they are finally available legitimately in Sweden. It's quite cool, though it was annoying how I couldn't get iTunes to connect to Apple's servers for several hours yesterday to finish setting the thing up. I love new toys. I'm now locked into a two year abonnemang with Telia, so I guess I will be staying in Sweden for awhile!</p>
]]>
        

    </content>
</entry>

<entry>
    <title>Dirhash memory allocation update</title>
    <link rel="alternate" type="text/html" href="http://moduli.net/2008/06/dirhash-update.html" />
    <id>tag:moduli.net,2008://1.56</id>

    <published>2008-06-11T08:02:58Z</published>
    <updated>2008-06-11T08:55:04Z</updated>

    <summary>The Summer of Code officially started a couple of weeks ago, so I&apos;ve been getting started on my project. I&apos;ve not written any actual code yet, but have been busy with other aspects of the project. First of all I...</summary>
    <author>
        <name>Nick Barkas</name>
        <uri>http://moduli.net</uri>
    </author>
    
        <category term="soc" scheme="http://www.sixapart.com/ns/types#category" />
    
        <category term="tech" scheme="http://www.sixapart.com/ns/types#category" />
    
    <category term="freebsd" label="freebsd" scheme="http://www.sixapart.com/ns/types#tag" />
    <category term="soc" label="soc" scheme="http://www.sixapart.com/ns/types#tag" />
    
    <content type="html" xml:lang="en" xml:base="http://moduli.net/">
        <![CDATA[<p>The <a href="http://code.google.com/soc/2008">Summer of Code</a> officially started a couple of weeks ago, so I've been getting started on my project. I've not written any actual code yet, but have been busy with other aspects of the project. First of all I have been reading a bit of documentation and code relevant to dirhash itself and FreeBSD memory management. I have a lot to learn, especially about the memory stuff. The two approaches I am looking at, mentioned in the <a href="http://www.usenix.org/events/usenix02/tech/freenix/dowse.html">USENIX paper</a> by Ian Dowse and David Malone (my SoC mentor), are to either use the buffer cache for dirhash's memory so the VM can take care of providing memory as it is available, or to use a method for allocating memory where the kernel can signal for some to be freed in low memory situations, perhaps using the slab allocator.</p>

<p>I have also been learning a little bit about Perforce, the version control system used by FreeBSD for experimental projects. I have not used Perforce before this, and it is a bit different from the VCSs I've used before (CVS and Subversion). Also, I have done a bit of experimentation with the current dirhash implementation just to be sure that it can free memory it no longer needs. This was just a simple test where I created a directory with a couple of million entries, checked the <code>vfs.ufs.dirhash_mem</code> sysctl, removed the directory, then checked <code>vfs.ufs.dirhash_mem</code> again to make sure the memory used had decreased. It had. Finally, I sent off a brief proposal to do a talk about this project at <a href="http://2008.eurobsdcon.org/">EuroBSDCon 2008</a>. Obviously I don't have much to create a talk with yet, but I should by the end of the summer. Plus, the second day of EuroBSDCon this year happens to fall on my birthday, and I think hanging out with fellow BSD nerds in France could be a fun birthday activity :)</p>
]]>
        

    </content>
</entry>

<entry>
    <title>New photos, Eurovision song contest</title>
    <link rel="alternate" type="text/html" href="http://moduli.net/2008/05/photos-eurovision.html" />
    <id>tag:moduli.net,2008://1.55</id>

    <published>2008-05-24T23:33:10Z</published>
    <updated>2008-05-25T01:18:24Z</updated>

    <summary>The day after I arrived in San Francisco was Bay to Breakers, so I immediately had an opportunity to take a lot of photos. Here are some of them. I avoided photographing the many naked people there were wandering around,...</summary>
    <author>
        <name>Nick Barkas</name>
        <uri>http://moduli.net</uri>
    </author>
    
        <category term="life" scheme="http://www.sixapart.com/ns/types#category" />
    
    <category term="photos" label="photos" scheme="http://www.sixapart.com/ns/types#tag" />
    
    <content type="html" xml:lang="en" xml:base="http://moduli.net/">
        <![CDATA[<p>The day after I arrived in San Francisco was <a href="http://www.ingbaytobreakers.com/">Bay to Breakers</a>, so I immediately had an opportunity to take a lot of photos. <a href="http://www.flickr.com/photos/nickbarkas/tags/baytobreakers/">Here</a> are some of them. I avoided photographing the many naked people there were wandering around, so those should all be safe for work. I also took a few other photos while walking and biking around the city. San Francisco is a pretty nice looking place.</p>

<p><center>
<a href="http://www.flickr.com/photos/nickbarkas/2518923837/" title="View from Alamo Square by nickbarkas, on Flickr"><img src="http://farm3.static.flickr.com/2201/2518923837_ec720bd977_t.jpg" width="100" height="77" alt="View from Alamo Square" /></a> <a href="http://www.flickr.com/photos/nickbarkas/2518923789/" title="University of San Francisco by nickbarkas, on Flickr"><img src="http://farm3.static.flickr.com/2363/2518923789_de1f2683d9_t.jpg" width="100" height="75" alt="University of San Francisco" /></a> <a href="http://www.flickr.com/photos/nickbarkas/2518923703/" title="Street I'm living on by nickbarkas, on Flickr"><img src="http://farm3.static.flickr.com/2160/2518923703_343b8d38f5_t.jpg" width="100" height="75" alt="Street I'm living on" /></a> <a href="http://www.flickr.com/photos/nickbarkas/2519742182/" title="SF City Hall by nickbarkas, on Flickr"><img src="http://farm4.static.flickr.com/3059/2519742182_baf5993fa2_t.jpg" width="100" height="75" alt="SF City Hall" /></a>
</center></p>

<p>Then, today was the finals for the Eurovision song contest. I wish I could have been in Sweden watching it with Emma and some friends, but I could at least get a live stream of it over the Internet. It was pretty entertaining. <a href="http://youtube.com/watch?v=_XR5xrU02yo">Dima Bilan from Russia</a> won, but I liked other songs better, like the one from <a href="http://youtube.com/watch?v=9yb5q1nMT2g">Iceland's Euroband</a>. <a href="http://youtube.com/watch?v=ZSLnnnYtA5g">Sweden's entry from Charlotte Perelli</a> sadly did not do very well in the voting. My favorite though was Baila el Chiki Chiki from Rodolfo Chikilicuatre in Spain:</p>

<p><center><object width="425" height="355"><param name="movie" value="http://www.youtube.com/v/d2sun973nfY&amp;hl=en"></param><param name="wmode" value="transparent"></param><embed src="http://www.youtube.com/v/d2sun973nfY&amp;hl=en" type="application/x-shockwave-flash" wmode="transparent" width="425" height="355"></embed></object></center></p>

<p>Very amusing song. None of these videos are from the actual final contest performances because I couldn't find those on youtube yet. The whole contest can be streamed though, like the <a href="http://www.eurovision.tv/medialounge/video/1112">finals here</a>.</p>
]]>
        

    </content>
</entry>

<entry>
    <title>In San Francisco</title>
    <link rel="alternate" type="text/html" href="http://moduli.net/2008/05/in-san-francisco.html" />
    <id>tag:moduli.net,2008://1.54</id>

    <published>2008-05-18T04:48:40Z</published>
    <updated>2008-05-18T12:38:00Z</updated>

    <summary>Today I made the long journey from Stockholm to San Francisco. I was a day later than intended, because yesterday I overslept massively and missed my flight--something that I have been doing far too often lately. I am now extremely...</summary>
    <author>
        <name>Nick Barkas</name>
        <uri>http://moduli.net</uri>
    </author>
    
        <category term="life" scheme="http://www.sixapart.com/ns/types#category" />
    
    <category term="travel" label="travel" scheme="http://www.sixapart.com/ns/types#tag" />
    
    <content type="html" xml:lang="en" xml:base="http://moduli.net/">
        <![CDATA[<p>Today I made the long journey from Stockholm to San Francisco. I was a day later than intended, because yesterday I overslept massively and missed my flight--something that I have been doing far too often lately. I am now extremely tired because I got up about twenty-five hours ago and have spent much of that time in transit. </p>

<p>I bought some duty free akvavit in Stockholm and they tried to take it away from me in London. The airport security guy at Heathrow told me that Sweden is <em>not part of the EU</em>, and thus booze I bought there was not eligible to be duty free. I argued with him that in fact Sweden absolutely is part of the EU. He ultimately talked to his manager and they decided to let me through with my tasty akvavit anyway. Very weird.</p>

<p>My new flat is quite nice. It is somewhat furnished, but I need to make an Ikea trip to get the stuff it doesn't have yet. That will also give me an opportunity to buy some Swedish food that I will no longer be able to find readily at supermarkets. I'm living in the inner Richmond, which is not a neighborhood I've lived in before, so I'm going to need to explore to figure out where stuff is. Also, I'd really like to find a bike to ride. It would be great to be able to ride to work rather than take the bus.</p>

<p>I already miss Emma and feel homesick for Sweden. Riding BART into the city I felt like I've seen everything before, but it's become kind of foreign. It is strange to return to one's own country and not feel like it is home anymore. But I expect that I'll be keeping myself very busy in the coming weeks so the homesickness shouldn't be too bad.</p>
]]>
        

    </content>
</entry>

<entry>
    <title>Trip to San Francisco</title>
    <link rel="alternate" type="text/html" href="http://moduli.net/2008/04/sf-trip.html" />
    <id>tag:moduli.net,2008://1.53</id>

    <published>2008-04-22T20:29:29Z</published>
    <updated>2008-04-22T20:34:32Z</updated>

    <summary>My employer is having me come over to the states for six weeks starting next month to do some extra work while I have time off from classes. I&apos;ll be in San Francisco from the 16th of May until the...</summary>
    <author>
        <name>Nick Barkas</name>
        <uri>http://moduli.net</uri>
    </author>
    
        <category term="life" scheme="http://www.sixapart.com/ns/types#category" />
    
    <category term="travel" label="travel" scheme="http://www.sixapart.com/ns/types#tag" />
    
    <content type="html" xml:lang="en" xml:base="http://moduli.net/">
        <![CDATA[<p>My <a href="http://www.threerings.net">employer</a> is having me come over to the states for six weeks starting next month to do some extra work while I have time off from classes. I'll be in San Francisco from the 16th of May until the 28th of June. Get in touch with me if you want to hang out! </p>
]]>
        

    </content>
</entry>

<entry>
    <title>Google SoC Project</title>
    <link rel="alternate" type="text/html" href="http://moduli.net/2008/04/soc-approved.html" />
    <id>tag:moduli.net,2008://1.52</id>

    <published>2008-04-22T11:34:07Z</published>
    <updated>2008-05-13T18:30:41Z</updated>

    <summary>My Google Summer of Code Project has been approved! I am excited that I will be supported by Google to work on FreeBSD. It should be a fun time....</summary>
    <author>
        <name>Nick Barkas</name>
        <uri>http://moduli.net</uri>
    </author>
    
        <category term="soc" scheme="http://www.sixapart.com/ns/types#category" />
    
        <category term="tech" scheme="http://www.sixapart.com/ns/types#category" />
    
    <category term="freebd" label="freebd" scheme="http://www.sixapart.com/ns/types#tag" />
    <category term="soc" label="soc" scheme="http://www.sixapart.com/ns/types#tag" />
    
    <content type="html" xml:lang="en" xml:base="http://moduli.net/">
        <![CDATA[<p>My <a href="http://code.google.com/soc/2008/freebsd/appinfo.html?csaid=69F96419FD4920FF">Google Summer of Code Project</a> has been approved! I am excited that I will be supported by Google to work on FreeBSD. It should be a fun time.</p>
]]>
        

    </content>
</entry>

<entry>
    <title>Switch to Movable Type</title>
    <link rel="alternate" type="text/html" href="http://moduli.net/2008/03/mt-switch.html" />
    <id>tag:moduli.net,2008://1.51</id>

    <published>2008-03-29T16:29:22Z</published>
    <updated>2008-03-29T17:50:29Z</updated>

    <summary>I&apos;ve reworked my site once again. This time I&apos;m using Movable Type to power everything. I&apos;ve imported old entries I used to have on a now-defunct Typo powered blog, as well as more recent posts from my LiveJournal....</summary>
    <author>
        <name>Nick Barkas</name>
        <uri>http://moduli.net</uri>
    </author>
    
        <category term="tech" scheme="http://www.sixapart.com/ns/types#category" />
    
    
    <content type="html" xml:lang="en" xml:base="http://moduli.net/">
        <![CDATA[<p>I've reworked <a href="http://moduli.net">my site</a> once again. This time I'm using <a href="http://www.movabletype.org/">Movable Type</a> to power everything. I've imported old entries I used to have on a now-defunct <a href="http://typosphere.org/">Typo</a> powered blog, as well as more recent posts from my <a href="http://nbarkas.livejournal.com">LiveJournal</a>. </p>
]]>
        

    </content>
</entry>

<entry>
    <title>Norrland</title>
    <link rel="alternate" type="text/html" href="http://moduli.net/2008/03/norrland.html" />
    <id>tag:moduli.net,2008://1.4</id>

    <published>2008-03-26T23:14:00Z</published>
    <updated>2008-03-29T13:21:15Z</updated>

    <summary>Emma and I spent the last week in northern Sweden. We took the train (which was on time, comfortable, and from an easy-to-reach station, all unlike flying) to Härnösand, where she is from. From there we also took a day...</summary>
    <author>
        <name>Nick Barkas</name>
        <uri>http://moduli.net</uri>
    </author>
    
        <category term="life" scheme="http://www.sixapart.com/ns/types#category" />
    
    <category term="photos" label="photos" scheme="http://www.sixapart.com/ns/types#tag" />
    <category term="travel" label="travel" scheme="http://www.sixapart.com/ns/types#tag" />
    
    <content type="html" xml:lang="en" xml:base="http://moduli.net/">
        <![CDATA[<p>Emma and I spent the last week in northern Sweden. We took the train (which was on time, comfortable, and from an easy-to-reach station, all unlike flying) to Härnösand, where she is from. From there we also took a day trip by car to Umeå. I had a nice time. I met her parents and some more of her friends. It was Easter so we used that as an excuse to eat lots of candy. Sadly the mild winter has affected norrland too, so there wasn't a lot of snow in Härnösand and Umeå, but there was certainly more than I've seen in Stockholm. It also got rather cold at times. I believe down to -14&deg;C one night, which seems quite cold considering it is now spring. I took quite a few photos. Here are some of the ones I've uploaded to Flickr:</p>

<center><a href="http://www.flickr.com/photos/nickbarkas/2365276350/" title="Bagarstuga by nickbarkas, on Flickr"><img src="http://farm3.static.flickr.com/2394/2365276350_2321027bb6_t.jpg" width="100" height="75" alt="Bagarstuga" /></a> <a href="http://www.flickr.com/photos/nickbarkas/2364443127/" title="Emma by nickbarkas, on Flickr"><img src="http://farm4.static.flickr.com/3202/2364443127_ff320da6d2_t.jpg" width="75" height="100" alt="Emma" /></a> <a href="http://www.flickr.com/photos/nickbarkas/2365235390/" title="Hella handmade wooden skis by nickbarkas, on Flickr"><img src="http://farm4.static.flickr.com/3011/2365235390_8bacc08962_t.jpg" width="75" height="100" alt="Hella handmade wooden skis" /></a> <a href="http://www.flickr.com/photos/nickbarkas/2364443205/" title="Frozen sea by nickbarkas, on Flickr"><img src="http://farm3.static.flickr.com/2133/2364443205_7efb2d4942_t.jpg" width="100" height="75" alt="Frozen sea" /></a></center>]]>
        
    </content>
</entry>

<entry>
    <title>Air travel is so lame</title>
    <link rel="alternate" type="text/html" href="http://moduli.net/2008/03/flying-sucks.html" />
    <id>tag:moduli.net,2008://1.5</id>

    <published>2008-03-15T15:25:00Z</published>
    <updated>2008-03-29T13:19:57Z</updated>

    <summary>Well, I&apos;m not in Kiruna. Thursday night my friends and I made our way to Arlanda airport to catch a quick flight to Kiruna. The flight was delayed, and some time after our supposed new departure time, someone who worked...</summary>
    <author>
        <name>Nick Barkas</name>
        <uri>http://moduli.net</uri>
    </author>
    
        <category term="life" scheme="http://www.sixapart.com/ns/types#category" />
    
    <category term="travel" label="travel" scheme="http://www.sixapart.com/ns/types#tag" />
    
    <content type="html" xml:lang="en" xml:base="http://moduli.net/">
        <![CDATA[<p>Well, I'm not in Kiruna. Thursday night my friends and I made our way to Arlanda airport to catch a quick flight to Kiruna. The flight was delayed, and some time after our supposed new departure time, someone who worked for the airline came and told us that there was a problem with radar or the radio in Kiruna, so no planes could land. She gave no estimate on when we'd get to leave. Several hours passed. Someone else finally came out around midnight or so and told us that they would not be able to fly tonight, and there would be another plane that could take us at 6 o'clock the following morning. After some deliberation, Emma and I decided that sleeping in the airport and having our time in Kiruna cut down quite a bit was a bunch of bullshit, and we were going to go home. Heydar, Lisa, and Antoine all decided they'd stick it out and take the morning flight. Emma and I got the airline to remove our luggage from the plane, collected it, bid our friends farewell as they looked for some nice benches to sleep on for a few hours, and took a rather expensive taxi ride back home.</p>

<p>I am not at all fond of flying anymore. Being on planes itself can occasionally be fun despite the cramped conditions and unpleasant airplane air, but all the crap about getting to inconveniently located airports, going through check-in and security queues, waiting for delayed flights, etc. has become so old. I am thinking I should try to only resort to air travel when I'm going to other continents. Short flights are quick and usually cheaper than trains, but I don't think all this cheap air travel we have nowadays is really worth the other costs it brings about. The cost to passengers in the rather low quality of service airlines can afford to provide makes the experience of flying not fun, and with what must be very low profit margins I don't see how airlines can afford to properly pay their employees. The environmental impact of so much air travel can't be good, either.</p>

<p>I am disappointed that I am missing out on cross country skiing, riding a snowmobile to the ice hotel, and going for a little trip by dog sled. I wanted to see some real snow and aurora borealis and sit in a sauna. I guess this will all have to wait for next winter now. But, in a couple of days Emma and I are going to take another trip. We're going to be visiting Härnösand for about a week, the town she is from, and possibly taking a little day trip up to Umeå as well. These places are in norrland so there will probably be a little snow up there too, but not the huge amounts that there likely still is in Kiruna.</p>

<p>On an unrelated note, I am currently experimenting with growing a <a href="http://flickr.com/photos/nickbarkas/2335201344/">beard</a>. It is very strange.</p>]]>
        
    </content>
</entry>

<entry>
    <title>Skola, resa, och flickvän!</title>
    <link rel="alternate" type="text/html" href="http://moduli.net/2008/02/skola-resa-flickvän.html" />
    <id>tag:moduli.net,2008://1.9</id>

    <published>2008-02-25T21:18:00Z</published>
    <updated>2008-03-29T13:33:09Z</updated>

    <summary>It&apos;s been awhile since I&apos;ve posted much about what I&apos;m up to. Life has been busy. After returning from my little trip to the US I started back into class right away. Currently I am taking courses in parallel computing,...</summary>
    <author>
        <name>Nick Barkas</name>
        <uri>http://moduli.net</uri>
    </author>
    
        <category term="life" scheme="http://www.sixapart.com/ns/types#category" />
    
    <category term="school" label="school" scheme="http://www.sixapart.com/ns/types#tag" />
    <category term="travel" label="travel" scheme="http://www.sixapart.com/ns/types#tag" />
    
    <content type="html" xml:lang="en" xml:base="http://moduli.net/">
        <![CDATA[<p>It's been awhile since I've posted much about what I'm up to. Life has been busy. After returning from my little trip to the US I started back into class right away. Currently I am taking courses in <a href="http://www.kth.se/student/studiehandbok/Kurs.asp?Code=DN2264&Lang=1">parallel computing</a>, <a href="http://www.kth.se/student/studiehandbok/Kurs.asp?Code=DN2255&Lang=1">numerical differential equations</a> (that one is mostly about finite volume methods for hyperbolic PDEs), and <a href="http://www.kth.se/student/studiehandbok/Kurs.asp?Code=SH2402&Lang=1">astrophysics</a>. I'll be finished with astrophysics next month and in late March will be starting an <a href="http://www.kth.se/student/studiehandbok/Kurs.asp?Code=DN2290&Lang=1">advanced numerical analysis</a> course. For the first couple of weeks of the semester I was slacking off a bit, but no time for that anymore. School is seriously kicking my ass now.</p>

<p>Next month during our spring/Easter break from classes I will be taking a trip with some folks up to <a href="http://en.wikipedia.org/wiki/Kiruna">Kiruna</a>. I'm hoping to see some aurora borealis, an ice hotel, real snow (we had hardly any in Stockholm this winter), sitting in a sauna then jumping into that snow, cross country skiing, and perhaps going for some rides on a dog sled and/or snowmobile. I am really  looking forward to this trip.</p>

<p>Other even more exciting news is that I now have a girlfriend! For the past few weeks I've been seeing a nice Swedish girl named Emma. She is awesome. I am quite happy.</p>]]>
        
    </content>
</entry>

<entry>
    <title>Caucus time!</title>
    <link rel="alternate" type="text/html" href="http://moduli.net/2008/02/caucus-time.html" />
    <id>tag:moduli.net,2008://1.8</id>

    <published>2008-02-09T12:15:00Z</published>
    <updated>2008-03-29T13:33:09Z</updated>

    <summary>Non-Americans, non-Washingtonians, and Republicans can safely ignore this post. When I left San Francisco I decided to be a resident of Washington state again, so I&apos;m voting with you Washingtonians out there in this primary. However, I didn&apos;t really know...</summary>
    <author>
        <name>Nick Barkas</name>
        <uri>http://moduli.net</uri>
    </author>
    
        <category term="life" scheme="http://www.sixapart.com/ns/types#category" />
    
    <category term="politics" label="politics" scheme="http://www.sixapart.com/ns/types#tag" />
    
    <content type="html" xml:lang="en" xml:base="http://moduli.net/">
        <![CDATA[<p>Non-Americans, non-Washingtonians, and Republicans can safely ignore this post.</p>

<p>When I left San Francisco I decided to be a resident of Washington state again, so I'm voting with you Washingtonians out there in this primary. However, I didn't really know that voting in the Democratic primary in Washington is meaningless (correct me if I'm wrong about that) until today. I've already voted absentee. I wonder why they even send Democratic absentee ballots to people overseas if our votes don't mean anything. I wasted 10kr. on postage!</p>

<p>Anyway, please please go caucus today. I wish I could be there. And if you want my opinion on the matter, I think you ought to support Senator Obama.</p>]]>
        
    </content>
</entry>

<entry>
    <title>Stockholm rail map for iPod Touch and iPhone</title>
    <link rel="alternate" type="text/html" href="http://moduli.net/2008/02/iphone-sl-map.html" />
    <id>tag:moduli.net,2008://1.7</id>

    <published>2008-02-06T16:52:00Z</published>
    <updated>2008-03-29T14:38:04Z</updated>

    <summary>I found this cool Berlin subway map for iPhone/iPod Touch that Randy Reddig made. It was inspired by an NYC subway map by Khoi Vinh, and in turn inspired me to make one for SL&apos;s tunnelbana (metro/subway), lokalbanor (local train),...</summary>
    <author>
        <name>Nick Barkas</name>
        <uri>http://moduli.net</uri>
    </author>
    
        <category term="tech" scheme="http://www.sixapart.com/ns/types#category" />
    
    <category term="iphone" label="iphone" scheme="http://www.sixapart.com/ns/types#tag" />
    
    <content type="html" xml:lang="en" xml:base="http://moduli.net/">
        <![CDATA[<p>I found this cool <a href="http://www.ydnar.com/2008/01/berlin-subway-m.html">Berlin subway map for iPhone/iPod Touch</a> that <a href="http://www.ydnar.com">Randy Reddig</a> made. It was inspired by an <a href="http://www.subtraction.com/archives/2007/200827_a_subway_sys.php">NYC</a> subway map by <a href="http://www.subtraction.com">Khoi Vinh</a>, and in turn inspired me to make one for <a href="http://sl.se">SL's</a> tunnelbana (metro/subway), lokalbanor (local train), and pendeltåg (commuter train) <a href="http://www.sl.se/ficktid/karta%2Fvinter/SL%5FSpartrafik%5F2007%5Fweb.pdf">map</a> of Stockholm. Download it <span class="mt-enclosure mt-enclosure-file" style="display: inline;"><a href="http://moduli.net/2008/02/SL_rail_map.zip">here</a></span>, unzip, and take a look at the readme.txt file to see how to put it on your iPod or iPhone.</p>

<p>I'd like to make one of these for SL's bus system too, but have not yet found a suitable map to chop up. The best Stockholm city bus map I've found doesn't have night busses on it. Most of the time when I'm taking the bus it's only because the t-bana is closed for the night, so having the night bus routes would be really useful!</p>]]>
        
    </content>
</entry>

<entry>
    <title>I am also a Lemming</title>
    <link rel="alternate" type="text/html" href="http://moduli.net/2008/02/facebook-lemming.html" />
    <id>tag:moduli.net,2008://1.6</id>

    <published>2008-02-05T14:44:00Z</published>
    <updated>2008-03-29T13:33:09Z</updated>

    <summary>I have given in. I am on Facebook now. I can&apos;t seem to figure out how to find many people to add as friends, and I don&apos;t want to give them my whole address book. So I guess look at...</summary>
    <author>
        <name>Nick Barkas</name>
        <uri>http://moduli.net</uri>
    </author>
    
        <category term="life" scheme="http://www.sixapart.com/ns/types#category" />
    
    
    <content type="html" xml:lang="en" xml:base="http://moduli.net/">
        <![CDATA[<p>I have given in. <a href="http://www.facebook.com/people/Nick_Barkas/1084860689">I am on Facebook</a> now. I can't seem to figure out how to find many people to add as friends, and I don't want to give them my whole address book. So I guess look at my profile and me as a friend on there if you want.</p>]]>
        
    </content>
</entry>

<entry>
    <title>I&apos;m a Photographer!</title>
    <link rel="alternate" type="text/html" href="http://moduli.net/2008/01/photographer.html" />
    <id>tag:moduli.net,2008://1.10</id>

    <published>2008-01-26T16:47:00Z</published>
    <updated>2008-03-29T13:49:01Z</updated>

    <summary>One of my photos of Stockholm was found on Flickr and now has been added to the most recent version of the Schmap Stockholm Guide. See it here by mousing over the entry for Norrmalm in the list of neighborhoods....</summary>
    <author>
        <name>Nick Barkas</name>
        <uri>http://moduli.net</uri>
    </author>
    
        <category term="life" scheme="http://www.sixapart.com/ns/types#category" />
    
    <category term="photos" label="photos" scheme="http://www.sixapart.com/ns/types#tag" />
    
    <content type="html" xml:lang="en" xml:base="http://moduli.net/">
        <![CDATA[<p>One of my <a href="http://www.flickr.com/photos/nickbarkas/1344420708/">photos of Stockholm</a> was found on Flickr and now has been added to the most recent version of the <a href="http://www.schmap.com/stockholm/home/">Schmap Stockholm Guide</a>. See it <a href="http://www.schmap.com/stockholm/introduction_neighborhoods/#p=1861D07&i=1861D07_2.jpg">here</a> by mousing over the entry for Norrmalm in the list of neighborhoods.</p>]]>
        
    </content>
</entry>

</feed>
