<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>I Like Kill Nerds</title>
	<atom:link href="http://ilikekillnerds.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://ilikekillnerds.com</link>
	<description>Killing nerds with words</description>
	<lastBuildDate>Fri, 18 May 2012 03:17:25 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.2</generator>
		<item>
		<title>A Procrastinating Developer Is Not A Lazy Developer</title>
		<link>http://ilikekillnerds.com/2012/05/a-procrastinating-developer-is-not-a-lazy-developer/</link>
		<comments>http://ilikekillnerds.com/2012/05/a-procrastinating-developer-is-not-a-lazy-developer/#comments</comments>
		<pubDate>Fri, 18 May 2012 03:17:25 +0000</pubDate>
		<dc:creator>Dwayne</dc:creator>
				<category><![CDATA[Nerds]]></category>
		<category><![CDATA[Opinion]]></category>

		<guid isPermaLink="false">http://ilikekillnerds.com/?p=1081</guid>
		<description><![CDATA[There&#8217;s a good chance whenever you see one or more of your work colleagues on Facebook or Reddit you immediately assume they either haven&#8217;t got much work to do or they&#8217;re slacking off, it&#8217;s this kind of backwards thinking that &#8230; <a href="http://ilikekillnerds.com/2012/05/a-procrastinating-developer-is-not-a-lazy-developer/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>There&#8217;s a good chance whenever you see one or more of your work colleagues on Facebook or Reddit you immediately assume they either haven&#8217;t got much work to do or they&#8217;re slacking off, it&#8217;s this kind of backwards thinking that has effectively created a corporate work environment in non-corporate work environments (design studios, game development agencies, internet startups). Procrastination is healthy, it allows us to break out of the tunnel we sometimes dig ourselves into from concentrating too hard to solve a problem (like why an element is behaving different in Firefox and not Chrome) or because we&#8217;re stressed out due to all kinds of different variables.</p>
<p>This is an open admission, I procrastinate a lot. I wouldn&#8217;t be able to put a figure on how much I procrastinate per day or week, but the very fact this blog post was drafted inbetween working on two projects further drives the point. Even though I am writing this article, I&#8217;m way ahead on both projects. I know how long it takes to do most things, how long I have before a project is due and this blog post amongst my other favourite procrastination activities like browsing Hacker News or Github repositories make me a better worker.</p>
<p>Not only am I much happier, I&#8217;m way more productive than I would be if I were being forced to only look at websites related to my job and undertake activities related to my job. A developer (or to generalise any worker) who doesn&#8217;t procrastinate is a bad worker in my opinion. If you focus only on one thing for too long you make bad decisions and don&#8217;t take the time to reflect on your decisions and think twice.</p>
<p>There are numerous studies that have found procrastination makes you more productive in the end and of course it&#8217;s not always the case, but if you know what you have to do and have other people relying on you (like being a part of a small team) you should know how much you can procrastinate and when to do work.</p>
<p>Any employer or team leader who believes procrastination is the devil and results in less worker output needs to seriously re-evaluate their stance on things because they most likely procrastinate, everyone does.</p>
]]></content:encoded>
			<wfw:commentRss>http://ilikekillnerds.com/2012/05/a-procrastinating-developer-is-not-a-lazy-developer/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Better Dotted CSS Borders Using The :After Pseudo Selector</title>
		<link>http://ilikekillnerds.com/2012/05/better-dotted-css-borders-using-the-after-pseudo-selector/</link>
		<comments>http://ilikekillnerds.com/2012/05/better-dotted-css-borders-using-the-after-pseudo-selector/#comments</comments>
		<pubDate>Fri, 18 May 2012 00:53:27 +0000</pubDate>
		<dc:creator>Dwayne</dc:creator>
				<category><![CDATA[CSS]]></category>

		<guid isPermaLink="false">http://ilikekillnerds.com/?p=1078</guid>
		<description><![CDATA[As a developer you&#8217;re sometimes given a web design that has certain elements that theoretically can be done with CSS, but don&#8217;t look quite the same. One of those I recently discovered isn&#8217;t quite the same are dotted borders. If &#8230; <a href="http://ilikekillnerds.com/2012/05/better-dotted-css-borders-using-the-after-pseudo-selector/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>As a developer you&#8217;re sometimes given a web design that has certain elements that theoretically can be done with CSS, but don&#8217;t look quite the same. One of those I recently discovered isn&#8217;t quite the same are dotted borders. If your designer uses Photoshop as their web design tool of choice, there&#8217;s a high chance any dotted borders in a design are in fact decimals, styled text.</p>
<p>While not all designers would care if their dotted borders don&#8217;t look the same, like I did recently the difference can really affect a design. I came up with a crafty solution that allows you to create dotted CSS borders the Photoshop way. This only works if it&#8217;s a line on top or bottom, not a dotted border that wraps around an element.</p>
<p><strong>The following code is what I recently used on a project, tweak to suit your tastes:</strong></p>
<pre class="snippet-code">

/* This is most likely a DIV element that uses this class, but it can be anything */

.dotted-rule {

/* Probably unneeded if the element using this class is a DIV */
display: block;

/* This helps stop the element being taller than it should be */
line-height: 1;

/* A space of 5px top and bottom of our dotted border */
margin: 5px 0 5px 0;

/* Overflow hidden will stop the :after pseudo dots extending past the width of our element. */
overflow: hidden;

/* We don't want any padding */
padding: 0;
}

/* Inserts a whole bunch of dots after the dotted rule element */
.dotted-rule:after {

/* The colour of our border */
color: #FFF;

/**
* Use as many dots here as you like, I put more than I need and let the overflow: hidden above restrict it to only display the width of the element.
* Try experimenting with different characters for awesome borders like triangles or something, be creative.
*/
content: '.........................................................................................................................................................................................................................................................................................................';

/* This is very important, our text won't flow or display correctly without it */
display: block;

/* Letter spacing helps space out our dots. It controls the distance between them. */
letter-spacing: 3px;

/**
* A negative margin will most likely be needed to bring the rule border up an acceptable position, otherwise by default it might sit lower.
* This negative margin matches the amount of margin we've put on-top of the dotted rule above.
*/
margin-top: -5px;
}
</pre>
]]></content:encoded>
			<wfw:commentRss>http://ilikekillnerds.com/2012/05/better-dotted-css-borders-using-the-after-pseudo-selector/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Responsive Design = Wanker Design</title>
		<link>http://ilikekillnerds.com/2012/05/responsive-design-wanker-design/</link>
		<comments>http://ilikekillnerds.com/2012/05/responsive-design-wanker-design/#comments</comments>
		<pubDate>Thu, 17 May 2012 03:03:14 +0000</pubDate>
		<dc:creator>Dwayne</dc:creator>
				<category><![CDATA[Opinion]]></category>

		<guid isPermaLink="false">http://ilikekillnerds.com/?p=1073</guid>
		<description><![CDATA[Responsive design is the biggest scam to ever hit the internet since Nigerian scammers discovered how to send an email. It seems every blog you go to about design and or development has a whole bunch of on articles on &#8230; <a href="http://ilikekillnerds.com/2012/05/responsive-design-wanker-design/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>Responsive design is the biggest scam to ever hit the internet since Nigerian scammers discovered how to send an email. It seems every blog you go to about design and or development has a whole bunch of on articles on responsive design, why it&#8217;s so good and how simple and amazing responsive design can be: responsive design is for wankers.</p>
<p>Okay, I digress for a moment: responsive design looks cool when done correctly, but it adds an extra level of unneeded complexity to even the simplest of websites unless you use some kind of framework that has done most of the hard work for you. But in all serious, who wants their precious deadline left in the hands of some kind of framework (CSS in this instance) forcing you how to structure your sites markup and what you can and can&#8217;t do?</p>
<p>If anyone ever tells you that building a responsive website is simple, punch them in the face about 5 times and then tell them: &#8220;That&#8217;s what it feels like to build a responsive website, still think it&#8217;s simple or should I punch you another 5 times?&#8221; responsive development is hard, especially hard when the designer recreates the interface for mobile devices to the point new menus are added in, it&#8217;s not impossible but it&#8217;s an unneeded complexity that has the potential to blow out deadlines for even a seasoned web developer.</p>
<p>Taking a desktop browser website and then scaling it down for mobile visitors is not responsive development, it&#8217;s stupid. Do you really think hiding all of those unneeded elements from your desktop version on a mobile phone screen makes a difference? No. Unless you build for mobile first and scale up (and seriously, who ever does that?) your mobile visitors are loading the same scripts, unneeded styles and other crap they don&#8217;t even get to see on their mobile devices. Do you know how expensive mobile data is in a country like Australia or the UK? Stop wasting my bandwidth you bandits.</p>
<p>Responsive design is the new Internet Explorer 6. If you want a site that works on an iPhone? Build a mobile site or better yet, build a friggen&#8217; application. If you want a site that works on an iPad or other tablet device: build a tablet version of your website or build an application. There&#8217;s no need to go making a site work for desktop computers at anything under 1024 x 768, even the shittiest of computers these days at least support that resolution. So where does that leave responsive design?</p>
<p>At the end of the day, it&#8217;s a matter of preference and what your clients want. If your clients want a responsive site, give them a responsive site. If they want an app, give them an app and if they say nothing then build a site that is at least usable on a mobile or tablet, don&#8217;t go spending 3 hours shouting at your screen and debugging CSS only for no one to even notice the extra effort you spent on the site.</p>
]]></content:encoded>
			<wfw:commentRss>http://ilikekillnerds.com/2012/05/responsive-design-wanker-design/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>GM Pulling Facebook Ads Right Before IPO: An Intentionally Calculated Move?</title>
		<link>http://ilikekillnerds.com/2012/05/gm-pulling-facebook-ads-right-before-ipo-an-intentionally-calculated-move/</link>
		<comments>http://ilikekillnerds.com/2012/05/gm-pulling-facebook-ads-right-before-ipo-an-intentionally-calculated-move/#comments</comments>
		<pubDate>Wed, 16 May 2012 02:16:40 +0000</pubDate>
		<dc:creator>Dwayne</dc:creator>
				<category><![CDATA[Opinion]]></category>

		<guid isPermaLink="false">http://ilikekillnerds.com/?p=1069</guid>
		<description><![CDATA[Put on your tinfoil hats people, there&#8217;s a conspiracy storm a coming. If you haven&#8217;t heard already, General Motors have announced just days before Facebook launches its IPO that it is pulling its $10M Facebook advertising account citing that Facebook &#8230; <a href="http://ilikekillnerds.com/2012/05/gm-pulling-facebook-ads-right-before-ipo-an-intentionally-calculated-move/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>Put on your tinfoil hats people, there&#8217;s a conspiracy storm a coming. If you haven&#8217;t heard already, General Motors have announced just days before Facebook launches its IPO that <a href="http://www.forbes.com/sites/joannmuller/2012/05/15/gm-says-facebook-ads-dont-work-pulls-10-million-account/" target="_blank">it is pulling its $10M Facebook advertising account</a> citing that Facebook ads do not work and that they &#8220;regularly review their advertising spend&#8221;. While I or anyone else obviously has no concise, solid proof this was a calculated sabotage move there are many plausible scenarios as to why GM chose the week of Facebook&#8217;s IPO to make a big public announcement like they have (you don&#8217;t get any more public than a write-up in Forbes magazine).</p>
<p><strong>Scenario #1</strong></p>
<p>An outside influencer perhaps made a sly deal involving lots of money with General Motors in exchange for pulling their Facebook advertising account. How long have GM been advertising on Facebook before even a couple of months is enough to determine if your ads are working or not. It&#8217;s not unlikely that something like this could happen, if someone wants Facebook to falture in the lead-up to its IPO, they&#8217;ll no doubt find a way to craftingly sabotage the chances of it being a record opening IPO.</p>
<p>The question is, who would want to see Facebook&#8217;s IPO be jeopordised? My money if such a scenario is likely would be Google, but it could also be a financial institution that wasn&#8217;t lucky enough to get a slice of the Facebook investment pie.</p>
<p><strong>Scenario #2</strong></p>
<p>GM tried negotiating a deal with Facebook to get cheaper advertising rates knowing that once the IPO goes live, advertising rates will increase as all eyes will be on Facebook to make a profit every which way they can. Facebook most likely rejected GM&#8217;s call for cheaper scale advertising and like a 2 year old child, pulled their account and made a big public tantrum because they didn&#8217;t get the candy that they wanted.</p>
<p><strong>Scenario #3</strong></p>
<p>It&#8217;s all just an unfortunate coincidence that GM decided to announce they were withdrawing their Facebook advertising spend. The call to cut back on advertising spending was made long before Facebook decided to go public.</p>
<p>Are there any other potential scenarios that I&#8217;ve missed here?</p>
]]></content:encoded>
			<wfw:commentRss>http://ilikekillnerds.com/2012/05/gm-pulling-facebook-ads-right-before-ipo-an-intentionally-calculated-move/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How Is It Possible That A Digital Copy of a PC Game Can Cost More Than A Physical Copy?</title>
		<link>http://ilikekillnerds.com/2012/05/how-is-it-possible-that-a-digital-copy-of-a-pc-game-can-cost-more-than-a-physical-copy/</link>
		<comments>http://ilikekillnerds.com/2012/05/how-is-it-possible-that-a-digital-copy-of-a-pc-game-can-cost-more-than-a-physical-copy/#comments</comments>
		<pubDate>Wed, 16 May 2012 00:37:19 +0000</pubDate>
		<dc:creator>Dwayne</dc:creator>
				<category><![CDATA[Opinion]]></category>

		<guid isPermaLink="false">http://ilikekillnerds.com/?p=1063</guid>
		<description><![CDATA[If you live in the South-East Asia region (Australia, New Zealand, etc) then you&#8217;re probably aware that computer games amongst basically everything else costs you an arm and a leg sometimes twice the price people in the US pay. Case &#8230; <a href="http://ilikekillnerds.com/2012/05/how-is-it-possible-that-a-digital-copy-of-a-pc-game-can-cost-more-than-a-physical-copy/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>If you live in the South-East Asia region (Australia, New Zealand, etc) then you&#8217;re probably aware that computer games amongst basically everything else costs you an arm and a leg sometimes twice the price people in the US pay. Case in point is my recent purchase of Diablo III, I admire and respect Blizzard and the games that they make but I&#8217;m pretty pissed off after paying $79 for an online copy via the Blizzard store which is using 8gb of my internet bandwidth (bandwidth I have to pay for and yes, Australian internet is expensive), yet most of my friends bought a physical copy of Diablo III for $59 from Australia retailer Dick Smith Electronics.</p>
<p>How is this possible? The screen-shots speak for themselves. I would love to hear a response from Blizzard in regards to why the SEA price is so high.</p>
<p><a href="http://ilikekillnerds.com/wp-content/uploads/2012/05/diablo_3_79_online_blizzard_official_store_robbery.png"><img class="alignleft size-full wp-image-1066" title="diablo_3_79_online_blizzard_official_store_robbery" src="http://ilikekillnerds.com/wp-content/uploads/2012/05/diablo_3_79_online_blizzard_official_store_robbery.png" alt="" width="740" height="430" /></a><a href="http://ilikekillnerds.com/wp-content/uploads/2012/05/diablo_3_59_at_dick_smith_electronics.png"><img class="alignleft size-full wp-image-1067" title="diablo_3_59_at_dick_smith_electronics" src="http://ilikekillnerds.com/wp-content/uploads/2012/05/diablo_3_59_at_dick_smith_electronics.png" alt="" width="695" height="341" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://ilikekillnerds.com/2012/05/how-is-it-possible-that-a-digital-copy-of-a-pc-game-can-cost-more-than-a-physical-copy/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Linux Can Be Downloaded Fast Via A Web Browser Too!</title>
		<link>http://ilikekillnerds.com/2012/05/linux-can-be-downloaded-fast-via-a-web-browser-too/</link>
		<comments>http://ilikekillnerds.com/2012/05/linux-can-be-downloaded-fast-via-a-web-browser-too/#comments</comments>
		<pubDate>Tue, 15 May 2012 23:06:25 +0000</pubDate>
		<dc:creator>Dwayne</dc:creator>
				<category><![CDATA[Linux]]></category>

		<guid isPermaLink="false">http://ilikekillnerds.com/?p=1059</guid>
		<description><![CDATA[Wil Wheaton recently posted this blog post titled, &#8220;an example of the usefulness of bittorrent for entirely legal purposes&#8221; here and pointed out that Bittorrent can be used for legititmate purposes like downloading Ubuntu which is quicker than using a &#8230; <a href="http://ilikekillnerds.com/2012/05/linux-can-be-downloaded-fast-via-a-web-browser-too/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>Wil Wheaton recently posted this blog post titled, &#8220;an example of the usefulness of bittorrent for entirely legal purposes&#8221; <a href="http://wilwheaton.typepad.com/wwdnbackup/2012/05/an-example-of-the-usefulness-of-bittorrent-for-entirely-legal-purposes.html" target="_blank">here</a> and pointed out that Bittorrent can be used for legititmate purposes like downloading Ubuntu which is quicker than using a web browser, this isn&#8217;t entirely true.</p>
<p>While I agree that Bittorrent is definitely faster, I did a test of my own on a basic cable connection here in Australia downloading an official Ubuntu installation .iso from the official website in Google Chrome, the below screenshot speaks for itself. I would recommend downloading it via Bittorrent because you can resume and pause your download amongst other advantages like not costing the hosting provider money by downloading it from the official website.</p>
<p><a href="http://ilikekillnerds.com/wp-content/uploads/2012/05/linux_download_from_web_can_be_fast_too.png"><img src="http://ilikekillnerds.com/wp-content/uploads/2012/05/linux_download_from_web_can_be_fast_too.png" alt="" title="linux_download_from_web_can_be_fast_too" width="685" height="188" class="alignleft size-full wp-image-1060" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://ilikekillnerds.com/2012/05/linux-can-be-downloaded-fast-via-a-web-browser-too/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>It&#8217;s Not Anti-trust Behavior For Microsoft To Restrict Firefox On Windows 8 RT</title>
		<link>http://ilikekillnerds.com/2012/05/its-not-anti-trust-behavior-for-microsoft-to-restrict-firefox-on-windows-8-rt/</link>
		<comments>http://ilikekillnerds.com/2012/05/its-not-anti-trust-behavior-for-microsoft-to-restrict-firefox-on-windows-8-rt/#comments</comments>
		<pubDate>Fri, 11 May 2012 23:27:42 +0000</pubDate>
		<dc:creator>Dwayne</dc:creator>
				<category><![CDATA[Opinion]]></category>

		<guid isPermaLink="false">http://ilikekillnerds.com/?p=1048</guid>
		<description><![CDATA[There&#8217;s a lot of one-sided, disillusioned rage and hate being thrown around the internet over the whole Microsoft not allowing Firefox on their ARM only version of Windows 8, called Windows RT. Firstly, lets get it straight for those of &#8230; <a href="http://ilikekillnerds.com/2012/05/its-not-anti-trust-behavior-for-microsoft-to-restrict-firefox-on-windows-8-rt/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>There&#8217;s a lot of one-sided, disillusioned rage and hate being thrown around the internet over the whole Microsoft not allowing Firefox on their ARM only version of Windows 8, called Windows RT. Firstly, lets get it straight for those of you playing at home: Microsoft are not outright banning Firefox from Windows 8. Firefox will have limited access on Windows RT, Firefox is not being banned completely from Windows 8 and will run as normal on Intel-tablets, and every other flavour of Windows 8.</p>
<p>No application on Windows RT will have access to the Win32 API, see the blog post on this <a href="http://blogs.msdn.com/b/b8/archive/2012/02/09/building-windows-for-the-arm-processor-architecture.aspx" target="_blank">here</a>. This kind of behaviour is no different to what Apple do in iOS, it&#8217;s for security reasons and rightfully so. At least Microsoft are allowing another browser on Windows RT, unlike Apple who disallow any third party browsing engines, don&#8217;t start an argument saying they do the browsers you see in the Apple app store, aren&#8217;t browsing engines.</p>
<p>Firefox might be quick to come out swinging and crying foul-play here, but it&#8217;s not just Firefox but ever single other web browser not explicitly developed for Windows RT will have the same restrictions; Chrome, Operate and whatever other obscure web browser you use.</p>
<p>What most people fail to realise or admit is that Microsoft has no mobile or tablet monopoly, basically zero. Apple own what 70% of the tablet market and a somewhat high mobile share as well, if there is any anti-trust behaviour going on here it&#8217;s not Microsoft people should be targeting. There is nothing stopping Mozilla from making a Windows RT version of Firefox, it sounds to me like Mozilla want a free pass past restrictions to the Win32 API Microsoft have put into Windows RT which means everyone else will want a free-pass thus making Windows RT insecure in the long run.</p>
<p>I don&#8217;t think the intentions of Microsoft here are to block anyone from doing anything. What Microsoft are trying to do is basically force people to write apps for WinRT, this isn&#8217;t anti-competitive behaviour, it&#8217;s the same as WordPress making a major update and breaking almost all 3rd party addons, it&#8217;s the addon authors responsibility to make sure the plugin works with the new version.</p>
<p>Bottom line: every single third party application has the same restrictions placed upon it, Firefox isn&#8217;t being singled out it&#8217;s everyone. Why is it so hard for these companies to harden up and develop a new version?</p>
]]></content:encoded>
			<wfw:commentRss>http://ilikekillnerds.com/2012/05/its-not-anti-trust-behavior-for-microsoft-to-restrict-firefox-on-windows-8-rt/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>So Long, Farewell, Firefox</title>
		<link>http://ilikekillnerds.com/2012/05/so-long-farewell-firefox/</link>
		<comments>http://ilikekillnerds.com/2012/05/so-long-farewell-firefox/#comments</comments>
		<pubDate>Fri, 11 May 2012 12:58:10 +0000</pubDate>
		<dc:creator>Dwayne</dc:creator>
				<category><![CDATA[The Internet]]></category>

		<guid isPermaLink="false">http://ilikekillnerds.com/?p=1046</guid>
		<description><![CDATA[Today I kicked my nasty Firefox habit for good. At first it was great, opening tabs of your favourite sites and debugging code with Firebug, blocking ads with AdBlock and all was well. Then once everyone was hooked, Firefox became &#8230; <a href="http://ilikekillnerds.com/2012/05/so-long-farewell-firefox/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>Today I kicked my nasty Firefox habit for good. At first it was great, opening tabs of your favourite sites and debugging code with Firebug, blocking ads with AdBlock and all was well. Then once everyone was hooked, Firefox became a drunken abusive browser drunk off of its rising popularity and usage. What was once a, &#8220;how was your day sir&#8221; type of relationship then turned into a, &#8220;fuck you I&#8217;ll load that website in a few seconds, give me more ram and CPU&#8221; relationship.</p>
<p>I didn&#8217;t think I could do it. Chrome has always looked nice to me, but I could never bring myself to actually try a new browser, the age old problem of being stuck in an abusive relationship and not wanting to leave because you still love the person, in this case a web browser called Firefox.</p>
<p>What actually drove me to make the switch is the memory leak issues. Firefox for a very long time has had a nasty habit of taking ram and not giving it back, mostly due to plugins leaking memory like a bucket with holes in the bottom. I know a fix has just been submitted that will be out soon, bit it&#8217;s a little too late to make amends. In fact just recently my Firefox has been using after a few hours 3.5gb of ram that continues to climb.</p>
<p>Thanks for making other browsers innovate and take note of web standards, but you&#8217;ve become the old station wagon and Chrome is the new shiny sports coupe with the all leather interior.</p>
]]></content:encoded>
			<wfw:commentRss>http://ilikekillnerds.com/2012/05/so-long-farewell-firefox/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>The Rovio Virus Prank</title>
		<link>http://ilikekillnerds.com/2012/05/the-rovio-virus-prank/</link>
		<comments>http://ilikekillnerds.com/2012/05/the-rovio-virus-prank/#comments</comments>
		<pubDate>Fri, 11 May 2012 03:51:11 +0000</pubDate>
		<dc:creator>Dwayne</dc:creator>
				<category><![CDATA[Pranks]]></category>

		<guid isPermaLink="false">http://ilikekillnerds.com/?p=1043</guid>
		<description><![CDATA[I was bored yesterday and decided to trick my sister that she had a virus on her phone, I never expected it to work so well though.]]></description>
			<content:encoded><![CDATA[<p>I was bored yesterday and decided to trick my sister that she had a virus on her phone, I never expected it to work so well though.</p>
<p><a href="http://ilikekillnerds.com/wp-content/uploads/2012/05/20120511-135105.jpg"><img src="http://ilikekillnerds.com/wp-content/uploads/2012/05/20120511-135105.jpg" alt="20120511-135105.jpg" class="alignnone size-full" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://ilikekillnerds.com/2012/05/the-rovio-virus-prank/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>I Just Discovered Why I Get Spammed So Much</title>
		<link>http://ilikekillnerds.com/2012/05/i-just-discovered-why-i-get-spammed-so-much/</link>
		<comments>http://ilikekillnerds.com/2012/05/i-just-discovered-why-i-get-spammed-so-much/#comments</comments>
		<pubDate>Thu, 10 May 2012 22:14:11 +0000</pubDate>
		<dc:creator>Dwayne</dc:creator>
				<category><![CDATA[Mentally Unstable]]></category>

		<guid isPermaLink="false">http://ilikekillnerds.com/?p=1033</guid>
		<description><![CDATA[I don&#8217;t remember subscribing to 1 million PC world newsletters&#8230;]]></description>
			<content:encoded><![CDATA[<p>I don&#8217;t remember subscribing to 1 million PC world newsletters&#8230;</p>
<p><a href="http://ilikekillnerds.com/wp-content/uploads/2012/05/20120511-081817.jpg"><img src="http://ilikekillnerds.com/wp-content/uploads/2012/05/20120511-081817.jpg" alt="20120511-081817.jpg" class="alignnone size-full" /></a></p>
<p><a href="http://ilikekillnerds.com/wp-content/uploads/2012/05/20120511-081824.jpg"><img src="http://ilikekillnerds.com/wp-content/uploads/2012/05/20120511-081824.jpg" alt="20120511-081824.jpg" class="alignnone size-full" /></a></p>
<p><a href="http://ilikekillnerds.com/wp-content/uploads/2012/05/20120511-081830.jpg"><img src="http://ilikekillnerds.com/wp-content/uploads/2012/05/20120511-081830.jpg" alt="20120511-081830.jpg" class="alignnone size-full" /></a></p>
<p><a href="http://ilikekillnerds.com/wp-content/uploads/2012/05/20120511-081840.jpg"><img src="http://ilikekillnerds.com/wp-content/uploads/2012/05/20120511-081840.jpg" alt="20120511-081840.jpg" class="alignnone size-full" /></a></p>
<p><a href="http://ilikekillnerds.com/wp-content/uploads/2012/05/20120511-081847.jpg"><img src="http://ilikekillnerds.com/wp-content/uploads/2012/05/20120511-081847.jpg" alt="20120511-081847.jpg" class="alignnone size-full" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://ilikekillnerds.com/2012/05/i-just-discovered-why-i-get-spammed-so-much/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

