<?xml version="1.0" encoding="utf-8" standalone="yes"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:content="http://purl.org/rss/1.0/modules/content/">
  <channel>
    <title>javascript on Amjith Ramanujam</title>
    <link>https://amjith.com/tags/javascript/</link>
    <description>Recent content in javascript on Amjith Ramanujam</description>
    <generator>Hugo -- gohugo.io</generator>
    <lastBuildDate>Mon, 26 Dec 2016 00:00:00 +0000</lastBuildDate><atom:link href="https://amjith.com/tags/javascript/index.xml" rel="self" type="application/rss+xml" />
    <item>
      <title>Alphabet Race - a kid&#39;s game</title>
      <link>https://amjith.com/blog/alphabet-race-a-kids-game/</link>
      <pubDate>Mon, 26 Dec 2016 00:00:00 +0000</pubDate>
      
      <guid>https://amjith.com/blog/alphabet-race-a-kids-game/</guid>
      <description>&lt;p&gt;TL;DR: I built a little truck &amp;ldquo;&lt;a href=&#34;http://alphabetrace.itsybits.xyz/&#34;&gt;game&lt;/a&gt;&amp;rdquo; to teach my son alphabets.&lt;/p&gt;
&lt;p&gt;&lt;img loading=&#34;lazy&#34; src=&#34;https://phaven-prod.s3.amazonaws.com/files/image_part/asset/1817912/5ZR5tcdhp9h8B0RvMGt5OqfzwfU/large_Truck_Race__.png&#34; alt=&#34;&#34;  /&gt;
&lt;/p&gt;
&lt;p&gt;I started watching &lt;a href=&#34;http://javascript30.com&#34; title=&#34;Link: http://javascript30.com&#34;&gt;http://javascript30.com&lt;/a&gt; a couple of days ago. It&amp;rsquo;s a series of 30 videos that uses vanilla Javascript to do amazing things.&lt;/p&gt;
&lt;p&gt;I have only done the first two videos in the series. Based on what I learned in those two videos, I decided to write a small game. My son is a fan of trucks, so I cobbled together a truck race that teaches him alphabets.&lt;/p&gt;
&lt;p&gt;The game is written using the latest version of Javascript. It will not work in old browsers (sorry). It is not designed for tablets or phones, you need a keyboard to play this game.&lt;/p&gt;
&lt;p&gt;Game: &lt;a href=&#34;http://alphabetrace.itsybits.xyz/&#34;&gt;http://alphabetrace.itsybits.xyz/&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;Source: &lt;a href=&#34;https://github.com/amjith/alphabet_race/&#34;&gt;https://github.com/amjith/alphabet_race/&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;My goal was to create an educational game that is entertaining but not addictive. &lt;/p&gt;
&lt;p&gt;You can send me feedback about the game via &lt;a href=&#34;https://twitter.com/amjithr&#34;&gt;twitter&lt;/a&gt; or &lt;a href=&#34;mailto:alphabetrace@itsybits.xyz&#34;&gt;email&lt;/a&gt;.&lt;/p&gt;
</description>
      <content:encoded><![CDATA[<p>TL;DR: I built a little truck &ldquo;<a href="http://alphabetrace.itsybits.xyz/">game</a>&rdquo; to teach my son alphabets.</p>
<p><img loading="lazy" src="https://phaven-prod.s3.amazonaws.com/files/image_part/asset/1817912/5ZR5tcdhp9h8B0RvMGt5OqfzwfU/large_Truck_Race__.png" alt=""  />
</p>
<p>I started watching <a href="http://javascript30.com" title="Link: http://javascript30.com">http://javascript30.com</a> a couple of days ago. It&rsquo;s a series of 30 videos that uses vanilla Javascript to do amazing things.</p>
<p>I have only done the first two videos in the series. Based on what I learned in those two videos, I decided to write a small game. My son is a fan of trucks, so I cobbled together a truck race that teaches him alphabets.</p>
<p>The game is written using the latest version of Javascript. It will not work in old browsers (sorry). It is not designed for tablets or phones, you need a keyboard to play this game.</p>
<p>Game: <a href="http://alphabetrace.itsybits.xyz/">http://alphabetrace.itsybits.xyz/</a></p>
<p>Source: <a href="https://github.com/amjith/alphabet_race/">https://github.com/amjith/alphabet_race/</a></p>
<p>My goal was to create an educational game that is entertaining but not addictive. </p>
<p>You can send me feedback about the game via <a href="https://twitter.com/amjithr">twitter</a> or <a href="mailto:alphabetrace@itsybits.xyz">email</a>.</p>
]]></content:encoded>
    </item>
    
    <item>
      <title>Coffescript - A Better Way to JS</title>
      <link>https://amjith.com/blog/coffescript-a-better-way-to-js-tag-javascript/</link>
      <pubDate>Tue, 08 Mar 2011 00:00:00 +0000</pubDate>
      
      <guid>https://amjith.com/blog/coffescript-a-better-way-to-js-tag-javascript/</guid>
      <description>&lt;p&gt;I went to attend the &lt;a href=&#34;http://utruby.org/&#34;&gt;URUG&lt;/a&gt; (Utah Ruby Users Group) meeting today because a little &lt;a href=&#34;http://twitter.com/#!/dbrady&#34;&gt;birdy&lt;/a&gt; said there will be some Javascript related presentations. &lt;/p&gt;
