<?xml version="1.0" encoding="UTF-8"?>
<?xml-stylesheet type="text/xsl" media="screen" href="/~d/styles/rss2full.xsl"?><?xml-stylesheet type="text/css" media="screen" href="http://feeds.feedburner.com/~d/styles/itemcontent.css"?><rss xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:feedburner="http://rssnamespace.org/feedburner/ext/1.0" version="2.0" xml:base="http://united-coders.com">
<channel>
 <title>united-coders.com</title>
 <link>http://united-coders.com</link>
 <description />
 <language>en</language>
<atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="self" type="application/rss+xml" href="http://feeds.feedburner.com/united-coders" /><feedburner:info uri="united-coders" /><atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="hub" href="http://pubsubhubbub.appspot.com/" /><item>
 <title>Solutions for the google code jam 2012 qualify round</title>
 <link>http://feedproxy.google.com/~r/united-coders/~3/eY7yEHAYbAA/solutions-for-the-google-code-jam-2012-qualify-round</link>
 <description>&lt;p&gt;&lt;a href="https://code.google.com/codejam/" title="Google Code Jam 2012"&gt;Google Code Jam 2012&lt;/a&gt; started this weekend and this years qualification round was simpler than other years.&lt;span class="read-more"&gt;&lt;a href="/christian-harms/solutions-for-the-google-code-jam-2012-qualify-round"&gt;&lt;strong&gt;Read more&lt;/strong&gt;&lt;/a&gt;&lt;/span&gt;&lt;/p&gt;

&lt;!--
&lt;rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:trackback="http://madskills.com/public/xml/rss/module/trackback/"&gt;
&lt;rdf:Description rdf:about="http://united-coders.com/christian-harms/solutions-for-the-google-code-jam-2012-qualify-round" dc:identifier="http://united-coders.com/christian-harms/solutions-for-the-google-code-jam-2012-qualify-round" dc:title="Solutions for the google code jam 2012 qualify round" trackback:ping="http://united-coders.com/trackback/121" /&gt;
&lt;/rdf:RDF&gt;
--&gt;
&lt;div class='sexybookmarks-default-1805'&gt;&lt;/div&gt;&lt;img src="http://feeds.feedburner.com/~r/united-coders/~4/eY7yEHAYbAA" height="1" width="1"/&gt;</description>
 <comments>http://united-coders.com/christian-harms/solutions-for-the-google-code-jam-2012-qualify-round#comments</comments>
 <category domain="http://united-coders.com/category/tags/code-puzzle">code puzzle</category>
 <category domain="http://united-coders.com/category/tags/google-code-jam">google code jam</category>
 <category domain="http://united-coders.com/category/tags/python">python</category>
 <pubDate>Sun, 15 Apr 2012 22:28:54 +0000</pubDate>
 <dc:creator>Christian Harms</dc:creator>
 <guid isPermaLink="false">121 at http://united-coders.com</guid>
<feedburner:origLink>http://united-coders.com/christian-harms/solutions-for-the-google-code-jam-2012-qualify-round</feedburner:origLink></item>
<item>
 <title>Facebook hackercup 2012 - round 1 with merge sort</title>
 <link>http://feedproxy.google.com/~r/united-coders/~3/_VPvT-uDfsU/facebook-hackercup-2012-round-1-with-merge-sort</link>
 <description>&lt;p&gt;The &lt;a href ="https://www.facebook.com/hackercup/problems.php?round=225705397509134"&gt;first round&lt;/a&gt; of the facebook hackercup 2012 had three problems. All problems have to be solved in 24 hours and coders with three successful solved entries goes to round 2. &lt;/p&gt;
&lt;p&gt;The problem "Recover the Sequence" can be solved in two lines of code (+ some lines for input and output).&lt;/p&gt;
&lt;h2&gt;Recover the Sequence - problem&lt;/h2&gt;
&lt;p&gt;Merge sort is one of the classic sorting algorithms. Conceptually, a merge sort works as &lt;a href="http://en.wikipedia.org/wiki/Mergesort"&gt;follows&lt;/a&gt;. Divide the unsorted list into n sublists (n is 2 in the example), each containing 1 element (a list of 1 element is considered sorted). Repeatedly Merge sublists to produce new sublists until there is only 1 sublist remaining. (This will be the sorted list.)&lt;/p&gt;
&lt;p&gt;The problem description starts with the pseudo code - I translated into a python class.&lt;span class="read-more"&gt;&lt;a href="/christian-harms/facebook-hackercup-2012-round-1-with-merge-sort"&gt;&lt;strong&gt;Read more&lt;/strong&gt;&lt;/a&gt;&lt;/span&gt;&lt;/p&gt;

