<?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>Learning is bateru</title>
	<atom:link href="http://bateru.com/news/feed/" rel="self" type="application/rss+xml" />
	<link>http://bateru.com/news</link>
	<description>Writing software and articles to help improve understanding. - Larry Battle</description>
	<lastBuildDate>Thu, 17 May 2012 03:26:39 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Code of the Day: Javascript Decimal Expansion a.k.a Division</title>
		<link>http://bateru.com/news/2012/05/code-of-the-day-javascript-decimal-expansion-a-k-a-division/</link>
		<comments>http://bateru.com/news/2012/05/code-of-the-day-javascript-decimal-expansion-a-k-a-division/#comments</comments>
		<pubDate>Wed, 16 May 2012 22:54:05 +0000</pubDate>
		<dc:creator>Larry</dc:creator>
				<category><![CDATA[Javascript]]></category>
		<category><![CDATA[math]]></category>
		<category><![CDATA[decimal expansion]]></category>
		<category><![CDATA[tutorial]]></category>

		<guid isPermaLink="false">http://bateru.com/news/?p=1049</guid>
		<description><![CDATA[Today&#8217;s Code of the Day is about decimal expansion, which is just division. So you might be asking yourself, &#8220;if decimal expansion is divsion. Then why not use a/b?&#8221;. Well the problem is that Javascript has a ton of problems &#8230;<p class="read-more"><a href="http://bateru.com/news/2012/05/code-of-the-day-javascript-decimal-expansion-a-k-a-division/">Read more &#187;</a></p>]]></description>
		<wfw:commentRss>http://bateru.com/news/2012/05/code-of-the-day-javascript-decimal-expansion-a-k-a-division/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Code of the Day: Javascript, Fix for isNaN</title>
		<link>http://bateru.com/news/2012/05/code-of-the-day-javascript-fixed-for-isnan/</link>
		<comments>http://bateru.com/news/2012/05/code-of-the-day-javascript-fixed-for-isnan/#comments</comments>
		<pubDate>Mon, 14 May 2012 22:25:45 +0000</pubDate>
		<dc:creator>Larry</dc:creator>
				<category><![CDATA[Javascript]]></category>
		<category><![CDATA[code of the day]]></category>
		<category><![CDATA[isNaN]]></category>
		<category><![CDATA[math]]></category>
		<category><![CDATA[numbers]]></category>

		<guid isPermaLink="false">http://bateru.com/news/?p=1057</guid>
		<description><![CDATA[Javascript is a dynamically typed langauges. This feature causes for Arrays, Booleans, and other types to be converted to a numeric values depending on usage. However this feature can cause headarches when trying to detect numbers. For example, isNaN() detects &#8230;<p class="read-more"><a href="http://bateru.com/news/2012/05/code-of-the-day-javascript-fixed-for-isnan/">Read more &#187;</a></p>]]></description>
		<wfw:commentRss>http://bateru.com/news/2012/05/code-of-the-day-javascript-fixed-for-isnan/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Code of the Day: Javascript, Prime Factors of a Number</title>
		<link>http://bateru.com/news/2012/05/code-of-the-day-javascript-prime-factors-of-a-number/</link>
		<comments>http://bateru.com/news/2012/05/code-of-the-day-javascript-prime-factors-of-a-number/#comments</comments>
		<pubDate>Fri, 11 May 2012 23:05:30 +0000</pubDate>
		<dc:creator>Larry</dc:creator>
				<category><![CDATA[Javascript]]></category>
		<category><![CDATA[software]]></category>
		<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[code of the day]]></category>
		<category><![CDATA[math]]></category>
		<category><![CDATA[prime factorization]]></category>
		<category><![CDATA[prime factors]]></category>

		<guid isPermaLink="false">http://bateru.com/news/?p=1054</guid>
		<description><![CDATA[Javascript: Prime Factorization Today&#8217;s code is a enhancement of Code Renaissance&#8216;s version of &#8220;Finding Prime Numbers in Javascript&#8221;. Main difference are the following. Faster performance by eliminating recursion and caching Math.sqrt. Whole numbers bigger than 1 return an empty array, &#8230;<p class="read-more"><a href="http://bateru.com/news/2012/05/code-of-the-day-javascript-prime-factors-of-a-number/">Read more &#187;</a></p>]]></description>
		<wfw:commentRss>http://bateru.com/news/2012/05/code-of-the-day-javascript-prime-factors-of-a-number/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Code of the Day: Javascript, Convert decimal to a simplified fraction</title>
		<link>http://bateru.com/news/2012/05/code-of-the-day-javascript-convert-decimal-to-a-simplified-fraction/</link>
		<comments>http://bateru.com/news/2012/05/code-of-the-day-javascript-convert-decimal-to-a-simplified-fraction/#comments</comments>
		<pubDate>Wed, 09 May 2012 00:09:37 +0000</pubDate>
		<dc:creator>Larry</dc:creator>
				<category><![CDATA[Javascript]]></category>
		<category><![CDATA[code of the day]]></category>
		<category><![CDATA[stackoverflow.com]]></category>

		<guid isPermaLink="false">http://bateru.com/news/?p=1047</guid>
		<description><![CDATA[Inspired from a stackoverflow.com question. Convert decimal amount to text string fraction in Javascript? Code /** * @author Larry Battle &#60;http://bateru.com/news/contact-me&#62; * @license MIT * @version 1.0 * @date May 08, 2012 * @purpose To provide a function that converts &#8230;<p class="read-more"><a href="http://bateru.com/news/2012/05/code-of-the-day-javascript-convert-decimal-to-a-simplified-fraction/">Read more &#187;</a></p>]]></description>
		<wfw:commentRss>http://bateru.com/news/2012/05/code-of-the-day-javascript-convert-decimal-to-a-simplified-fraction/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Qunit Template</title>
		<link>http://bateru.com/news/2012/05/qunit-template/</link>
		<comments>http://bateru.com/news/2012/05/qunit-template/#comments</comments>
		<pubDate>Tue, 08 May 2012 20:00:19 +0000</pubDate>
		<dc:creator>Larry</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[Javascript]]></category>
		<category><![CDATA[qunit]]></category>

		<guid isPermaLink="false">http://bateru.com/news/?p=1042</guid>
		<description><![CDATA[QUnit JSFiddle.net Template http://jsfiddle.net/tWyHg/1/]]></description>
		<wfw:commentRss>http://bateru.com/news/2012/05/qunit-template/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>A quick comparison between == vs equals in Java</title>
		<link>http://bateru.com/news/2012/04/a-quick-comparison-between-vs-equals-in-java/</link>
		<comments>http://bateru.com/news/2012/04/a-quick-comparison-between-vs-equals-in-java/#comments</comments>
		<pubDate>Thu, 19 Apr 2012 17:25:36 +0000</pubDate>
		<dc:creator>Larry</dc:creator>
				<category><![CDATA[java]]></category>
		<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[tutorial]]></category>

		<guid isPermaLink="false">http://bateru.com/news/?p=1043</guid>
		<description><![CDATA[/** @author Larry Battle &#60;bateru.com/news&#62; @date April 19, 2012 @purpose To show a simple comparison between == and equals(). */ &#160; public class SameObjectTest &#123; public static boolean areAssertsEnabled&#40;&#41;&#123; boolean isEnabled = false; try&#123; assert false: &#34;Yes asserts are enabled.&#34;; &#8230;<p class="read-more"><a href="http://bateru.com/news/2012/04/a-quick-comparison-between-vs-equals-in-java/">Read more &#187;</a></p>]]></description>
		<wfw:commentRss>http://bateru.com/news/2012/04/a-quick-comparison-between-vs-equals-in-java/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Video of 5 Autonomous Robots</title>
		<link>http://bateru.com/news/2012/04/video-of-5-autonomous-robots/</link>
		<comments>http://bateru.com/news/2012/04/video-of-5-autonomous-robots/#comments</comments>
		<pubDate>Mon, 16 Apr 2012 03:04:33 +0000</pubDate>
		<dc:creator>Larry</dc:creator>
				<category><![CDATA[amazing]]></category>
		<category><![CDATA[robots]]></category>
		<category><![CDATA[Science]]></category>
		<category><![CDATA[software]]></category>
		<category><![CDATA[video]]></category>
		<category><![CDATA[science]]></category>

		<guid isPermaLink="false">http://bateru.com/news/?p=1039</guid>
		<description><![CDATA[New Honda Robot ASIMO 2012 &#8211; All features and behaviors BigDog Evolution A Swarm of Nano Quadrotors Freaky Life Like A.I Robot Awesome Robot For Kids, 15 inches High]]></description>
		<wfw:commentRss>http://bateru.com/news/2012/04/video-of-5-autonomous-robots/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>4 Notepad++ Plugins for Javascript Developers</title>
		<link>http://bateru.com/news/2012/04/4-notepad-plugins-for-javascript-developers/</link>
		<comments>http://bateru.com/news/2012/04/4-notepad-plugins-for-javascript-developers/#comments</comments>
		<pubDate>Sun, 01 Apr 2012 08:38:09 +0000</pubDate>
		<dc:creator>Larry</dc:creator>
				<category><![CDATA[review]]></category>
		<category><![CDATA[software]]></category>
		<category><![CDATA[notepad++]]></category>
		<category><![CDATA[plugins]]></category>

		<guid isPermaLink="false">http://bateru.com/news/?p=1022</guid>
		<description><![CDATA[Here are some Notepad++ plugins for JavaScript Developers that I found useful. Tip: You can install all the plugins using Notepad++ Plugins Manager located in the &#8220;Plugins&#8221; Menu. JSLint Description: JSLint is a static code analysis tool used in software &#8230;<p class="read-more"><a href="http://bateru.com/news/2012/04/4-notepad-plugins-for-javascript-developers/">Read more &#187;</a></p>]]></description>
		<wfw:commentRss>http://bateru.com/news/2012/04/4-notepad-plugins-for-javascript-developers/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Code of the day: Get unique objects from an array of json objects.</title>
		<link>http://bateru.com/news/2012/03/code-of-the-day-get-unique-objects-from-an-array-of-json-objects/</link>
		<comments>http://bateru.com/news/2012/03/code-of-the-day-get-unique-objects-from-an-array-of-json-objects/#comments</comments>
		<pubDate>Sun, 01 Apr 2012 02:42:07 +0000</pubDate>
		<dc:creator>Larry</dc:creator>
				<category><![CDATA[Javascript]]></category>
		<category><![CDATA[underscore]]></category>
		<category><![CDATA[json]]></category>

		<guid isPermaLink="false">http://bateru.com/news/?p=1016</guid>
		<description><![CDATA[Inspired from Removing duplicate objects with Underscore for Javascript Source: /** @function _.uniqObjects @require Underscore.js and json.stringify @purpose return an array of objects without duplicated objects. */ _.uniqObjects = function&#40; arr &#41;&#123; return _.uniq&#40; _.collect&#40; arr, function&#40; x &#41;&#123; return &#8230;<p class="read-more"><a href="http://bateru.com/news/2012/03/code-of-the-day-get-unique-objects-from-an-array-of-json-objects/">Read more &#187;</a></p>]]></description>
		<wfw:commentRss>http://bateru.com/news/2012/03/code-of-the-day-get-unique-objects-from-an-array-of-json-objects/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Reimplementation of Number.prototype.toFixed</title>
		<link>http://bateru.com/news/2012/03/reimplementation-of-number-prototype-tofixed/</link>
		<comments>http://bateru.com/news/2012/03/reimplementation-of-number-prototype-tofixed/#comments</comments>
		<pubDate>Sun, 01 Apr 2012 01:53:33 +0000</pubDate>
		<dc:creator>Larry</dc:creator>
				<category><![CDATA[Javascript]]></category>
		<category><![CDATA[Tutorials]]></category>

		<guid isPermaLink="false">http://bateru.com/news/?p=1004</guid>
		<description><![CDATA[Number.prototype.toFixed was giving me too many problems, so I just rewrote it. There&#8217;s the source. /** @author Larry Battle &#60;a alt=&#34;contact me&#34; href=&#34;bateru.com/news/contact&#34;&#62;Contact Me&#60;/a&#62; @date Mar 30, 2012 @purpose Provide the fix for Number.prototype.toFixed() function. @info source at http://bateru.com/news/2012/03/reimplementation-of-number-prototype-tofixed */ &#8230;<p class="read-more"><a href="http://bateru.com/news/2012/03/reimplementation-of-number-prototype-tofixed/">Read more &#187;</a></p>]]></description>
		<wfw:commentRss>http://bateru.com/news/2012/03/reimplementation-of-number-prototype-tofixed/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