&lt;p&gt;I got to see an awesome presentation by &lt;a href=&#34;http://tadthorley.com&#34;&gt;Tad Thorley&lt;/a&gt; on &lt;a href=&#34;http://jashkenas.github.com/coffee-script/&#34;&gt;Coffeescript&lt;/a&gt;. It&amp;rsquo;s a minimalistic language that compiles to Javascript. Take a Javascript program and start removing unwanted literals from the syntax until you can&amp;rsquo;t remove anymore, that&amp;rsquo;s how a Coffeescript program looks like. &lt;/p&gt;
&lt;p&gt;Its the kind of minimalism that makes you appreciate the beauty of code. It combines the good parts of Python and Ruby syntax. There are some side-by-side &lt;a href=&#34;http://jashkenas.github.com/coffee-script/#literals&#34;&gt;comparisons&lt;/a&gt; of Coffeescript and Javascript code on the Coffeescript website.&lt;/p&gt;
&lt;p&gt;Tad might post his slides (which are just short snippets of code) on github and I&amp;rsquo;ll try to link it here.&lt;/p&gt;
&lt;p&gt;Update: Coffee Script Presentation - &lt;a href=&#34;https://github.com/phaedryx/coffeescript-presentation&#34;&gt;https://github.com/phaedryx/coffeescript-presentation&lt;/a&gt;&lt;/p&gt;
</description>
      <content:encoded><![CDATA[<p>I went to attend the <a href="http://utruby.org/">URUG</a> (Utah Ruby Users Group) meeting today because a little <a href="http://twitter.com/#!/dbrady">birdy</a> said there will be some Javascript related presentations. </p>
<p>I got to see an awesome presentation by <a href="http://tadthorley.com">Tad Thorley</a> on <a href="http://jashkenas.github.com/coffee-script/">Coffeescript</a>. It&rsquo;s a minimalistic language that compiles to Javascript. Take a Javascript program and start removing unwanted literals from the syntax until you can&rsquo;t remove anymore, that&rsquo;s how a Coffeescript program looks like. </p>
<p>Its the kind of minimalism that makes you appreciate the beauty of code. It combines the good parts of Python and Ruby syntax. There are some side-by-side <a href="http://jashkenas.github.com/coffee-script/#literals">comparisons</a> of Coffeescript and Javascript code on the Coffeescript website.</p>
<p>Tad might post his slides (which are just short snippets of code) on github and I&rsquo;ll try to link it here.</p>
<p>Update: Coffee Script Presentation - <a href="https://github.com/phaedryx/coffeescript-presentation">https://github.com/phaedryx/coffeescript-presentation</a></p>
]]></content:encoded>
    </item>
    
  </channel>
</rss>
