<?xml version="1.0" encoding="UTF-8"?><!-- generator="WordPress/2.9.2" -->
<rss version="0.92">
<channel>
	<title>BLARGH!! for the people</title>
	<link>http://blargh.tommymontgomery.com</link>
	<description>It&#039;s time to bring forth the rhythm and the rhyme</description>
	<lastBuildDate>Fri, 09 Jul 2010 04:03:13 +0000</lastBuildDate>
	<docs>http://backend.userland.com/rss092</docs>
	<language>en</language>
	
	<item>
		<title>PHP is Dead</title>
		<description><![CDATA[PHP is dead. Probably.
Allow me to preface this with some context. I ]]></description>
		<link>http://blargh.tommymontgomery.com/2010/07/php-is-dead/</link>
			</item>
	<item>
		<title>Refresh Current Page in JavaScript</title>
		<description><![CDATA[It&#8217;s more annoying than it sounds. You could do the classic:

window.location = window.location; //refresh lol!

But you&#8217;ll get screwed if there is a fragment, like, say, http://example.com/index.html#section1. The page won&#8217;t refresh. Or rather, it will, but browsers won&#8217;t send a request to the server if the url contains a fragment. It will just try to navigate [...]]]></description>
		<link>http://blargh.tommymontgomery.com/2010/05/refresh-current-page-in-javascript/</link>
			</item>
	<item>
		<title>Subversion, Apache, nginx and &#8220;Entity Too Large&#8221;</title>
		<description><![CDATA[tl;dr: add client_max_body_size 10m; to your nginx vhost.
This one took me a while to track down. My brother uses my subversion repository, and he was trying to commit a 1MB flash file. The TortoiseSVN error he got back was: 

This was a bit perplexing. I figured it was some sort of mod_dav setting I had [...]]]></description>
		<link>http://blargh.tommymontgomery.com/2010/05/subversion-apache-nginx-and-entity-too-large/</link>
			</item>
	<item>
		<title>Seven CSS Tricks No One Should Ever Have to Memorize</title>
		<description><![CDATA[CSS is kinda cool, or at least it would be if everybody used the same browser. Instead, they don&#8217;t, so doing stuff with CSS is mostly impossible. There are few super annoying hacks and tricks that I use every six months but can never remember, and then end up scouring the internet looking for an [...]]]></description>
		<link>http://blargh.tommymontgomery.com/2010/05/seven-css-tricks-no-one-should-ever-have-to-memorize/</link>
			</item>
	<item>
		<title>Get Computed Style in JavaScript</title>
		<description><![CDATA[The computed style of an element incorporates external CSS (via stylesheets), inline styles and styles prescribed via JavaScript. It&#8217;s most commonly used to get the default style of an element if it&#8217;s not specifically assigned via styles, i.e. the default style that the browser gives an element. It&#8217;s a very undocumented part of JavaScript engines, [...]]]></description>
		<link>http://blargh.tommymontgomery.com/2010/04/get-computed-style-in-javascript/</link>
			</item>
	<item>
		<title>Linq Walk</title>
		<description><![CDATA[So, we all know Linq is rad. Not in that silly faux-SQL syntax, but in the manly, declarative, fluent syntax.
But the sad part is that there is no walk extension method. Walk is a functional programming staple that iterates over a collection of stuff and applies a callback to each one. In PHP, there is [...]]]></description>
		<link>http://blargh.tommymontgomery.com/2010/03/linq-walk/</link>
			</item>
	<item>
		<title>Sudoku Solver: 2006-style</title>
		<description><![CDATA[College was such a carefree time. I wasn&#8217;t jaded, or cynical, or experienced (at least not in the way you&#8217;re thinking). I didn&#8217;t care about testability, or code coverage, or documentation, or design patterns, or any of the crap that plagues my thoughts whenever I sit down to write code. I would just sit at [...]]]></description>
		<link>http://blargh.tommymontgomery.com/2010/03/sudoku-solver-2006-style/</link>
			</item>
	<item>
		<title>Uncountable vs. Infinite</title>
		<description><![CDATA[What does it mean to be infinite? Never-ending? What about uncountable? Is the set of integers uncountable? How about the real numbers? What&#8217;s the difference?
Questions from a freshman math student, no doubt. The uncountable vs. infinite problem is a turning point in the quest for a bachelor&#8217;s degree in mathematics. To be crude, it&#8217;s the [...]]]></description>
		<link>http://blargh.tommymontgomery.com/2010/02/uncountable-vs-infinite/</link>
			</item>
	<item>
		<title>How to be an Awesome Open Source Developer</title>
		<description><![CDATA[I&#8217;m a big fan of open source. Capitalism is awesome, but it inspires and encourages greed, so it&#8217;s nice to see somebody defying that system by working hard at something, and then giving it away for free.
Of course, you&#8217;re at the mercy of whatever kind of limping scrod they shove out their codehole, but hey, [...]]]></description>
		<link>http://blargh.tommymontgomery.com/2010/02/how-to-be-an-awesome-open-source-developer/</link>
			</item>
	<item>
		<title>Setting null values in anonymous object initializer in C#</title>
		<description><![CDATA[The spec claims you can&#8217;t do this:
It is a compile-time error for an expression in an anonymous object initializer to be of the null type.

And you can&#8217;t. Directly.

var obj = new {
  Value = null //syntax error: &#34;cannot assign null to anonymous type property&#34;
};

var obj = new {
  Value = (object)null //full of [...]]]></description>
		<link>http://blargh.tommymontgomery.com/2010/02/setting-null-values-in-anonymous-object-initializer-in-c/</link>
			</item>
</channel>
</rss>
