<?xml version="1.0"?>
<rdf:RDF
	xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:foaf="http://xmlns.com/foaf/0.1/"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns="http://purl.org/rss/1.0/"
>
<channel rdf:about="http://planet.arslinux.com/">
	<title>Planet Arslinux</title>
	<link>http://planet.arslinux.com/</link>

	<items>
		<rdf:Seq>
			<rdf:li rdf:resource="http://feeds.feedburner.com/~r/jrwren/~3/291329147/" />
			<rdf:li rdf:resource="http://laptop-mechanic.livejournal.com/83910.html" />
			<rdf:li rdf:resource="http://www.stonetable.org/2008/05/13/astronomers-discover-elusive-object/" />
			<rdf:li rdf:resource="http://metallikop.com/?p=25" />
			<rdf:li rdf:resource="http://www.stonetable.org/2008/05/13/testing/" />
			<rdf:li rdf:resource="http://laptop-mechanic.livejournal.com/83485.html" />
			<rdf:li rdf:resource="http://feeds.feedburner.com/~r/jrwren/~3/288359437/" />
			<rdf:li rdf:resource="http://metallikop.com/?p=24" />
			<rdf:li rdf:resource="http://wildbill.nulldevice.net/wordpress/?p=286" />
			<rdf:li rdf:resource="http://metallikop.com/?p=22" />
			<rdf:li rdf:resource="http://www.chasingnuts.com/2008/jumbo-frames-and-intel/" />
			<rdf:li rdf:resource="http://www.stonetable.org/2008/05/02/tirpy/" />
			<rdf:li rdf:resource="http://www.stonetable.org/2008/04/30/thats-just-how-i-roll/" />
			<rdf:li rdf:resource="http://laptop-mechanic.livejournal.com/83382.html" />
			<rdf:li rdf:resource="http://laptop-mechanic.livejournal.com/83117.html" />
			<rdf:li rdf:resource="http://feeds.feedburner.com/~r/jrwren/~3/277114692/" />
			<rdf:li rdf:resource="http://www.halberd.org/2008/04/24/202/" />
			<rdf:li rdf:resource="http://www.grid7.org/2008/04/23/blogging-from-birmingham-alabama/" />
			<rdf:li rdf:resource="http://feeds.feedburner.com/~r/jrwren/~3/276200349/" />
			<rdf:li rdf:resource="http://lxer.com/module/newswire/ext_link.php?rid=102074" />
		</rdf:Seq>
	</items>
</channel>

<item rdf:about="http://feeds.feedburner.com/~r/jrwren/~3/291329147/">
	<title>evarlast: C# vNext feature request</title>
	<link>http://feeds.feedburner.com/~r/jrwren/~3/291329147/</link>
	<content:encoded>&lt;p&gt;At Ann Arbor Dot Net Developers meeting last night, &lt;a href=&quot;http://blogs.msdn.com/eric/&quot;&gt;Eric Maino&lt;/a&gt; was there. I don&amp;#8217;t think he meant to open up the giant can of worms that is me when he asked &amp;#8220;What kind of things would you like to see in the next version of C#?&amp;#8221; Here is my list.