&lt;!--
&lt;rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:trackback="http://madskills.com/public/xml/rss/module/trackback/"&gt;
&lt;rdf:Description rdf:about="http://united-coders.com/christian-harms/facebook-hackercup-2012-round-1-with-merge-sort" dc:identifier="http://united-coders.com/christian-harms/facebook-hackercup-2012-round-1-with-merge-sort" dc:title="Facebook hackercup 2012 - round 1 with merge sort" trackback:ping="http://united-coders.com/trackback/120" /&gt;
&lt;/rdf:RDF&gt;
--&gt;
&lt;div class='sexybookmarks-default-4277'&gt;&lt;/div&gt;&lt;img src="http://feeds.feedburner.com/~r/united-coders/~4/_VPvT-uDfsU" height="1" width="1"/&gt;</description>
 <comments>http://united-coders.com/christian-harms/facebook-hackercup-2012-round-1-with-merge-sort#comments</comments>
 <pubDate>Tue, 31 Jan 2012 06:44:47 +0000</pubDate>
 <dc:creator>Christian Harms</dc:creator>
 <guid isPermaLink="false">120 at http://united-coders.com</guid>
<feedburner:origLink>http://united-coders.com/christian-harms/facebook-hackercup-2012-round-1-with-merge-sort</feedburner:origLink></item>
<item>
 <title>facebook Hacker Cup 2012 Qualification - solution for billboards</title>
 <link>http://feedproxy.google.com/~r/united-coders/~3/SYPsJIWPciI/facebook-hacker-cup-2012-qualification-solution-for-billboards</link>
 <description>&lt;p&gt;The second problem from this year facebook hackercup sound like the classic &lt;a href="http://en.wikipedia.org/wiki/Knapsack_problem"&gt;knapsack problem&lt;/a&gt;. But the solution is much easier (words are in fixed sort order). Feel free to find a smarter algorithm or comment my python solution.&lt;/p&gt;
&lt;h2&gt;problem description&lt;/h2&gt;
&lt;p&gt;We are starting preparations for Hacker Cup 2013 really early. Our first step is to prepare billboards to advertise the contest. We have text for hundreds of billboards, but we need your help to design them.&lt;span class="read-more"&gt;&lt;a href="/christian-harms/facebook-hacker-cup-2012-qualification-solution-for-billboards"&gt;&lt;strong&gt;Read more&lt;/strong&gt;&lt;/a&gt;&lt;/span&gt;&lt;/p&gt;

&lt;!--
&lt;rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:trackback="http://madskills.com/public/xml/rss/module/trackback/"&gt;
&lt;rdf:Description rdf:about="http://united-coders.com/christian-harms/facebook-hacker-cup-2012-qualification-solution-for-billboards" dc:identifier="http://united-coders.com/christian-harms/facebook-hacker-cup-2012-qualification-solution-for-billboards" dc:title="facebook Hacker Cup 2012 Qualification - solution for billboards" trackback:ping="http://united-coders.com/trackback/119" /&gt;
&lt;/rdf:RDF&gt;
--&gt;
&lt;div class='sexybookmarks-default-8719'&gt;&lt;/div&gt;&lt;img src="http://feeds.feedburner.com/~r/united-coders/~4/SYPsJIWPciI" height="1" width="1"/&gt;</description>
 <comments>http://united-coders.com/christian-harms/facebook-hacker-cup-2012-qualification-solution-for-billboards#comments</comments>
 <category domain="http://united-coders.com/category/tags/code-puzzle">code puzzle</category>
 <category domain="http://united-coders.com/category/tags/facebook-hackercup">facebook hackercup</category>
 <category domain="http://united-coders.com/category/tags/java">java</category>
 <category domain="http://united-coders.com/category/tags/python">python</category>
 <category domain="http://united-coders.com/category/tags/solution">solution</category>
 <pubDate>Wed, 25 Jan 2012 18:50:17 +0000</pubDate>
 <dc:creator>Christian Harms</dc:creator>
 <guid isPermaLink="false">119 at http://united-coders.com</guid>
<feedburner:origLink>http://united-coders.com/christian-harms/facebook-hacker-cup-2012-qualification-solution-for-billboards</feedburner:origLink></item>
<item>
 <title>facebook Hacker Cup 2012 Qualification Round - alphabet soup</title>
 <link>http://feedproxy.google.com/~r/united-coders/~3/hrtKoHKR53o/facebook-hacker-cup-2012-qualification-round-alphabet-soup</link>
 <description>&lt;!--paging_filter--&gt;&lt;p&gt;This year qualification round had three problem. The easy one was &lt;a href="http://www.facebook.com/hackercup/problems.php?round=146094915502528"&gt;Alphabet Soup&lt;/a&gt; - classic character counting problem.&lt;/p&gt;
&lt;p&gt;&lt;img src='http://united-coders.com/sites/default/files/imagepicker/4/facebook1.jpg' alt='Image'  class='imgp_img' width='500' height='105' /&gt;&lt;/p&gt;
&lt;h2&gt;problem description&lt;/h2&gt;
&lt;p&gt;Alfredo Spaghetti really likes soup, especially when it contains alphabet pasta. Every day he constructs a sentence from letters, places the letters into a bowl of broth and enjoys delicious alphabet soup.&lt;/p&gt;
&lt;p&gt;Today, after constructing the sentence, Alfredo remembered that the Facebook Hacker Cup starts today! Thus, he decided to construct the phrase "HACKERCUP". As he already added the letters to the broth, he is stuck with the letters he originally selected. Help Alfredo determine how many times he can place the word "HACKERCUP" side-by-side using the letters in his soup.&lt;span class="read-more"&gt;&lt;a href="/christian-harms/facebook-hacker-cup-2012-qualification-round-alphabet-soup"&gt;&lt;strong&gt;Read more&lt;/strong&gt;&lt;/a&gt;&lt;/span&gt;&lt;/p&gt;

