<?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/"
	xmlns:georss="http://www.georss.org/georss" xmlns:geo="http://www.w3.org/2003/01/geo/wgs84_pos#" xmlns:media="http://search.yahoo.com/mrss/"
	>

<channel>
	<title>Ruby Newbie</title>
	<atom:link href="http://7enn.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://7enn.com</link>
	<description>Putting the Rub in Ruby</description>
	<lastBuildDate>Wed, 10 Apr 2013 07:08:58 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.com/</generator>
<cloud domain='7enn.com' port='80' path='/?rsscloud=notify' registerProcedure='' protocol='http-post' />
<image>
		<url>http://s2.wp.com/i/buttonw-com.png</url>
		<title>Ruby Newbie</title>
		<link>http://7enn.com</link>
	</image>
	<atom:link rel="search" type="application/opensearchdescription+xml" href="http://7enn.com/osd.xml" title="Ruby Newbie" />
	<atom:link rel='hub' href='http://7enn.com/?pushpress=hub'/>
		<item>
		<title>How to use vim and vi key bindings and shortcuts inside bash and zsh</title>
		<link>http://7enn.com/2012/03/03/how-to-use-vim-and-vi-key-bindings-and-shortcuts-inside-bash-and-zsh/</link>
		<comments>http://7enn.com/2012/03/03/how-to-use-vim-and-vi-key-bindings-and-shortcuts-inside-bash-and-zsh/#comments</comments>
		<pubDate>Sat, 03 Mar 2012 20:19:21 +0000</pubDate>
		<dc:creator>royosherove</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[vim]]></category>

		<guid isPermaLink="false">https://7enn.wordpress.com/?p=184</guid>
		<description><![CDATA[During my last talk at the ruby underground last week, one of the biggest &#8220;aha&#8221; moments for the crowd was one I did not anticipate. I switched to command line mode to explain something and mentioned how cool it was that I am using vim key bindings to edit the command line text. I simply [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=7enn.com&#038;blog=19428615&#038;post=184&#038;subd=7enn&#038;ref=&#038;feed=1" width="1" height="1" />]]></description>
				<content:encoded><![CDATA[<p>During my last talk at the ruby underground last week, one of the biggest &#8220;aha&#8221; moments for the crowd was one I did not anticipate.</p>
<p>I switched to command line mode to explain something and mentioned how cool it was that I am using vim key bindings to edit the command line text. I simply press Esc to start moving around using b or w , then I can use &#8220;cow&#8221; to edit a current word on the command line etc..</p>
<p>Someone mentioned that was the one thing that made the talk worthy coming to for him.</p>
<p>To make this happen, I was <a href="https://github.com/astrails/dotzsh">using a .zshrc file from astrails.</a></p>
<p>but the magic is very simple to accomplish. by default you probably have emacs style key bindings in your command line. but if your&#8217;e a vim fan (as were the astrails guys I interned with for 6 months) you can change your .zshrc file to add this little line:</p>
<blockquote>
<p>bindkey -v</p>
</blockquote>
<p>if you&#8217;re in bash instead of zsh you can use</p>
<blockquote>
<p>set -o vi</p>
</blockquote>
<p>that&#8217;s it. next time you load a command shell you can Esc away and use vim key bindings.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/7enn.wordpress.com/184/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/7enn.wordpress.com/184/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=7enn.com&#038;blog=19428615&#038;post=184&#038;subd=7enn&#038;ref=&#038;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://7enn.com/2012/03/03/how-to-use-vim-and-vi-key-bindings-and-shortcuts-inside-bash-and-zsh/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://2.gravatar.com/avatar/5dcc2e57fbe5e88d956e8fdeb132c73b?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">royosherove</media:title>
		</media:content>
	</item>
		<item>
		<title>My zsh theme</title>
		<link>http://7enn.com/2012/03/01/my-zsh-theme/</link>
		<comments>http://7enn.com/2012/03/01/my-zsh-theme/#comments</comments>
		<pubDate>Thu, 01 Mar 2012 13:41:42 +0000</pubDate>
		<dc:creator>royosherove</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://7enn.com/?p=180</guid>
		<description><![CDATA[I use ohmyzsh to customize and pimp up my command line. Here&#8217;s the gist for my custom theme that has lots of information (current branch, time since last commit, what change types and more).<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=7enn.com&#038;blog=19428615&#038;post=180&#038;subd=7enn&#038;ref=&#038;feed=1" width="1" height="1" />]]></description>
				<content:encoded><![CDATA[<p>I use <a href="https://github.com/robbyrussell/oh-my-zsh">ohmyzsh</a> to customize and pimp up my command line.</p>
<p><a href="https://gist.github.com/1949777" target="_blank">Here&#8217;s the gist for my custom theme </a>that has lots of information (current branch, time since last commit, what change types and more).</p>
<p><a href="http://7enn.files.wordpress.com/2012/03/screen-shot-2012-03-01-at-3-39-31-pm.png"><img class="alignnone size-medium wp-image-181" title="Screen Shot " src="http://7enn.files.wordpress.com/2012/03/screen-shot-2012-03-01-at-3-39-31-pm.png?w=300&#038;h=21" alt="" width="300" height="21" /></a></p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/7enn.wordpress.com/180/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/7enn.wordpress.com/180/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=7enn.com&#038;blog=19428615&#038;post=180&#038;subd=7enn&#038;ref=&#038;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://7enn.com/2012/03/01/my-zsh-theme/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://2.gravatar.com/avatar/5dcc2e57fbe5e88d956e8fdeb132c73b?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">royosherove</media:title>
		</media:content>

		<media:content url="http://7enn.files.wordpress.com/2012/03/screen-shot-2012-03-01-at-3-39-31-pm.png?w=300" medium="image">
			<media:title type="html">Screen Shot </media:title>
		</media:content>
	</item>
		<item>
		<title>My vim ppt from ruby underground</title>
		<link>http://7enn.com/2012/02/28/my-vim-ppt-from-ruby-underground/</link>
		<comments>http://7enn.com/2012/02/28/my-vim-ppt-from-ruby-underground/#comments</comments>
		<pubDate>Tue, 28 Feb 2012 09:55:30 +0000</pubDate>
		<dc:creator>royosherove</dc:creator>
				<category><![CDATA[resources]]></category>
		<category><![CDATA[vim]]></category>

		<guid isPermaLink="false">https://7enn.wordpress.com/?p=176</guid>
		<description><![CDATA[<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=7enn.com&#038;blog=19428615&#038;post=176&#038;subd=7enn&#038;ref=&#038;feed=1" width="1" height="1" />]]></description>
				<content:encoded><![CDATA[<div id="__ss_11780126" style="width:425px;"><strong><iframe src='http://www.slideshare.net/slideshow/embed_code/11780126' width='604' height='495'></iframe></strong></div>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/7enn.wordpress.com/176/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/7enn.wordpress.com/176/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=7enn.com&#038;blog=19428615&#038;post=176&#038;subd=7enn&#038;ref=&#038;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://7enn.com/2012/02/28/my-vim-ppt-from-ruby-underground/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
	
		<media:content url="http://2.gravatar.com/avatar/5dcc2e57fbe5e88d956e8fdeb132c73b?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">royosherove</media:title>
		</media:content>
	</item>
		<item>
		<title>vim key practice kata #1 &#8211; cw</title>
		<link>http://7enn.com/2012/02/27/vim-key-practice-kata-1-cw/</link>
		<comments>http://7enn.com/2012/02/27/vim-key-practice-kata-1-cw/#comments</comments>
		<pubDate>Mon, 27 Feb 2012 12:47:30 +0000</pubDate>
		<dc:creator>royosherove</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[vim]]></category>

		<guid isPermaLink="false">https://7enn.wordpress.com/?p=173</guid>
		<description><![CDATA[Load up piece of text Use / to find instance of ‘the’ Use ‘cw’ to change ‘the’ to ‘your’ Use ‘esc’ and then ‘n’ to move to next find Use ‘.’ to repeat Use ‘n’ and ‘.’ to repeat as many times as possible<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=7enn.com&#038;blog=19428615&#038;post=173&#038;subd=7enn&#038;ref=&#038;feed=1" width="1" height="1" />]]></description>
				<content:encoded><![CDATA[<ul>
<li>Load up piece of text</li>
<li>Use <b>/</b> to find instance of ‘the’</li>
<li>Use ‘<b>cw</b>’ to change ‘the’ to ‘your’</li>
<li>Use ‘<b>esc</b>’ and then ‘n’ to move to next find</li>
<li>Use <b>‘.’</b> to repeat</li>
<li>Use ‘<b>n</b>’ and <b>‘.’</b> to repeat as many times as possible</li>
</ul>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/7enn.wordpress.com/173/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/7enn.wordpress.com/173/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=7enn.com&#038;blog=19428615&#038;post=173&#038;subd=7enn&#038;ref=&#038;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://7enn.com/2012/02/27/vim-key-practice-kata-1-cw/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
	
		<media:content url="http://2.gravatar.com/avatar/5dcc2e57fbe5e88d956e8fdeb132c73b?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">royosherove</media:title>
		</media:content>
	</item>
		<item>
		<title>Now is the time to become an Israeli Ruby developer</title>
		<link>http://7enn.com/2012/01/30/now-is-the-time-to-become-an-israeli-ruby-developer/</link>
		<comments>http://7enn.com/2012/01/30/now-is-the-time-to-become-an-israeli-ruby-developer/#comments</comments>
		<pubDate>Mon, 30 Jan 2012 13:31:14 +0000</pubDate>
		<dc:creator>royosherove</dc:creator>
				<category><![CDATA[resources]]></category>
		<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://7enn.com/?p=168</guid>
		<description><![CDATA[Israel is booming with companies realizing just how great ruby is for getting apps up and running quickly. In ruby underground, every meeting, several people who are startup owners stand up and say that they are looking for ruby devs. Every time the number is bigger and bigger. And there are not enough ruby devs [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=7enn.com&#038;blog=19428615&#038;post=168&#038;subd=7enn&#038;ref=&#038;feed=1" width="1" height="1" />]]></description>
				<content:encoded><![CDATA[<p>Israel is booming with companies realizing just how great ruby is for getting apps up and running quickly.</p>
<p>In <a href="http://www.meetup.com/IsraelRubyUnderground/">ruby underground</a>, every meeting, several people who are startup owners stand up and say that they are looking for ruby devs. Every time the number is bigger and bigger. And there are not enough ruby devs to go around.</p>
<p>Just today I noticed <a href="http://groups.google.com/group/israelrb/browse_thread/thread/7ca6601c1f5bd6bc?hl=en">an email on the IsraelRb mailing list, </a>where a company is looking for ruby devs, and wrote this:</p>
<blockquote><p>p.s if you will help to fill-in this position by introducing us<br />
someone you know &#8211; we will give you a shiny new iPhone4S <img src='http://s0.wp.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p></blockquote>
<p>If you live in Israel, it&#8217;s time to learn ruby, my friends. Coming from .NET you can expect to make pretty much the same or more than you are making right now. if you are coming with little or no experience you can get up to speed &#8211; many companies are looking for interns as well. Get paid less the first year, then get paid like a pro they year after.</p>
<p>Israel *is* a startup nation, but it is just now clearing the fog that Microsoft has swamped us all with, and seeing that sometimes, the right tool for the right job, is not in your current ecosystem.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/7enn.wordpress.com/168/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/7enn.wordpress.com/168/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=7enn.com&#038;blog=19428615&#038;post=168&#038;subd=7enn&#038;ref=&#038;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://7enn.com/2012/01/30/now-is-the-time-to-become-an-israeli-ruby-developer/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
	
		<media:content url="http://2.gravatar.com/avatar/5dcc2e57fbe5e88d956e8fdeb132c73b?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">royosherove</media:title>
		</media:content>
	</item>
		<item>
		<title>A little flow &#8211; 6 months later</title>
		<link>http://7enn.com/2011/09/04/a-little-flow-6-months-later/</link>
		<comments>http://7enn.com/2011/09/04/a-little-flow-6-months-later/#comments</comments>
		<pubDate>Sun, 04 Sep 2011 09:52:30 +0000</pubDate>
		<dc:creator>royosherove</dc:creator>
				<category><![CDATA[Practices]]></category>

		<guid isPermaLink="false">https://7enn.wordpress.com/?p=166</guid>
		<description><![CDATA[In that past month or so, I finally feel like I am starting to &#8220;flow&#8221; in various situations in rails development.  doing ajax work, creating new feature pages &#8211; most actions begin to feel more or less the same idea, once you&#8217;ve done them once. I am starting to understand what &#8216;they&#8217; meant when they [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=7enn.com&#038;blog=19428615&#038;post=166&#038;subd=7enn&#038;ref=&#038;feed=1" width="1" height="1" />]]></description>
				<content:encoded><![CDATA[<p>In that past month or so, I finally feel like I am starting to &#8220;flow&#8221; in various situations in rails development.  doing ajax work, creating new feature pages &#8211; most actions begin to feel more or less the same idea, once you&#8217;ve done them once. I am starting to understand what &#8216;they&#8217; meant when they called it ruby on rails &#8211; there is a certain way to do things, and as you stick to it (much like in the MS world) &#8211; you should have a pretty easy time going. Step out of it a bit, and you start fighting the framework.</p>
<p>Two major differences from the MS world though:</p>
<ul>
<li>The &#8216;guided&#8217; way creates code that is readable and maintainable, assuming you have tests (I&#8217;m not create about the maintainability of the tests just yet)</li>
<li>Fighting the framework is also pretty easy if you do get there &#8211; ruby is a language with much less restrictions than C#. but many times I&#8217;ve found that I am fighting the framework when there is a perfectly good &#8216;other&#8217; way of doing what I need.</li>
</ul>
<p>as a side note, it is pretty awesome to discover everyday little things that really made me smile happily when I was shown them. One of the last onces that happened was when, after a week of working on features with javascript, and working with creating html element ids such as &#8220;form_user_151&#8243; so I can find them later in ajax, my team lead showed me, during code review, that I could have just used the dom_id(object) in question, and more specifically, dom_id(theobject, :the_prefix). so to create an html id of form_customer_151 I&#8217;d just write dom_id(@customer, :form)</p>
<p>in haml it is even cooler: to cerate an html element like that in haml all I have to do is wrap the object in [] like this:</p>
<p>#[@customer,:form]</p>
<p>which is short for dom_id(@customer, :form)</p>
<p> </p>
<p>what&#8217;s cool is that there is perfect sync (synergy..!) between how you create the html, and how you navigate it from javascript, without needing to concatenate strings together too often. The power of OSS made sure that something that everyone keeps doing all the time, becuase easier and easier over time.</p>
<p>That feature really made me happy. I remember looking awe-struck for 15 seconds when he showed me that. Isn&#8217;t that a great feeling?</p>
<p> </p>
<p>PS</p>
<p>Why did it take me 6 months to gain some &#8216;flow&#8217; ? I took on myself to learn many things at once:</p>
<ul>
<li>Linux/mac OS</li>
<li>git</li>
<li>vim</li>
<li>web development (I was a desktop programmer with winforms and a little WPF. I tried web on MVC &#8211; did NOT take to it)</li>
<li>ruby</li>
<li>rails</li>
</ul>
<p>I knew jQuery from before, but I&#8217;m still learning how to do it *well* today.</p>
<p>THings I don&#8217;t really know yet, or know very little of:</p>
<ul>
<li>deployment (other than a little heroku)</li>
<li>performance/caching</li>
<li>non relational DBs</li>
<li>how to create your own gem</li>
<li>rails inside out (and plugins)</li>
<li>sintatra &amp; alternatives</li>
<li>backbone.js</li>
<li>960 grids and other layout frameworks</li>
<li>I&#8217;m probably missing other things. I still don&#8217;t know everything I don&#8217;t know..! tell me what I missed.</li>
</ul>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/7enn.wordpress.com/166/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/7enn.wordpress.com/166/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=7enn.com&#038;blog=19428615&#038;post=166&#038;subd=7enn&#038;ref=&#038;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://7enn.com/2011/09/04/a-little-flow-6-months-later/feed/</wfw:commentRss>
		<slash:comments>5</slash:comments>
	
		<media:content url="http://2.gravatar.com/avatar/5dcc2e57fbe5e88d956e8fdeb132c73b?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">royosherove</media:title>
		</media:content>
	</item>
		<item>
		<title>The Smallest Commit</title>
		<link>http://7enn.com/2011/08/31/the-smallest-commit/</link>
		<comments>http://7enn.com/2011/08/31/the-smallest-commit/#comments</comments>
		<pubDate>Wed, 31 Aug 2011 06:51:06 +0000</pubDate>
		<dc:creator>royosherove</dc:creator>
				<category><![CDATA[Practices]]></category>

		<guid isPermaLink="false">https://7enn.wordpress.com/?p=164</guid>
		<description><![CDATA[One of the things I&#8217;ve had to &#8216;re-learn&#8217; is how to commit things to source control.  Commits I do now are very very small. how small? small enough so youcan look at the diffs between this and the latest commit in just a minute or two and understand them. here is a simple rule checklist [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=7enn.com&#038;blog=19428615&#038;post=164&#038;subd=7enn&#038;ref=&#038;feed=1" width="1" height="1" />]]></description>
				<content:encoded><![CDATA[<p>One of the things I&#8217;ve had to &#8216;re-learn&#8217; is how to commit things to source control.  Commits I do now are very very small. how small? small enough so youcan look at the diffs between this and the latest commit in just a minute or two and understand them.</p>
<p>here is a simple rule checklist for my commit behavior:</p>
<ul>
<li>Commit one &#8216;feature&#8217; or logical change at a time. if you use the word &#8216;and&#8217; you might need to split commits.</li>
<li>Commit changes to whitespaces and lines cleanup in a separate commit (or it blurs up reading commit diffs.</li>
<li>before commiting &#8211; do git status (to see what changed), and git diff (or git dw.. try it!) to see if you haven&#8217;t left any debugger messages or other debugging things in code.</li>
<li>only add files per logical change</li>
<li>then do commit (after all tests are passing)</li>
</ul>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/7enn.wordpress.com/164/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/7enn.wordpress.com/164/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=7enn.com&#038;blog=19428615&#038;post=164&#038;subd=7enn&#038;ref=&#038;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://7enn.com/2011/08/31/the-smallest-commit/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
	
		<media:content url="http://2.gravatar.com/avatar/5dcc2e57fbe5e88d956e8fdeb132c73b?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">royosherove</media:title>
		</media:content>
	</item>
		<item>
		<title>Video: Ruby on Windows &#8211; Interview with Evan Machnic</title>
		<link>http://7enn.com/2011/07/21/video-ruby-on-windows-interview-with-evan-machnic/</link>
		<comments>http://7enn.com/2011/07/21/video-ruby-on-windows-interview-with-evan-machnic/#comments</comments>
		<pubDate>Thu, 21 Jul 2011 11:05:37 +0000</pubDate>
		<dc:creator>royosherove</dc:creator>
				<category><![CDATA[Community]]></category>
		<category><![CDATA[Video]]></category>
		<category><![CDATA[windows]]></category>

		<guid isPermaLink="false">http://7enn.com/?p=161</guid>
		<description><![CDATA[Evan is one of the folks behind RailsInstaller &#8211; which simplifies getting started with ruby on windows. I got him on skype for a little chat:<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=7enn.com&#038;blog=19428615&#038;post=161&#038;subd=7enn&#038;ref=&#038;feed=1" width="1" height="1" />]]></description>
				<content:encoded><![CDATA[<p>Evan is one of the folks <a href="http://railsinstaller.org/" target="_blank">behind RailsInstaller</a> &#8211; which simplifies getting started with ruby on windows. I got him on skype for a little chat:</p>
<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" width="437" height="289" id="viddler_player_437"> <param name="movie" value="//www.viddler.com/player/5fc52932/"><param name="allowScriptAccess" value="always"/><param name="allowNetworking" value="all"/><param name="wmode" value=""/><param name="allowFullScreen"value="true"/><param name="flashVars" value="f=1&amp;player=full&amp;autoplay=f&amp;disablebranding=f&amp;liverailTags="/><embed src="//www.viddler.com/player/5fc52932/" width="437" height="289" type="application/x-shockwave-flash" wmode="" allowScriptAccess="always" allowFullScreen="true" allowNetworking="all" name="viddler_player_437" flashVars="f=1&amp;player=full&amp;autoplay=f&amp;disablebranding=f&amp;liverailTags="></embed></object>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/7enn.wordpress.com/161/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/7enn.wordpress.com/161/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=7enn.com&#038;blog=19428615&#038;post=161&#038;subd=7enn&#038;ref=&#038;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://7enn.com/2011/07/21/video-ruby-on-windows-interview-with-evan-machnic/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://2.gravatar.com/avatar/5dcc2e57fbe5e88d956e8fdeb132c73b?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">royosherove</media:title>
		</media:content>
	</item>
		<item>
		<title>Six Ruby And Rails Podcasts And Video Casts</title>
		<link>http://7enn.com/2011/07/15/six-ruby-and-rails-podcasts-and-video-casts/</link>
		<comments>http://7enn.com/2011/07/15/six-ruby-and-rails-podcasts-and-video-casts/#comments</comments>
		<pubDate>Thu, 14 Jul 2011 22:06:41 +0000</pubDate>
		<dc:creator>royosherove</dc:creator>
				<category><![CDATA[resources]]></category>
		<category><![CDATA[Video]]></category>

		<guid isPermaLink="false">http://7enn.com/?p=155</guid>
		<description><![CDATA[In my journey I look for things to listen to that will tell me a little more about what it&#8217;s &#8220;like&#8221; to be in ruby land, and podcasts, for better or worse, push out lots of things, inadvertently, about the culture and thinking of the people who do them. eventually, I know i&#8217;ll just have to [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=7enn.com&#038;blog=19428615&#038;post=155&#038;subd=7enn&#038;ref=&#038;feed=1" width="1" height="1" />]]></description>
				<content:encoded><![CDATA[<p>In my journey I look for things to listen to that will tell me a little more about what it&#8217;s &#8220;like&#8221; to be in ruby land, and podcasts, for better or worse, push out lots of things, inadvertently, about the culture and thinking of the people who do them. eventually, I know i&#8217;ll just have to attend one of the offshore conferences to get a real feel for things, but being stuck in israel most of the time, you have to be creative.</p>
<p>here is a non comprehensive list of podcasts, mp3 and video series for ruby and rails folks. Please add more in the comments if I missed anything.</p>
<ul>
<li><a href="http://ruby5.envylabs.com/">Ruby5</a> &#8211; a 5 minute show each time, with pretty helpful talk from the presenters. As a newbie, I like the fact that they sometimes remember that not everyone knows some of the frameworks they are talking about, so they take a sentence or two to explain the idea behind many of the gems and tools they mention. overall, it&#8217;s way too short to be helpful to get the &#8220;feel&#8221; of the community, but it&#8217;s good to be &#8220;in the know&#8221;. I think of it as the short curst cnn of ruby news.</li>
<li><a href="http://rubyshow.com/" target="_blank">The ruby show</a> &#8211; The ruby show has the promise of a great ruby related podcast. It has two presenters who like talking about this stuff, it has a multitude of issues to discuss, and it even has what was supposed to be the british clone of <a href="http://www.thedailyshow.com/news-team/john-oliver" target="_blank">Jon Oliver</a> from the daily show.These guys are really trying, and they are doing a great service to the community&#8230;..but&#8230;.while I subscribe to it, it bugs the hell out of me as a newbie to the scene :</li>
<ul>
<li>They drop names of gems, frameworks and servers like rain drops in the middle of a storm, and they <strong>never, ever</strong> explain what those gems are or the idea behind them, not even for a sentence. It is the most annoying thing to hear &#8220;a new version of <em>smula_buster</em> gem is out, and let&#8217;s hope that the performance is better this time. &#8211; &#8220;yes, that&#8217;s what she said!&#8221;</li>
<li>They are not as funny as they think   &#8211; &#8220;that&#8217;s what she said&#8221; and the like &#8211; I usually have no problem with that, but I expect more from a Jon Oliver lookalike, sorry, and to rpeat that 15 times a show, at some point, it&#8217;s just more about bad timing than anything else, really.</li>
<li>Too many &#8220;inside baseball&#8221; jokes about rails not scaling (I never found out if rails does scale or not), python programmers, and windows programmers.Oh, and not to forget &#8211; &#8221; a version was just released 2 minutes after we released this podcast&#8221; never ending joke.</li>
<li>The never ending hinting about not being paid by companies you happen to be mentioning on the show.</li>
<li>all this makes the show feel like a bit of an arrogant &#8220;call me in 3 years and let&#8217;s talk&#8221; podcast, instead of something newbies can learn from. I&#8217;m not looking for spoonfeeding, but during a car drive, you can&#8217;t write down 15 gem names that flash by to check them out later, and retracing that audio location later is just a big drag. you&#8217;ll get more sponsors when you attract more listeners, and there are a LOT of newbies like me out there, who I think would have loved to tell you this, guys.</li>
</ul>
<li><a href="http://addcasts.com/" target="_blank">ADDCasts</a> &#8211; recently discovered, this video podcast seems kind of nice, but I don&#8217;t have enough experience with it so far to form an opinion.</li>
<li><a href="http://rubyrogues.com/" target="_blank">Ruby Rouges</a> &#8211; recently discovered, this video podcast seems kind of nice, but I don&#8217;t have enough experience with it so far to form an opinion. I&#8217;ve been recommended to listen to the <a href="http://rubyrogues.com/debugging-in-ruby/" target="_blank">debugging in ruby episode,</a> and I will.</li>
<li><a href="http://teachmetocode.com/podcast" target="_blank">Teach me to code</a> &#8211; haven&#8217;t tried it yet</li>
<li><a href="http://railscasts.com/" target="_blank">RailsCasts</a> is a very very helpful set of videos about lots and lots of things in the rails world!</li>
</ul>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/7enn.wordpress.com/155/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/7enn.wordpress.com/155/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=7enn.com&#038;blog=19428615&#038;post=155&#038;subd=7enn&#038;ref=&#038;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://7enn.com/2011/07/15/six-ruby-and-rails-podcasts-and-video-casts/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
	
		<media:content url="http://2.gravatar.com/avatar/5dcc2e57fbe5e88d956e8fdeb132c73b?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">royosherove</media:title>
		</media:content>
	</item>
		<item>
		<title>Setting up a Ruby on Rails environment from scratch on windows</title>
		<link>http://7enn.com/2011/07/14/setting-up-a-ruby-on-rails-environment-from-scratch-on-windows/</link>
		<comments>http://7enn.com/2011/07/14/setting-up-a-ruby-on-rails-environment-from-scratch-on-windows/#comments</comments>
		<pubDate>Thu, 14 Jul 2011 12:24:51 +0000</pubDate>
		<dc:creator>royosherove</dc:creator>
				<category><![CDATA[utils]]></category>
		<category><![CDATA[Video]]></category>

		<guid isPermaLink="false">http://7enn.com/?p=151</guid>
		<description><![CDATA[This is dedicated for my dev friends running on windows, that want to make the jump to a different OS.. yet. Want to start with Ruby and Rails and have no idea where to even begin? Check out RailsInstaller.org &#8211; it contains pretty much everything you need to get started, in a way that is [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=7enn.com&#038;blog=19428615&#038;post=151&#038;subd=7enn&#038;ref=&#038;feed=1" width="1" height="1" />]]></description>
				<content:encoded><![CDATA[<p>This is dedicated for my dev friends running on windows, that want to make the jump to a different OS.. yet.</p>
<p><strong>Want to start with Ruby and Rails and have no idea where to even begin?</strong></p>
<p>Check out <a href="http://railsinstaller.org" target="_blank">RailsInstaller.org</a> &#8211; it contains pretty much everything you need to get started, in a way that is very easy and painless.</p>
<div class="embed-vimeo"><iframe src="http://player.vimeo.com/video/22353046" width="604" height="378" frameborder="0" webkitAllowFullScreen mozallowfullscreen allowFullScreen></iframe></div>
<p>The video on that site will tell you everything you need to know to get started on your &#8220;hello world&#8221; website, including using git, pushing to github and generating rails related views.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/7enn.wordpress.com/151/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/7enn.wordpress.com/151/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=7enn.com&#038;blog=19428615&#038;post=151&#038;subd=7enn&#038;ref=&#038;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://7enn.com/2011/07/14/setting-up-a-ruby-on-rails-environment-from-scratch-on-windows/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
	
		<media:content url="http://2.gravatar.com/avatar/5dcc2e57fbe5e88d956e8fdeb132c73b?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">royosherove</media:title>
		</media:content>
	</item>
	</channel>
</rss>
