<?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>A Conflagration of Randomness</title>
	<atom:link href="http://blog.robertkania.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://blog.robertkania.com</link>
	<description>A blog about technology, college, and life.</description>
	<lastBuildDate>Wed, 17 Mar 2010 04:29:36 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Javabat Changes to CodingBat to Include Python</title>
		<link>http://blog.robertkania.com/2010/03/16/javabat-changes-to-codingbat-to-include-python/</link>
		<comments>http://blog.robertkania.com/2010/03/16/javabat-changes-to-codingbat-to-include-python/#comments</comments>
		<pubDate>Wed, 17 Mar 2010 04:28:20 +0000</pubDate>
		<dc:creator>Robert Kania</dc:creator>
				<category><![CDATA[Programming]]></category>

		<guid isPermaLink="false">http://blog.robertkania.com/?p=644</guid>
		<description><![CDATA[Recently Javabat changed its name to Codingbat since it added the ability to code in Python.  However, the exercises are the same as in Java, just to be submitted in Python format.  I feel this addition will help people realize and learn about Python, as I have found it to be a very [...]]]></description>
			<content:encoded><![CDATA[<p>Recently Javabat changed its name to Codingbat since it added the ability to code in Python.  However, the exercises are the same as in Java, just to be submitted in Python format.  I feel this addition will help people realize and learn about Python, as I have found it to be a very useful language.  Below is a screenshot of the new Javabat homepage.</p>
<p><a rel="lytebox" href="http://blog.robertkania.com/wp-content/uploads/2010/03/codingbat.jpg"><img class="size-large wp-image-646 alignnone" title="codingbat" src="http://blog.robertkania.com/wp-content/uploads/2010/03/codingbat-1024x640.jpg" alt="" width="614" height="384" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://blog.robertkania.com/2010/03/16/javabat-changes-to-codingbat-to-include-python/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Several of My Quotes</title>
		<link>http://blog.robertkania.com/2010/03/16/several-of-my-quotes/</link>
		<comments>http://blog.robertkania.com/2010/03/16/several-of-my-quotes/#comments</comments>
		<pubDate>Wed, 17 Mar 2010 04:00:25 +0000</pubDate>
		<dc:creator>Robert Kania</dc:creator>
				<category><![CDATA[College]]></category>
		<category><![CDATA[quotes]]></category>

		<guid isPermaLink="false">http://blog.robertkania.com/?p=639</guid>
		<description><![CDATA[These are just several of my quotes that I have come up with over the past few years.
&#8220;Traitor, see you later&#8221; &#8211; Me


&#8220;There&#8217;s something in Canada&#8221; &#8211; Me


&#8220;Stress from my girl, stress from work, stress to drive a man berserk&#8221; &#8211; Me


&#8220;Life is a playground for mistakes&#8221; &#8211; Me


&#8220;I don&#8217;t know which one is correct, [...]]]></description>
			<content:encoded><![CDATA[<p>These are just several of my quotes that I have come up with over the past few years.</p>
<blockquote><p>&#8220;Traitor, see you later&#8221; &#8211; Me
</p></blockquote>
<blockquote><p>
&#8220;There&#8217;s something in Canada&#8221; &#8211; Me
</p></blockquote>
<blockquote>
<p>&#8220;Stress from my girl, stress from work, stress to drive a man berserk&#8221; &#8211; Me
</p></blockquote>
<blockquote><p>
&#8220;Life is a playground for mistakes&#8221; &#8211; Me
</p></blockquote>
<blockquote><p>
&#8220;I don&#8217;t know which one is correct, I just know one of them is wrong&#8221; &#8211; Me</p></blockquote>
]]></content:encoded>
			<wfw:commentRss>http://blog.robertkania.com/2010/03/16/several-of-my-quotes/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Javabat Solutions</title>
		<link>http://blog.robertkania.com/2010/03/07/javabat-solutions/</link>
		<comments>http://blog.robertkania.com/2010/03/07/javabat-solutions/#comments</comments>
		<pubDate>Sun, 07 Mar 2010 17:41:01 +0000</pubDate>
		<dc:creator>Robert Kania</dc:creator>
				<category><![CDATA[Programming]]></category>

		<guid isPermaLink="false">http://blog.robertkania.com/?p=615</guid>
		<description><![CDATA[Warmup-1
Sleep In:
Monkey Trouble: 
Warmup-2
String Times:
Front Times: 
String-1
Hello Name:
Make ABBA: 
Make Tags: 
Make Out Word: 
Extra End:
First Two: 
First Half: 
Without End: 
Combo String: 
]]></description>
			<content:encoded><![CDATA[<h2><strong>Warmup-1</strong></h2>
<p>Sleep In: <a href="javascript:void(null);" onclick="s_toggleDisplay(document.getElementById('SID731154383'), this, 'Show &#9660;', 'Hide &#9650;');">Show &#9660;</a></p>
<div id='SID731154383' style='display:none;'>
<pre>public boolean sleepIn(boolean weekday, boolean vacation) {
  if(!weekday || vacation){
  return true;
  }
  return false;
}</pre>
</div>
<p>Monkey Trouble: <a href="javascript:void(null);" onclick="s_toggleDisplay(document.getElementById('SID1126643448'), this, 'Show &#9660;', 'Hide &#9650;');">Show &#9660;</a></p>
<div id='SID1126643448' style='display:none;'>
<pre>public boolean monkeyTrouble(boolean aSmile, boolean bSmile) {
  return (aSmile == bSmile);
}</pre>
</div>
<h2><strong>Warmup-2</strong></h2>
<p>String Times: <a href="javascript:void(null);" onclick="s_toggleDisplay(document.getElementById('SID1200338274'), this, 'Show &#9660;', 'Hide &#9650;');">Show &#9660;</a></p>
<div id='SID1200338274' style='display:none;'>
<pre>public String stringTimes(String str, int n) {
  String newString = "";
  for(int i = 1; i &lt;= n; i++){
  newString += str;
  }
  return newString;
}
</pre>
</div>
<p>Front Times: <a href="javascript:void(null);" onclick="s_toggleDisplay(document.getElementById('SID237654464'), this, 'Show &#9660;', 'Hide &#9650;');">Show &#9660;</a></p>
<div id='SID237654464' style='display:none;'>
<pre>public String frontTimes(String str, int n) {
  String newString = "";
  int gui = 3;
  for(int i = 1; i &lt;= n; i++){
  if(str.length() &lt; 3){
  gui = str.length();
  }
  newString += str.substring(0,gui);
  }
  return newString;
}
</pre>
</div>
<h2><strong>String-1</strong></h2>
<p>Hello Name: <a href="javascript:void(null);" onclick="s_toggleDisplay(document.getElementById('SID1472885195'), this, 'Show &#9660;', 'Hide &#9650;');">Show &#9660;</a></p>
<div id='SID1472885195' style='display:none;'>
<pre>public String helloName(String name) {
  return "Hello " + name + "!";
}
</pre>
</div>
<p>Make ABBA: <a href="javascript:void(null);" onclick="s_toggleDisplay(document.getElementById('SID1699116321'), this, 'Show &#9660;', 'Hide &#9650;');">Show &#9660;</a></p>
<div id='SID1699116321' style='display:none;'>
<pre>public String makeAbba(String a, String b) {
return a+b+b+a;
}</pre>
</div>
<p>Make Tags: <a href="javascript:void(null);" onclick="s_toggleDisplay(document.getElementById('SID2128852850'), this, 'Show &#9660;', 'Hide &#9650;');">Show &#9660;</a></p>
<div id='SID2128852850' style='display:none;'>
<pre>public String makeTags(String tag, String word) {
 return "&lt;" + tag + "&gt;" + word + "&lt;/" + tag + "&gt;";
}</pre>
</div>
<p>Make Out Word: <a href="javascript:void(null);" onclick="s_toggleDisplay(document.getElementById('SID243948613'), this, 'Show &#9660;', 'Hide &#9650;');">Show &#9660;</a></p>
<div id='SID243948613' style='display:none;'>
<pre>public String makeOutWord(String out, String word) {
 return out.substring(0,2)+word+out.substring(2,4);
}</pre>
</div>
<p>Extra End: <a href="javascript:void(null);" onclick="s_toggleDisplay(document.getElementById('SID1990873951'), this, 'Show &#9660;', 'Hide &#9650;');">Show &#9660;</a></p>
<div id='SID1990873951' style='display:none;'>
<pre>public String extraEnd(String str) {
 return str.substring(str.length()-2)+str.substring(str.length()-2)+str.substring(str.length()-2);
}</pre>
</div>
<p>First Two: <a href="javascript:void(null);" onclick="s_toggleDisplay(document.getElementById('SID248911456'), this, 'Show &#9660;', 'Hide &#9650;');">Show &#9660;</a></p>
<div id='SID248911456' style='display:none;'>
<pre>public String firstTwo(String str) {
 if(str.length() &lt; 2) {
 if(str.length() == 0){
 return "";
 }
 return str;
 }else{
 return str.substring(0,2);
 }
}
</pre>
</div>
<p>First Half: <a href="javascript:void(null);" onclick="s_toggleDisplay(document.getElementById('SID1725554398'), this, 'Show &#9660;', 'Hide &#9650;');">Show &#9660;</a></p>
<div id='SID1725554398' style='display:none;'>
<pre>public String firstHalf(String str) {
 return str.substring(0, str.length()/2);
}</pre>
</div>
<p>Without End: <a href="javascript:void(null);" onclick="s_toggleDisplay(document.getElementById('SID982776882'), this, 'Show &#9660;', 'Hide &#9650;');">Show &#9660;</a></p>
<div id='SID982776882' style='display:none;'>
<pre>public String withoutEnd(String str) {
 return str.substring(1, str.length()-1);
}</pre>
</div>
<p>Combo String: <a href="javascript:void(null);" onclick="s_toggleDisplay(document.getElementById('SID1558394251'), this, 'Show &#9660;', 'Hide &#9650;');">Show &#9660;</a></p>
<div id='SID1558394251' style='display:none;'>
<pre>public String comboString(String a, String b) {
 if(a.length() &lt; b.length()){
 return a + b + a;
 }
 if(a.length() &gt; b.length()){
 return b + a + b;
 }
 return "";
}
</pre>
</div>
]]></content:encoded>
			<wfw:commentRss>http://blog.robertkania.com/2010/03/07/javabat-solutions/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Hack this Site Programming Problem 2 Solution</title>
		<link>http://blog.robertkania.com/2010/02/09/hack-this-site-programming-problem-2-solution/</link>
		<comments>http://blog.robertkania.com/2010/02/09/hack-this-site-programming-problem-2-solution/#comments</comments>
		<pubDate>Tue, 09 Feb 2010 21:00:16 +0000</pubDate>
		<dc:creator>Robert Kania</dc:creator>
				<category><![CDATA[Programming]]></category>
		<category><![CDATA[hack]]></category>
		<category><![CDATA[hacking]]></category>

		<guid isPermaLink="false">http://blog.robertkania.com/?p=602</guid>
		<description><![CDATA[A few years ago I joined the site, Hack This Site in order to practice coding and see how much I knew.  Although the name is suggestive of illegal material, this site is in no way promoting hacking.  It simply is a site to practice programming and learning better techniques.  One of the challenges, Programming [...]]]></description>
			<content:encoded><![CDATA[<p><a rel="lytebox" href="http://blog.robertkania.com/wp-content/uploads/2010/01/hts-program2.gif"><img class="alignright size-medium wp-image-603" title="hts-program2" src="http://blog.robertkania.com/wp-content/uploads/2010/01/hts-program2-300x243.gif" alt="" width="300" height="243" /></a>A few years ago I joined the site, <a href="http://www.hackthissite.org">Hack This Site</a> in order to practice coding and see how much I knew.  Although the name is suggestive of illegal material, this site is in no way promoting hacking.  It simply is a site to practice programming and learning better techniques.  One of the challenges, Programming Problem 2 involves writing a program to take an image filled with black and white pixels, find the distance between the white pixels, which are ascii characters.  Convert these ascii characters then into Morse code, which then is translated into numbers and letters.  I spent some time initially looking for a language that could read an image in pixel by pixel and the one I settled on was Python.  This was the second program I had written in Python.</p>
<p>The exact instructions for the program were</p>
<blockquote><p>The pixels in the above image are numbered 0..99 for the first row,  100..199 for the second row etc.                  White pixels represent ascii codes.                  The ascii code for a particular white pixel is equal to  the offset from the last white pixel.                  For example, the first white pixel at location 65 would  represent ascii code 65 (&#8216;A&#8217;),                   the next at location 131 would represent ascii code  (131 &#8211; 65) = 66 (&#8216;B&#8217;) and so on.</p>
<p>The text contained in the image is the answer encoded  in Morse, where &#8220;a test&#8221; would be encoded as &#8220;.- / &#8211; . &#8230; -&#8221;</p>
<p>You have 15 seconds time to send the solution.</p></blockquote>
<p>Now of course it says you have 15 seconds which is true and I did do it in 15 seconds, but since this site uses Javascript to count, you can simply disabe javascript to have unlimited time by using the Firefox plugin <a href="https://addons.mozilla.org/en-US/firefox/addon/722">NoScript</a>.</p>
<p>For example, the image I used was:</p>
<p><a href="http://blog.robertkania.com/wp-content/uploads/2010/01/PNG.png"><img class="size-full wp-image-605 alignnone" title="PNG" src="http://blog.robertkania.com/wp-content/uploads/2010/01/PNG.png" alt="" width="100" height="30" /></a></p>
<p>which gave the following numbers:</p>
<blockquote><p>45 46 46 32 45 46 46 32 45 46 46 46 46 32 45 45 45 32 46 45 32 45 46 45 32 46 46 46 32 46 46 46 46 32 46 45 45 45 45 32 46 45 32</p></blockquote>
<p>which was translated in the following ascii characters</p>
<blockquote><p>-..  -..  -&#8230;.  &#8212;  .-  -.-  &#8230;  &#8230;.  .&#8212;-  .-</p></blockquote>
<p>which produced the following output using Morse code to translate:</p>
<blockquote><p>dd6oaksh1a</p></blockquote>
<p>The code that I used to program this was:</p>
<pre>import Image
def multipleReplace(text, morse_code):
    for key in morse_code:
        text = text.replace(key, morse_code[key])
    return text
morse_code = {' .- ':'a',' -... ':'b',' -.-. ':'c',' -.. ':'d',' . ':'e',
            ' ..-. ':'f',' --. ':'g',' .... ':'h',' .. ':'i',' .--- ':'j',
            ' -.- ':'k',' .-.. ':'l',' -- ':'m',' -. ':'n',' --- ':'o',
            ' .--. ':'p',' --.- ':'q',' .-. ':'r',' ... ':'s',' _ ':'t',
            ' ..- ':'u',' ...- ':'v',' .-- ':'w',' -..- ':'x',' -.-- ':'y',
            ' --.. ':'z',' ----- ':'0',' .---- ':'1',' ..--- ':'2',
            ' ...-- ':'3',' ....- ':'4',' ..... ':'5',' -.... ':'6',
            ' --... ':'7',' ---.. ':'8',' ----. ':'9'}
im = Image.open("C:\PNG.png")
size = im.size
width = size[0]
height = size[1]
L = list()
last = 0
#The loop transforms the image into a list
#If the pixel is white, return 0, otherwise return 1
for i in range (0,height):
    K = list()
    for j in range (0,width):
        checker = (int)(im.getpixel((j,i)))
        if(checker == 1):
            K.append(1)
        else:
            K.append(0)
    L.append(K)
ascii = list()
count = 0
for i in range (0,height):
    for j in range (0,width):
        if(L[i][j] == 1): #determines if the pixel is on
            char = chr(count-last) #converts the distance
            #between the pixels to ascii
            if(char == " "):
                char = "  "
            ascii.append(char)
            last = count
        count+=1
morseCode = " "
for i in range (0,len(ascii)-1):
    morseCode += ascii[i]
morseCode += " "
print multipleReplace(morseCode, morse_code) #replaces the morse code
#with letters and numbers
</pre>
]]></content:encoded>
			<wfw:commentRss>http://blog.robertkania.com/2010/02/09/hack-this-site-programming-problem-2-solution/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Walk Right to Avoid Plight</title>
		<link>http://blog.robertkania.com/2010/01/14/walk-right-to-avoid-plight/</link>
		<comments>http://blog.robertkania.com/2010/01/14/walk-right-to-avoid-plight/#comments</comments>
		<pubDate>Thu, 14 Jan 2010 21:46:58 +0000</pubDate>
		<dc:creator>Robert Kania</dc:creator>
				<category><![CDATA[Fun]]></category>
		<category><![CDATA[walking]]></category>

		<guid isPermaLink="false">http://blog.robertkania.com/?p=594</guid>
		<description><![CDATA[Have you ever had one of those awkward encounters when someone else is walking towards you, but neither of you know which way to move as to let the other pass by? usually it leads to several awkward seconds where both of you stare at each other and try to go right or left, but [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://blog.robertkania.com/wp-content/uploads/2010/01/MG_1672shoppingrush-7096341.jpg"><img class="alignright size-medium wp-image-597" title="_MG_1672shoppingrush-709634[1]" src="http://blog.robertkania.com/wp-content/uploads/2010/01/MG_1672shoppingrush-7096341-199x300.jpg" alt="" width="199" height="300" /></a>Have you ever had one of those awkward encounters when someone else is walking towards you, but neither of you know which way to move as to let the other pass by? usually it leads to several awkward seconds where both of you stare at each other and try to go right or left, but find the other person was trying to go that way too.  Sometimes various back and forth movements follow as you each try to find a proper way around the other until one person decides to just stand still and let the other person walk around them.  But this is still a waste of a few seconds of commuting time, even making you late, and it can really be frustrating.</p>
<p>My solution to this problem is<strong> Just Walk Right</strong>.  That way, if everyone follows the same pattern, no one would be forced to encounter another awkward standing moment.</p>
<p>This is also a<a href="http://www.facebook.com/pages/When-you-and-someone-random-awkwardly-try-to-walk-around-each-other/184932942778"> page on Facebook</a>.  Please fan.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.robertkania.com/2010/01/14/walk-right-to-avoid-plight/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>links for 2010-01-12</title>
		<link>http://blog.robertkania.com/2010/01/12/links-for-2010-01-12/</link>
		<comments>http://blog.robertkania.com/2010/01/12/links-for-2010-01-12/#comments</comments>
		<pubDate>Wed, 13 Jan 2010 03:12:10 +0000</pubDate>
		<dc:creator>Robert Kania</dc:creator>
				<category><![CDATA[Link of the Day]]></category>
		<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://blog.robertkania.com/2010/01/12/links-for-2010-01-12/</guid>
		<description><![CDATA[
Klava Helps You Hone Your Touch Typing Skills &#8211; Typing &#8211; Lifehacker
(tags: typing lifehacker tutorial learning tools productivity keyboard)


Why You Shouldn&#039;t Trust Facebook with Your Data: An Employee&#039;s Revelations &#8211; Facebook &#8211; Gawker
(tags: facebook security socialmedia article media stats technology lifehacker abuse privacy)


Why I Believe Printers Were Sent From Hell to Make Us Miserable &#8211; [...]]]></description>
			<content:encoded><![CDATA[<ul class="delicious">
<li>
<div class="delicious-link"><a href="http://lifehacker.com/5445355/klava-helps-you-hone-your-touch-typing-skills">Klava Helps You Hone Your Touch Typing Skills &#8211; Typing &#8211; Lifehacker</a></div>
<div class="delicious-tags">(tags: <a href="http://delicious.com/roboguyspacedude/typing">typing</a> <a href="http://delicious.com/roboguyspacedude/lifehacker">lifehacker</a> <a href="http://delicious.com/roboguyspacedude/tutorial">tutorial</a> <a href="http://delicious.com/roboguyspacedude/learning">learning</a> <a href="http://delicious.com/roboguyspacedude/tools">tools</a> <a href="http://delicious.com/roboguyspacedude/productivity">productivity</a> <a href="http://delicious.com/roboguyspacedude/keyboard">keyboard</a>)</div>
</li>
<li>
<div class="delicious-link"><a href="http://gawker.com/5445592/why-you-shouldnt-trust-facebook-with-your-data-an-employees-revelations">Why You Shouldn&#039;t Trust Facebook with Your Data: An Employee&#039;s Revelations &#8211; Facebook &#8211; Gawker</a></div>
<div class="delicious-tags">(tags: <a href="http://delicious.com/roboguyspacedude/facebook">facebook</a> <a href="http://delicious.com/roboguyspacedude/security">security</a> <a href="http://delicious.com/roboguyspacedude/socialmedia">socialmedia</a> <a href="http://delicious.com/roboguyspacedude/article">article</a> <a href="http://delicious.com/roboguyspacedude/media">media</a> <a href="http://delicious.com/roboguyspacedude/stats">stats</a> <a href="http://delicious.com/roboguyspacedude/technology">technology</a> <a href="http://delicious.com/roboguyspacedude/lifehacker">lifehacker</a> <a href="http://delicious.com/roboguyspacedude/abuse">abuse</a> <a href="http://delicious.com/roboguyspacedude/privacy">privacy</a>)</div>
</li>
<li>
<div class="delicious-link"><a href="http://gizmodo.com/5445812/why-i-believe-printers-were-sent-from-hell-to-make-us-miserable">Why I Believe Printers Were Sent From Hell to Make Us Miserable &#8211; Printers &#8211; Gizmodo</a></div>
<div class="delicious-tags">(tags: <a href="http://delicious.com/roboguyspacedude/geek">geek</a> <a href="http://delicious.com/roboguyspacedude/gizmodo">gizmodo</a> <a href="http://delicious.com/roboguyspacedude/hardware">hardware</a> <a href="http://delicious.com/roboguyspacedude/fun">fun</a> <a href="http://delicious.com/roboguyspacedude/funny">funny</a>)</div>
</li>
<li>
<div class="delicious-link"><a href="http://www.google.org/flutrends/us/#US">Google Flu Trends | United States</a></div>
<div class="delicious-tags">(tags: <a href="http://delicious.com/roboguyspacedude/flu">flu</a> <a href="http://delicious.com/roboguyspacedude/trends">trends</a> <a href="http://delicious.com/roboguyspacedude/google">google</a>)</div>
</li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://blog.robertkania.com/2010/01/12/links-for-2010-01-12/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>links for 2010-01-04</title>
		<link>http://blog.robertkania.com/2010/01/04/links-for-2010-01-04/</link>
		<comments>http://blog.robertkania.com/2010/01/04/links-for-2010-01-04/#comments</comments>
		<pubDate>Tue, 05 Jan 2010 03:13:30 +0000</pubDate>
		<dc:creator>Robert Kania</dc:creator>
				<category><![CDATA[Link of the Day]]></category>
		<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://blog.robertkania.com/2010/01/04/links-for-2010-01-04/</guid>
		<description><![CDATA[
Futuristic AT&#38;T Ads &#124; CampusByte


]]></description>
			<content:encoded><![CDATA[<ul class="delicious">
<li>
<div class="delicious-link"><a href="http://www.campusbyte.com/tech/att-ads-from-1993-predicted-the-future-video/">Futuristic AT&amp;T Ads | CampusByte</a></div>
</li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://blog.robertkania.com/2010/01/04/links-for-2010-01-04/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>links for 2010-01-02</title>
		<link>http://blog.robertkania.com/2010/01/02/links-for-2010-01-02/</link>
		<comments>http://blog.robertkania.com/2010/01/02/links-for-2010-01-02/#comments</comments>
		<pubDate>Sun, 03 Jan 2010 03:06:27 +0000</pubDate>
		<dc:creator>Robert Kania</dc:creator>
				<category><![CDATA[Link of the Day]]></category>
		<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://blog.robertkania.com/2010/01/02/links-for-2010-01-02/</guid>
		<description><![CDATA[
DJ Earworm &#8211; Music Mashups
(tags: music mp3 audio download blog video dj mashup free mashups)


]]></description>
			<content:encoded><![CDATA[<ul class="delicious">
<li>
<div class="delicious-link"><a href="http://djearworm.com/">DJ Earworm &#8211; Music Mashups</a></div>
<div class="delicious-tags">(tags: <a href="http://delicious.com/roboguyspacedude/music">music</a> <a href="http://delicious.com/roboguyspacedude/mp3">mp3</a> <a href="http://delicious.com/roboguyspacedude/audio">audio</a> <a href="http://delicious.com/roboguyspacedude/download">download</a> <a href="http://delicious.com/roboguyspacedude/blog">blog</a> <a href="http://delicious.com/roboguyspacedude/video">video</a> <a href="http://delicious.com/roboguyspacedude/dj">dj</a> <a href="http://delicious.com/roboguyspacedude/mashup">mashup</a> <a href="http://delicious.com/roboguyspacedude/free">free</a> <a href="http://delicious.com/roboguyspacedude/mashups">mashups</a>)</div>
</li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://blog.robertkania.com/2010/01/02/links-for-2010-01-02/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>links for 2009-12-31</title>
		<link>http://blog.robertkania.com/2009/12/31/links-for-2009-12-31/</link>
		<comments>http://blog.robertkania.com/2009/12/31/links-for-2009-12-31/#comments</comments>
		<pubDate>Fri, 01 Jan 2010 03:04:44 +0000</pubDate>
		<dc:creator>Robert Kania</dc:creator>
				<category><![CDATA[Link of the Day]]></category>
		<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://blog.robertkania.com/2009/12/31/links-for-2009-12-31/</guid>
		<description><![CDATA[
image (4345).jpg (JPEG Image, 450&#215;530 pixels)
(tags: funny)


]]></description>
			<content:encoded><![CDATA[<ul class="delicious">
<li>
<div class="delicious-link"><a href="http://fatpita.net/images/image%20(4345).jpg">image (4345).jpg (JPEG Image, 450&#215;530 pixels)</a></div>
<div class="delicious-tags">(tags: <a href="http://delicious.com/roboguyspacedude/funny">funny</a>)</div>
</li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://blog.robertkania.com/2009/12/31/links-for-2009-12-31/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>links for 2009-12-26</title>
		<link>http://blog.robertkania.com/2009/12/26/links-for-2009-12-26/</link>
		<comments>http://blog.robertkania.com/2009/12/26/links-for-2009-12-26/#comments</comments>
		<pubDate>Sun, 27 Dec 2009 03:05:44 +0000</pubDate>
		<dc:creator>Robert Kania</dc:creator>
				<category><![CDATA[Link of the Day]]></category>
		<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://blog.robertkania.com/2009/12/26/links-for-2009-12-26/</guid>
		<description><![CDATA[
Tip Junkie: Taking Twitter to the Next Level &#8211; Part 3
(tags: twitter)


Tip Junkie: How To Build Your Twitter Audience &#8211; Part 2
(tags: twitter)


Store Binary Data in Twitter with Tootfiles &#124; Luke Hatcher
(tags: store binary twitter)


Aptana Forums • View topic &#8211; Auto upload on save &#8211; bug?


PDT Eclipse to auto upload on save &#8211; Stack Overflow


]]></description>
			<content:encoded><![CDATA[<ul class="delicious">
<li>
<div class="delicious-link"><a href="http://tipjunkie.blogspot.com/2009/04/taking-twitter-to-next-level-part-3.html">Tip Junkie: Taking Twitter to the Next Level &#8211; Part 3</a></div>
<div class="delicious-tags">(tags: <a href="http://delicious.com/roboguyspacedude/twitter">twitter</a>)</div>
</li>
<li>
<div class="delicious-link"><a href="http://tipjunkie.blogspot.com/2009/04/how-to-build-your-twitter-audience-part.html">Tip Junkie: How To Build Your Twitter Audience &#8211; Part 2</a></div>
<div class="delicious-tags">(tags: <a href="http://delicious.com/roboguyspacedude/twitter">twitter</a>)</div>
</li>
<li>
<div class="delicious-link"><a href="http://lukehatcher.com/blog/2009/may/3/store-binary-data-twitter-tootfiles/">Store Binary Data in Twitter with Tootfiles | Luke Hatcher</a></div>
<div class="delicious-tags">(tags: <a href="http://delicious.com/roboguyspacedude/store">store</a> <a href="http://delicious.com/roboguyspacedude/binary">binary</a> <a href="http://delicious.com/roboguyspacedude/twitter">twitter</a>)</div>
</li>
<li>
<div class="delicious-link"><a href="http://forums.aptana.com/viewtopic.php?f=14&amp;t=2410&amp;start=15">Aptana Forums • View topic &#8211; Auto upload on save &#8211; bug?</a></div>
</li>
<li>
<div class="delicious-link"><a href="http://stackoverflow.com/questions/648885/pdt-eclipse-to-auto-upload-on-save">PDT Eclipse to auto upload on save &#8211; Stack Overflow</a></div>
</li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://blog.robertkania.com/2009/12/26/links-for-2009-12-26/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>links for 2009-12-25</title>
		<link>http://blog.robertkania.com/2009/12/25/links-for-2009-12-25/</link>
		<comments>http://blog.robertkania.com/2009/12/25/links-for-2009-12-25/#comments</comments>
		<pubDate>Sat, 26 Dec 2009 03:03:25 +0000</pubDate>
		<dc:creator>Robert Kania</dc:creator>
				<category><![CDATA[Link of the Day]]></category>
		<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://blog.robertkania.com/2009/12/25/links-for-2009-12-25/</guid>
		<description><![CDATA[
10+ extremely useful PHP classes
(tags: php programming classes resources webdev development code hacks)


border-radius and -moz-border-radius &#60; CSS &#124; The Art of Web
(tags: css webdesign design firefox reference development web webdev rounded corners roundedcorners css3)


Mike’s Experiments &#8211; Main Index &#8211; Green-Beast.com
(tags: php scripts script design web tutorials tips resource javascript webdesign css)


22 Most Popular Google Chrome [...]]]></description>
			<content:encoded><![CDATA[<ul class="delicious">
<li>
<div class="delicious-link"><a href="http://www.catswhocode.com/blog/10-extremely-useful-php-classes">10+ extremely useful PHP classes</a></div>
<div class="delicious-tags">(tags: <a href="http://delicious.com/roboguyspacedude/php">php</a> <a href="http://delicious.com/roboguyspacedude/programming">programming</a> <a href="http://delicious.com/roboguyspacedude/classes">classes</a> <a href="http://delicious.com/roboguyspacedude/resources">resources</a> <a href="http://delicious.com/roboguyspacedude/webdev">webdev</a> <a href="http://delicious.com/roboguyspacedude/development">development</a> <a href="http://delicious.com/roboguyspacedude/code">code</a> <a href="http://delicious.com/roboguyspacedude/hacks">hacks</a>)</div>
</li>
<li>
<div class="delicious-link"><a href="http://www.the-art-of-web.com/css/border-radius/">border-radius and -moz-border-radius &lt; CSS | The Art of Web</a></div>
<div class="delicious-tags">(tags: <a href="http://delicious.com/roboguyspacedude/css">css</a> <a href="http://delicious.com/roboguyspacedude/webdesign">webdesign</a> <a href="http://delicious.com/roboguyspacedude/design">design</a> <a href="http://delicious.com/roboguyspacedude/firefox">firefox</a> <a href="http://delicious.com/roboguyspacedude/reference">reference</a> <a href="http://delicious.com/roboguyspacedude/development">development</a> <a href="http://delicious.com/roboguyspacedude/web">web</a> <a href="http://delicious.com/roboguyspacedude/webdev">webdev</a> <a href="http://delicious.com/roboguyspacedude/rounded">rounded</a> <a href="http://delicious.com/roboguyspacedude/corners">corners</a> <a href="http://delicious.com/roboguyspacedude/roundedcorners">roundedcorners</a> <a href="http://delicious.com/roboguyspacedude/css3">css3</a>)</div>
</li>
<li>
<div class="delicious-link"><a href="http://green-beast.com/experiments/">Mike’s Experiments &#8211; Main Index &#8211; Green-Beast.com</a></div>
<div class="delicious-tags">(tags: <a href="http://delicious.com/roboguyspacedude/php">php</a> <a href="http://delicious.com/roboguyspacedude/scripts">scripts</a> <a href="http://delicious.com/roboguyspacedude/script">script</a> <a href="http://delicious.com/roboguyspacedude/design">design</a> <a href="http://delicious.com/roboguyspacedude/web">web</a> <a href="http://delicious.com/roboguyspacedude/tutorials">tutorials</a> <a href="http://delicious.com/roboguyspacedude/tips">tips</a> <a href="http://delicious.com/roboguyspacedude/resource">resource</a> <a href="http://delicious.com/roboguyspacedude/javascript">javascript</a> <a href="http://delicious.com/roboguyspacedude/webdesign">webdesign</a> <a href="http://delicious.com/roboguyspacedude/css">css</a>)</div>
</li>
<li>
<div class="delicious-link"><a href="http://techpp.com/2009/09/11/22-most-popular-google-chrome-extensions/">22 Most Popular Google Chrome Extensions</a></div>
<div class="delicious-tags">(tags: <a href="http://delicious.com/roboguyspacedude/google">google</a> <a href="http://delicious.com/roboguyspacedude/extensions">extensions</a> <a href="http://delicious.com/roboguyspacedude/browser">browser</a> <a href="http://delicious.com/roboguyspacedude/addons">addons</a> <a href="http://delicious.com/roboguyspacedude/chrome">chrome</a> <a href="http://delicious.com/roboguyspacedude/extension">extension</a> <a href="http://delicious.com/roboguyspacedude/firefox">firefox</a> <a href="http://delicious.com/roboguyspacedude/software">software</a> <a href="http://delicious.com/roboguyspacedude/download">download</a> <a href="http://delicious.com/roboguyspacedude/plugin">plugin</a>)</div>
</li>
<li>
<div class="delicious-link"><a href="http://howto.wired.com/wiki/Save_a_Wet_Cell_Phone?utm_source=feedburner&amp;utm_medium=feed&amp;utm_campaign=Feed%3A+wired%2Findex+%28Wired%3A+Index+3+%28Top+Stories+2%29%29">Save a Wet Cell Phone &#8211; Wired How-To Wiki</a></div>
<div class="delicious-tags">(tags: <a href="http://delicious.com/roboguyspacedude/diy">diy</a>)</div>
</li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://blog.robertkania.com/2009/12/25/links-for-2009-12-25/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Merry Christmas!!!</title>
		<link>http://blog.robertkania.com/2009/12/25/merry-christmas/</link>
		<comments>http://blog.robertkania.com/2009/12/25/merry-christmas/#comments</comments>
		<pubDate>Fri, 25 Dec 2009 19:29:12 +0000</pubDate>
		<dc:creator>Robert Kania</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[christmas]]></category>

		<guid isPermaLink="false">http://blog.robertkania.com/2009/12/25/merry-christmas/</guid>
		<description><![CDATA[Have a wonderful Christmas everyone!
]]></description>
			<content:encoded><![CDATA[<p>Have a wonderful Christmas everyone!</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.robertkania.com/2009/12/25/merry-christmas/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Who&#8217;s Your Daddy Farmville? Happy Farm</title>
		<link>http://blog.robertkania.com/2009/12/25/whos-your-daddy-farmville-happy-farm/</link>
		<comments>http://blog.robertkania.com/2009/12/25/whos-your-daddy-farmville-happy-farm/#comments</comments>
		<pubDate>Fri, 25 Dec 2009 05:38:21 +0000</pubDate>
		<dc:creator>Robert Kania</dc:creator>
				<category><![CDATA[Social Networking]]></category>
		<category><![CDATA[Web/Internet]]></category>
		<category><![CDATA[facebook]]></category>

		<guid isPermaLink="false">http://blog.robertkania.com/?p=568</guid>
		<description><![CDATA[We all know that Facebook&#8217;s application Farmville has nearly 70 million monthly active users despite its simplicity.  However most people do not know that Farmville was actually the child of a Chinese game that is also on Facebook, but has a much lower user base (currently 3,372,366 monthly users), called Happy Farm.  It lacks in [...]]]></description>
			<content:encoded><![CDATA[<div id="attachment_571" class="wp-caption alignright" style="width: 210px"><a rel="lytebox" href="http://blog.robertkania.com/wp-content/uploads/2009/12/happy-farm.gif"><img class="size-full wp-image-571 " title="happy farm" src="http://blog.robertkania.com/wp-content/uploads/2009/12/happy-farm.gif" alt="" width="200" /></a><p class="wp-caption-text">Click to Enlarge</p></div>
<p>We all know that Facebook&#8217;s application <a href="http://mashable.com/2009/12/02/farmville-bigger-than-twitter/" target="_blank">Farmville has nearly 70 million monthly active users</a> despite its simplicity.  However most people do not know that Farmville was actually the child of a Chinese game that is also on Facebook, but has a much lower user base (currently 3,372,366 monthly users), called<strong> <a href="http://www.facebook.com/apps/application.php?id=57132175859" target="_blank">Happy Farm</a></strong>.  It lacks in organization and some features that Farmville has, but has other redeeming traits including nicer graphics, different items, and different abilities, such as stealing.  Being Farmville&#8217;s predecessor, Happy Farm was rated in the <a href="http://www.wired.com/gamelife/2009/12/the-15-most-influential-games-of-the-decade/" target="_blank">Top 15 Most Influential Games of the Decade</a>.<br/></p>
<h2>Farmville and Happy Farm Similarities</h2>
<p><br/></p>
<h4>Neighbors</h4>
<p><br />
Just like in Farmville, Happy Farm revolves around you having neighbors.  You need neighbors to build a bigger farm so you can grow more crops just like in Farmville.</p>
<p>Happy Farm allows to interact with you neighbors in a few interesting ways:</p>
<blockquote><p>There are four ways to interact with your neighbors: helping care for their farms, stealing some harvest, sending gifts and sending messages.</p></blockquote>
<h4>Gifts</h4>
<p>Just like in Farmville you can send and receive gifts.  There are 5 different kinds of gifts: &#8220;free gifts, flower bouquet, toy and decoration, some other special items.&#8221;</p>
<h4>Crops</h4>
<p>What would a farm game be without crops? Even though both have crops, Happy Farm tends to revolve more around flowers where Farmville includes many types of crops.  Also, Happy Farm crops tend to have pests on them so another action in the game requires you to remove the pests.<br/></p>
<h2>Farmville and Happy Farm Differences</h2>
<p><br/></p>
<h4>Exchange Center</h4>
<p>Happy Farm includes a place where users can exchange items such as Dog Food and Toy Seed.  Sometimes special items can be found here as well.</p>
<h4>Pet Store</h4>
<p>The pet store is where you can buy different pets to help guard your property from thieves.  Thieves drop coins if caught by a pet.</p>
<h4>Stealing</h4>
<p>Unlike in Farmville, you can steal neighbors crops in Happy Farm but simply clicking on their crop when visiting their farm and choosing &#8220;Loot Harvest.&#8221;<br/></p>
<h2>Conclusion</h2>
<p><br/><br />
Obviously both games are fun and have their redeeming qualities. I think Happy Farm looks nice and has some interesting features, but its user interface is fairly complicated.  I started using the application and I couldn&#8217;t figure out where things were.  While Farmville uses words such as Market and Gift on its icons, Happy Farm just uses pictures, making finding stuff complicated.  Also, happy Farm doesn&#8217;t have much room for expansion, but for the precursor to Farmville I think it is pretty fun.   Obviously the rest of the Facebook population agrees with Farmville being the better of the two.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.robertkania.com/2009/12/25/whos-your-daddy-farmville-happy-farm/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>links for 2009-12-24</title>
		<link>http://blog.robertkania.com/2009/12/24/links-for-2009-12-24/</link>
		<comments>http://blog.robertkania.com/2009/12/24/links-for-2009-12-24/#comments</comments>
		<pubDate>Fri, 25 Dec 2009 03:05:37 +0000</pubDate>
		<dc:creator>Robert Kania</dc:creator>
				<category><![CDATA[Link of the Day]]></category>

		<guid isPermaLink="false">http://blog.robertkania.com/2009/12/24/links-for-2009-12-24/</guid>
		<description><![CDATA[StarWars.com &#124; Video
SkyDrive Explorer Mounts Your SkyDrive in Windows      Explorer &#8211; Online storage &#8211; Lifehacker
Best Wallpaper Site? &#8211; Wallpapers &#8211; Lifehacker
BBC News &#8211; Man charged with murder after snowball fight      stabbing
Tió de Nadal &#8211; Wikipedia, the free encyclopedia
Learn Online Retail Psychology Tricks to Avoid Them [...]]]></description>
			<content:encoded><![CDATA[<ul>
<li><a href="http://www.starwars.com/video/view/000742.html">StarWars.com | Video</a></li>
<li><a href="http://lifehacker.com/5433481/skydrive-explorer-mounts-your-skydrive-in-windows-explorer">SkyDrive Explorer Mounts Your SkyDrive in Windows      Explorer &#8211; Online storage &#8211; Lifehacker</a></li>
<li><a href="http://lifehacker.com/5431239/best-wallpaper-site">Best Wallpaper Site? &#8211; Wallpapers &#8211; Lifehacker</a></li>
<li><a href="http://news.bbc.co.uk/2/hi/uk_news/wales/north_east/8429647.stm">BBC News &#8211; Man charged with murder after snowball fight      stabbing</a></li>
<li><a href="http://en.wikipedia.org/wiki/Ti%C3%B3_de_Nadal">Tió de Nadal &#8211; Wikipedia, the free encyclopedia</a></li>
<li><a href="http://lifehacker.com/5433439/learn-online-retail-psychology-tricks-to-avoid-them?skyline=true&amp;s=i">Learn Online Retail Psychology Tricks to Avoid Them &#8211;      Buying &#8211; Lifehacker</a></li>
<li><a href="http://lifehacker.com/5421669/decreased-productivity-helps-you-browse-at-work-without-getting-busted">Decreased Productivity Helps You Browse at Work Without      Getting Busted &#8211; Boss Key &#8211; Lifehacker</a></li>
<li><a href="http://www.cnn.com/2009/TECH/12/22/mall.parking.tweets/index.html?eref=rss_tech&amp;utm_source=feedburner&amp;utm_medium=feed&amp;utm_campaign=Feed%3A+rss%2Fcnn_tech+%28RSS%3A+Technology%29">Mall of America tweets parking info &#8211; CNN.com</a></li>
<li><a href="http://www.wired.com/gamelife/2009/12/the-15-most-influential-games-of-the-decade/2/">The 15 Most Influential Games of the Decade | GameLife      | Wired.com</a></li>
<li><a href="http://news.bbc.co.uk/2/hi/health/8426959.stm">BBC News &#8211; Molecules and synapses cement memories, say      scientists</a></li>
<li><a href="http://www.mentalfloss.com/blogs/archives/43622/comment-page-1#comment-263887">mental_floss Blog » 6 Animals That Show Mother Nature’s      Sense of Humor</a></li>
<li><a href="http://www.wired.com/techbiz/media/news/2009/04/reuters_us_work_internet_tech_life">Facebook, YouTube at Work Make Better Employees: Study</a></li>
<li><a href="http://www.askmen.com/top_10/entertainment/top-10-video-games-that-almost-never-happened_1p.html">Top 10: Video Games That Almost Never Happened &#8211;      AskMen.com</a></li>
<li><a href="http://news.bbc.co.uk/2/hi/business/8429397.stm">BBC News &#8211; Twitter buys location tracker start-up Mixer      Labs</a></li>
<li><a href="http://www.wired.com/gadgetlab/2009/04/verizon-iphone-could-be-here-next-year/">Verizon iPhone Could be Here Next Year | Gadget Lab |      Wired.com</a></li>
<li><a href="http://www.cnn.com/2006/TRAVEL/ADVISOR/06/27/cell.phones.overseas/index.html?section=cnn_tech">CNN.com &#8211; Navigating cell phone headaches overseas &#8211;      Jun 27, 2006</a></li>
<li><a href="http://www.deadcellzones.com/att.html">AT&amp;T Wireless Coverage Map</a></li>
<li><a href="http://www.deadcellzones.com/">Cell Phone Coverage Maps &#8211; AT&amp;T, Verizon, Sprint,      T-Mobile</a></li>
<li><a href="http://www.chrisfinke.com/2009/12/21/our-2009-christmas-letter/">Our 2009 Christmas Letter</a></li>
<li><a href="http://unemployedfreebies.blogspot.com/2009/09/she-told-me-to-earn-money-through.html?utm_source=feedburner&amp;utm_medium=feed&amp;utm_campaign=Feed%3A+FreebiesForTheUnemployed+%28Freebies+For+the+Unemployed%29">She Told Me To Earn Money Through Adsense Revenue      Sharing Program</a></li>
<li><a href="http://niceblogger.com/2009/08/31/backlinks-pagerank-number-and-anchor-text/">Backlinks PageRank,Number and Anchor Text</a></li>
<li><a href="http://niceblogger.com/2009/08/14/27-dofollow-edu-and-gov-backlinks-resources/">27 DoFollow .EDU and .GOV Backlinks Resources</a></li>
<li><a href="http://www.webpronews.com/topnews/2004/06/30/steps-to-increase-your-google-page-rank">5 Steps to Increase your Google Page Rank. | WebProNews</a></li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://blog.robertkania.com/2009/12/24/links-for-2009-12-24/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Java Pong</title>
		<link>http://blog.robertkania.com/2009/12/24/java-pon/</link>
		<comments>http://blog.robertkania.com/2009/12/24/java-pon/#comments</comments>
		<pubDate>Thu, 24 Dec 2009 21:49:51 +0000</pubDate>
		<dc:creator>Robert Kania</dc:creator>
				<category><![CDATA[Fun]]></category>
		<category><![CDATA[websites]]></category>
		<category><![CDATA[pong]]></category>
		<category><![CDATA[projects]]></category>

		<guid isPermaLink="false">http://blog.robertkania.com/?p=558</guid>
		<description><![CDATA[A few years ago I saw this article challenging people to make pong in any language and decided to design Pong in Java.  At that time I had taking Java in high school for about 5 months, but we were still no where near making applets.  I had already designed Chess and Checkers, and even [...]]]></description>
			<content:encoded><![CDATA[<p><img src="http://rkania.com/images/pong.gif" alt="Pong by Bobby Kania" style="float:right; padding-left:5px;" />A few years ago I saw this article challenging people to make pong in any language and decided to design <a href="http://fun.rkania.com/pong/" target="_blank">Pong in Java</a>.  At that time I had taking Java in high school for about 5 months, but we were still no where near making applets.  I had already designed <a href="http://fun.rkania.com/chess/" target="_blank">Chess</a> and <a href="http://fun.rkania.com/checkers/">Checkers</a>, and even though they were basic, they gave me the knowledge I needed to develop pong.  Of course this version of pong is really outdated because I have learned a lot since, but I have not felt the urge really to go back and change.  The AI is a bit strange since it follows the ball and randomly goes the opposite direction that it does not track the ball perfectly and I developed a new AI that finds where the ball will land and attempts to go that point, but I haven&#8217;t implemented it yet.  Writing this post makes me realize just how many unfinished projects I have.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.robertkania.com/2009/12/24/java-pon/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Does the Mailman Come on Christmas Eve?</title>
		<link>http://blog.robertkania.com/2009/12/24/does-the-mailman-come-on-christmas-eve/</link>
		<comments>http://blog.robertkania.com/2009/12/24/does-the-mailman-come-on-christmas-eve/#comments</comments>
		<pubDate>Thu, 24 Dec 2009 20:58:21 +0000</pubDate>
		<dc:creator>Robert Kania</dc:creator>
				<category><![CDATA[Fun]]></category>
		<category><![CDATA[christmas]]></category>

		<guid isPermaLink="false">http://blog.robertkania.com/2009/12/24/does-the-mailman-come-on-christmas-eve/</guid>
		<description><![CDATA[Yes, the mailman in fact does come on Christmas Eve since Christmas is a Federal Holiday, but not Christmas Eve.  So for all those folks wondering if they will receive their packages today, yes you will!    I was wondering the same thing today as I am expecting books required for school [...]]]></description>
			<content:encoded><![CDATA[<p>Yes, the mailman in fact does come on Christmas Eve since Christmas is a Federal Holiday, but not Christmas Eve.  So for all those folks wondering if they will receive their packages today, yes you will! <img src='http://blog.robertkania.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' />   I was wondering the same thing today as I am expecting books required for school today in the mail.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.robertkania.com/2009/12/24/does-the-mailman-come-on-christmas-eve/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Norad Tracking Santa via Twitter, Facebook, and Google Earth</title>
		<link>http://blog.robertkania.com/2009/12/24/norad-tracking-santa-via-twitter-facebook-and-google-earth/</link>
		<comments>http://blog.robertkania.com/2009/12/24/norad-tracking-santa-via-twitter-facebook-and-google-earth/#comments</comments>
		<pubDate>Thu, 24 Dec 2009 20:25:32 +0000</pubDate>
		<dc:creator>Robert Kania</dc:creator>
				<category><![CDATA[Fun]]></category>
		<category><![CDATA[christmas]]></category>
		<category><![CDATA[santa]]></category>

		<guid isPermaLink="false">http://blog.robertkania.com/?p=551</guid>
		<description><![CDATA[Merry Christmas Eve everyone!  Tonight Santa is coming to town and you can track his annual journey with Norad&#8217;s tracking system.  The North American Aerospace Defense Command (Norad) has been tracking Santa for over 50 years and this year is no different.
However, now you can track Santa from Twitter, Facebook, and Google Earth/Maps. For further [...]]]></description>
			<content:encoded><![CDATA[<p>Merry Christmas Eve everyone!  Tonight Santa is coming to town and you can track his annual journey with Norad&#8217;s tracking system.  The North American Aerospace Defense Command (Norad) has been tracking Santa for over 50 years and this year is no different.</p>
<p>However, now you can track Santa from<strong> <a href="http://twitter.com/noradsanta" target="_blank">Twitter</a>, <a href="http://www.facebook.com/noradsanta" target="_blank">Facebook</a>, and<a href="http://www.noradsanta.org/" target="_blank"> Google Earth/Maps</a>.</strong> For further information you can read <a href="http://news.bbc.co.uk/2/hi/technology/8428718.stm" target="_blank">Brian McClendon&#8217;s, engineering director for Google Earth and Google Maps, article on tracking Santa.</a></p>
]]></content:encoded>
			<wfw:commentRss>http://blog.robertkania.com/2009/12/24/norad-tracking-santa-via-twitter-facebook-and-google-earth/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>links for 2009-12-23</title>
		<link>http://blog.robertkania.com/2009/12/24/links-for-2009-12-23/</link>
		<comments>http://blog.robertkania.com/2009/12/24/links-for-2009-12-23/#comments</comments>
		<pubDate>Thu, 24 Dec 2009 07:03:03 +0000</pubDate>
		<dc:creator>Robert Kania</dc:creator>
				<category><![CDATA[Link of the Day]]></category>
		<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://blog.robertkania.com/2009/12/24/links-for-2009-12-23/</guid>
		<description><![CDATA[
Pagerank Explained. Google&#8217;s PageRank and how to make the most of it.
(tags: google seo search web rank page internet ranking pagerank tutorial)


The Search Engine Optimization Experiment
(tags: seo google internet web)


How to Sell Your Pokemon Cards &#8211; wikiHow
(tags: sell pokemon cards)


]]></description>
			<content:encoded><![CDATA[<ul class="delicious">
<li>
<div class="delicious-link"><a href="http://www.webworkshop.net/pagerank.html">Pagerank Explained. Google&#8217;s PageRank and how to make the most of it.</a></div>
<div class="delicious-tags">(tags: <a href="http://delicious.com/roboguyspacedude/google">google</a> <a href="http://delicious.com/roboguyspacedude/seo">seo</a> <a href="http://delicious.com/roboguyspacedude/search">search</a> <a href="http://delicious.com/roboguyspacedude/web">web</a> <a href="http://delicious.com/roboguyspacedude/rank">rank</a> <a href="http://delicious.com/roboguyspacedude/page">page</a> <a href="http://delicious.com/roboguyspacedude/internet">internet</a> <a href="http://delicious.com/roboguyspacedude/ranking">ranking</a> <a href="http://delicious.com/roboguyspacedude/pagerank">pagerank</a> <a href="http://delicious.com/roboguyspacedude/tutorial">tutorial</a>)</div>
</li>
<li>
<div class="delicious-link"><a href="http://www.10pagerank.com/">The Search Engine Optimization Experiment</a></div>
<div class="delicious-tags">(tags: <a href="http://delicious.com/roboguyspacedude/seo">seo</a> <a href="http://delicious.com/roboguyspacedude/google">google</a> <a href="http://delicious.com/roboguyspacedude/internet">internet</a> <a href="http://delicious.com/roboguyspacedude/web">web</a>)</div>
</li>
<li>
<div class="delicious-link"><a href="http://www.wikihow.com/Sell-Your-Pokemon-Cards">How to Sell Your Pokemon Cards &#8211; wikiHow</a></div>
<div class="delicious-tags">(tags: <a href="http://delicious.com/roboguyspacedude/sell">sell</a> <a href="http://delicious.com/roboguyspacedude/pokemon">pokemon</a> <a href="http://delicious.com/roboguyspacedude/cards">cards</a>)</div>
</li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://blog.robertkania.com/2009/12/24/links-for-2009-12-23/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>New Links 12/23/09</title>
		<link>http://blog.robertkania.com/2009/12/23/new-links-122309/</link>
		<comments>http://blog.robertkania.com/2009/12/23/new-links-122309/#comments</comments>
		<pubDate>Wed, 23 Dec 2009 16:34:49 +0000</pubDate>
		<dc:creator>Robert Kania</dc:creator>
				<category><![CDATA[Link of the Day]]></category>
		<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[ftp]]></category>
		<category><![CDATA[wifi]]></category>

		<guid isPermaLink="false">http://blog.robertkania.com/?p=537</guid>
		<description><![CDATA[Display Hidden Folders and Files in WS FTP and Cute FTP
VLC Player Wears a Christmas Hat
DRM Prevents Avatar Showing in Germany
Free Wi-Fi While You Fly This Holiday Season
]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.tech-evangelist.com/2006/01/22/display-hidden-files/" target="_blank">Display Hidden Folders and Files in WS FTP and Cute FTP</a></p>
<p><a href="http://lifehacker.com/5432179/vlc-gets-dressed-up-for-christmas" target="_blank">VLC Player Wears a Christmas Hat</a></p>
<p><a href="http://entertainment.slashdot.org/story/09/12/17/1916241/DRM-Flub-Prevented-3D-Showings-of-emAvatarem-In-Germany?from=rss&amp;utm_source=feedburner&amp;utm_medium=feed&amp;utm_campaign=Feed%3A+Slashdot%2FslashdotIt+%28Slashdot%3A+IT%29&amp;utm_content=Google+Reader" target="_blank">DRM Prevents Avatar Showing in Germany</a></p>
<p><a href="http://www.mymoneyblog.com/archives/2009/12/gogo-inflight-free-wifi-coupon-codes.html" target="_blank">Free Wi-Fi While You Fly This Holiday Season</a></p>
]]></content:encoded>
			<wfw:commentRss>http://blog.robertkania.com/2009/12/23/new-links-122309/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>links for 2009-12-22</title>
		<link>http://blog.robertkania.com/2009/12/23/links-for-2009-12-22/</link>
		<comments>http://blog.robertkania.com/2009/12/23/links-for-2009-12-22/#comments</comments>
		<pubDate>Wed, 23 Dec 2009 07:03:24 +0000</pubDate>
		<dc:creator>Robert Kania</dc:creator>
				<category><![CDATA[Link of the Day]]></category>
		<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://blog.robertkania.com/2009/12/23/links-for-2009-12-22/</guid>
		<description><![CDATA[Delicious’s Bad Behavior &#8211; [LINICKX].com
(tags: delicious badbehavior bad behavior howto plugin)

YouTube &#8211; HP computers are racist
(tags: technology computer funny hp youtube video racism facetracking videos errors)
]]></description>
			<content:encoded><![CDATA[<div class="delicious-link"><a href="http://www.linickx.com/archives/630/delicious-bad-behavior">Delicious’s Bad Behavior &#8211; [LINICKX].com</a></div>
<div class="delicious-tags">(tags: <a href="http://delicious.com/roboguyspacedude/delicious">delicious</a> <a href="http://delicious.com/roboguyspacedude/badbehavior">badbehavior</a> <a href="http://delicious.com/roboguyspacedude/bad">bad</a> <a href="http://delicious.com/roboguyspacedude/behavior">behavior</a> <a href="http://delicious.com/roboguyspacedude/howto">howto</a> <a href="http://delicious.com/roboguyspacedude/plugin">plugin</a>)</div>
<p><br/><br />
<a href="http://www.youtube.com/watch?v=t4DT3tQqgRM">YouTube &#8211; HP computers are racist</a><br />
(tags: <a href="http://delicious.com/roboguyspacedude/technology">technology</a> <a href="http://delicious.com/roboguyspacedude/computer">computer</a> <a href="http://delicious.com/roboguyspacedude/funny">funny</a> <a href="http://delicious.com/roboguyspacedude/hp">hp</a> youtube<a href="http://delicious.com/roboguyspacedude/video"> video</a> <a href="http://delicious.com/roboguyspacedude/racism">racism</a> <a href="http://delicious.com/roboguyspacedude/facetracking">facetracking</a> <a href="http://delicious.com/roboguyspacedude/videos">videos</a> <a href="http://delicious.com/roboguyspacedude/errors">errors</a>)</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.robertkania.com/2009/12/23/links-for-2009-12-22/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