&lt;!--
&lt;rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:trackback="http://madskills.com/public/xml/rss/module/trackback/"&gt;
&lt;rdf:Description rdf:about="http://united-coders.com/christian-harms/facebook-hacker-cup-2012-qualification-round-alphabet-soup" dc:identifier="http://united-coders.com/christian-harms/facebook-hacker-cup-2012-qualification-round-alphabet-soup" dc:title="facebook Hacker Cup 2012 Qualification Round - alphabet soup" trackback:ping="http://united-coders.com/trackback/118" /&gt;
&lt;/rdf:RDF&gt;
--&gt;
&lt;div class='sexybookmarks-default-2506'&gt;&lt;/div&gt;&lt;img src="http://feeds.feedburner.com/~r/united-coders/~4/hrtKoHKR53o" height="1" width="1"/&gt;</description>
 <comments>http://united-coders.com/christian-harms/facebook-hacker-cup-2012-qualification-round-alphabet-soup#comments</comments>
 <category domain="http://united-coders.com/category/tags/code-puzzle">code puzzle</category>
 <category domain="http://united-coders.com/category/tags/facebook">facebook</category>
 <category domain="http://united-coders.com/category/tags/hackercup">hackercup</category>
 <pubDate>Tue, 24 Jan 2012 20:57:49 +0000</pubDate>
 <dc:creator>Christian Harms</dc:creator>
 <guid isPermaLink="false">118 at http://united-coders.com</guid>
<feedburner:origLink>http://united-coders.com/christian-harms/facebook-hacker-cup-2012-qualification-round-alphabet-soup</feedburner:origLink></item>
<item>
 <title>facebook Hacker Cup 2012 Qualification Round</title>
 <link>http://feedproxy.google.com/~r/united-coders/~3/c6nIYc3VMI0/facebook-hacker-cup-2012-qualification-round</link>
 <description>&lt;p&gt;The facebook hacker cup is a google-code-jam like coding contest - starting with the 2012 qualification round this weekend. Try to solve the &lt;a href="https://www.facebook.com/hackercup/problems.php?round=4"&gt;2011 practice round&lt;/a&gt;. If you can submit your solution (the spinner after submit dont stops) try to check the result response with HTTPFox (it shows the correct / incorrect response) - hoping this will be fixed for this weekend.&lt;/p&gt;
&lt;p&gt;All solutions can be testet with &lt;a href="http://codejamer.com/"&gt;codejammer.com&lt;/a&gt; - a fine javascript solution for running code contests like facebook hacker cup or google code jam.&lt;span class="read-more"&gt;&lt;a href="/christian-harms/facebook-hacker-cup-2012-qualification-round"&gt;&lt;strong&gt;Read more&lt;/strong&gt;&lt;/a&gt;&lt;/span&gt;&lt;/p&gt;

&lt;!--
&lt;rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:trackback="http://madskills.com/public/xml/rss/module/trackback/"&gt;
&lt;rdf:Description rdf:about="http://united-coders.com/christian-harms/facebook-hacker-cup-2012-qualification-round" dc:identifier="http://united-coders.com/christian-harms/facebook-hacker-cup-2012-qualification-round" dc:title="facebook Hacker Cup 2012 Qualification Round" trackback:ping="http://united-coders.com/trackback/117" /&gt;
&lt;/rdf:RDF&gt;
--&gt;
&lt;div class='sexybookmarks-default-7076'&gt;&lt;/div&gt;&lt;img src="http://feeds.feedburner.com/~r/united-coders/~4/c6nIYc3VMI0" height="1" width="1"/&gt;</description>
 <comments>http://united-coders.com/christian-harms/facebook-hacker-cup-2012-qualification-round#comments</comments>
 <category domain="http://united-coders.com/category/tags/code-jam">code jam</category>
 <category domain="http://united-coders.com/category/tags/hacker-cup">hacker cup</category>
 <category domain="http://united-coders.com/category/tags/puzzle">puzzle</category>
 <pubDate>Tue, 17 Jan 2012 16:01:18 +0000</pubDate>
 <dc:creator>Christian Harms</dc:creator>
 <guid isPermaLink="false">117 at http://united-coders.com</guid>
<feedburner:origLink>http://united-coders.com/christian-harms/facebook-hacker-cup-2012-qualification-round</feedburner:origLink></item>
<item>
 <title>Q*Bert chrismas tree puzzle</title>
 <link>http://feedproxy.google.com/~r/united-coders/~3/q-orTy9zR3E/qbert-chrismas-tree-puzzle</link>
 <description>&lt;p&gt;This is a short coding puzzle with q*bert (who is &lt;a href="http://en.wikipedia.org/wiki/Qbert"&gt;q*bert&lt;/a&gt;?) and an chrismas tree. &lt;/p&gt;
