<?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/"
	>

<channel>
	<title>kaddar.net</title>
	<atom:link href="http://www.kaddar.net/?feed=rss2" rel="self" type="application/rss+xml" />
	<link>http://www.kaddar.net</link>
	<description></description>
	<pubDate>Tue, 30 Mar 2010 14:39:43 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.7.1</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Blog has Moved</title>
		<link>http://www.kaddar.net/?p=167</link>
		<comments>http://www.kaddar.net/?p=167#comments</comments>
		<pubDate>Tue, 30 Mar 2010 14:39:43 +0000</pubDate>
		<dc:creator>kaddar</dc:creator>
		
		<category><![CDATA[Rants]]></category>

		<guid isPermaLink="false">http://www.kaddar.net/?p=167</guid>
		<description><![CDATA[Greetings, I am still in the process of combining the works of this blog an my new blog, but in the meantime, my blog updates now occur here.
]]></description>
			<content:encoded><![CDATA[<p>Greetings, I am still in the process of combining the works of this blog an my new blog, but in the meantime, my blog updates now occur <a href="http://www.linearlyindependent.com">here</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.kaddar.net/?feed=rss2&amp;p=167</wfw:commentRss>
		</item>
		<item>
		<title>Updates soon.</title>
		<link>http://www.kaddar.net/?p=165</link>
		<comments>http://www.kaddar.net/?p=165#comments</comments>
		<pubDate>Mon, 26 Oct 2009 18:19:05 +0000</pubDate>
		<dc:creator>kaddar</dc:creator>
		
		<category><![CDATA[Rants]]></category>

		<guid isPermaLink="false">http://www.kaddar.net/?p=165</guid>
		<description><![CDATA[I need to update this blog, I will do so soon, I&#8217;m trying to decide how I want to go about the changes that I want to make.
]]></description>
			<content:encoded><![CDATA[<p>I need to update this blog, I will do so soon, I&#8217;m trying to decide how I want to go about the changes that I want to make.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.kaddar.net/?feed=rss2&amp;p=165</wfw:commentRss>
		</item>
		<item>
		<title>Get versus direct access on Maps in Scala</title>
		<link>http://www.kaddar.net/?p=162</link>
		<comments>http://www.kaddar.net/?p=162#comments</comments>
		<pubDate>Tue, 11 Aug 2009 14:14:36 +0000</pubDate>
		<dc:creator>kaddar</dc:creator>
		
		<category><![CDATA[Rants]]></category>

		<guid isPermaLink="false">http://www.kaddar.net/?p=162</guid>
		<description><![CDATA[I know I haven&#8217;t posted in a while, I&#8217;m going to try to post more often.  I&#8217;ll make a relevant post soon about what I&#8217;ve been up to.  For now, I want to talk about Scala.
I&#8217;ve been learning Scala, it&#8217;s a great little programming language.  I would like to see java replaced by it eventually.
I [...]]]></description>
			<content:encoded><![CDATA[<p>I know I haven&#8217;t posted in a while, I&#8217;m going to try to post more often.  I&#8217;ll make a relevant post soon about what I&#8217;ve been up to.  For now, I want to talk about Scala.</p>
<p>I&#8217;ve been learning Scala, it&#8217;s a great little programming language.  I would like to see java replaced by it eventually.</p>
<p>I was dealing with a very specific issue in scala, whereby I was matching a Map and getting the following error:</p>
<p>error: constructor cannot be instantiated to expected type;<br />
[scalac]  found   : Some[A]<br />
[scalac]  required: Int<br />
[scalac]           case Some(x) =&gt; {</p>
<p>It turns out, there are two ways to access a Map.  So if I have</p>
<p>val wallet = Map(&#8221;Money&#8221; -&gt; 100)</p>
<p>wallet(&#8221;Money&#8221;) returns 100</p>
<p>wallet(&#8221;Monkey&#8221;) throws an exception</p>
<p>wallet.get(&#8221;Money&#8221;) returns Some(100)</p>
<p>wallet.get(&#8221;Monkey&#8221;) returns None</p>
<p>Therefore, I was supposed to be using get when matching access to wallet:</p>
<p>val numOfM= wallet.get(&#8221;Monkey&#8221;)</p>
<p>numOfM match {</p>
<p>Some(num) =&gt; {println &#8220;#:&#8221; + num}</p>
<p>None =&gt; {println &#8220;You don&#8217;t have enough bananas :(&#8221;}</p>
<p>}</p>
]]></content:encoded>
			<wfw:commentRss>http://www.kaddar.net/?feed=rss2&amp;p=162</wfw:commentRss>
		</item>
		<item>
		<title>Css in xml?</title>
		<link>http://www.kaddar.net/?p=158</link>
		<comments>http://www.kaddar.net/?p=158#comments</comments>
		<pubDate>Wed, 01 Apr 2009 00:20:26 +0000</pubDate>
		<dc:creator>kaddar</dc:creator>
		
		<category><![CDATA[Rants]]></category>

		<guid isPermaLink="false">http://www.kaddar.net/?p=158</guid>
		<description><![CDATA[Why isn&#8217;t CSS defined in an XML format?  If XML is so perfect for xhtml, you would have thought it would be the default standard in styling xhtml and therefore used in CSS?
Even if they removed explicit end tags, it&#8217;d be better.
Doesn&#8217;t this:
background-image:
url(&#8217;bgdesert.jpg&#8217;)
Requires understanding a lot more syntax than:
&#60;background-image&#62;
&#60;url&#62;bgdesert.jpg&#60;/&#62;
&#60;/&#62;
]]></description>
			<content:encoded><![CDATA[<p>Why isn&#8217;t CSS defined in an XML format?  If XML is so perfect for xhtml, you would have thought it would be the default standard in styling xhtml and therefore used in CSS?</p>
<p>Even if they removed explicit end tags, it&#8217;d be better.</p>
<p>Doesn&#8217;t this:</p>
<p>background-image:<br />
url(&#8217;bgdesert.jpg&#8217;)</p>
<p>Requires understanding a lot more syntax than:</p>
<p>&lt;background-image&gt;<br />
&lt;url&gt;bgdesert.jpg&lt;/&gt;<br />
&lt;/&gt;</p>
]]></content:encoded>
			<wfw:commentRss>http://www.kaddar.net/?feed=rss2&amp;p=158</wfw:commentRss>
		</item>
		<item>
		<title>Dear facebook, On Ads</title>
		<link>http://www.kaddar.net/?p=155</link>
		<comments>http://www.kaddar.net/?p=155#comments</comments>
		<pubDate>Thu, 26 Feb 2009 21:27:13 +0000</pubDate>
		<dc:creator>kaddar</dc:creator>
		
		<category><![CDATA[Rants]]></category>

		<guid isPermaLink="false">http://www.kaddar.net/?p=155</guid>
		<description><![CDATA[Dear Facebook,
If I thumb down an it means I don&#8217;t want to see it again.  Yet, I constantly have to look at this stupid ad:

Please don&#8217;t show me it anymore. :(
Thanks
]]></description>
			<content:encoded><![CDATA[<p>Dear Facebook,</p>
<p>If I thumb down an it means I don&#8217;t want to see it again.  Yet, I constantly have to look at this stupid ad:</p>
<p><a href="http://www.kaddar.net/wp-content/uploads/2009/02/thumbdown.png"><img class="alignnone size-medium wp-image-154" title="thumbdown" src="http://www.kaddar.net/wp-content/uploads/2009/02/thumbdown.png" alt="" width="146" height="189" /></a></p>
<p>Please don&#8217;t show me it anymore. :(</p>
<p>Thanks</p>
]]></content:encoded>
			<wfw:commentRss>http://www.kaddar.net/?feed=rss2&amp;p=155</wfw:commentRss>
		</item>
		<item>
		<title>Twitter Bomb&#8217;d</title>
		<link>http://www.kaddar.net/?p=139</link>
		<comments>http://www.kaddar.net/?p=139#comments</comments>
		<pubDate>Fri, 13 Feb 2009 01:08:01 +0000</pubDate>
		<dc:creator>kaddar</dc:creator>
		
		<category><![CDATA[Rants]]></category>

		<guid isPermaLink="false">http://www.kaddar.net/?p=139</guid>
		<description><![CDATA[I just want to say how annoying it is to search for things when twitter results get mixed in.  Twitter results are near useless, they almost never contain source hyperlinks, they are  few lines of text that are  summed up by the link itself from Google.  I&#8217;ve been finding them more and more frequently in [...]]]></description>
			<content:encoded><![CDATA[<p>I just want to say how annoying it is to search for things when twitter results get mixed in.  Twitter results are near useless, they almost never contain source hyperlinks, they are  few lines of text that are  summed up by the link itself from Google.  I&#8217;ve been finding them more and more frequently in Google search results.</p>
<p>I was looking for more <a href="http://arstechnica.com/open-source/news/2009/02/make-your-ubuntu-distro-look-like-the-mini-mi.ars">information </a>on <a href="http://gadgets.boingboing.net/2009/02/06/hp-releases-gorgeous.html">glassy-bleu</a>, a theme hp made for their laptops, and I found a link to <a href="http://twitter.com/phisite/status/1178971904">this guy&#8217;s</a> twitter page as one of the top 4 results.  Thanks, Google, for letting me know someone out there is trying the theme.  Maybe if it was a blog post he&#8217;d have details on how I could try it.</p>
<p>A better application of twitter links would be to just inline them into the search results as the full result.  Why do I have to load another entire webpage to view the twitter user status change?  This whole thing is stupid.  In the best case scenario, they would just derank twitter.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.kaddar.net/?feed=rss2&amp;p=139</wfw:commentRss>
		</item>
		<item>
		<title>Facebook and Friends</title>
		<link>http://www.kaddar.net/?p=127</link>
		<comments>http://www.kaddar.net/?p=127#comments</comments>
		<pubDate>Tue, 04 Nov 2008 21:12:32 +0000</pubDate>
		<dc:creator>kaddar</dc:creator>
		
		<category><![CDATA[Rants]]></category>

		<guid isPermaLink="false">http://www.kaddar.net/?p=127</guid>
		<description><![CDATA[Recently, a lot of my friends have started using their facebook status to post political beliefs.  I think it&#8217;s great, however it does come at a price for friends of yours who don&#8217;t agree with you.
You see, on facebook, it&#8217;s my closest friends reading my status.  So if a friend with a dissenting opinion reads [...]]]></description>
			<content:encoded><![CDATA[<p>Recently, a lot of my friends have started using their facebook status to post political beliefs.  I think it&#8217;s great, however it does come at a price for friends of yours who don&#8217;t agree with you.</p>
<p>You see, on facebook, it&#8217;s my closest friends reading my status.  So if a friend with a dissenting opinion reads my status and is compelled by a post to offer a differing opinion, he can&#8217;t reply to it to argue because he would do so knowing I have spent my entire life orienting myself with a group of friends which essentially forms an overly complex system of <a href="http://en.wikipedia.org/wiki/Confirmation_bias ">confirmation bias</a>.</p>
<p>To correct this, people post on their OWN facebook status their own beliefs.  This forms a cycle in which everyone is expousing beliefs to cope with annoying friends they disagree with.</p>
<p>Is this a bad thing?  I am not sure.  People are discussing their ideas more, and becoming more interested in policies and politics.  Regardless, I have a feeling it is one small stone in a large quarry of the trend of people grouping up more and more by self similarity in society.  Doing so is rational, beneficial, yet  perhaps less colorful.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.kaddar.net/?feed=rss2&amp;p=127</wfw:commentRss>
		</item>
		<item>
		<title>Copyright Law, Fairness, and Folly</title>
		<link>http://www.kaddar.net/?p=124</link>
		<comments>http://www.kaddar.net/?p=124#comments</comments>
		<pubDate>Thu, 16 Oct 2008 18:01:15 +0000</pubDate>
		<dc:creator>kaddar</dc:creator>
		
		<category><![CDATA[Rants]]></category>

		<guid isPermaLink="false">http://www.kaddar.net/?p=124</guid>
		<description><![CDATA[Senator and republican presidential candidate John McCain recently had drama with youtube.  Basically, his videos were being pulled from youtube for the same copyright mechanisms within the DMCA he voted for.  His theory is that some sorts of videos deserve extra attention because to prevent their viewing, you are hurting voter&#8217;s ability to judge candidates; [...]]]></description>
			<content:encoded><![CDATA[<p>Senator and republican presidential candidate John McCain recently had <a href="http://blog.wired.com/27bstroke6/2008/10/youtube-to-mcca.html">drama</a> with youtube.  Basically, his videos were being pulled from youtube for the same copyright mechanisms within the DMCA he voted for.  His theory is that some sorts of videos deserve extra attention because to prevent their viewing, you are hurting voter&#8217;s ability to judge candidates; indirectly, you&#8217;re hurting the democratic process.  This whole thing is rediculous.</p>
<p>But what&#8217;s interesting about this is that McCain is feeling hurt from a law he supported.  When the shoe&#8217;s on the other foot, it feels different.  I would hope that instead of trying to make special cases, he&#8217;d instead realize that there are either some flaws with the overreaching power of the DMCA, or accept it and host the videos on his own servers, free of youtube&#8217;s takedown policies, but at the cost of viewership.</p>
<p>Personally, I think copyright law is a difficult thing.  It&#8217;s expensive to manage and defend.  It offers low value in return for high costs to content producers to defend their copyright works against all violations without tools like google has provided.  Yet, with google&#8217;s tools, it has come at the cost of <a href="http://www.free-culture.cc/">free culture</a>.  Is there even a balance that can be struck that is fair to both the copyright holders and the content producers that minimizes time spent in court, paying lawyers?</p>
]]></content:encoded>
			<wfw:commentRss>http://www.kaddar.net/?feed=rss2&amp;p=124</wfw:commentRss>
		</item>
		<item>
		<title>Likely Date Nintendo came up with the name &#8220;wii&#8221; is June, 2005</title>
		<link>http://www.kaddar.net/?p=110</link>
		<comments>http://www.kaddar.net/?p=110#comments</comments>
		<pubDate>Wed, 06 Aug 2008 22:27:58 +0000</pubDate>
		<dc:creator>kaddar</dc:creator>
		
		<category><![CDATA[Rants]]></category>

		<guid isPermaLink="false">http://www.kaddar.net/?p=110</guid>
		<description><![CDATA[The Wii was announced in april, 2006, to be the next Nintendo game console.  However, google just recently released a trend tracking tool that is incredibly specific.
Because of this, I was able to extrapolate the following graph. This graph shows that the Nintendo wii was likely first searched around June, 2005, in Japan.  I believe [...]]]></description>
			<content:encoded><![CDATA[<p>The Wii was announced in april, 2006, to be the next Nintendo game console.  However, google just recently released a trend tracking tool that is incredibly specific.</p>
<p>Because of this, I was able to extrapolate <a href="http://www.google.com/insights/search/#cat&amp;q=wii%2C&amp;cmpt=q&amp;date=1%2F2004+27m&amp;clp&amp;geo=JP">the following graph.</a> This graph shows that the Nintendo wii was likely first searched around June, 2005, in Japan.  I believe that this is when Nintendo first came up with the name.  Therefore, the Wii name was identified as a possible name almost a year beforehand.</p>
<p>Is this useful at all?  Probably not.  I do, however, think it is interesting that the actions of companies could possibly be inferred by the searches their employees do.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.kaddar.net/?feed=rss2&amp;p=110</wfw:commentRss>
		</item>
		<item>
		<title>In-Game Advertisements versus In-Game Advertising</title>
		<link>http://www.kaddar.net/?p=103</link>
		<comments>http://www.kaddar.net/?p=103#comments</comments>
		<pubDate>Fri, 01 Aug 2008 01:33:43 +0000</pubDate>
		<dc:creator>kaddar</dc:creator>
		
		<category><![CDATA[Rants]]></category>

		<guid isPermaLink="false">http://www.kaddar.net/?p=103</guid>
		<description><![CDATA[Advertising is coming to videogames. This is something gamers will come to accept.
However, I have reservations with some arguments supporting in-game advertising.  First of all, very few people want their game spoiled by blatant, obvious, advertising.  Posting billboards for pepsi inside a Counter-strike third world city map is bad.
On the opposite end of the spectrum, [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.shacknews.com/onearticle.x/53937">Advertising is coming to videogames.</a> This is something gamers will come to accept.</p>
<p>However, I have reservations with some arguments supporting in-game advertising.  First of all, very few people want their game spoiled by blatant, obvious, advertising.  Posting billboards for pepsi inside a Counter-strike third world city map is bad.</p>
<p>On the opposite end of the spectrum, most people are happy when games that mimic reality.  We might not want billboards in strange places, we&#8217;re fine with the fake-company parody advertising in Grand Theft Auto.  Any ad that is as realistic as possible, even though it mentions no real company, makes Grand Theft Auto feel more real.</p>
<p>However, my reservations are on people who argue &#8220;I&#8217;m fine with in game advertising, you can put pepsi in a pepsi machine because it promotes realism.&#8221;  My argument is that it <em>isn&#8217;t</em> real.  Unlike the manufactured advertisements in <em>real</em> life &#8482;, the advertisements in games promote only the brand of the advertiser.  I&#8217;m only fine with pepsi machines in my sandbox GTA-esque game, as long as across the street I might find a coke machine.</p>
<p>Advertising doesn&#8217;t promotes realism in games, because there is only one advertiser.  It is void of product differentiation; advertising tries to convince you that there are no other products.  Yet those who want advertising in games want it because it makes the game feel more like reality.</p>
<p>Without competing advertisements, there is no realism.  It is eerie, and gives the user a feeling of being cheap.</p>
<p>Therefore, I argue in-game advertisements are fine, but in-game advertising is not immersive.  It can never be immersive by definition.</p>
<p>&#8220;<em>This ultrakill brought to you by MOUNTAIN DEW.. <a href="http://www.penny-arcade.com/comic/2007/09/14/">YEAH</a>&#8220;</em></p>
]]></content:encoded>
			<wfw:commentRss>http://www.kaddar.net/?feed=rss2&amp;p=103</wfw:commentRss>
		</item>
	</channel>
</rss>
