<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:dc="http://purl.org/dc/elements/1.1/" version="2.0"><channel><atom:link rel="hub" href="http://tumblr.superfeedr.com/" xmlns:atom="http://www.w3.org/2005/Atom"/><description></description><title>3den</title><generator>Tumblr (3.0; @marceloeden)</generator><link>http://blog.3den.org/</link><item><title>Rails Girls: # RailsGirls Summer of Code: Student application now open!</title><description>&lt;a href="http://blog.railsgirls.com/post/50582374373/railsgirls-summer-of-code-student-application-now"&gt;Rails Girls: # RailsGirls Summer of Code: Student application now open!&lt;/a&gt;: &lt;p&gt;&lt;a class="tumblr_blog" href="http://blog.railsgirls.com/post/50582374373/railsgirls-summer-of-code-student-application-now"&gt;railsgirls&lt;/a&gt;:&lt;/p&gt;
&lt;blockquote&gt;
&lt;p&gt;We’re extremely excited to announce that the RailsGirls Summer of Code student application is now open!&lt;/p&gt;
&lt;p&gt;The Berlin team, especially the incredible Rails Girls Hero &lt;a href="https://github.com/svenfuchs"&gt;Sven from Travis CI &lt;/a&gt; have been working unimaginably hard to bring this to you. Big ups!!&lt;/p&gt;
&lt;p&gt;&lt;img alt="image" src="http://media.tumblr.com/0fa15b36ab1f05258f0d01c35743212f/tumblr_inline_mmwf5ymNwK1qz4rgp.jpg"/&gt;&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;RailsGirls Summer of Code is a…&lt;/strong&gt;&lt;/p&gt;
&lt;/blockquote&gt;</description><link>http://blog.3den.org/post/50917964449</link><guid>http://blog.3den.org/post/50917964449</guid><pubDate>Mon, 20 May 2013 13:28:19 -0400</pubDate></item><item><title>giant robots smashing into other giant robots: Git Landscaping</title><description>&lt;a href="http://robots.thoughtbot.com/post/29355216290/git-landscaping"&gt;giant robots smashing into other giant robots: Git Landscaping&lt;/a&gt;: &lt;p&gt;&lt;a class="tumblr_blog" href="http://robots.thoughtbot.com/post/29355216290/git-landscaping"&gt;thoughtbot&lt;/a&gt;:&lt;/p&gt;
&lt;blockquote&gt;
&lt;p&gt;I recently worked on a project with 60+ old feature branches. Most of them had been merged into &lt;code&gt;master&lt;/code&gt; and were subsequently abandoned. We decided we wanted to clean up a bit, and git made that easy. Assuming your main branch is named &lt;code&gt;master&lt;/code&gt;, and the remote you are cleaning up is called &lt;code&gt;origin&lt;/code&gt;:&lt;/p&gt;
&lt;/blockquote&gt;</description><link>http://blog.3den.org/post/29492745490</link><guid>http://blog.3den.org/post/29492745490</guid><pubDate>Wed, 15 Aug 2012 14:29:01 -0400</pubDate></item><item><title>slabText – a jQuery plugin for creating big, bold &amp; responsive headlines</title><description>&lt;a href="http://www.frequency-decoder.com/demo/slabText/"&gt;slabText – a jQuery plugin for creating big, bold &amp; responsive headlines&lt;/a&gt;</description><link>http://blog.3den.org/post/24018231144</link><guid>http://blog.3den.org/post/24018231144</guid><pubDate>Tue, 29 May 2012 17:33:41 -0400</pubDate></item><item><title>Badass JavaScript: The JSConf 2012 videos are being released!</title><description>&lt;a href="http://badassjs.com/post/21787349913/the-jsconf-2012-videos-are-being-released"&gt;Badass JavaScript: The JSConf 2012 videos are being released!&lt;/a&gt;: &lt;p&gt;&lt;a class="tumblr_blog" href="http://badassjs.com/post/21787349913/the-jsconf-2012-videos-are-being-released"&gt;badassjs&lt;/a&gt;:&lt;/p&gt;
&lt;blockquote&gt;
&lt;p&gt;&lt;img src="http://media.tumblr.com/tumblr_m31mqmMk9u1qbis4g.png"/&gt;&lt;/p&gt;
&lt;p&gt;Well the title pretty much says it all, but I thought I’d let everyone know that the JSConf 2012 videos are &lt;a href="http://2012.jsconf.us" target="_blank"&gt;beginning to be released&lt;/a&gt;. JSConf is one of the premier JavaScript conferences that always sells out within a few seconds, so if you didn’t make it this year, you’re in luck because…&lt;/p&gt;
&lt;/blockquote&gt;</description><link>http://blog.3den.org/post/23617550288</link><guid>http://blog.3den.org/post/23617550288</guid><pubDate>Wed, 23 May 2012 14:16:23 -0400</pubDate></item><item><title>Fix for (ArgumentError: invalid byte sequence in US-ASCII)</title><description>&lt;p&gt;I was getting the following error whenever I tried to deploy with Capistrano:&lt;/p&gt;
&lt;p&gt;&lt;code&gt; ** [deploy:update_code] exception while rolling back: Capistrano::ConnectionError, connection failed for: 10.180.82.250 (ArgumentError: invalid byte sequence in US-ASCII) connection failed for: 10.180.82.250 (ArgumentError: invalid byte sequence in US-ASCII)&lt;/code&gt;&lt;/p&gt;
&lt;p&gt;But after researching I found out that the problem was on some gem&amp;#8217;s file and the fix is pretty simple, all you need to do is:&lt;/p&gt;
&lt;p&gt;&lt;code&gt; $ export LANG=en_US.UTF-8 &lt;br/&gt;$ export LC_ALL="en_US.UTF-8" &lt;br/&gt;$ bundle&lt;/code&gt;&lt;/p&gt;
&lt;p&gt;The lines above will force the file system to use UTF-8 and bundle will use UTF-8 for all the gems.&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;Update: &lt;/strong&gt;Is better to add the export properties above to your ~/.bash_profile (or ~/.zshrc) otherwise you will have to do the above steps whenever you want to bundle.&lt;/p&gt;</description><link>http://blog.3den.org/post/23551766638</link><guid>http://blog.3den.org/post/23551766638</guid><pubDate>Tue, 22 May 2012 13:43:00 -0400</pubDate><category>capistrano</category><category>ruby</category><category>bug</category></item><item><title>The Secret to Rails OO Design</title><description>&lt;a href="http://blog.steveklabnik.com/posts/2011-09-06-the-secret-to-rails-oo-design"&gt;The Secret to Rails OO Design&lt;/a&gt;</description><link>http://blog.3den.org/post/20137874799</link><guid>http://blog.3den.org/post/20137874799</guid><pubDate>Thu, 29 Mar 2012 18:49:52 -0400</pubDate></item><item><title>Extracting Domain Models: A Practical Example</title><description>&lt;a href="http://blog.steveklabnik.com/posts/2011-09-22-extracting-domain-models-a-practical-example"&gt;Extracting Domain Models: A Practical Example&lt;/a&gt;</description><link>http://blog.3den.org/post/20137843085</link><guid>http://blog.3den.org/post/20137843085</guid><pubDate>Thu, 29 Mar 2012 18:49:19 -0400</pubDate><category>rails</category><category>ruby</category></item><item><title>Ruby Modules</title><description>&lt;a href="http://tutorials.jumpstartlab.com/topics/models/modules.html"&gt;Ruby Modules&lt;/a&gt;</description><link>http://blog.3den.org/post/20137794398</link><guid>http://blog.3den.org/post/20137794398</guid><pubDate>Thu, 29 Mar 2012 18:48:29 -0400</pubDate></item><item><title>HTML5 Is An Oncoming Train, But Native App Development Is An Oncoming Rocket Ship</title><description>&lt;a href="http://techcrunch.com/2011/02/09/html5-versus-native-apps/"&gt;HTML5 Is An Oncoming Train, But Native App Development Is An Oncoming Rocket Ship&lt;/a&gt;</description><link>http://blog.3den.org/post/20006099723</link><guid>http://blog.3den.org/post/20006099723</guid><pubDate>Tue, 27 Mar 2012 08:32:00 -0400</pubDate><category>HTML5</category><category>iOS</category></item><item><title>Why You Should Be Excited About Garbage Collection in Ruby 2.0</title><description>&lt;a href="http://patshaughnessy.net/2012/3/23/why-you-should-be-excited-about-garbage-collection-in-ruby-2-0"&gt;Why You Should Be Excited About Garbage Collection in Ruby 2.0&lt;/a&gt;</description><link>http://blog.3den.org/post/19788027283</link><guid>http://blog.3den.org/post/19788027283</guid><pubDate>Fri, 23 Mar 2012 13:35:27 -0400</pubDate><category>rails</category><category>ruby</category></item><item><title>The Magic of Doing One Thing at a Time</title><description>&lt;a href="http://blogs.hbr.org/schwartz/2012/03/the-magic-of-doing-one-thing-a.html"&gt;The Magic of Doing One Thing at a Time&lt;/a&gt;</description><link>http://blog.3den.org/post/19403381991</link><guid>http://blog.3den.org/post/19403381991</guid><pubDate>Fri, 16 Mar 2012 13:42:47 -0400</pubDate></item><item><title>Net::HTTP Cheat Sheet</title><description>&lt;a href="http://www.rubyinside.com/nethttp-cheat-sheet-2940.html"&gt;Net::HTTP Cheat Sheet&lt;/a&gt;: &lt;p&gt;Typhoeus was not working but fortunately I found this link. It has an awesome reference for net/http so you won’t need to add any extra gem to do simple http and https requests.&lt;/p&gt;</description><link>http://blog.3den.org/post/19312383287</link><guid>http://blog.3den.org/post/19312383287</guid><pubDate>Wed, 14 Mar 2012 19:04:30 -0400</pubDate><category>ruby</category></item><item><title>WE'RE BLOWN AWAY: This Startup Could Literally Change The Entire Software Industry</title><description>&lt;a href="http://www.businessinsider.com/were-blown-away-this-startup-could-literally-change-the-entire-software-industry-2012-3?utm_source=twbutton&amp;utm_medium=social&amp;utm_campaign=enterprise#ixzz1odHyydh1"&gt;WE'RE BLOWN AWAY: This Startup Could Literally Change The Entire Software Industry&lt;/a&gt;</description><link>http://blog.3den.org/post/19002878772</link><guid>http://blog.3den.org/post/19002878772</guid><pubDate>Fri, 09 Mar 2012 10:11:37 -0500</pubDate></item><item><title>Pair Programming Considered Harmful?</title><description>&lt;a href="http://techcrunch.com/2012/03/03/pair-programming-considered-harmful/"&gt;Pair Programming Considered Harmful?&lt;/a&gt;</description><link>http://blog.3den.org/post/19002531899</link><guid>http://blog.3den.org/post/19002531899</guid><pubDate>Fri, 09 Mar 2012 09:58:23 -0500</pubDate></item><item><title>Badass JavaScript: CoffeePhysics: A Fast New Physics Engine Written in CoffeeScript</title><description>&lt;a href="http://badassjs.com/post/18503583619/coffeephysics-a-fast-new-physics-engine-written-in"&gt;Badass JavaScript: CoffeePhysics: A Fast New Physics Engine Written in CoffeeScript&lt;/a&gt;: &lt;p&gt;Justin Windle has just released a new physics engine called CoffeePhysics, which as it’s name states, is written in CoffeeScript. It is quite lightweight (minified, it’s just 8KB), but also very powerful.&lt;/p&gt;
&lt;p&gt;&lt;img src="http://media.tumblr.com/tumblr_m05ymp3GtK1qbis4g.png"/&gt;&lt;/p&gt;
&lt;p&gt;There are a &lt;a href="http://soulwire.co.uk/coffeephysics/" target="_blank"&gt;number of demos&lt;/a&gt; that show the performance and features of the library,…&lt;/p&gt;</description><link>http://blog.3den.org/post/19002501246</link><guid>http://blog.3den.org/post/19002501246</guid><pubDate>Fri, 09 Mar 2012 09:57:00 -0500</pubDate></item><item><title>Entrepreneurs Who Go It Alone — By Choice</title><description>&lt;a href="http://www.time.com/time/specials/packages/article/0,28804,2094921_2094923_2094924,00.html"&gt;Entrepreneurs Who Go It Alone — By Choice&lt;/a&gt;</description><link>http://blog.3den.org/post/19002479605</link><guid>http://blog.3den.org/post/19002479605</guid><pubDate>Fri, 09 Mar 2012 09:56:19 -0500</pubDate></item></channel></rss>