&lt;h2&gt;the qbert question&lt;/h2&gt;
&lt;p&gt;&lt;img alt="qbert chrismas tree coding puzzle" src='http://united-coders.com/sites/default/files/imagepicker/4/qtree_tree.jpg' style="float: right" width='300' height='263' /&gt;&lt;br /&gt;
The task: Our 2011 q*bert can only jump down. He start from the top and has to find the path to the bottom of the chrismas tree with collecting the most points available (while jumping left-or-right down). Find the way with the highest sum.&lt;/p&gt;
&lt;p&gt;Input:&lt;br /&gt;
&lt;div class="geshifilter"&gt;&lt;div class="python geshifilter-python" style="font-family:monospace;"&gt;&lt;ol&gt;&lt;li style="font-family: monospace; font-weight: normal;"&gt;&lt;div style="font-family: monospace; font-weight: normal; font-style: normal"&gt;chrismasTree = &lt;span style="color: black;"&gt;&amp;#91;&lt;/span&gt;&lt;span style="color: black;"&gt;&amp;#91;&lt;/span&gt;&lt;span style="color: #ff4500;"&gt;75&lt;/span&gt;&lt;span style="color: black;"&gt;&amp;#93;&lt;/span&gt;,&lt;/div&gt;&lt;/li&gt;
&lt;li style="font-family: monospace; font-weight: normal;"&gt;&lt;div style="font-family: monospace; font-weight: normal; font-style: normal"&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &lt;span style="color: black;"&gt;&amp;#91;&lt;/span&gt;&lt;span style="color: #ff4500;"&gt;95&lt;/span&gt;,&lt;span style="color: #ff4500;"&gt;64&lt;/span&gt;&lt;span style="color: black;"&gt;&amp;#93;&lt;/span&gt;,&lt;/div&gt;&lt;/li&gt;
&lt;li style="font-family: monospace; font-weight: normal;"&gt;&lt;div style="font-family: monospace; font-weight: normal; font-style: normal"&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &lt;span style="color: black;"&gt;&amp;#91;&lt;/span&gt;&lt;span style="color: #ff4500;"&gt;17&lt;/span&gt;,&lt;span style="color: #ff4500;"&gt;47&lt;/span&gt;,&lt;span style="color: #ff4500;"&gt;82&lt;/span&gt;&lt;span style="color: black;"&gt;&amp;#93;&lt;/span&gt;,&lt;/div&gt;&lt;/li&gt;
&lt;li style="font-family: monospace; font-weight: normal;"&gt;&lt;div style="font-family: monospace; font-weight: normal; font-style: normal"&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &lt;span style="color: black;"&gt;&amp;#91;&lt;/span&gt;&lt;span style="color: #ff4500;"&gt;18&lt;/span&gt;,&lt;span style="color: #ff4500;"&gt;35&lt;/span&gt;,&lt;span style="color: #ff4500;"&gt;87&lt;/span&gt;,&lt;span style="color: #ff4500;"&gt;10&lt;/span&gt;&lt;span style="color: black;"&gt;&amp;#93;&lt;/span&gt;,&lt;/div&gt;&lt;/li&gt;
&lt;li style="font-family: monospace; font-weight: normal;"&gt;&lt;div style="font-family: monospace; font-weight: normal; font-style: normal"&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &lt;span style="color: black;"&gt;&amp;#91;&lt;/span&gt;&lt;span style="color: #ff4500;"&gt;20&lt;/span&gt;, &lt;span style="color: #ff4500;"&gt;4&lt;/span&gt;,&lt;span style="color: #ff4500;"&gt;82&lt;/span&gt;,&lt;span style="color: #ff4500;"&gt;47&lt;/span&gt;,&lt;span style="color: #ff4500;"&gt;65&lt;/span&gt;&lt;span style="color: black;"&gt;&amp;#93;&lt;/span&gt;,&lt;/div&gt;&lt;/li&gt;
&lt;li style="font-family: monospace; font-weight: normal;"&gt;&lt;div style="font-family: monospace; font-weight: normal; font-style: normal"&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &lt;span style="color: black;"&gt;&amp;#91;&lt;/span&gt;&lt;span style="color: #ff4500;"&gt;19&lt;/span&gt;, &lt;span style="color: #ff4500;"&gt;1&lt;/span&gt;,&lt;span style="color: #ff4500;"&gt;23&lt;/span&gt;,&lt;span style="color: #ff4500;"&gt;75&lt;/span&gt;, &lt;span style="color: #ff4500;"&gt;3&lt;/span&gt;,&lt;span style="color: #ff4500;"&gt;34&lt;/span&gt;&lt;span style="color: black;"&gt;&amp;#93;&lt;/span&gt; &lt;span style="color: black;"&gt;&amp;#93;&lt;/span&gt;&lt;/div&gt;&lt;/li&gt;
&lt;li style="font-family: monospace; font-weight: normal;"&gt;&lt;div style="font-family: monospace; font-weight: normal; font-style: normal"&gt;&lt;span style="color: #ff7700;font-weight:bold;"&gt;print&lt;/span&gt; qbertRun&lt;span style="color: black;"&gt;&amp;#40;&lt;/span&gt;chrismasTree&lt;span style="color: black;"&gt;&amp;#41;&lt;/span&gt;&lt;/div&gt;&lt;/li&gt;
&lt;/ol&gt;&lt;/div&gt;&lt;/div&gt;&lt;/p&gt;
&lt;p&gt;The sum is 465 - try to solve it with a little program. The brute force method will be possible with this small tree.&lt;span class="read-more"&gt;&lt;a href="/christian-harms/qbert-chrismas-tree-puzzle"&gt;&lt;strong&gt;Read more&lt;/strong&gt;&lt;/a&gt;&lt;/span&gt;&lt;/p&gt;

