<?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>RubyLearning Blog</title>
	<atom:link href="http://rubylearning.com/blog/feed/" rel="self" type="application/rss+xml" />
	<link>http://rubylearning.com/blog</link>
	<description>Helping Ruby Programmers become Awesome</description>
	<lastBuildDate>Tue, 24 Apr 2012 22:15:28 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=</generator>
		<item>
		<title>Ruby in 2012</title>
		<link>http://rubylearning.com/blog/2012/04/23/ruby-in-2012/</link>
		<comments>http://rubylearning.com/blog/2012/04/23/ruby-in-2012/#comments</comments>
		<pubDate>Mon, 23 Apr 2012 11:50:38 +0000</pubDate>
		<dc:creator>Matt Aimonetti</dc:creator>
				<category><![CDATA[Ruby]]></category>
		<category><![CDATA[programming]]></category>
		<category><![CDATA[ruby programming]]></category>

		<guid isPermaLink="false">http://rubylearning.com/blog/?p=6549</guid>
		<description><![CDATA[Ruby is more popular than ever, but it&#8217;s also not as trendy as it used to be. rubylearning.com students1 asked a few questions to Matt Aimonetti about his vision of Ruby in 2012 and for the future. Matt Aimonetti is a well-known Rubyist, technical writer, speaker and active open-source contributor. He currently works as a [...]<p><a href="http://www.launchbit.com/az/113-209/"><img width="468" height="60" src="http://www.launchbit.com/az-images/113-209/" /></a><br />
<small>(Powered by <a href="http://www.launchbit.com/lb/113-209/">LaunchBit</a>)</small></p>
]]></description>
			<content:encoded><![CDATA[<p></p>
<div>
<img style="float: left;margin: 0px 20px 0 20px" src="//rubylearning.com/blog/wp-content/uploads/matt_aimonetti.jpg" alt="Matt Aimonetti" /></p>
<p class="block">Ruby is more popular than ever, but it&#8217;s also not as trendy as it used to be. <a href="http://rubylearning.com/">rubylearning.com</a> students<sup class='footnote'><a href='#fn-6549-1' id='fnref-6549-1'>1</a></sup> asked a few questions to <a href="http://matt.aimonetti.net" rel="author" target="_blank">Matt Aimonetti</a> about his vision of <strong>Ruby in 2012</strong> and for the future.</p>
<p><a href="http://matt.aimonetti.net/matt-aimonetti" rel="author" target="_blank">Matt Aimonetti</a> is a well-known Rubyist, technical writer, speaker and active open-source contributor. He currently works as a software architect for <a href="http://corporate.livingsocial.com/home">LivingSocial</a>. Prior to joining <a href="http://corporate.livingsocial.com/home">LivingSocial</a>, Matt worked for <a href="http://www.worldwidestudios.net/sandiego">Sony PlayStation</a>.</p>
</div>
<div>
<h4>How does Ruby fit in with the future, as you see it?</h4>
<p><a href="https://plus.google.com/101114877505962271216?rel=author" rel="author" target="_blank">Matt Aimonetti</a>: This is a really hard question. If I could predict the future, I would probably already be rich. Ruby is a very powerful and flexible language.</p>
<p>Very much like <a href="http://www.python.org/">Python</a>, Ruby is a great glue language, a great language for the web and overall a language that allows you to get a lot done before you hit the language limitations.</p>
<p>The ecosystem also keeps growing and there seems to be more and more people focusing on performance and documentation which are two things Ruby could still improve a lot on.</p>
<p>I think it&#8217;s quite obvious that the pendulum is swinging back and server side code is going to be more and more API oriented with smart clients consuming these services. Ruby is great for that because services need to be easy to write, easily to maintain, well documented and flexible. I wrote a <a href="https://github.com/mattetti/Weasel-Diesel">DSL</a> to do just that using Ruby and it would have been harder in any other language.</p>
<p>So, to answer the question more directly, I think that Ruby will keep on playing a major role in web development but at the same time, developers will become more and more polyglot and might switch back and forth between languages.</p>
<h4>I have talked to people that think that Ruby is falling by the wayside, even to the point where they say that Rails is killing Ruby. What do you think?</h4>
<p><a href="http://matt.aimonetti.net" target="_blank">Matt Aimonetti</a>: I wouldn&#8217;t say that Ruby is falling by the wayside, what&#8217;s going on is that Ruby outgrew the startup world where it became very popular a few years ago. However, you now find Ruby (and <a href="http://weblog.rubyonrails.org/2010/3/24/rails-and-the-enterprise/">Rails to that matter</a>) in a lot of more established places thanks to its efficiency of development, strong focus on testing, active community and great ecosystem.</p>
<p>When some people say that Rails is hurting Ruby, I think what they mean is that for them Ruby&#8217;s fate is directly related to Rails&#8217;. If Rails doesn&#8217;t manage to stay the web framework of reference, it might hurt the language. This is certainly not entirely wrong. Without Rails, Ruby wouldn&#8217;t have been as popular, but at the same time, there is much more to Ruby than Rails and I think that as a community we need to seriously start looking at all the great things we can do with Ruby outside Rails.</p>
<h4>What is your opinion on Node.js? Is this the future? Do you think Node.js will beat Ruby in web application development?</h4>
<p><a href="https://plus.google.com/101114877505962271216" rel="author" target="_blank">Matt Aimonetti</a>: This is a question I often get. I personally like <a href="http://nodejs.org/">node.js</a>, I think it&#8217;s fun, easy to get started and with <a href="http://coffeescript.org/">CoffeeScript</a>, writing JavaScript (JS) is almost fun. That said, Node is really young, not very well documented and relies extremely heavily on callbacks which can be quite confusing at times. My experience with Node is limited, but as my personal project started growing, I started struggling to keep my code simple and easy to maintain. Because I already know Ruby quite well and because equivalent tools exist in Ruby land, I don&#8217;t see a real need to use Node besides being the new cool framework.</p>
<p>But the project is fast growing, the cross-platform focus is welcomed and I think that for some developers, Node.js can be a great solution, especially when developing simple web APIs.</p>
<p>Will it &#8220;beat&#8221; Ruby? Well, a framework and a programming language are two different things. Will it beat Rails in popularity, that&#8217;s a possibility due to the fact that JavaScript is becoming very popular. However, some of the issues I mentioned earlier might prevent Node.js to become as popular as some people seem to believe. Finally, at the end of the day, if a JS framework becomes a better solution than anything else I use, I will certainly switch. But so far, I don&#8217;t see that happening.</p>
<h4>Do you think Ruby is the best programming language to be introduced to newbies to get them started in programming?</h4>
<p><a href="http://matt.aimonetti.net" target="_blank">Matt Aimonetti</a>: I do believe Ruby is a great language to learn some of the basis of programming, especially Object Oriented Programming. It allows students to get easily started and to build things quickly. However, different people learn differently and are attracted to other things and parts of Ruby can be quite hairy. To properly learn a language, you also need to have a way to practice and quickly see the fruit of your labor. That&#8217;s why If you are a designer, I might suggest you start with JavaScript and then move on to a better designed, high level programming language like Ruby or Python. Finally, you need to look at your motivation being learning a new language.</p>
<p>If you want to learn programming because you want to work in this field, consider starting learning a language which will allow you to easily start working (hint: there are a lot of Rails positions out there waiting for you). But don&#8217;t stop there, keep learning new languages and way to solve problems using code.</p>
<h4>How to become a better coder? I still feel it&#8217;s hard to get involved contributing to OSS, could you give us some advice?</h4>
<p><a href="http://matt.aimonetti.net" target="_blank">Matt Aimonetti</a>: I personally get better when I practice a lot and when overcoming problems I didn&#8217;t know how to solve before I started. Open Source contribution is a great way to get feedback and learn from others. I think that with tools such as Git and GitHub, OSS contribution has become much easier than ever. That said, a lot of developers think that their contributions have to be significant, and, that&#8217;s in my mind, a mistake. Start by contributing documentation, examples and helping others. File bug reports and try to reduce them to an easier to handle case. That might seem trivial to you, but it&#8217;s extremely useful, it will teach you a lot about the project you are involved with, its design, the pros/cons and how an OSS project is run. Doing that will help you debug and diagnose problems faster and when added to the design knowledge and communication skills you would have acquired, you have all the ingredients of a good developer. Another thing I like to do is to pick something that seems absolutely impossible for me to do. If you only know Ruby, memory management and writing code C might seem hard. Give yourself a reasonable time frame and a challenge such as 6 months to have a small C program that will do X, Y and Z. Keep it small and simple and don&#8217;t forget to have fun. At first it will be hard, but don&#8217;t give up, keep trying until you learned something you thought was impossible. When you will go back to writing Ruby or whatever language you write, you will look at things from a different angle.</p>
<p>Finally, the last thing I would suggest is to never feel too comfortable in your daily programming tasks. If you are to the point where you just execute and aren&#8217;t challenged, you might want to consider talking to your supervisor about giving you more challenging tasks.</p>
<h4>Are you excited about MobiRuby? Do you think it will become a viable platform for iOS development?</h4>
<p><a href="http://matt.aimonetti.net" target="_blank">Matt Aimonetti</a>: <a href="http://mobiruby.org/">MobiRuby</a> is being developed on top of mruby, the new Ruby implementation written by Matz that&#8217;s targeting embedded device and offering an alternate for <a href="http://www.lua.org/">Lua</a> and to some extent JavaScript. I&#8217;m quite excited about mruby and its potential and I wrote about both <a href="http://matt.aimonetti.net/posts/2012/04/20/mruby-and-mobiruby/">mruby and MobiRuby</a> a couple days ago. Basically, from my view point <a href="http://mobiruby.org/">MobiRuby</a> is an interesting project but it will have to overcome some serious challenges described in details in my blog post. My hope is that thanks to the Ruby language, MobiRuby will be able to transcend Cocoa/Android API to offer an easier, simpler API making mobile development more fun and more easily accessible.</p>
<p>This is quite a big challenge, but I do believe this is something that can be done and that might change the way mobile development is done.</p>
<p class="update"><em>I hope you found this article useful. What are <strong>your</strong> thoughts? Feel free to ask questions and do give your opinion in the comments section of this post. Matt would only be too happy to reply.</em> Thanks!</p>
</div>
<p>Technorati Tags: <a href="http://technorati.com/tag/Programming" rel="tag">Programming</a>, <a href="http://technorati.com/tag/Ruby+programming" rel="tag">Ruby programming</a>, <a href="http://technorati.com/tag/Ruby" rel="tag">Ruby</a></p>
<div class='footnotes'>
<div class='footnotedivider'></div>
<ol>
<li id='fn-6549-1'>Thanks to Michael Kohl, Samnang Chhun and Victor Goff. <span class='footnotereverse'><a href='#fnref-6549-1'>&#8617;</a></span></li>
</ol>
</div>
<p><a href="http://www.launchbit.com/az/113-209/"><img width="468" height="60" src="http://www.launchbit.com/az-images/113-209/" /></a><br />
<small>(Powered by <a href="http://www.launchbit.com/lb/113-209/">LaunchBit</a>)</small></p>

]]></content:encoded>
			<wfw:commentRss>http://rubylearning.com/blog/2012/04/23/ruby-in-2012/feed/</wfw:commentRss>
		<slash:comments>82</slash:comments>
		</item>
		<item>
		<title>Ruby Programming 33rd Batch: Registrations now open</title>
		<link>http://rubylearning.com/blog/2012/04/23/ruby-programming-33rd-batch-registrations-now-open/</link>
		<comments>http://rubylearning.com/blog/2012/04/23/ruby-programming-33rd-batch-registrations-now-open/#comments</comments>
		<pubDate>Mon, 23 Apr 2012 05:08:48 +0000</pubDate>
		<dc:creator>Satish Talim</dc:creator>
				<category><![CDATA[Beginners]]></category>
		<category><![CDATA[Ruby]]></category>
		<category><![CDATA[Training]]></category>
		<category><![CDATA[programming]]></category>
		<category><![CDATA[Ruby course]]></category>
		<category><![CDATA[Ruby training]]></category>

		<guid isPermaLink="false">http://rubylearning.com/blog/?p=6580</guid>
		<description><![CDATA[Registrations are now open for RubyLearning&#8217;s popular Ruby programming course. This is an intensive, online course for beginners that helps you get started with Ruby programming. Here is what Sandra Randall (Butler), a participant who just graduated, has to say &#8211; &#8220;You kindly offered me the opportunity to join your Ruby course. I&#8217;m new to [...]<p><a href="http://www.launchbit.com/az/113-209/"><img width="468" height="60" src="http://www.launchbit.com/az-images/113-209/" /></a><br />
<small>(Powered by <a href="http://www.launchbit.com/lb/113-209/">LaunchBit</a>)</small></p>
]]></description>
			<content:encoded><![CDATA[<p></p>
<div>
<p><span class="drop_cap">R</span>egistrations are now open for RubyLearning&#8217;s popular Ruby programming course. This is an intensive, online course for <em>beginners</em> that helps you get started with <strong>Ruby</strong> programming.</p>
<p class="update">Here is what <b>Sandra Randall (Butler)</b>, a participant who just graduated, has to say &#8211; &#8220;You kindly offered me the opportunity to join your Ruby course. I&#8217;m new to development and found the course, even though basic for programmers, a little tricky for me. I managed to complete all of the assessments and really learnt a lot. Thank you very much for the opportunity. It has really given me the push I needed to learn Ruby and I&#8217;m currently treading my way through both the pickaxe and Agile Development books and enjoying it. I&#8217;ve recently been offered a position as a Junior Systems Developer at a local Software house in South Africa &#8211; all thanks to the push you gave me which gave me the motivation and drive to get going.&#8221;</p>
<h3>What&#8217;s Ruby?</h3>
<p><img style=' float: right; padding: 4px; margin: 0 0 2px 7px;'  class="alignright" title="License: http://creativecommons.org/licenses/by-sa/2.5/" src="http://rubylearning.com/images/rubylogo.png" alt="Ruby" height="125" width="125" /></p>
<p>According to <a href="http://www.ruby-lang.org/en/">http://www.ruby-lang.org/en/</a> &#8211; &#8220;Ruby is a dynamic, open source programming language with a focus on simplicity and productivity. Ruby&#8217;s elegant syntax is natural to read and easy to write.&#8221;</p>
<p><b>Yukihiro Matsumoto</b>, the creator of Ruby, in <b><a href="http://linuxdevcenter.com/pub/a/linux/2001/11/29/ruby.html">an interview</a></b> says -</p>
<blockquote>
<p>I believe people want to express themselves when they program. They don&#8217;t want to fight with the language. Programming languages must feel natural to programmers. I tried to make people enjoy programming and concentrate on the fun and creative part of programming when they use Ruby.</p>
</blockquote>
<h3>What Will I Learn?</h3>
<p>In the Ruby programming course, you will learn the <a href="http://rubylearning.com/satishtalim/tutorial.html">essential features of Ruby</a> that you will end up using every day. You will also be introduced to Git, GitHub, HTTP concepts, RubyGems, Rack and Heroku.</p>
<p>Depending on participation levels, we throw a Ruby coding challenge in the mix, appropriate for the level we are at. We have been known to give out a prize or two for the &#8216;best&#8217; solution.</p>
<h3>Who&#8217;s It For?</h3>
<p><b>A <em>beginner</em> with some knowledge of programming.</b>.</p>
<p>You can read what past participants have to say about the course.</p>
<ul>
<li><a href="http://rubylearning.com/other/testimonials.html">Testimonials</a></li>
<li><a href="http://natashatherobot.com/2012/02/07/rubylearning-core-ruby-review/">Natasha Murashev</a></li>
<li><a href="http://www.codegurl.com/2011/10/ruby-doctest-with-victor-goff-of.html">Melanie Shebel</a></li>
<li><a href="http://maniempire.blogspot.in/2011/07/ruby-pair-programming.html">Mani Maran M</a></li>
</ul>
<h3>Mentors</h3>
<p><a href="http://satishtalim.com/">Satish Talim</a>, Michael Kohl, Satoshi Asakawa, Victor Goff III and others from the RubyLearning team.</p>
<h3>Dates</h3>
<p>The course starts on <b>Saturday, 26th May 2012</b> and runs for seven weeks.</p>
<h3>RubyLearning&#8217;s IRC Channel</h3>
<p>Most of the mentors and students hang out at RubyLearning&#8217;s IRC (irc.freenode.net) channel (#rubylearning.org) for both technical and non-technical discussions. Everyone benefits with the active discussions on Ruby with the mentors.</p>
<h3>How do I register and pay the course fees?</h3>
<ul>
<li>The course is based on the <strong>The Ultimate Guide to Ruby Programming</strong> eBook. This book is <a href="http://book.rubylearning.org/">normally priced at US$ 19.95</a> and we are discounting it US$ 10.00 by combining it in the Course+eBook option below.</li>
<li>You can pay either by Paypal or send cash via <a href="http://www.westernunion.com/info/selectCountry.asp">Western Union Money Transfer</a> or by bank transfer (if you are in India). The fees collected helps RubyLearning maintain the site, this Ruby course, the Ruby eBook, and provide quality content to you.</li>
<li>Once you pay the fees below, <a href="http://rubylearning.org/classes">register on the RubyLearning.org site</a> and send us your name and registered email id while creating an account at <a href="http://rubylearning.org/classes">RubyLearning.org</a> to <strong>satish [at] rubylearning [dot] com</strong></li>
<li>We will enroll you into the course. If you have purchased the eBook at the time of registration, we will personally email you the eBook within 24 hours.</li>
</ul>
<p>You can pay the Course Fees by <b>selecting one of the three options</b> from the drop-down menu below. <b>Please select your option</b> and then click on the &#8220;Add to Cart&#8221; button.</p>
</div>
<div>
<form action="https://www.paypal.com/cgi-bin/webscr" method="post">
<p>
<input type="hidden" name="cmd" value="_s-xclick" /></p>
<p>
<input type="hidden" name="hosted_button_id" value="J7AQ8C6CTKQJL" /></p>
<table>
<tr>
<td>
<input type="hidden" name="on0" value="Register" />Register</td>
</tr>
<tr>
<td>
<select name="os0" size="2">
<option value="Ruby eBook">Ruby eBook $19.95</option>
<option value="Ruby Course">Ruby Course $59.95</option>
<option value="Course+eBook">Course+eBook $69.95</option>
</select>
</td>
</tr>
</table>
<p>
<input type="hidden" name="currency_code" value="USD" /></p>
<p>
<input type="image" src="https://www.paypal.com/en_US/i/btn/btn_cart_LG.gif" style="border: 0px none ; width:auto ; min-width:0" name="submit" alt="PayPal - The safer, easier way to pay online." /></p>
<p><img alt="" style="border: 0px none ;" src="https://www.paypalobjects.com/en_GB/i/scr/pixel.gif" width="1" height="1" /></p>
</form>
</div>
<div>
<p>At the end of this course you should have all the knowledge to explore the wonderful world of Ruby on your own.</p>
<p>Here are some details on how the course works:</p>
<h4>Important:</h4>
<p>Once the course starts, you can login and start with the lessons <b>any day and time</b> and post your queries in the forum under the relevant lessons. Someone shall always be there to answer them. Just to set the expectations correctly, there is no real-time &#8216;webcasting&#8217;.</p>
<h4>Methodology:</h4>
<ul>
<li>The Mentors shall give you URL&#8217;s of pages and sometimes some extra notes; you need to read through. Read the pre-class reading material at a convenient time of your choice &#8211; the dates mentioned are just for your guideline. While reading, please make a note of all your doubts, queries, questions, clarifications, comments about the lesson and after you have completed all the pages, post these on the forum <b>under the relevant lesson</b>. There could be some questions that relate to something that has not been mentioned or discussed by the mentors thus far; you could post the same too. Please remember that with every post, do mention the operating system of your computer.</li>
<li>The mentor shall highlight the important points that you need to remember for that day&#8217;s session.</li>
<li>There could be exercises every day. Please do them.</li>
<li>Participate in the forum for asking and answering questions or starting discussions. Share knowledge, and exchange ideas among yourselves during the course period. Participants are strongly encouraged to post technical questions, interesting articles, tools, sample programs or anything that is relevant to the class / lesson. Please do not post a simple &quot;Thank you&quot; note or &quot;Hello&quot; message to the forum. Please be aware that these messages are considered noises by people subscribed to the forum.</li>
</ul>
<h4>Outline of Work Expectations:</h4>
<ol>
<li>Most of the days, you will have exercises to solve. These are there to help you assimilate whatever you have learned till then.</li>
<li>Some days may have some extra assignments / food for thought articles / programs</li>
<li><strong>Above all, do take part in the relevant forums. Past participants will confirm that they learned the best by active participation.</strong></li>
</ol>
<h4>Some Commonly Asked Questions</h4>
<ul>
<li><b>Qs.</b> Is there any specific time when I need to be online?<br /><b>Ans.</b> No. You need not be online at a specific time of the day.</li>
<li><b>Qs.</b> Is it important for me to take part in the course forums?<br /><b>Ans.</b> YES. You must Participate in the forum(s) for asking and answering questions or starting discussions. Share knowledge, and exchange ideas among yourselves (participants) during the course period. Participants are strongly encouraged to post technical questions, interesting articles, tools, sample programs or anything that is relevant to the class / lesson. Past participants will confirm that they learned the best by active participation.</li>
<li><b>Qs.</b> How much time do I need to spend online for a course, in a day?<br /><b>Ans.</b> This will vary from person to person. All depends upon your comfort level and the amount of time you want to spend on a particular lesson or task.</li>
<li><b>Qs.</b> Is there any specific set time for feedback (e.g., any mentor responds to me within 24 hours?)<br /><b>Ans.</b> Normally somebody should answer your query / question within 24 hours.</li>
<li><b>Qs.</b> What happens if nobody answers my questions / queries?<br /><b>Ans.</b> Normally, that will not happen. In case you feel that your question / query is not answered, then please post the same in the thread &#8211; &#8220;Any UnAnswered Questions / Queries&#8221;.</li>
<li><b>Qs.</b> What happens to the class (or forums) after a course is over? Can you keep it open for a few more days so that students can complete and discuss too?<br /><b>Ans.</b> The course and its forum is open for a month after the last day of the course.</li>
</ul>
<p>Remember, the idea is to have fun learning Ruby.</p>
</div>
<p>Technorati Tags: <a href="http://technorati.com/tag/Ruby+course" rel="tag">Ruby course</a>, <a href="http://technorati.com/tag/Ruby" rel="tag">Ruby</a>, <a href="http://technorati.com/tag/Ruby+Training" rel="tag">Ruby Training</a>, <a href="http://technorati.com/tag/Programming" rel="tag"> Programming</a></p>
<p><a href="http://www.launchbit.com/az/113-209/"><img width="468" height="60" src="http://www.launchbit.com/az-images/113-209/" /></a><br />
<small>(Powered by <a href="http://www.launchbit.com/lb/113-209/">LaunchBit</a>)</small></p>

]]></content:encoded>
			<wfw:commentRss>http://rubylearning.com/blog/2012/04/23/ruby-programming-33rd-batch-registrations-now-open/feed/</wfw:commentRss>
		<slash:comments>17</slash:comments>
		</item>
		<item>
		<title>Free Course: An Introduction to JRuby</title>
		<link>http://rubylearning.com/blog/2012/04/06/free-course-an-introduction-to-jruby/</link>
		<comments>http://rubylearning.com/blog/2012/04/06/free-course-an-introduction-to-jruby/#comments</comments>
		<pubDate>Fri, 06 Apr 2012 12:00:05 +0000</pubDate>
		<dc:creator>Satish Talim</dc:creator>
				<category><![CDATA[Beginners]]></category>
		<category><![CDATA[JRuby]]></category>
		<category><![CDATA[Ruby]]></category>
		<category><![CDATA[Training]]></category>
		<category><![CDATA[Introduction to JRuby]]></category>
		<category><![CDATA[Java]]></category>
		<category><![CDATA[jruby course]]></category>
		<category><![CDATA[JRuby Training]]></category>
		<category><![CDATA[programming]]></category>

		<guid isPermaLink="false">http://rubylearning.com/blog/?p=6531</guid>
		<description><![CDATA[Introducing an online course for beginners that helps you get started with JRuby programming. What&#8217;s JRuby? According to http://en.wikipedia.org/wiki/JRuby &#8211; &#8220;JRuby is a Java implementation of the Ruby programming language, being developed by the JRuby team. JRuby is tightly integrated with Java to allow the embedding of the interpreter into any Java application with full [...]<p><a href="http://www.launchbit.com/az/113-209/"><img width="468" height="60" src="http://www.launchbit.com/az-images/113-209/" /></a><br />
<small>(Powered by <a href="http://www.launchbit.com/lb/113-209/">LaunchBit</a>)</small></p>
]]></description>
			<content:encoded><![CDATA[<p></p>
<div>
<p><span class="drop_cap">I</span>ntroducing an online course for <em>beginners</em> that helps you get started with <strong>JRuby</strong> programming.</p>
<h3>What&#8217;s JRuby?</h3>
<p><img style=' float: right; padding: 4px; margin: 0 0 2px 7px;'  class="alignright" title="License: http://jruby.org/" src="http://rubylearning.com/images/jruby.png" alt="Credit: JRuby" /></p>
<p>According to <a href="http://en.wikipedia.org/wiki/JRuby">http://en.wikipedia.org/wiki/JRuby</a> &#8211; &#8220;JRuby is a Java implementation of the Ruby programming language, being developed by the JRuby team. JRuby is tightly integrated with Java to allow the embedding of the interpreter into any Java application with full two-way access between the Java and the Ruby code.&#8221;</p>
<p><b><a href="https://twitter.com/#!/headius">Charles Nutter</a></b> says -</p>
<blockquote>
<p>Despite all the new alternatives, JRuby on Rails remains one of the fastest, cleanest ways to build JVM-based web applications. JRuby provides the full Ruby ecosystem as well as integration with JVM languages and libraries. Ruby is both a wonderful language and increasingly the best choice for rapid application development. Add to that platforms like Torquebox and the excellent Ruby community, and it&#8217;s easy to see why JRuby should be in every Java developer&#8217;s toolbox.</p>
</blockquote>
<h3>What Will I Learn?</h3>
<ul>
<li>What is JRuby?</li>
<li>Why JRuby?</li>
<li>Killer app</li>
<li>What the experts say</li>
<li>Downloading and Setting-up JRuby</li>
<li>Getting your hands wet
<ul>
<li>JRuby allows Ruby programs to use Java classes</li>
<ul>
<li>jruby01a.rb &#8211; JVM properties</li>
<li>jruby01.rb &#8211; DateFormat and Date</li>
<li>jruby02.rb &#8211; Internationalization / Localization</li>
<li>jruby03.rb &#8211; Swing library</li>
<li>Extending Java</li>
<li>Assignment 1</li>
<li>jruby04.rb &#8211; ActiveRecord and JDBC</li>
</ul>
<li>JRuby allows Java programs to use Ruby classes
<ul>
<li>JRubyJSR223.java</li>
<li>JRubyJSR223Ex2.java</li>
<li>Assignment 2</li>
</ul>
</li>
</ul>
</li>
<li>Brief look at Ruby on Rails</li>
<li>Installation</li>
<li>Install Bundler and Rails</li>
<li>Creating your app &#8211; JRuby on Rails</li>
</ul>
<h3>Who&#8217;s It For?</h3>
<p><b>A <em>beginner</em> but with a working knowledge of Ruby and Java</b>.</p>
<p>This course will not teach you Java or Ruby programming. A basic knowledge of both programming languages is assumed, but most examples will be in Ruby and focus on Ruby development with help from Java. Also, you should have played around with some database. <em>Whether you are a Java hacker who&#8217;s new to Ruby or a Rubyist taking your first steps into Java, this course is a great guide to help you navigate the gray area between the new languages</em>.</p>
<p>By the time you have finished the course and worked on the examples and assignments, you will be fairly comfortable with JRuby.</p>
<h3>Mentors</h3>
<p><a href="http://satishtalim.com/">Satish Talim</a> and others from the RubyLearning team.</p>
<h3>Dates</h3>
<p>The course starts on Saturday, 12th May 2012 and runs for a week.</p>
<h3>How do I register?</h3>
<p>Register <a href="http://rubylearning.org/class/course/view.php?id=68">here</a>. Use the Enrollment key: <b>rubylearning</b>. That&#8217;s it!</p>
<p>Hurry, registrations have started.</p>
<p class="alert">At the end of this course you should have enough working knowledge to explore the wonderful world of JRuby, on your own.</p>
<p><img src='http://rubylearning.com/images/update.jpg' style="border: 0px none ;" alt="Update" title="Update" /></p>
<p><b>9th April 2012 at 7.45 hrs IST &#8211; List of Participant&#8217;s Countries</b></p>
<p><a href="http://www.chartgo.com/linkshare.do?id=3f150de6aa"> <img src="http://www.chartgo.com/link.do?id=3f150de6aa" title="ChartGo.com" alt="Online Graphing" border="0" /></a></p>
<p>Here are some details on how the course works:</p>
<h4>Important:</h4>
<p>Once the course starts, you can login and start with the lessons <b>any day and time</b> and post your queries in the forum under the relevant lessons. Someone shall always be there to answer them. Just to set the expectations correctly, there is no real-time &#8216;webcasting&#8217;.</p>
<h4>Methodology:</h4>
<ul>
<li>The Mentors shall give you URL&#8217;s of pages and sometimes some extra notes; you need to read through. Read the pre-class reading material at a convenient time of your choice &#8211; the dates mentioned are just for your guideline. While reading, please make a note of all your doubts, queries, questions, clarifications, comments about the lesson and after you have completed all the pages, post these on the forum <b>under the relevant lesson</b>. There could be some questions that relate to something that has not been mentioned or discussed by the mentors thus far; you could post the same too. Please remember that with every post, do mention the operating system of your computer.</li>
<li>The mentor shall highlight the important points that you need to remember for that day&#8217;s session.</li>
<li>There could be exercises every day. Please do them.</li>
<li>Participate in the forum for asking and answering questions or starting discussions. Share knowledge, and exchange ideas among yourselves during the course period. Participants are strongly encouraged to post technical questions, interesting articles, tools, sample programs or anything that is relevant to the class / lesson. Please do not post a simple &quot;Thank you&quot; note or &quot;Hello&quot; message to the forum. Please be aware that these messages are considered noises by people subscribed to the forum.</li>
</ul>
<h4>Outline of Work Expectations:</h4>
<ol>
<li>Most of the days, you will have exercises to solve. These are there to help you assimilate whatever you have learned till then.</li>
<li>Some days may have some extra assignments / food for thought articles / programs</li>
<li><strong>Above all, do take part in the relevant forums. Past participants will confirm that they learned the best by active participation.</strong></li>
</ol>
<h4>Some Commonly Asked Questions</h4>
<ul>
<li><b>Qs.</b> Is there any specific time when I need to be online?<br /><b>Ans.</b> No. You need not be online at a specific time of the day.</li>
<li><b>Qs.</b> Is it important for me to take part in the course forums?<br /><b>Ans.</b> YES. You must Participate in the forum(s) for asking and answering questions or starting discussions. Share knowledge, and exchange ideas among yourselves (participants) during the course period. Participants are strongly encouraged to post technical questions, interesting articles, tools, sample programs or anything that is relevant to the class / lesson. Past participants will confirm that they learned the best by active participation.</li>
<li><b>Qs.</b> How much time do I need to spend online for a course, in a day?<br /><b>Ans.</b> This will vary from person to person. All depends upon your comfort level and the amount of time you want to spend on a particular lesson or task.</li>
<li><b>Qs.</b> Is there any specific set time for feedback (e.g., any mentor responds to me within 24 hours?)<br /><b>Ans.</b> Normally somebody should answer your query / question within 24 hours.</li>
<li><b>Qs.</b> What happens if nobody answers my questions / queries?<br /><b>Ans.</b> Normally, that will not happen. In case you feel that your question / query is not answered, then please post the same in the thread &#8211; &#8220;Any UnAnswered Questions / Queries&#8221;.</li>
<li><b>Qs.</b> What happens to the class (or forums) after a course is over? Can you keep it open for a few more days so that students can complete and discuss too?<br /><b>Ans.</b> The course and its forum is open for a month after the last day of the course.</li>
</ul>
<p>Remember, the idea is to have fun learning JRuby.</p>
</div>
<p>Technorati Tags: <a href="http://technorati.com/tag/Introduction+to+JRuby" rel="tag">Introduction to JRuby</a>, <a href="http://technorati.com/tag/JRuby+course" rel="tag">JRuby course</a>, <a href="http://technorati.com/tag/JRuby" rel="tag">JRuby</a>, <a href="http://technorati.com/tag/JRuby+Training" rel="tag">JRuby Training</a>, <a href="http://technorati.com/tag/Programming" rel="tag"> Programming</a>, <a href="http://technorati.com/tag/Ruby" rel="tag"> Ruby</a>, <a href="http://technorati.com/tag/Java" rel="tag"> Java</a></p>
<p><a href="http://www.launchbit.com/az/113-209/"><img width="468" height="60" src="http://www.launchbit.com/az-images/113-209/" /></a><br />
<small>(Powered by <a href="http://www.launchbit.com/lb/113-209/">LaunchBit</a>)</small></p>

]]></content:encoded>
			<wfw:commentRss>http://rubylearning.com/blog/2012/04/06/free-course-an-introduction-to-jruby/feed/</wfw:commentRss>
		<slash:comments>65</slash:comments>
		</item>
		<item>
		<title>Ruby Programming 32nd Batch: Registrations now open</title>
		<link>http://rubylearning.com/blog/2012/03/12/ruby-programming-32nd-batch-registrations-now-open/</link>
		<comments>http://rubylearning.com/blog/2012/03/12/ruby-programming-32nd-batch-registrations-now-open/#comments</comments>
		<pubDate>Mon, 12 Mar 2012 00:43:47 +0000</pubDate>
		<dc:creator>Satish Talim</dc:creator>
				<category><![CDATA[Beginners]]></category>
		<category><![CDATA[Ruby]]></category>
		<category><![CDATA[Training]]></category>
		<category><![CDATA[programming]]></category>
		<category><![CDATA[Ruby course]]></category>
		<category><![CDATA[Ruby training]]></category>

		<guid isPermaLink="false">http://rubylearning.com/blog/?p=6527</guid>
		<description><![CDATA[Registrations are now open for RubyLearning&#8217;s popular Ruby programming course. This is an intensive, online course for beginners that helps you get started with Ruby programming. Here is what Sandra Randall (Butler), a participant who just graduated, has to say &#8211; &#8220;You kindly offered me the opportunity to join your Ruby course. I&#8217;m new to [...]<p><a href="http://www.launchbit.com/az/113-209/"><img width="468" height="60" src="http://www.launchbit.com/az-images/113-209/" /></a><br />
<small>(Powered by <a href="http://www.launchbit.com/lb/113-209/">LaunchBit</a>)</small></p>
]]></description>
			<content:encoded><![CDATA[<p></p>
<div>
<p><span class="drop_cap">R</span>egistrations are now open for RubyLearning&#8217;s popular Ruby programming course. This is an intensive, online course for <em>beginners</em> that helps you get started with <strong>Ruby</strong> programming.</p>
<p class="update">Here is what <b>Sandra Randall (Butler)</b>, a participant who just graduated, has to say &#8211; &#8220;You kindly offered me the opportunity to join your Ruby course. I&#8217;m new to development and found the course, even though basic for programmers, a little tricky for me. I managed to complete all of the assessments and really learnt a lot. Thank you very much for the opportunity. It has really given me the push I needed to learn Ruby and I&#8217;m currently treading my way through both the pickaxe and Agile Development books and enjoying it. I&#8217;ve recently been offered a position as a Junior Systems Developer at a local Software house in South Africa &#8211; all thanks to the push you gave me which gave me the motivation and drive to get going.&#8221;</p>
<h3>What&#8217;s Ruby?</h3>
<p><img style=' float: right; padding: 4px; margin: 0 0 2px 7px;'  class="alignright" title="License: http://creativecommons.org/licenses/by-sa/2.5/" src="http://rubylearning.com/images/rubylogo.png" alt="Ruby" height="125" width="125" /></p>
<p>According to <a href="http://www.ruby-lang.org/en/">http://www.ruby-lang.org/en/</a> &#8211; &#8220;Ruby is a dynamic, open source programming language with a focus on simplicity and productivity. Ruby&#8217;s elegant syntax is natural to read and easy to write.&#8221;</p>
<p><b>Yukihiro Matsumoto</b>, the creator of Ruby, in <b><a href="http://linuxdevcenter.com/pub/a/linux/2001/11/29/ruby.html">an interview</a></b> says -</p>
<blockquote>
<p>I believe people want to express themselves when they program. They don&#8217;t want to fight with the language. Programming languages must feel natural to programmers. I tried to make people enjoy programming and concentrate on the fun and creative part of programming when they use Ruby.</p>
</blockquote>
<h3>What Will I Learn?</h3>
<p>In the Ruby programming course, you will learn the <a href="http://rubylearning.com/satishtalim/tutorial.html">essential features of Ruby</a> that you will end up using every day. You will also be introduced to Git, GitHub, HTTP concepts, RubyGems, Rack and Heroku.</p>
<p>Depending on participation levels, we throw a Ruby coding challenge in the mix, appropriate for the level we are at. We have been known to give out a prize or two for the &#8216;best&#8217; solution.</p>
<h3>Who&#8217;s It For?</h3>
<p><b>A <em>beginner</em> with some knowledge of programming.</b>.</p>
<p>You can read what past participants have to say about the course.</p>
<ul>
<li><a href="http://rubylearning.com/other/testimonials.html">Testimonials</a></li>
<li><a href="http://natashatherobot.com/2012/02/07/rubylearning-core-ruby-review/">Natasha Murashev</a></li>
<li><a href="http://www.codegurl.com/2011/10/ruby-doctest-with-victor-goff-of.html">Melanie Shebel</a></li>
<li><a href="http://maniempire.blogspot.in/2011/07/ruby-pair-programming.html">Mani Maran M</a></li>
</ul>
<h3>Mentors</h3>
<p><a href="http://satishtalim.com/">Satish Talim</a>, Michael Kohl, Satoshi Asakawa, Victor Goff III and others from the RubyLearning team.</p>
<h3>Dates</h3>
<p>The course starts on <b>Saturday, 14th Apr. 2012</b> and runs for seven weeks.</p>
<h3>RubyLearning&#8217;s IRC Channel</h3>
<p>Most of the mentors and students hang out at RubyLearning&#8217;s IRC (irc.freenode.net) channel (#rubylearning.org) for both technical and non-technical discussions. Everyone benefits with the active discussions on Ruby with the mentors.</p>
<h3>How do I register and pay the course fees?</h3>
<ul>
<li>The course is based on the <strong>The Ultimate Guide to Ruby Programming</strong> eBook. This book is <a href="http://book.rubylearning.org/">normally priced at US$ 19.95</a> and we are discounting it US$ 10.00 by combining it in the Course+eBook option below.</li>
<li>You can pay either by Paypal or send cash via <a href="http://www.westernunion.com/info/selectCountry.asp">Western Union Money Transfer</a> or by bank transfer (if you are in India). The fees collected helps RubyLearning maintain the site, this Ruby course, the Ruby eBook, and provide quality content to you.</li>
<li>Once you pay the fees below, <a href="http://rubylearning.org/">register on the RubyLearning.org site</a> and send us your name and registered email id while creating an account at <a href="http://rubylearning.org/">RubyLearning.org</a> to <strong>satish [at] rubylearning [dot] com</strong></li>
<li>We will enroll you into the course. If you have purchased the eBook at the time of registration, we will personally email you the eBook within 24 hours.</li>
</ul>
<p>You can pay the Course Fees by <b>selecting one of the three options</b> from the drop-down menu below. <b>Please select your option</b> and then click on the &#8220;Add to Cart&#8221; button.</p>
</div>
<div>
<form action="https://www.paypal.com/cgi-bin/webscr" method="post">
<p>
<input type="hidden" name="cmd" value="_s-xclick" /></p>
<p>
<input type="hidden" name="hosted_button_id" value="J7AQ8C6CTKQJL" /></p>
<table>
<tr>
<td>
<input type="hidden" name="on0" value="Register" />Register</td>
</tr>
<tr>
<td>
<select name="os0" size="2">
<option value="Ruby eBook">Ruby eBook $19.95</option>
<option value="Ruby Course">Ruby Course $49.95</option>
<option value="Course+eBook">Course+eBook $59.95</option>
</select>
</td>
</tr>
</table>
<p>
<input type="hidden" name="currency_code" value="USD" /></p>
<p>
<input type="image" src="https://www.paypal.com/en_US/i/btn/btn_cart_LG.gif" style="border: 0px none ; width:auto ; min-width:0" name="submit" alt="PayPal - The safer, easier way to pay online." /></p>
<p><img alt="" style="border: 0px none ;" src="https://www.paypalobjects.com/en_GB/i/scr/pixel.gif" width="1" height="1" /></p>
</form>
</div>
<div>
<p>At the end of this course you should have all the knowledge to explore the wonderful world of Ruby on your own.</p>
<p>Here are some details on how the course works:</p>
<h4>Important:</h4>
<p>Once the course starts, you can login and start with the lessons <b>any day and time</b> and post your queries in the forum under the relevant lessons. Someone shall always be there to answer them. Just to set the expectations correctly, there is no real-time &#8216;webcasting&#8217;.</p>
<h4>Methodology:</h4>
<ul>
<li>The Mentors shall give you URL&#8217;s of pages and sometimes some extra notes; you need to read through. Read the pre-class reading material at a convenient time of your choice &#8211; the dates mentioned are just for your guideline. While reading, please make a note of all your doubts, queries, questions, clarifications, comments about the lesson and after you have completed all the pages, post these on the forum <b>under the relevant lesson</b>. There could be some questions that relate to something that has not been mentioned or discussed by the mentors thus far; you could post the same too. Please remember that with every post, do mention the operating system of your computer.</li>
<li>The mentor shall highlight the important points that you need to remember for that day&#8217;s session.</li>
<li>There could be exercises every day. Please do them.</li>
<li>Participate in the forum for asking and answering questions or starting discussions. Share knowledge, and exchange ideas among yourselves during the course period. Participants are strongly encouraged to post technical questions, interesting articles, tools, sample programs or anything that is relevant to the class / lesson. Please do not post a simple &quot;Thank you&quot; note or &quot;Hello&quot; message to the forum. Please be aware that these messages are considered noises by people subscribed to the forum.</li>
</ul>
<h4>Outline of Work Expectations:</h4>
<ol>
<li>Most of the days, you will have exercises to solve. These are there to help you assimilate whatever you have learned till then.</li>
<li>Some days may have some extra assignments / food for thought articles / programs</li>
<li><strong>Above all, do take part in the relevant forums. Past participants will confirm that they learned the best by active participation.</strong></li>
</ol>
<h4>Some Commonly Asked Questions</h4>
<ul>
<li><b>Qs.</b> Is there any specific time when I need to be online?<br /><b>Ans.</b> No. You need not be online at a specific time of the day.</li>
<li><b>Qs.</b> Is it important for me to take part in the course forums?<br /><b>Ans.</b> YES. You must Participate in the forum(s) for asking and answering questions or starting discussions. Share knowledge, and exchange ideas among yourselves (participants) during the course period. Participants are strongly encouraged to post technical questions, interesting articles, tools, sample programs or anything that is relevant to the class / lesson. Past participants will confirm that they learned the best by active participation.</li>
<li><b>Qs.</b> How much time do I need to spend online for a course, in a day?<br /><b>Ans.</b> This will vary from person to person. All depends upon your comfort level and the amount of time you want to spend on a particular lesson or task.</li>
<li><b>Qs.</b> Is there any specific set time for feedback (e.g., any mentor responds to me within 24 hours?)<br /><b>Ans.</b> Normally somebody should answer your query / question within 24 hours.</li>
<li><b>Qs.</b> What happens if nobody answers my questions / queries?<br /><b>Ans.</b> Normally, that will not happen. In case you feel that your question / query is not answered, then please post the same in the thread &#8211; &#8220;Any UnAnswered Questions / Queries&#8221;.</li>
<li><b>Qs.</b> What happens to the class (or forums) after a course is over? Can you keep it open for a few more days so that students can complete and discuss too?<br /><b>Ans.</b> The course and its forum is open for a month after the last day of the course.</li>
</ul>
<p>Remember, the idea is to have fun learning Ruby.</p>
</div>
<p>Technorati Tags: <a href="http://technorati.com/tag/Ruby+course" rel="tag">Ruby course</a>, <a href="http://technorati.com/tag/Ruby" rel="tag">Ruby</a>, <a href="http://technorati.com/tag/Ruby+Training" rel="tag">Ruby Training</a>, <a href="http://technorati.com/tag/Programming" rel="tag"> Programming</a></p>
<p><a href="http://www.launchbit.com/az/113-209/"><img width="468" height="60" src="http://www.launchbit.com/az-images/113-209/" /></a><br />
<small>(Powered by <a href="http://www.launchbit.com/lb/113-209/">LaunchBit</a>)</small></p>

]]></content:encoded>
			<wfw:commentRss>http://rubylearning.com/blog/2012/03/12/ruby-programming-32nd-batch-registrations-now-open/feed/</wfw:commentRss>
		<slash:comments>15</slash:comments>
		</item>
		<item>
		<title>Ruby Programming 31st Batch: Registrations now open</title>
		<link>http://rubylearning.com/blog/2012/02/10/ruby-programming-31st-batch-registrations-now-open/</link>
		<comments>http://rubylearning.com/blog/2012/02/10/ruby-programming-31st-batch-registrations-now-open/#comments</comments>
		<pubDate>Fri, 10 Feb 2012 09:01:57 +0000</pubDate>
		<dc:creator>Satish Talim</dc:creator>
				<category><![CDATA[Beginners]]></category>
		<category><![CDATA[Ruby]]></category>
		<category><![CDATA[Training]]></category>
		<category><![CDATA[programming]]></category>
		<category><![CDATA[Ruby course]]></category>
		<category><![CDATA[Ruby training]]></category>

		<guid isPermaLink="false">http://rubylearning.com/blog/?p=6517</guid>
		<description><![CDATA[Registrations are now open for RubyLearning&#8217;s popular Ruby programming course. This is an intensive, online course for beginners that helps you get started with Ruby programming. Here is what Sandra Randall (Butler), a participant who just graduated, has to say &#8211; &#8220;You kindly offered me the opportunity to join your Ruby course. I&#8217;m new to [...]<p><a href="http://www.launchbit.com/az/113-209/"><img width="468" height="60" src="http://www.launchbit.com/az-images/113-209/" /></a><br />
<small>(Powered by <a href="http://www.launchbit.com/lb/113-209/">LaunchBit</a>)</small></p>
]]></description>
			<content:encoded><![CDATA[<p></p>
<div>
<p><span class="drop_cap">R</span>egistrations are now open for RubyLearning&#8217;s popular Ruby programming course. This is an intensive, online course for <em>beginners</em> that helps you get started with <strong>Ruby</strong> programming.</p>
<p class="update">Here is what <b>Sandra Randall (Butler)</b>, a participant who just graduated, has to say &#8211; &#8220;You kindly offered me the opportunity to join your Ruby course. I&#8217;m new to development and found the course, even though basic for programmers, a little tricky for me. I managed to complete all of the assessments and really learnt a lot. Thank you very much for the opportunity. It has really given me the push I needed to learn Ruby and I&#8217;m currently treading my way through both the pickaxe and Agile Development books and enjoying it. I&#8217;ve recently been offered a position as a Junior Systems Developer at a local Software house in South Africa &#8211; all thanks to the push you gave me which gave me the motivation and drive to get going.&#8221;</p>
<h3>What&#8217;s Ruby?</h3>
<p><img style=' float: right; padding: 4px; margin: 0 0 2px 7px;'  class="alignright" title="License: http://creativecommons.org/licenses/by-sa/2.5/" src="http://rubylearning.com/images/rubylogo.png" alt="Ruby" height="125" width="125" /></p>
<p>According to <a href="http://www.ruby-lang.org/en/">http://www.ruby-lang.org/en/</a> &#8211; &#8220;Ruby is a dynamic, open source programming language with a focus on simplicity and productivity. Ruby&#8217;s elegant syntax is natural to read and easy to write.&#8221;</p>
<p><b>Yukihiro Matsumoto</b>, the creator of Ruby, in <b><a href="http://linuxdevcenter.com/pub/a/linux/2001/11/29/ruby.html">an interview</a></b> says -</p>
<blockquote>
<p>I believe people want to express themselves when they program. They don&#8217;t want to fight with the language. Programming languages must feel natural to programmers. I tried to make people enjoy programming and concentrate on the fun and creative part of programming when they use Ruby.</p>
</blockquote>
<h3>What Will I Learn?</h3>
<p>In the Ruby programming course, you will learn the <a href="http://rubylearning.com/satishtalim/tutorial.html">essential features of Ruby</a> that you will end up using every day. You will also be introduced to Git, GitHub, HTTP concepts, RubyGems, Rack and Heroku.</p>
<p>Depending on participation levels, we throw a Ruby coding challenge in the mix, appropriate for the level we are at. We have been known to give out a prize or two for the &#8216;best&#8217; solution.</p>
<h3>Who&#8217;s It For?</h3>
<p><b>A <em>beginner</em> with some knowledge of programming.</b>.</p>
<p>You can read what past participants have to say about the course.</p>
<ul>
<li><a href="http://rubylearning.com/other/testimonials.html">Testimonials</a></li>
<li><a href="http://natashatherobot.com/2012/02/07/rubylearning-core-ruby-review/">Natasha Murashev</a></li>
<li><a href="http://www.codegurl.com/2011/10/ruby-doctest-with-victor-goff-of.html">Melanie Shebel</a></li>
<li><a href="http://maniempire.blogspot.in/2011/07/ruby-pair-programming.html">Mani Maran M</a></li>
</ul>
<h3>Mentors</h3>
<p><a href="http://satishtalim.com/">Satish Talim</a>, Michael Kohl, Satoshi Asakawa, Victor Goff III and others from the RubyLearning team.</p>
<h3>Dates</h3>
<p>The course starts on <b>Saturday, 3rd Mar. 2012</b> and runs for seven weeks.</p>
<h3>RubyLearning&#8217;s IRC Channel</h3>
<p>Most of the mentors and students hang out at RubyLearning&#8217;s IRC (irc.freenode.net) channel (#rubylearning.org) for both technical and non-technical discussions. Everyone benefits with the active discussions on Ruby with the mentors.</p>
<h3>How do I register and pay the course fees?</h3>
<ul>
<li>The course is based on the <strong>The Ultimate Guide to Ruby Programming</strong> eBook. This book is <a href="http://book.rubylearning.org/">normally priced at US$ 19.95</a> and we are discounting it US$ 10.00 by combining it in the Course+eBook option below.</li>
<li>You can pay either by Paypal or send cash via <a href="http://www.westernunion.com/info/selectCountry.asp">Western Union Money Transfer</a> or by bank transfer (if you are in India). The fees collected helps RubyLearning maintain the site, this Ruby course, the Ruby eBook, and provide quality content to you.</li>
<li>Once you pay the fees below, <a href="http://rubylearning.org/">register on the RubyLearning.org site</a> and send us your name and registered email id while creating an account at <a href="http://rubylearning.org/">RubyLearning.org</a> to <strong>satish [at] rubylearning [dot] com</strong></li>
<li>We will enroll you into the course. If you have purchased the eBook at the time of registration, we will personally email you the eBook within 24 hours.</li>
</ul>
<p>You can pay the Course Fees by <b>selecting one of the three options</b> from the drop-down menu below. <b>Please select your option</b> and then click on the &#8220;Add to Cart&#8221; button.</p>
</div>
<div>
<form action="https://www.paypal.com/cgi-bin/webscr" method="post">
<p>
<input type="hidden" name="cmd" value="_s-xclick" /></p>
<p>
<input type="hidden" name="hosted_button_id" value="J7AQ8C6CTKQJL" /></p>
<table>
<tr>
<td>
<input type="hidden" name="on0" value="Register" />Register</td>
</tr>
<tr>
<td>
<select name="os0" size="2">
<option value="Ruby eBook">Ruby eBook $19.95</option>
<option value="Ruby Course">Ruby Course $49.95</option>
<option value="Course+eBook">Course+eBook $59.95</option>
</select>
</td>
</tr>
</table>
<p>
<input type="hidden" name="currency_code" value="USD" /></p>
<p>
<input type="image" src="https://www.paypal.com/en_US/i/btn/btn_cart_LG.gif" style="border: 0px none ; width:auto ; min-width:0" name="submit" alt="PayPal - The safer, easier way to pay online." /></p>
<p><img alt="" style="border: 0px none ;" src="https://www.paypalobjects.com/en_GB/i/scr/pixel.gif" width="1" height="1" /></p>
</form>
</div>
<div>
<p>At the end of this course you should have all the knowledge to explore the wonderful world of Ruby on your own.</p>
<p>Here are some details on how the course works:</p>
<h4>Important:</h4>
<p>Once the course starts, you can login and start with the lessons <b>any day and time</b> and post your queries in the forum under the relevant lessons. Someone shall always be there to answer them. Just to set the expectations correctly, there is no real-time &#8216;webcasting&#8217;.</p>
<h4>Methodology:</h4>
<ul>
<li>The Mentors shall give you URL&#8217;s of pages and sometimes some extra notes; you need to read through. Read the pre-class reading material at a convenient time of your choice &#8211; the dates mentioned are just for your guideline. While reading, please make a note of all your doubts, queries, questions, clarifications, comments about the lesson and after you have completed all the pages, post these on the forum <b>under the relevant lesson</b>. There could be some questions that relate to something that has not been mentioned or discussed by the mentors thus far; you could post the same too. Please remember that with every post, do mention the operating system of your computer.</li>
<li>The mentor shall highlight the important points that you need to remember for that day&#8217;s session.</li>
<li>There could be exercises every day. Please do them.</li>
<li>Participate in the forum for asking and answering questions or starting discussions. Share knowledge, and exchange ideas among yourselves during the course period. Participants are strongly encouraged to post technical questions, interesting articles, tools, sample programs or anything that is relevant to the class / lesson. Please do not post a simple &quot;Thank you&quot; note or &quot;Hello&quot; message to the forum. Please be aware that these messages are considered noises by people subscribed to the forum.</li>
</ul>
<h4>Outline of Work Expectations:</h4>
<ol>
<li>Most of the days, you will have exercises to solve. These are there to help you assimilate whatever you have learned till then.</li>
<li>Some days may have some extra assignments / food for thought articles / programs</li>
<li><strong>Above all, do take part in the relevant forums. Past participants will confirm that they learned the best by active participation.</strong></li>
</ol>
<h4>Some Commonly Asked Questions</h4>
<ul>
<li><b>Qs.</b> Is there any specific time when I need to be online?<br /><b>Ans.</b> No. You need not be online at a specific time of the day.</li>
<li><b>Qs.</b> Is it important for me to take part in the course forums?<br /><b>Ans.</b> YES. You must Participate in the forum(s) for asking and answering questions or starting discussions. Share knowledge, and exchange ideas among yourselves (participants) during the course period. Participants are strongly encouraged to post technical questions, interesting articles, tools, sample programs or anything that is relevant to the class / lesson. Past participants will confirm that they learned the best by active participation.</li>
<li><b>Qs.</b> How much time do I need to spend online for a course, in a day?<br /><b>Ans.</b> This will vary from person to person. All depends upon your comfort level and the amount of time you want to spend on a particular lesson or task.</li>
<li><b>Qs.</b> Is there any specific set time for feedback (e.g., any mentor responds to me within 24 hours?)<br /><b>Ans.</b> Normally somebody should answer your query / question within 24 hours.</li>
<li><b>Qs.</b> What happens if nobody answers my questions / queries?<br /><b>Ans.</b> Normally, that will not happen. In case you feel that your question / query is not answered, then please post the same in the thread &#8211; &#8220;Any UnAnswered Questions / Queries&#8221;.</li>
<li><b>Qs.</b> What happens to the class (or forums) after a course is over? Can you keep it open for a few more days so that students can complete and discuss too?<br /><b>Ans.</b> The course and its forum is open for a month after the last day of the course.</li>
</ul>
<p>Remember, the idea is to have fun learning Ruby.</p>
</div>
<p>Technorati Tags: <a href="http://technorati.com/tag/Ruby+course" rel="tag">Ruby course</a>, <a href="http://technorati.com/tag/Ruby" rel="tag">Ruby</a>, <a href="http://technorati.com/tag/Ruby+Training" rel="tag">Ruby Training</a>, <a href="http://technorati.com/tag/Programming" rel="tag"> Programming</a></p>
<p><a href="http://www.launchbit.com/az/113-209/"><img width="468" height="60" src="http://www.launchbit.com/az-images/113-209/" /></a><br />
<small>(Powered by <a href="http://www.launchbit.com/lb/113-209/">LaunchBit</a>)</small></p>

]]></content:encoded>
			<wfw:commentRss>http://rubylearning.com/blog/2012/02/10/ruby-programming-31st-batch-registrations-now-open/feed/</wfw:commentRss>
		<slash:comments>46</slash:comments>
		</item>
	</channel>
</rss>

