<?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: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/" xmlns:feedburner="http://rssnamespace.org/feedburner/ext/1.0" version="2.0">

<channel>
	<title>Jeejo Pallayi</title>
	
	<link>http://www.pallayi.com/blog</link>
	<description>A Technology Blog - {Connect,Communicate,Collaborate}</description>
	<lastBuildDate>Tue, 11 Jan 2011 05:42:36 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.4</generator>
		<atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="self" type="application/rss+xml" href="http://feeds.feedburner.com/jeejopallayi" /><feedburner:info uri="jeejopallayi" /><atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="hub" href="http://pubsubhubbub.appspot.com/" /><item>
		<title>Starting Out on Erlang</title>
		<link>http://feedproxy.google.com/~r/jeejopallayi/~3/X10dC8D6nUU/</link>
		<comments>http://www.pallayi.com/blog/programming/starting-out-on-erlang/#comments</comments>
		<pubDate>Tue, 11 Jan 2011 05:40:59 +0000</pubDate>
		<dc:creator>Jeejo Pallayi</dc:creator>
				<category><![CDATA[Programming]]></category>

		<guid isPermaLink="false">http://www.pallayi.com/blog/?p=42</guid>
		<description><![CDATA[Yesterday was rather interesting. I had a great chat with one of the guys who started developing on Erlang and had the pleasure of testing his product out.  It worked well and I was quite impressed with his MUD software. ...]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.pallayi.com/blog/uncategorized/starting-out-on-erlang/"><img class="alignleft" style="border: 4px solid white;" title="Erlang Code" src="http://farm4.static.flickr.com/3007/2628814458_82cd9db6f9_o.png" alt="Erlang Code" width="248" height="202" /></a>Yesterday was rather interesting. I had a great chat with one of the guys who started developing on Erlang and had the pleasure of testing his product out.  It worked well and I was quite impressed with his MUD software. Well, I&#8217;m reading more from <a href="http://learnyousomeerlang.com/" target="_blank">LYSE</a> tonight and part of where I&#8217;m reading&#8230;</p>
<pre>20&gt; [1 | []].
[1]
21&gt; [2 | [1 | []]].
[2,1]
22&gt; [3 | [2 | [1 | []] ] ].
[3,2,1]</pre>
<p>-jp</p>
<img src="http://feeds.feedburner.com/~r/jeejopallayi/~4/X10dC8D6nUU" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.pallayi.com/blog/programming/starting-out-on-erlang/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://www.pallayi.com/blog/programming/starting-out-on-erlang/</feedburner:origLink></item>
		<item>
		<title>Erlang</title>
		<link>http://feedproxy.google.com/~r/jeejopallayi/~3/-dGQUKzs_04/</link>
		<comments>http://www.pallayi.com/blog/programming/erlang/#comments</comments>
		<pubDate>Sat, 08 Jan 2011 00:16:07 +0000</pubDate>
		<dc:creator>Jeejo Pallayi</dc:creator>
				<category><![CDATA[Programming]]></category>
		<category><![CDATA[C#]]></category>
		<category><![CDATA[Erlang]]></category>
		<category><![CDATA[Functional Programming]]></category>
		<category><![CDATA[Java]]></category>
		<category><![CDATA[Learn you some erlang]]></category>
		<category><![CDATA[tutorial]]></category>

		<guid isPermaLink="false">http://www.pallayi.com/blog/?p=35</guid>
		<description><![CDATA[I really wanted to start off with a language and I contemplated many languages such as Python and Ruby for this particular project that I have in mind.  I needed concurrency and SMP support out of the box as one of the ...]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.pallayi.com/blog/erlang/"><img class="alignleft" style="border: 5px solid white;" title="Erlang" src="http://farm3.static.flickr.com/2479/3639728351_70da435711_o.gif" alt="Erlang" width="114" height="96" /></a></p>
<p>I really wanted to start off with a language and I contemplated many languages such as Python and Ruby for this particular project that I have in mind.  I needed concurrency and SMP support out of the box as one of the features.  I did not however needed any sort of graphics or anything but a high performance server app that constantly dumps and reads data from a database.</p>
<p>And so I decided to learn Erlang.</p>
<p>Most of the books that I&#8217;m referring to are talking about how I should have some sort of experience in Java or C.  I have neither, but just some scripting experience in Windows and Unix. I totally think that this is going to be a huge challenge to learn a functional language without any experience in traditional programming languages such as C, Java or even C#. I think I&#8217;m going to give my best to understand functional languages and Erlang.  I think if it doesn&#8217;t go well, then I think I have to turn to Java or C to understand programming in general and create a few simple programs to get my feet in the water.</p>
<p>But I&#8217;m also intrigued by the idea of learning Erlang as it is and take it as a challenge.  Obiviously I&#8217;m going to be reading a lot and talking with people on irc channels such as #erlang and #erang-otp at freenode.</p>
<p>Although I have books to read, I&#8217;m starting off here at this website http://www.learnyousomeerlang.com/</p>
<p>I will keep you all posted on the progress of what I&#8217;m learning.</p>
<p>-jp</p>
<img src="http://feeds.feedburner.com/~r/jeejopallayi/~4/-dGQUKzs_04" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.pallayi.com/blog/programming/erlang/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://www.pallayi.com/blog/programming/erlang/</feedburner:origLink></item>
		<item>
		<title>Programming</title>
		<link>http://feedproxy.google.com/~r/jeejopallayi/~3/M0fYab_MrrA/</link>
		<comments>http://www.pallayi.com/blog/programming/programming/#comments</comments>
		<pubDate>Wed, 29 Dec 2010 01:57:06 +0000</pubDate>
		<dc:creator>Jeejo Pallayi</dc:creator>
				<category><![CDATA[Programming]]></category>
		<category><![CDATA[C Sharp]]></category>
		<category><![CDATA[C#]]></category>
		<category><![CDATA[CentOS]]></category>
		<category><![CDATA[DB]]></category>
		<category><![CDATA[Java]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[noSQL]]></category>
		<category><![CDATA[OpenNMS]]></category>
		<category><![CDATA[PostgresSQL]]></category>
		<category><![CDATA[Python]]></category>
		<category><![CDATA[SQL]]></category>
		<category><![CDATA[Unix]]></category>

		<guid isPermaLink="false">http://www.pallayi.com/blog/2010/12/29/programming/</guid>
		<description><![CDATA[Well, I really have never ever programmed anything. I have never learned to do that but I think it is time that I learned a few things in programming. As a start, I’m going to look at C# since I ...]]></description>
			<content:encoded><![CDATA[<p><img style="display: inline; float: left" align="left" src="http://farm4.static.flickr.com/3164/2916349546_b5fd65e18b_o.jpg" width="240" height="240" /></p>
<p>Well, I really have never ever programmed anything. I have never learned to do that but I think it is time that I learned a few things in programming. As a start, I’m going to look at C# since I have some background and more work experience on Windows than Unix or Linux. Although I started my career in computers with Unix, it has been quite a few years since I have actively worked on it. But I have started off with CentOS again, testing OpenNMS that utilizes Java and PostegresSQL DB.&#160; It has been a good experience so far with a lot of flash backs from the past.&#160; I’m enjoying this new adventure and I hope to continue the momentum.</p>
<p>I also plan to look at a few noSQL databases or non-relational databases such as MongoDB and CouchDB.</p>
<p>Well, do let me know what do you think and do comment or recommend anything that you would like to.</p>
<p>-jp</p>
<img src="http://feeds.feedburner.com/~r/jeejopallayi/~4/M0fYab_MrrA" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.pallayi.com/blog/programming/programming/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://www.pallayi.com/blog/programming/programming/</feedburner:origLink></item>
	</channel>
</rss>