&lt;!--
&lt;rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:trackback="http://madskills.com/public/xml/rss/module/trackback/"&gt;
&lt;rdf:Description rdf:about="http://united-coders.com/christian-harms/qbert-chrismas-tree-puzzle" dc:identifier="http://united-coders.com/christian-harms/qbert-chrismas-tree-puzzle" dc:title="Q*Bert chrismas tree puzzle" trackback:ping="http://united-coders.com/trackback/116" /&gt;
&lt;/rdf:RDF&gt;
--&gt;
&lt;div class='sexybookmarks-default-2510'&gt;&lt;/div&gt;&lt;img src="http://feeds.feedburner.com/~r/united-coders/~4/q-orTy9zR3E" height="1" width="1"/&gt;</description>
 <comments>http://united-coders.com/christian-harms/qbert-chrismas-tree-puzzle#comments</comments>
 <category domain="http://united-coders.com/category/tags/code-puzzle">code puzzle</category>
 <category domain="http://united-coders.com/category/tags/pathfinding">pathfinding</category>
 <category domain="http://united-coders.com/category/tags/project-euler">project euler</category>
 <category domain="http://united-coders.com/category/tags/python">python</category>
 <category domain="http://united-coders.com/category/tags/qbert">q*bert</category>
 <pubDate>Mon, 19 Dec 2011 12:28:05 +0000</pubDate>
 <dc:creator>Christian Harms</dc:creator>
 <guid isPermaLink="false">116 at http://united-coders.com</guid>
<feedburner:origLink>http://united-coders.com/christian-harms/qbert-chrismas-tree-puzzle</feedburner:origLink></item>
<item>
 <title>Automated frontend testing for the lazy. With Firefox, Selenium, Webdriver and Hudson/Jenkins. Now with 50% less programming.</title>
 <link>http://feedproxy.google.com/~r/united-coders/~3/QO5rQQDcX8A/automated-frontend-testing-for-the-lazy-with-firefox-selenium-webdriver-and-hudsonjenkins</link>
 <description>&lt;!--paging_filter--&gt;&lt;p&gt;It's hard to find Chuck Norris, therefor we'll use a SeleniumIDE to record a frontend test, fine tune it and deploy it to a headless Hudson instance, so you don't have to look for yourself all the time.&lt;span class="read-more"&gt;&lt;a href="/nico-heid/automated-frontend-testing-for-the-lazy-with-firefox-selenium-webdriver-and-hudsonjenkins"&gt;&lt;strong&gt;Read more&lt;/strong&gt;&lt;/a&gt;&lt;/span&gt;&lt;/p&gt;

&lt;!--
&lt;rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:trackback="http://madskills.com/public/xml/rss/module/trackback/"&gt;
&lt;rdf:Description rdf:about="http://united-coders.com/nico-heid/automated-frontend-testing-for-the-lazy-with-firefox-selenium-webdriver-and-hudsonjenkins" dc:identifier="http://united-coders.com/nico-heid/automated-frontend-testing-for-the-lazy-with-firefox-selenium-webdriver-and-hudsonjenkins" dc:title="Automated frontend testing for the lazy. With Firefox, Selenium, Webdriver and Hudson/Jenkins. Now with 50% less programming." trackback:ping="http://united-coders.com/trackback/115" /&gt;
&lt;/rdf:RDF&gt;
--&gt;
&lt;div class='sexybookmarks-default-3381'&gt;&lt;/div&gt;&lt;img src="http://feeds.feedburner.com/~r/united-coders/~4/QO5rQQDcX8A" height="1" width="1"/&gt;</description>
 <comments>http://united-coders.com/nico-heid/automated-frontend-testing-for-the-lazy-with-firefox-selenium-webdriver-and-hudsonjenkins#comments</comments>
 <pubDate>Wed, 07 Dec 2011 10:40:45 +0000</pubDate>
 <dc:creator>Nico Heid</dc:creator>
 <guid isPermaLink="false">115 at http://united-coders.com</guid>
<feedburner:origLink>http://united-coders.com/nico-heid/automated-frontend-testing-for-the-lazy-with-firefox-selenium-webdriver-and-hudsonjenkins</feedburner:origLink></item>
<item>
 <title>2011 google Developer Day - all slides and links</title>
 <link>http://feedproxy.google.com/~r/united-coders/~3/D2Y8lPf6sG0/2011-google-developer-day-all-slides-and-links</link>
 <description>&lt;p&gt;After a long saturday in berlin I could write some facts about the talks and list all the news. But the gdd world tour is over and all speaker announced to publish the slides. So I will offer the not-complete list.&lt;span class="read-more"&gt;&lt;a href="/christian-harms/2011-google-developer-day-all-slides-and-links"&gt;&lt;strong&gt;Read more&lt;/strong&gt;&lt;/a&gt;&lt;/span&gt;&lt;/p&gt;