&lt;ul&gt;
&lt;li&gt;Static Imports
&lt;p&gt;yes like java! &lt;/p&gt;
&lt;p&gt;Sometimes extension methods aren&amp;#8217;t as readable as just a method call. Ability to import static methods and call them without the class name would be super. &lt;/p&gt;
&lt;li&gt;Drop var.
&lt;p&gt;Type inference rules. Can we drop the var? its noise.&lt;br /&gt;&lt;code&gt;var x = 1;&lt;br /&gt;x = 1;&lt;br /&gt;&lt;/code&gt;which of these lines is more concise? At least make it optional. I don&amp;#8217;t mind if you want to say var. Just don&amp;#8217;t make me do it. &lt;/p&gt;
&lt;li&gt;Better type inference
&lt;p&gt;Optional type parameters, since the compiler knows what I mean!&lt;br /&gt;peeps = List(new string[] {&amp;#8221;Bob&amp;#8221;,&amp;#8221;Dorothy&amp;#8221;,&amp;#8221;Jane&amp;#8221;});&lt;br /&gt;This is a List&amp;lt;T&amp;gt;, but I don&amp;#8217;t need to say List&amp;lt;string&amp;gt; the type can be inferred via the List&amp;lt;T&amp;gt;(IEnumerable&amp;lt;T&amp;gt;) constructor.&lt;/p&gt;
&lt;li&gt;Optional Whitespace Significance
&lt;p&gt;We all use whitespace formatted code anyway. Why not just drop the parenthesis and semicolons and make the whitespace actually mean something. Of course I say &amp;#8220;optional&amp;#8221; because not everyone will like it. It would be really cool to be able to toggle it throughout a file. &lt;br /&gt;&lt;code&gt;#pragma whitespace significance enable &lt;br /&gt;public class Employee &lt;br /&gt;&amp;nbsp; public Employee() &lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; name = string.Empty &lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; hireDate = DateTime.Now &lt;br /&gt;&amp;nbsp; public string Name &lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; get &lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; set &lt;br /&gt;&amp;nbsp; public DateTime HireDate&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; get&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; set &lt;br /&gt;#pragma whitespace significance disable &lt;br /&gt;public GiveRaise() { &lt;br /&gt;salary *=1.10; &lt;br /&gt;} &lt;br /&gt;#pragma whitespace significance enable &lt;br /&gt;&amp;nbsp; public Promote() &lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; CLevel&amp;#8211; &lt;/code&gt;&lt;br /&gt;The file would have to end in the same mode in which it were started, or the compiler can figure things out. &lt;/p&gt;
&lt;li&gt;A hook into the compiler pipeline
&lt;p&gt;See boo.&lt;/p&gt;
&lt;li&gt;A hybrid compiler
&lt;p&gt;At CodeMash, &lt;a href=&quot;http://objo.com/&quot;&gt;Joe O&amp;#8217;Brien&lt;/a&gt; and &lt;a href=&quot;http://feeds.feedburner.com/theprokrammer&quot;&gt;Michael Letterle&lt;/a&gt; about how nice it would be to use the better suited language for any given task in .NET. We don&amp;#8217;t want separate projects. We don&amp;#8217;t want separate netmodules. &lt;/p&gt;
&lt;p&gt;I want it right down to partial classes. VB&amp;#8217;s XML Literals and late binding are sweet. I want to use those if I need. C#&amp;#8217;s everything else are what I prefer to work with. &lt;/p&gt;
&lt;p&gt;&lt;code&gt;ReadYourFeed.cs:&lt;br /&gt;public partial class ReadYourFeed {&lt;br /&gt;&amp;nbsp; Initialize(){ &lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; rss.FirstChild.AppendChild(GetGenerator()); &lt;br /&gt;&amp;nbsp; } &lt;br /&gt;}&lt;/code&gt;&lt;/p&gt;
&lt;p&gt;ReedYourFeed.vb:&lt;br /&gt;Partial Public Class ReadYourFeed &lt;br /&gt;&amp;nbsp; Public Function GetGenerator() &lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; Dim sig = &amp;lt;generator&amp;gt;SuperReadYourFeed 2000 1.2.3.4.5&amp;lt;/generator&amp;gt; &lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; Return sig &lt;br /&gt;&amp;nbsp; End Function &lt;br /&gt;End Class &lt;/p&gt;&lt;/li&gt;&lt;/li&gt;&lt;/li&gt;&lt;/li&gt;&lt;/li&gt;&lt;/li&gt;&lt;/ul&gt;&lt;/p&gt;
&lt;p&gt;* I don&amp;#8217;t know VB. Writing that VB took me much googling&lt;/p&gt;
&lt;li&gt;A plugable compiler
&lt;p&gt;Similar to the above with boo, but almost the inverse. I want an open definition for the AST which the compiler uses to generate IL and I want a great API for building this AST myself. &lt;/p&gt;
&lt;p&gt;Next, I should be able to plug in my own parser/lexer which builds this AST. So the IL generation from the AST is entirely from the (now more than) C# compiler, but the parser is mine.&lt;/p&gt;
&lt;p&gt;This is really an abstraction and opening of the previous step. Instead of just C#/VB, I want it ALL!&lt;/p&gt;
&lt;li&gt;Easier method currying.
&lt;p&gt;&lt;a href=&quot;http://diditwith.net/&quot;&gt;Dustin Campbell&lt;/a&gt; might like &lt;a href=&quot;http://diditwith.net/2007/10/23/BuildingFunctionsFromFunctionsPart2FunctionComposition.aspx&quot;&gt;writing lots of code to do it&lt;/a&gt; in C#. I&amp;#8217;m sure he does it all the time, but I&amp;#8217;d like to be able to do it in FAR fewer lines of code.&lt;/p&gt;
&lt;li&gt;F#&amp;#8217;s pipeline operator.
&lt;p&gt;This is more readable&lt;br /&gt;&lt;code&gt;{1..10} |&amp;gt; Seq.fold (+) 0;; &lt;/code&gt;&lt;br /&gt;than this&lt;br /&gt;&lt;code&gt;Enumerable.Aggregate(Enumerable.Range(1, 10), (a, b) =&amp;gt; a + b); &lt;/code&gt;&lt;br /&gt;or this&lt;br /&gt;&lt;code&gt;(from i in Enumerable.Range(1, 10) select i).Sum(); &lt;/code&gt;&lt;br /&gt;or even this&lt;br /&gt;&lt;code&gt;Enumerable.Range(1, 10).Sum(); &lt;/code&gt;&lt;br /&gt;Ok, well extension methods sure look a lot like the pipeline operator, so never mind on this request &lt;img src=&quot;http://jrwren.wrenfam.com/blog/wp-includes/images/smilies/icon_smile.gif&quot; alt=&quot;:)&quot; class=&quot;wp-smiley&quot; /&gt; &lt;/p&gt;
&lt;/li&gt;
&lt;/li&gt;&lt;/li&gt;
&lt;p&gt;It seems like I talked about other crazy stuff too, but I don&amp;#8217;t recall what things they were.&lt;/p&gt;
&lt;img src=&quot;http://feeds.feedburner.com/~r/jrwren/~4/291329147&quot; height=&quot;1&quot; width=&quot;1&quot; /&gt;</content:encoded>
	<dc:date>2008-05-16T01:36:50+00:00</dc:date>
</item>
<item rdf:about="http://laptop-mechanic.livejournal.com/83910.html">
	<title>Hellion Prime: Fraking Apple Users!</title>
	<link>http://laptop-mechanic.livejournal.com/83910.html</link>
	<content:encoded>Somebody brought us a nearly new iMac the other day. The problem description was &quot;cd stuck in the drive&quot;.&amp;nbsp; What do we find when we crack open the machine (suction cups, and 30 minutes of swearing at the ineptitude of Apple designers later), and pull the disc out of the drive? A normal CD with a mini disc TAPED TO IT. They wanted to see if they could do that in order to read the mini disc. &lt;br /&gt; &lt;br /&gt; The stupid, it BURNS. Or at least I wish it would. Some of these people do not deserve to live.</content:encoded>
	<dc:date>2008-05-15T17:51:10+00:00</dc:date>
</item>
<item rdf:about="http://www.stonetable.org/2008/05/13/astronomers-discover-elusive-object/">
	<title>stonetable: Astronomers Discover Elusive Object</title>
	<link>http://www.stonetable.org/2008/05/13/astronomers-discover-elusive-object/</link>
	<content:encoded>&lt;div class=&quot;name_address&quot;&gt;NASA is holding a &lt;a href=&quot;http://www.nasa.gov/news/media/newsaudio/index.html&quot;&gt;press conference&lt;/a&gt; tomorrow afternoon to &lt;a href=&quot;http://www.spaceref.com/news/viewpr.html?pid=25401&quot;&gt;announce&lt;/a&gt; the discovery of an object that astronomers have been hunting for more than fifty years. I&amp;#8217;ve seen some wild speculation, ranging from a black hole to evidence of life on Mars. Whatever it is, though, I swear that &lt;a href=&quot;http://staticmovement.com/israel.htm&quot;&gt;I had nothing to do with it&lt;/a&gt;.&lt;/div&gt;</content:encoded>
	<dc:date>2008-05-14T04:29:58+00:00</dc:date>
</item>
<item rdf:about="http://metallikop.com/?p=25">
	<title>metallikop: Time Tracking With Klok (Adobe AIR)</title>
	<link>http://metallikop.com/?p=25</link>
	<content:encoded>&lt;p&gt;&lt;a href=&quot;http://www.metallikop.com/blogimages/klok-lg.png&quot;&gt;&lt;img class=&quot;alignright&quot; src=&quot;http://www.metallikop.com/blogimages/klok-sm.png&quot; alt=&quot;&quot; width=&quot;250&quot; height=&quot;131&quot; /&gt;&lt;/a&gt;When I did freelance work a few years ago I managed my time with Excel spreadsheets and Notepad.  This method works but it&amp;#8217;s by no means an elegant way to track time.  Adobe&amp;#8217;s &lt;a href=&quot;http://www.adobe.com/products/air/&quot;&gt;&lt;img class=&quot;alignright&quot; src=&quot;http://www.metallikop.com/blogimages/klok-sm.png&quot; alt=&quot;&quot; width=&quot;250&quot; height=&quot;131&quot; /&gt;&lt;/a&gt;When I did freelance work a few years ago I managed my time with Excel spreadsheets and Notepad.  This method works but it&amp;#8217;s by no means an elegant way to track time.  Adobe&amp;#8217;s &lt;a href=&quot;http://www.adobe.com/products/air/')&quot;&gt;AIR runtime&lt;/a&gt; has given developers a quick and easy way to write a &lt;a href=&quot;http://www.adobe.com/cfusion/showcase/index.cfm?event=casestudydetail&amp;amp;casestudyid=383896&amp;amp;loc=en_us&quot;&gt;slew&lt;/a&gt; &lt;a href=&quot;http://www.adobe.com/cfusion/showcase/index.cfm?event=casestudydetail&amp;amp;casestudyid=391534&amp;amp;loc=en_us&quot;&gt;of&lt;/a&gt; &lt;a href=&quot;http://www.adobe.com/cfusion/showcase/index.cfm?event=casestudydetail&amp;amp;casestudyid=384066&amp;amp;loc=en&quot;&gt;new&lt;/a&gt; &lt;a href=&quot;http://www.adobe.com/cfusion/showcase/index.cfm?event=casestudydetail&amp;amp;casestudyid=384132&amp;amp;loc=en_us&quot;&gt;apps&lt;/a&gt;; some &lt;a href=&quot;http://www.twhirl.org/&quot;&gt;useful&lt;/a&gt;, some &lt;a href=&quot;http://www.nick.com/mynick/air/index.jhtml?promoid=BTLNZ&quot;&gt;not so useful&lt;/a&gt;.&lt;/p&gt;
&lt;p&gt;One that I&amp;#8217;ve found extremely useful lately is &lt;a href=&quot;http://klok.mcgraphix.com/klok/index.htm&quot;&gt;Klok&lt;/a&gt;.  For all projects I&amp;#8217;m working on at work I&amp;#8217;m required to track my time and what I was doing.  I used to hate this type of micromanagement but understood the need for billing purposes.&lt;/p&gt;
&lt;p&gt;With Klok you create a project (metallikop.com for example), then create sub projects (Design, Blogging, PR, Marketing) and you&amp;#8217;re all set.  You can set a contact name, email address and phone number for your client create and/or comments for each line item.  Once everything is set up you select the project and sub-project from the drop down menu in the title and the clock starts ticking away on the selected project.  Klok will export the time sheet to Excel by dragging the project off to the desktop.  Honestly, this application makes time tracking considerably easier.&lt;/p&gt;</content:encoded>
	<dc:date>2008-05-13T15:11:43+00:00</dc:date>
</item>
<item rdf:about="http://www.stonetable.org/2008/05/13/testing/">
	<title>stonetable: Testing WordPress</title>
	<link>http://www.stonetable.org/2008/05/13/testing/</link>
	<content:encoded>&lt;p&gt;&lt;span&gt;I&amp;#8217;m experimenting with Wordpress 2.5 and cross-posting to LiveJournal.&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;It appears that Wordpress 2.5 and the LiveJournal cross-poster are much improved since the last time I tested them. I&amp;#8217;m going to knock around with this for a day and see how it fits.&lt;/p&gt;
&lt;p&gt;I&amp;#8217;ve ripped out the relevant portions of the LJ theme that I like and applied it to the theme here. I&amp;#8217;ll try to keep my tests to this one post so I don&amp;#8217;t mess up anyone&amp;#8217;s feed.&lt;/p&gt;
&lt;p&gt;Update:&lt;/p&gt;
&lt;p&gt;Fairly happy with the changes so far. There are things I need to do, blanks that need to be filled, but everything critical is done.&lt;/p&gt;
&lt;p&gt;Issues:&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;&lt;span&gt;The LiveJournal cross-poster doesn&amp;#8217;t seem to copy my tags over correctly&lt;/span&gt;&lt;/li&gt;
&lt;li&gt;There doesn&amp;#8217;t seem to be a way of changing the order of widgets in the sidebar. Drag and drop is broken in Wordpress 2.5.1&lt;/li&gt;
&lt;/ul&gt;</content:encoded>
	<dc:date>2008-05-13T14:52:48+00:00</dc:date>
</item>
<item rdf:about="http://laptop-mechanic.livejournal.com/83485.html">
	<title>Hellion Prime: More craziness from Eurocom</title>
	<link>http://laptop-mechanic.livejournal.com/83485.html</link>
	<content:encoded>&lt;br /&gt;Eurocom rebadges stuff from Compal and other ODM companies for their boat anchor notebooks. Their stuff is heavy, hot, and only portable if you like hernias. &lt;a href=&quot;http://www.engadget.com/2008/05/12/eurocom-lets-loose-quad-core-xeon-based-d901c-phantom-x-server-l/&quot;&gt;This&lt;/a&gt;, however, is taking it to a whole new level. 2.8gHz quad core Xeon with 3 2.5&quot; HDDs for storage. Up to 8GB of ram. 17&quot; display. All of this can be yours for a price of well north of $3000 and a backbreaking 12lbs. Oh, and if the battery will actually last an hour on it, consider yourself lucky.&amp;nbsp; Considering the thing is made entirely out of ABS, its a good thing you CANT carry it far, cause it is going to be a flextaxtic pile of crap. &lt;br /&gt;&lt;br /&gt;Oh wait, its not a &quot;laptop&quot;. Its a &quot;mobile server&quot;. Riiiiiiiiight. Why BUYS these things, seriously?</content:encoded>
	<dc:date>2008-05-13T13:06:21+00:00</dc:date>
</item>
<item rdf:about="http://feeds.feedburner.com/~r/jrwren/~3/288359437/">
	<title>evarlast: Creation of Open Space</title>
	<link>http://feeds.feedburner.com/~r/jrwren/~3/288359437/</link>
	<content:encoded>&lt;p&gt;via &lt;a href=&quot;http://renegadebodywork.blogspot.com/&quot;&gt;Gregg Newsom&lt;/a&gt; &lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;&lt;/p&gt;
&lt;p&gt;Open Space is an awesome format for meeting and conferencing. The &lt;a href=&quot;http://www.dayofdotnet.org/&quot;&gt;Day Of Dot Net&lt;/a&gt; Conferences have been promoting it with varying success.&lt;/p&gt;
&lt;p&gt;Personally, I love it when a conference has space set aside for Open Spaces, if the conference isn&amp;#8217;t entirely open space format. There are only so many times I can sit through another presentation about something I have seen before. Open Spaces does provide an alternative for us overly selective types.&lt;/p&gt;
&lt;p&gt;More importantly, it provides a place for you to get out of it exactly what you put into it. What do I mean by this? How many times have you said &amp;#8220;yeah, that would be awesome&amp;#8221; to some idea when you were talking with someone at a conference? Open Spaces provides the means to make that idea a reality. Next time this happens to you, please grab that person with whom you were speaking and march directly to the open spaces room and begin working, planning, designing, developing, whatever-ing. Maybe make a pit-stop at the Open Spaces board on the way.&lt;/p&gt;
&lt;p&gt;I can&amp;#8217;t wait for the &lt;a href=&quot;http://www.google.com/calendar/event?eid=Y2lxcHRna3J2OW0xc3VpcTdlN3U2c3E5YWsgaWV1NnVkNGh0dTY0YmRxMDRjb2owN3UxOWNAZw&quot;&gt;upcoming development tools focused open space&lt;/a&gt; event at &lt;a href=&quot;http://srtsolutions.com/&quot;&gt;SRT Solutions&lt;/a&gt;. I love my tools. I&amp;#8217;m passionate about my tools. Like any good craftsman, I have my favorite hammer, my favorite saw, and my favorite drill. I feel crippled without my own tools. Ask a craftsman to build you something and give him unfamiliar second rate tools and see what happens :)&amp;nbsp; You probably will not like the results.&lt;/p&gt;
&lt;img src=&quot;http://feeds.feedburner.com/~r/jrwren/~4/288359437&quot; height=&quot;1&quot; width=&quot;1&quot; /&gt;</content:encoded>
	<dc:date>2008-05-12T01:09:30+00:00</dc:date>
</item>
<item rdf:about="http://metallikop.com/?p=24">
	<title>metallikop: My iPhone2 Wishlist</title>
	<link>http://metallikop.com/?p=24</link>
	<content:encoded>&lt;p&gt;I&amp;#8217;ve seen a lot more of these lately as the &amp;#8220;launch date&amp;#8221; for the new iPhone draws closer.  I came across &lt;a href=&quot;http://powazek.com/posts/947&quot;&gt;Derek Powazek&lt;/a&gt;&amp;#8217;s list and I couldn&amp;#8217;t agree less and felt it was my duty to make a better, more accurate list.&lt;/p&gt;
&lt;h4&gt;The Likelies&lt;/h4&gt;
&lt;ul&gt;
&lt;li&gt;Thicker, heavier, faster, more storage.  I&amp;#8217;m okay with this even though it&amp;#8217;ll make some people cry.  I&amp;#8217;d rather have a larger battery, GPS, and improved camera then a slimmer lighter phone.  I used to carry a blackberry brick and an HTC 8925, the iPhone is light in comparison.&lt;/li&gt;
&lt;li&gt;3G.  It&amp;#8217;s crazy that a phone with all those fancy internets needs to rely on WiFi to make use of the product.&lt;/li&gt;
&lt;li&gt;Hardware design tweaks.  I don&amp;#8217;t care much really.  Fix the headphone input please, otherwise it&amp;#8217;s fine.&lt;/li&gt;
&lt;li&gt;Better battery life.  I&amp;#8217;ve become accustomed to plugging my phone in every night but a few extra hours wouldn&amp;#8217;t hurt.&lt;/li&gt;
&lt;/ul&gt;
&lt;h4&gt;The Hopefullies&lt;/h4&gt;
&lt;ul&gt;
&lt;li&gt;Onboard GPS Receiver.  Every phone has one these days, the iPhone needs one and it&amp;#8217;ll be complete.&lt;/li&gt;
&lt;li&gt;Exchange ActiveSync.  I miss this more then anything else on my 8925, it&amp;#8217;s necessary for any business user and sometimes I just can&amp;#8217;t disconnect.&lt;/li&gt;
&lt;li&gt;Uncrippled Bluetooth.  I&amp;#8217;d like to go to GMaps, find a location, sync it to my GPS device and go, or sync with my computer, or a number of other things.  Don&amp;#8217;t break my bluetooth please.&lt;/li&gt;
&lt;li&gt;Push Email.   I&amp;#8217;m pretty sure they&amp;#8217;ll add this with all the recent rumors of .mac being upgraded.  This will be a huge plus.&lt;/li&gt;
&lt;li&gt;Fix the camera. I agree with Derek on this, &amp;#8220;More resolution, better image quality, faster shutter&amp;#8221;, but I don&amp;#8217;t need a hardware shutter button, and it won&amp;#8217;t happen anyways.&lt;/li&gt;
&lt;/ul&gt;
&lt;h4&gt;The Who Caresies&lt;/h4&gt;
&lt;ul&gt;
&lt;li&gt;Video recording.  I don&amp;#8217;t care.  I guess it&amp;#8217;d be nice but I&amp;#8217;d never use it.&lt;/li&gt;
&lt;li&gt;Rubbery grip.  Sorry, not with you on this one.  I like the design as is, if I want a rubbery grip I&amp;#8217;ll buy a case that has one.&lt;/li&gt;
&lt;li&gt;Better earbuds.  Apple earbuds have always sucked, I&amp;#8217;m sure the new ones will too which is fine since I&amp;#8217;ve dropped a good amount of money on picking up some &lt;a href=&quot;http://shop.v-moda.com/p-35-vibe-duo-w-control-playback.aspx&quot;&gt;very nice earbuds&lt;/a&gt;.&lt;/li&gt;
&lt;/ul&gt;</content:encoded>
	<dc:date>2008-05-10T15:33:48+00:00</dc:date>
</item>
<item rdf:about="http://wildbill.nulldevice.net/wordpress/?p=286">
	<title>wildbill: Billix 0.20 released…</title>
	<link>http://wildbill.nulldevice.net/wordpress/?p=286</link>
	<content:encoded>&lt;p&gt;A couple of days ago, I released Billix 0.20.   Changelog is as follows:&lt;/p&gt;
&lt;blockquote&gt;
&lt;pre&gt;Removed Ubuntu Feisty (7.04)
Added Ubuntu Hardy (8.04LTS)
Moved Damn Small Linux directory from KNOPPIX to DSL to facilitate customization in the future.
Updated Centos 4 to version 4.6
Updated Centos 5 to version 5.1&lt;/pre&gt;
&lt;/blockquote&gt;
&lt;p&gt;Go get it from &lt;a href=&quot;http://sourceforge.net/project/showfiles.php?group_id=179428&quot;&gt;here&lt;/a&gt;.
&lt;/p&gt;</content:encoded>
	<dc:date>2008-05-09T18:15:25+00:00</dc:date>
</item>
<item rdf:about="http://metallikop.com/?p=22">
	<title>metallikop: Twitter</title>
	<link>http://metallikop.com/?p=22</link>
	<content:encoded>&lt;p&gt;I&amp;#8217;ve been &lt;a href=&quot;http://twitter.com&quot;&gt;Twitting&lt;/a&gt; far more then blogging.  If you&amp;#8217;re a Twitter user &lt;a href=&quot;http://twitter.com/metallikop&quot;&gt;send me a message&lt;/a&gt;. (metallikop)&lt;/p&gt;</content:encoded>
	<dc:date>2008-05-07T18:14:09+00:00</dc:date>
</item>
<item rdf:about="http://www.chasingnuts.com/2008/jumbo-frames-and-intel/">
	<title>Aaron Thul: Jumbo Frames and Intel</title>
	<link>http://www.chasingnuts.com/2008/jumbo-frames-and-intel/</link>
	<content:encoded>&lt;p&gt;I am working on deploying a shiny new &lt;a href=&quot;http://en.wikipedia.org/wiki/ISCSI&quot; target=&quot;_blank&quot;&gt;iSCSI &lt;/a&gt;SAN (Storage Area Network) for &lt;a href=&quot;http://www.e-mol.net&quot; target=&quot;_blank&quot;&gt;EMOL &lt;/a&gt;and I have run into a bit of an annoyance. First why does Intel make so many different versions of the Intel PRO/1000 card? We purchased a server with two on-board Intel PRO/1000 cards and added a PCI-X Intel PRO/1000 card with the plan to &lt;a href=&quot;http://en.wikipedia.org/wiki/Channel_bonding&quot; target=&quot;_blank&quot;&gt;Ethernet Bond&lt;/a&gt; the two on-board cards and use the add-on card for server management.&lt;/p&gt;
&lt;p class=&quot;MsoNormal&quot;&gt;This is a plan that definitely did not come together. First the main board manufacturer thought it would be a good idea to use two different Intel chips for the two Ethernet controllers. One is an Intel PRO/1000 PL the other is an Intel PRO/1000 PM. The add-on card we purchased is an Intel PRO/1000 PT. So it turns out the Intel cards are far from the same and I am not happy about that. It took me much Internet digging to find this out.&lt;/p&gt;
&lt;blockquote&gt;
&lt;p class=&quot;MsoNormal&quot;&gt;Intel PRO/1000 PM - does not support jumbo frames&lt;br /&gt;
Intel PRO/1000 PT - supports jumbo frames in Microsoft Windows operating systems only when Intel PROSet for Windows Device Manager is installed and only up to 9238 bytes.&lt;br /&gt;
Intel PRO/1000 PL - support jumbo frames larger than 9238 bytes.&lt;/p&gt;
&lt;/blockquote&gt;
&lt;p class=&quot;MsoNormal&quot;&gt;So what are my options? Well I do not run Windows, and I would like to run at a minimum two network ports teamed. Which means now I need to order an additional Ethernet card or a two port Ethernet card. What I do know is it will likely not be a Intel Pro 1000.&lt;/p&gt;</content:encoded>
	<dc:date>2008-05-06T13:18:10+00:00</dc:date>
</item>
<item rdf:about="http://www.stonetable.org/2008/05/02/tirpy/">
	<title>stonetable: Tirpy</title>
	<link>http://www.stonetable.org/2008/05/02/tirpy/</link>
	<content:encoded>&lt;p&gt;Tired, but happy.&lt;/p&gt;
&lt;p&gt;Stopped off at a Barnes and Noble before seeing Iron Man tonight. Not only did we find copies of &lt;a href=&quot;http://www.weirdtales.net/&quot;&gt;Weird Tales&lt;/a&gt; and &lt;a href=&quot;http://www.apexbookcompany.com/products/2008/03/apex-digest-issue-12-now-available/&quot;&gt;Apex Digest&lt;/a&gt; (both difficult to find in stores, in my experience) but we saw the Steampunk anthology edited by Jeff &amp;amp; Ann Vandermeer, which was released today, &lt;a href=&quot;http://www.jeffvandermeer.com/2008/05/01/steampunk-seen-in-the-wild/&quot;&gt;in the wild&lt;/a&gt;.&lt;/p&gt;
&lt;p&gt;No writing done today, but I&amp;#8217;m down to the last scene rewrite for my &lt;a href=&quot;http://mzbworks.home.att.net/s23.htm&quot;&gt;Sword and Sorceress&lt;/a&gt; submission. I expect that to be ready by the end of the weekend.&lt;/p&gt;</content:encoded>
	<dc:date>2008-05-02T08:30:54+00:00</dc:date>
</item>
<item rdf:about="http://www.stonetable.org/2008/04/30/thats-just-how-i-roll/">
	<title>stonetable: That’s Just How I Roll</title>
	<link>http://www.stonetable.org/2008/04/30/thats-just-how-i-roll/</link>
	<content:encoded>&lt;p&gt;My first published story, a flash fiction piece titled &lt;a href=&quot;http://staticmovement.com/israel.htm&quot;&gt;That&amp;#8217;s Just How I Roll&lt;/a&gt;, is now available in the &lt;a href=&quot;http://staticmovement.com/may08.htm&quot;&gt;May Issue&lt;/a&gt; of &lt;a href=&quot;http://staticmovement.com/&quot;&gt;Static Movement&lt;/a&gt;.&lt;/p&gt;
&lt;p&gt;Read it, print, frame and hang it on your wall, share it with friends and family, etc. Enjoy.&lt;/p&gt;</content:encoded>
	<dc:date>2008-04-30T22:08:22+00:00</dc:date>
</item>
<item rdf:about="http://laptop-mechanic.livejournal.com/83382.html">
	<title>Hellion Prime: Quit trying to distract me!</title>
	<link>http://laptop-mechanic.livejournal.com/83382.html</link>
	<content:encoded>I know its all the rage for coeds to show skin these days, but come on.&amp;nbsp; It is really hard for me to intelligently explain your problem when you're waving your 38DDs in my face and are damned near trying to poke my eye out with a nipple. The view's nice and all, but not when I'm trying to actually work.</content:encoded>
	<dc:date>2008-04-30T13:41:37+00:00</dc:date>
</item>
<item rdf:about="http://laptop-mechanic.livejournal.com/83117.html">
	<title>Hellion Prime: Comedy Unobtainium</title>
	<link>http://laptop-mechanic.livejournal.com/83117.html</link>
	<content:encoded>&lt;br /&gt;Somebody just pointed me to &lt;a href=&quot;http://hradzka.livejournal.com/194753.html?format=light&quot;&gt;this&lt;/a&gt; link of the Paladin of Shadows series by John Ringo. You too, will be shouting &quot;OH JOHN RINGO NO&quot; by the time you finish the review, likely several times.&amp;nbsp; Warning: the review is pretty graphic, so if things like graphic sex &amp;amp; violence offends you, then dont click it. &lt;br /&gt;&lt;br /&gt;I've read all the books, and I enjoyed them in a &quot;check your brain at the door&quot; sort of way. I even told Ringo so in an email, and got a nicely worded thank you in reply.</content:encoded>
	<dc:date>2008-04-29T02:51:51+00:00</dc:date>
</item>
<item rdf:about="http://feeds.feedburner.com/~r/jrwren/~3/277114692/">
	<title>evarlast: When you don’t know the language…</title>
	<link>http://feeds.feedburner.com/~r/jrwren/~3/277114692/</link>
	<content:encoded>&lt;blockquote&gt;&lt;p&gt;internal static short uiShiftRightBy8(short x)&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; {&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; short iNew;&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; iNew = (short)((x &amp;amp; 0&amp;#215;7FFF) / 256);&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; if( (x &amp;amp; 0&amp;#215;8000) != 0)&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; iNew = (short)(iNew | 0&amp;#215;80);
&lt;p&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; return iNew;&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; }
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;/p&gt;&lt;/p&gt;&lt;/blockquote&gt;
&lt;p&gt;AHHHHHHH!!!!*&lt;/p&gt;
&lt;p&gt;Nevermind that this was public even though it was used only once by the class in which it was defined. Nevermind that this was not marked static even though it uses no member functions. (Also nevermind that I made it internal instead of private so I could test it and make sure it was as stupid as I thought.)&lt;/p&gt;
&lt;p&gt;When you learn a programming language, even when you can get things done in it, it still adds tremendous value to you as a programmer to READ A FRAKKING BOOK on the language. The above code works, absolutely. It does exactly what the writer intended. When the #1 concern when writing software is &amp;#8220;do whatever is needed to ship it now, and you have no time to better yourself&amp;#8221; you get this code. IMO maintainability should be #2 concern directly following &amp;#8220;does it work?&amp;#8221;&lt;/p&gt;
&lt;p&gt;I&amp;#8217;ve entirely removed the above code and replaced it with the operator and value it implements: &amp;gt;&amp;gt; 8&lt;/p&gt;
&lt;p&gt;Yes it really is Shift Right by 8. Yes, someone didn&amp;#8217;t know about the &amp;gt;&amp;gt; operator. Yes I wasted time reading code that uses this method. Yes I don&amp;#8217;t want to think about the performance characteristic of this in a tight loop in critical systems.&lt;/p&gt;
&lt;p&gt;*my coworkers laughed when I said AHHHHHHH!!! outloud. At least bad code provides us with &lt;a href=&quot;http://dailywtf.com&quot;&gt;solid entertainment&lt;/a&gt;.&lt;/p&gt;
&lt;img src=&quot;http://feeds.feedburner.com/~r/jrwren/~4/277114692&quot; height=&quot;1&quot; width=&quot;1&quot; /&gt;</content:encoded>
	<dc:date>2008-04-24T19:21:47+00:00</dc:date>
</item>
<item rdf:about="http://www.halberd.org/2008/04/24/202/">
	<title>matthias</title>
	<link>http://www.halberd.org/2008/04/24/202/</link>
	<content:encoded>&lt;p&gt;&lt;a title=&quot;Hardy Heron Download&quot; href=&quot;http://www.ubuntu.com/getubuntu/download&quot; target=&quot;_blank&quot;&gt;&lt;img class=&quot;aligncenter&quot; src=&quot;http://matthias.halberd.org/ubuntu-logo.jpg&quot; alt=&quot;Ubuntu Logo&quot; /&gt;&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;Ubuntu 8.04 &amp;#8220;Hardy Heron&amp;#8221; is officially released.  Click the above to get your groove on.&lt;/p&gt;</content:encoded>
	<dc:date>2008-04-24T14:07:15+00:00</dc:date>
</item>
<item rdf:about="http://www.grid7.org/2008/04/23/blogging-from-birmingham-alabama/">
	<title>madmanX: Blogging from Birmingham Alabama</title>
	<link>http://www.grid7.org/2008/04/23/blogging-from-birmingham-alabama/</link>
	<content:encoded>&lt;p&gt;Well I been in Brimingham Alabama doing engineering support the past couple of days. I guess one of the perks of this soon to be gone job is that I get to at least get out of the office and visit other cities in the country. I have gone to some really nice places that I would have not normally gone too. It feels pretty refreshing to go into a new office and talk to new people and see how they do things, It allows me to get a different perspective on the business. The only downside to these little adventures of mine is  I get home sick within the first day or so and miss my wife. It&amp;#8217;s bad enough we barely get to see each other with our schedules being so screwed up the way they are. This just adds a little extra layer of stress to things. But as I always say, you have to do what you have to do.&lt;/p&gt;
&lt;p&gt;Speaking of jobs, things are looking good as far as job prospects go. I have a few things lining up in company and I started putting feelers out to the outside. I have a feeling that everything is going to end up comming together from all angles at once, and I will be forced to choose. I guess have too many options is better then having none. &lt;/p&gt;</content:encoded>
	<dc:date>2008-04-23T22:01:25+00:00</dc:date>
</item>
<item rdf:about="http://feeds.feedburner.com/~r/jrwren/~3/276200349/">
	<title>evarlast: Speculations about .NET 4.0</title>
	<link>http://feeds.feedburner.com/~r/jrwren/~3/276200349/</link>
	<content:encoded>&lt;p&gt;I found this in my Live Writer drafts. I figured I should send it, since its been a month and I haven&amp;#8217;t thought of anything to add to it.&lt;/p&gt;
&lt;p&gt;*insert timewarp to March 18th, 2008*&lt;/p&gt;
&lt;p&gt;I was at the Visual Studio 2008 launch in Detroit today. This was my 3rd Microsoft Launch event. The first being Visual Studio 2005 and the second being Vista/Office2k7. As a developer the Vista launch was really the .NET 3.0 launch to me.&lt;/p&gt;
&lt;p&gt;One thing I&amp;#8217;ve learned that I don&amp;#8217;t do well and I need to do better is future think. What is next?&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;ASP.NET 3.5 &amp;#8220;extensions&amp;#8221; will be known as ASP.NET 4.0
&lt;ul&gt;
&lt;li&gt;ASP.NET MVC (see MonoRail)
&lt;li&gt;ASP.NET Dynamic Data (see Rails scaffolding or MonoRail scaffolding)
&lt;li&gt;ASP.NET AJAX (browser history, but I expect more here)
&lt;li&gt;ADO.NET Entity Framework (see NHibernate)
&lt;li&gt;ADO.NET Data Services (many projects to see here, snooze is one)
&lt;li&gt;Silverlight Controls for ASP.NET (I expect much more here)&lt;/li&gt;
&lt;/li&gt;&lt;/li&gt;&lt;/li&gt;&lt;/li&gt;&lt;/li&gt;&lt;/ul&gt;
&lt;li&gt;Full development support for Silverlight will ship along with this release.
&lt;li&gt;WPF finally get an editable Grid. It won&amp;#8217;t be named DataGrid, DataGridView or GridView(exists in WPF as a ListView mode). It may be named DataViewGrid or GridDataView.
&lt;li&gt;A WPF &amp;#8220;Dynamic Data&amp;#8221; library complements the ASP.NET extension.
&lt;li&gt;The System.Core.Enumerable class gets a Each extension method. Its name endlessly confuses developers who don&amp;#8217;t understand why it wasn&amp;#8217;t there in 3.5 and who don&amp;#8217;t know why it isn&amp;#8217;t ForEach like Array and List&amp;lt;&amp;gt;. Developers start calling Microsoft&amp;#8217;s naming difference a &amp;#8220;catch up to Ruby&amp;#8221;.
&lt;li&gt;A handful of new Workflow activities are released but no one knows what they are, what they do, or how do to use them.
&lt;li&gt;Cardspace continues and adds even easier support for OpenID but no one knows what they are, what they do, or how do to use them.
&lt;li&gt;Like the 3.0 release the languages and compilers don&amp;#8217;t change.
&lt;li&gt;a DI/IoC container with a subset of the features of Windsor, Spring.net, StructureMap or even EntLib ObjectBuilder is included!
&lt;li&gt;DLR still won&amp;#8217;t ship. No IronPython. No IronRuby. Python and Ruby will remain the most common languages used in demo for Silverlight.
&lt;li&gt;Visual Source Safe is still the recommended version control system if you can&amp;#8217;t afford Team Foundation Server. WTF?
&lt;li&gt;There will be some hidden PerfCounter, WMI, awesomeness. It won&amp;#8217;t be documented very well.
&lt;li&gt;Hibernate and NHibernate users everywhere are stunned and gape mouthed when they see Entity Framework. Then they fall out of their chair laughing. &amp;#8220;We hate maintaining our single HBM files, you want to maintain 3 uglier XML files (CDSL, MSL, SSDL)?&amp;#8221; Microsoft answers these cries with &amp;#8220;use the designer&amp;#8221;, but the power developers want to do things that are only possible in the XML that the designer cannot do.&lt;/li&gt;
&lt;/li&gt;&lt;/li&gt;&lt;/li&gt;&lt;/li&gt;&lt;/li&gt;&lt;/li&gt;&lt;/li&gt;&lt;/li&gt;&lt;/li&gt;&lt;/li&gt;&lt;/li&gt;&lt;/li&gt;&lt;/ul&gt;
&lt;img src=&quot;http://feeds.feedburner.com/~r/jrwren/~4/276200349&quot; height=&quot;1&quot; width=&quot;1&quot; /&gt;</content:encoded>
	<dc:date>2008-04-23T14:35:04+00:00</dc:date>
</item>
<item rdf:about="http://lxer.com/module/newswire/ext_link.php?rid=102074">
	<title>greenfly: Introduction to Forensics</title>
	<link>http://lxer.com/module/newswire/ext_link.php?rid=102074</link>
	<content:encoded>A break-in can happen to any system administrator. Find out how to use Autopsy and Sleuthkit to hit the ground running on your first forensics project. There are certain aspects to system administration that you can learn only from experience. Computer forensics (among other things the ability to piece together clues from a system to determine how an intruder broke in) can take years or even decades to master. If you have never conducted a forensics analysis on a computer, you might not even know exactly where to start. In this guide, I cover how to use the set of forensics tools in Sleuthkit with its Web front end, Autopsy, to organize your first forensics case.</content:encoded>
	<dc:date>2008-04-22T22:45:00+00:00</dc:date>
</item>

</rdf:RDF>