&lt;table border="1" bgcolor="white"&gt;
&lt;thead&gt;
&lt;tr&gt;
&lt;th&gt;Android&lt;/th&gt;
&lt;th&gt;Chrome &amp;amp; HTML5&lt;/th&gt;
&lt;th&gt;Cloud&lt;/th&gt;
&lt;th&gt;Google+&lt;/th&gt;
&lt;/tr&gt;
&lt;/thead&gt;
&lt;tbody&gt;
&lt;tr&gt;
&lt;td&gt;Android Market for Developers (&lt;a href="http://www.youtube.com/watch?v=eyn2jrk8PR0" alt="Android Market for Developers video"&gt;video&lt;/a&gt;)&lt;br /&gt;
 - Rich Hyndman (&lt;a href="https://plus.google.com/115995639636688350464"&gt;G+&lt;/a&gt;)
&lt;/td&gt;
&lt;td&gt;&lt;a href="https://mkw.st/p/gdd11-berlin-a11y/#1"&gt;Making Your Web Apps Accessible Using HTML5 and ChromeVox&lt;/a&gt;&lt;br /&gt;
 - Mike West (&lt;a href="https://mkw.st/+"&gt;G+&lt;/a&gt;, &lt;a href="http://twitter.com/@mikewest"&gt;Twitter&lt;/a&gt; &lt;a href="https://mikewest.org/"&gt;blog&lt;/a&gt;)
&lt;/td&gt;
&lt;td&gt;&lt;a href="http://mano-demos.googlecode.com/svn/trunk/slides/gddplaces2011-de/Geo-Places-API/index.html"&gt;Finding Your Place in the World: Google Places API&lt;/a&gt;&lt;br /&gt;
 - Mano Marks (&lt;a href="https://plus.google.com/107054744026933176373"&gt;G+&lt;/a&gt;, &lt;a href="http://twitter.com/ManoMarks"&gt;twitter&lt;/a&gt; and &lt;a href="http://randommarkers.blogspot.com/"&gt;blog&lt;/a&gt;)
&lt;/td&gt;
&lt;td&gt;Google+ and the +1 Button&lt;br /&gt;
 - Ade Oshineye (&lt;a href="https://plus.google.com/u/0/105037104815911535953"&gt;G+&lt;/a&gt;, &lt;a href="http://twitter.com/ade_oshineye"&gt;twitter&lt;/a&gt; and &lt;a href="http://blog.oshineye.com/"&gt;blog&lt;/a&gt;)
&lt;/td&gt;
&lt;/tr&gt;
&lt;/tbody&gt;&lt;/table&gt;
&lt;!--
&lt;rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:trackback="http://madskills.com/public/xml/rss/module/trackback/"&gt;
&lt;rdf:Description rdf:about="http://united-coders.com/christian-harms/2011-google-developer-day-all-slides-and-links" dc:identifier="http://united-coders.com/christian-harms/2011-google-developer-day-all-slides-and-links" dc:title="2011 google Developer Day - all slides and links" trackback:ping="http://united-coders.com/trackback/114" /&gt;
&lt;/rdf:RDF&gt;
--&gt;
&lt;div class='sexybookmarks-default-5295'&gt;&lt;/div&gt;&lt;img src="http://feeds.feedburner.com/~r/united-coders/~4/D2Y8lPf6sG0" height="1" width="1"/&gt;</description>
 <comments>http://united-coders.com/christian-harms/2011-google-developer-day-all-slides-and-links#comments</comments>
 <category domain="http://united-coders.com/category/tags/berlin">berlin</category>
 <category domain="http://united-coders.com/category/tags/gdd">gdd</category>
 <category domain="http://united-coders.com/category/tags/google">google</category>
 <category domain="http://united-coders.com/category/tags/links">links</category>
 <category domain="http://united-coders.com/category/tags/slide">slide</category>
 <category domain="http://united-coders.com/category/tags/talks">talks</category>
 <pubDate>Thu, 24 Nov 2011 17:02:27 +0000</pubDate>
 <dc:creator>Christian Harms</dc:creator>
 <guid isPermaLink="false">114 at http://united-coders.com</guid>
<feedburner:origLink>http://united-coders.com/christian-harms/2011-google-developer-day-all-slides-and-links</feedburner:origLink></item>
<item>
 <title>On the phone with Mom - Throttle and Delay DOM-Events in Javascript</title>
 <link>http://feedproxy.google.com/~r/united-coders/~3/NI2BR7rWnmU/on-the-phone-with-mom-throttle-and-delay-in-javascript</link>
 <description>&lt;p&gt;Imagine you're on the phone with your mom and she keeps on talking. And talking. And talking. And you keep on listening and listening. And listening. Every now and then your mom will throw in a "you still there?" to which you will murmur "uh huh".&lt;/p&gt;
&lt;p&gt;And while your mom keeps talking, you feel the increasing urge to answer to something she said, but being well raised, you don't want to interrupt her, but wait until she is finished.&lt;/p&gt;
&lt;p&gt;Now imagine being a Javascript (Come on, It's not that hard, is it?).&lt;span class="read-more"&gt;&lt;a href="/matthias-reuter/on-the-phone-with-mom-throttle-and-delay-in-javascript"&gt;&lt;strong&gt;Read more&lt;/strong&gt;&lt;/a&gt;&lt;/span&gt;&lt;/p&gt;

&lt;!--
&lt;rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:trackback="http://madskills.com/public/xml/rss/module/trackback/"&gt;
&lt;rdf:Description rdf:about="http://united-coders.com/matthias-reuter/on-the-phone-with-mom-throttle-and-delay-in-javascript" dc:identifier="http://united-coders.com/matthias-reuter/on-the-phone-with-mom-throttle-and-delay-in-javascript" dc:title="On the phone with Mom - Throttle and Delay DOM-Events in Javascript" trackback:ping="http://united-coders.com/trackback/113" /&gt;
&lt;/rdf:RDF&gt;
--&gt;
&lt;div class='sexybookmarks-default-5898'&gt;&lt;/div&gt;&lt;img src="http://feeds.feedburner.com/~r/united-coders/~4/NI2BR7rWnmU" height="1" width="1"/&gt;</description>
 <comments>http://united-coders.com/matthias-reuter/on-the-phone-with-mom-throttle-and-delay-in-javascript#comments</comments>
 <category domain="http://united-coders.com/category/tags/delay">delay</category>
 <category domain="http://united-coders.com/category/tags/javascript">javascript</category>
 <category domain="http://united-coders.com/category/tags/settimeout">setTimeout</category>
 <category domain="http://united-coders.com/category/tags/throttle">throttle</category>
 <category domain="http://united-coders.com/category/tags/your-mom">your mom</category>
 <pubDate>Thu, 17 Nov 2011 07:10:43 +0000</pubDate>
 <dc:creator>Matthias Reuter</dc:creator>
 <guid isPermaLink="false">113 at http://united-coders.com</guid>
<feedburner:origLink>http://united-coders.com/matthias-reuter/on-the-phone-with-mom-throttle-and-delay-in-javascript</feedburner:origLink></item>
<item>
 <title>Snow is falling - code puzzle</title>
 <link>http://feedproxy.google.com/~r/united-coders/~3/srsTgYwunNU/snow-is-falling-code-puzzle</link>
 <description>&lt;p&gt;Code puzzles are fun and you can solve it with some lines of code. The code puzzle on &lt;a href="http://www.snowisfalling.com"&gt;snowisfalling.com&lt;/a&gt; is a page showing snow is falling up instead down.  After reading the code, sleeping two nights without time to solve it, the simple solution is easy:&lt;/p&gt;
&lt;p&gt;&lt;div class="geshifilter"&gt;&lt;div class="javascript geshifilter-javascript" style="font-family:monospace;"&gt;&lt;ol&gt;&lt;li style="font-family: monospace; font-weight: normal;"&gt;&lt;div style="font-family: monospace; font-weight: normal; font-style: normal"&gt;&amp;nbsp; init &lt;span style="color: #339933;"&gt;:&lt;/span&gt; &lt;span style="color: #003366; font-weight: bold;"&gt;function&lt;/span&gt;&lt;span style="color: #009900;"&gt;&amp;#40;&lt;/span&gt;law&lt;span style="color: #009900;"&gt;&amp;#41;&lt;/span&gt;&lt;span style="color: #009900;"&gt;&amp;#123;&lt;/span&gt;&lt;/div&gt;&lt;/li&gt;
&lt;li style="font-family: monospace; font-weight: normal;"&gt;&lt;div style="font-family: monospace; font-weight: normal; font-style: normal"&gt;&amp;nbsp; &amp;nbsp; String.&lt;span style="color: #660066;"&gt;prototype&lt;/span&gt;.&lt;span style="color: #660066;"&gt;reverse&lt;/span&gt;&lt;span style="color: #339933;"&gt;=&lt;/span&gt;&lt;span style="color: #003366; font-weight: bold;"&gt;function&lt;/span&gt;&lt;span style="color: #009900;"&gt;&amp;#40;&lt;/span&gt;&lt;span style="color: #009900;"&gt;&amp;#41;&lt;/span&gt;&lt;span style="color: #009900;"&gt;&amp;#123;&lt;/span&gt;&lt;span style="color: #000066; font-weight: bold;"&gt;return&lt;/span&gt; &lt;span style="color: #000066; font-weight: bold;"&gt;this&lt;/span&gt;.&lt;span style="color: #660066;"&gt;split&lt;/span&gt;&lt;span style="color: #009900;"&gt;&amp;#40;&lt;/span&gt;&lt;span style="color: #3366CC;"&gt;&amp;quot;&amp;quot;&lt;/span&gt;&lt;span style="color: #009900;"&gt;&amp;#41;&lt;/span&gt;.&lt;span style="color: #660066;"&gt;reverse&lt;/span&gt;&lt;span style="color: #009900;"&gt;&amp;#40;&lt;/span&gt;&lt;span style="color: #009900;"&gt;&amp;#41;&lt;/span&gt;.&lt;span style="color: #660066;"&gt;join&lt;/span&gt;&lt;span style="color: #009900;"&gt;&amp;#40;&lt;/span&gt;&lt;span style="color: #3366CC;"&gt;&amp;quot;&amp;quot;&lt;/span&gt;&lt;span style="color: #009900;"&gt;&amp;#41;&lt;/span&gt;&lt;span style="color: #339933;"&gt;;&lt;/span&gt;&lt;span style="color: #009900;"&gt;&amp;#125;&lt;/span&gt;&lt;/div&gt;&lt;/li&gt;
&lt;li style="font-family: monospace; font-weight: normal;"&gt;&lt;div style="font-family: monospace; font-weight: normal; font-style: normal"&gt;&amp;nbsp; &amp;nbsp; &lt;span style="color: #000066; font-weight: bold;"&gt;this&lt;/span&gt;.&lt;span style="color: #660066;"&gt;law&lt;/span&gt; &lt;span style="color: #339933;"&gt;=&lt;/span&gt; &lt;span style="color: #009900;"&gt;&amp;#123;&lt;/span&gt;&lt;span style="color: #009900;"&gt;&amp;#125;&lt;/span&gt;&lt;span style="color: #339933;"&gt;;&lt;/span&gt;&lt;/div&gt;&lt;/li&gt;
&lt;li style="font-family: monospace; font-weight: normal;"&gt;&lt;div style="font-family: monospace; font-weight: normal; font-style: normal"&gt;&amp;nbsp; &amp;nbsp; &lt;span style="color: #000066; font-weight: bold;"&gt;for&lt;/span&gt; &lt;span style="color: #009900;"&gt;&amp;#40;&lt;/span&gt;&lt;span style="color: #003366; font-weight: bold;"&gt;var&lt;/span&gt; k &lt;span style="color: #000066; font-weight: bold;"&gt;in&lt;/span&gt; law&lt;span style="color: #009900;"&gt;&amp;#41;&lt;/span&gt; &lt;span style="color: #009900;"&gt;&amp;#123;&lt;/span&gt; &lt;span style="color: #000066; font-weight: bold;"&gt;this&lt;/span&gt;.&lt;span style="color: #660066;"&gt;law&lt;/span&gt;&lt;span style="color: #009900;"&gt;&amp;#91;&lt;/span&gt;k.&lt;span style="color: #660066;"&gt;reverse&lt;/span&gt;&lt;span style="color: #009900;"&gt;&amp;#40;&lt;/span&gt;&lt;span style="color: #009900;"&gt;&amp;#41;&lt;/span&gt;&lt;span style="color: #009900;"&gt;&amp;#93;&lt;/span&gt; &lt;span style="color: #339933;"&gt;=&lt;/span&gt; law&lt;span style="color: #009900;"&gt;&amp;#91;&lt;/span&gt;k&lt;span style="color: #009900;"&gt;&amp;#93;&lt;/span&gt;&lt;span style="color: #339933;"&gt;;&lt;/span&gt; &lt;span style="color: #009900;"&gt;&amp;#125;&lt;/span&gt;&lt;span style="color: #339933;"&gt;;&lt;/span&gt; &lt;/div&gt;&lt;/li&gt;
&lt;/ol&gt;&lt;/div&gt;&lt;/div&gt;&lt;span class="read-more"&gt;&lt;a href="/christian-harms/snow-is-falling-code-puzzle"&gt;&lt;strong&gt;Read more&lt;/strong&gt;&lt;/a&gt;&lt;/span&gt;&lt;/p&gt;

&lt;!--
&lt;rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:trackback="http://madskills.com/public/xml/rss/module/trackback/"&gt;
&lt;rdf:Description rdf:about="http://united-coders.com/christian-harms/snow-is-falling-code-puzzle" dc:identifier="http://united-coders.com/christian-harms/snow-is-falling-code-puzzle" dc:title="Snow is falling - code puzzle" trackback:ping="http://united-coders.com/trackback/109" /&gt;
&lt;/rdf:RDF&gt;
--&gt;
&lt;div class='sexybookmarks-default-6973'&gt;&lt;/div&gt;&lt;img src="http://feeds.feedburner.com/~r/united-coders/~4/srsTgYwunNU" height="1" width="1"/&gt;</description>
 <comments>http://united-coders.com/christian-harms/snow-is-falling-code-puzzle#comments</comments>
 <category domain="http://united-coders.com/category/tags/code-puzzle">code puzzle</category>
 <category domain="http://united-coders.com/category/tags/javascript">javascript</category>
 <pubDate>Tue, 15 Nov 2011 08:15:04 +0000</pubDate>
 <dc:creator>Christian Harms</dc:creator>
 <guid isPermaLink="false">109 at http://united-coders.com</guid>
<feedburner:origLink>http://united-coders.com/christian-harms/snow-is-falling-code-puzzle</feedburner:origLink></item>
</channel>
</rss>

