<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	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/"
		>
<channel>
	<title>Comments for jaysonlane</title>
	<atom:link href="http://jaysonlane.net/comments/feed/" rel="self" type="application/rss+xml" />
	<link>http://jaysonlane.net</link>
	<description></description>
	<lastBuildDate>Thu, 16 May 2013 21:29:00 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.4.1</generator>
	<item>
		<title>Comment on Ruby Project Euler: Problem 1 by ZPH</title>
		<link>http://jaysonlane.net/2013/05/ruby-project-euler-problem-1/#comment-210</link>
		<dc:creator>ZPH</dc:creator>
		<pubDate>Thu, 16 May 2013 21:29:00 +0000</pubDate>
		<guid isPermaLink="false">http://jaysonlane.net/?p=496#comment-210</guid>
		<description>Neat :)

I&#039;ve dabbed with katas, informal katas (ie scratch projects) and koans.  

Cool to see that Rails got you interested in Ruby.  Also pretty cool that you can write like a C programmer in Ruby &amp; have it still function.

Sounds like I&#039;m newer to programming than you are, but if you&#039;d ever like to do some pair programming on a project, like buffer&#039;s api wrapper in Ruby, it&#039;d be fun :).  At the very least I could help share some of the Ruby idioms and shortcuts with you, even if you&#039;re ahead of me in other ways.

Since you&#039;re interested in the Buffer-Ruby gem, consider checking out the gem that I started from scratch: 

Buff - https://github.com/zph/buff



I felt some pains when working with the official gem and wanted to see how long it took to achieve feature parity with it.  The official gem only covers ~ 20% of their API and I was able to reach that point with decently clean code in 8 hrs.  That included an hour or two lost due to a scrapped design ;).


If I have time, I&#039;ll keep expanding out the buff gem to include 100% coverage of Buffer&#039;s API.


So, if you&#039;d like to try any pair programming on it or something else, it&#039;d be fun.</description>
		<content:encoded><![CDATA[<p>Neat <img src='http://jaysonlane.net/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p>I&#8217;ve dabbed with katas, informal katas (ie scratch projects) and koans.  </p>
<p>Cool to see that Rails got you interested in Ruby.  Also pretty cool that you can write like a C programmer in Ruby &amp; have it still function.</p>
<p>Sounds like I&#8217;m newer to programming than you are, but if you&#8217;d ever like to do some pair programming on a project, like buffer&#8217;s api wrapper in Ruby, it&#8217;d be fun <img src='http://jaysonlane.net/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> .  At the very least I could help share some of the Ruby idioms and shortcuts with you, even if you&#8217;re ahead of me in other ways.</p>
<p>Since you&#8217;re interested in the Buffer-Ruby gem, consider checking out the gem that I started from scratch: </p>
<p>Buff &#8211; <a href="https://github.com/zph/buff" rel="nofollow">https://github.com/zph/buff</a></p>
<p>I felt some pains when working with the official gem and wanted to see how long it took to achieve feature parity with it.  The official gem only covers ~ 20% of their API and I was able to reach that point with decently clean code in 8 hrs.  That included an hour or two lost due to a scrapped design <img src='http://jaysonlane.net/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' /> .</p>
<p>If I have time, I&#8217;ll keep expanding out the buff gem to include 100% coverage of Buffer&#8217;s API.</p>
<p>So, if you&#8217;d like to try any pair programming on it or something else, it&#8217;d be fun.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Ruby Project Euler: Problem 1 by jaysonlane</title>
		<link>http://jaysonlane.net/2013/05/ruby-project-euler-problem-1/#comment-209</link>
		<dc:creator>jaysonlane</dc:creator>
		<pubDate>Thu, 16 May 2013 14:07:00 +0000</pubDate>
		<guid isPermaLink="false">http://jaysonlane.net/?p=496#comment-209</guid>
		<description>Hey there! 

Thanks for the post! I&#039;ve been working with Rails for a couple of years now and have realized I&#039;d like to know more Ruby as I&#039;ve seen I write Ruby code like a C programmer. Euler seems like a cool way to sharpen my skills and I&#039;ve been using it as a bit of a code kata. Thanks for the post (and for the Buffer gem)!</description>
		<content:encoded><![CDATA[<p>Hey there! </p>
<p>Thanks for the post! I&#8217;ve been working with Rails for a couple of years now and have realized I&#8217;d like to know more Ruby as I&#8217;ve seen I write Ruby code like a C programmer. Euler seems like a cool way to sharpen my skills and I&#8217;ve been using it as a bit of a code kata. Thanks for the post (and for the Buffer gem)!</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Ruby Project Euler: Problem 1 by ZPH</title>
		<link>http://jaysonlane.net/2013/05/ruby-project-euler-problem-1/#comment-208</link>
		<dc:creator>ZPH</dc:creator>
		<pubDate>Thu, 16 May 2013 03:05:00 +0000</pubDate>
		<guid isPermaLink="false">http://jaysonlane.net/?p=496#comment-208</guid>
		<description>Hi!



I saw that you forked my repo of Buffer-Ruby on Github and wanted to checkout your webpage :).


Cool that you&#039;re learning Ruby!


I added a bit more of the Ruby idioms to your Euler example:

#!/usr/bin/ruby
 
sum = 0
 
(1..999).each do &#124;i&#124;
   if (i % 3) == 0 &#124;&#124; (i % 5) == 0
    sum += i
    puts i
   end
    
end
 
puts &quot;Sum: #{sum}&quot;

Hmm, the formatting is mangled. I&#039;m cross posting it here for better aesthetics: https://gist.github.com/zph/12dcb49b03292fd01b77</description>
		<content:encoded><![CDATA[<p>Hi!</p>
<p>I saw that you forked my repo of Buffer-Ruby on Github and wanted to checkout your webpage <img src='http://jaysonlane.net/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> .</p>
<p>Cool that you&#8217;re learning Ruby!</p>
<p>I added a bit more of the Ruby idioms to your Euler example:</p>
<p>#!/usr/bin/ruby</p>
<p>sum = 0</p>
<p>(1..999).each do |i|<br />
   if (i % 3) == 0 || (i % 5) == 0<br />
    sum += i<br />
    puts i<br />
   end</p>
<p>end</p>
<p>puts &#8220;Sum: #{sum}&#8221;</p>
<p>Hmm, the formatting is mangled. I&#8217;m cross posting it here for better aesthetics: <a href="https://gist.github.com/zph/12dcb49b03292fd01b77" rel="nofollow">https://gist.github.com/zph/12dcb49b03292fd01b77</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Scanning a Bar Code with ZBarSDK by Khalil</title>
		<link>http://jaysonlane.net/2012/04/scanning-a-bar-code-with-zbarsdk/#comment-207</link>
		<dc:creator>Khalil</dc:creator>
		<pubDate>Mon, 29 Apr 2013 13:41:00 +0000</pubDate>
		<guid isPermaLink="false">http://jaysonlane.net/?p=288#comment-207</guid>
		<description>Need help!!1 it is not working on the ipod..I had been testing but not working</description>
		<content:encoded><![CDATA[<p>Need help!!1 it is not working on the ipod..I had been testing but not working</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on [Rails] Heroku Image Attachments Using Paperclip and S3 by [Rails] Mask an image using ImageMagick, Paperclip and S3 &#124; jaysonlane</title>
		<link>http://jaysonlane.net/2012/04/rails-heroku-image-attachments-using-paperclip-and-s3/#comment-206</link>
		<dc:creator>[Rails] Mask an image using ImageMagick, Paperclip and S3 &#124; jaysonlane</dc:creator>
		<pubDate>Wed, 20 Mar 2013 02:16:25 +0000</pubDate>
		<guid isPermaLink="false">http://jaysonlane.net/?p=300#comment-206</guid>
		<description>[...] using Paperclip for image attachments using Amazon S3 for storage (you can read how I set that up here). I scoured the web for existing tutorials and documentation but found little that was relevant to [...]</description>
		<content:encoded><![CDATA[<p>[...] using Paperclip for image attachments using Amazon S3 for storage (you can read how I set that up here). I scoured the web for existing tutorials and documentation but found little that was relevant to [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Android Newbie: java.net.UnknownHostException by jaysonlane</title>
		<link>http://jaysonlane.net/2012/11/android-newbie-java-net-unknownhostexception/#comment-205</link>
		<dc:creator>jaysonlane</dc:creator>
		<pubDate>Sun, 17 Mar 2013 20:57:00 +0000</pubDate>
		<guid isPermaLink="false">http://jaysonlane.net/?p=454#comment-205</guid>
		<description>Thanks Niko! Yeah slowly but surely I&#039;m trying to familiarize myself with Android and actually just installed Visual Studio via Parallels earlier this week so maybe delving into the Windows Phone world soon!</description>
		<content:encoded><![CDATA[<p>Thanks Niko! Yeah slowly but surely I&#8217;m trying to familiarize myself with Android and actually just installed Visual Studio via Parallels earlier this week so maybe delving into the Windows Phone world soon!</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Android Newbie: java.net.UnknownHostException by Niko Roberts</title>
		<link>http://jaysonlane.net/2012/11/android-newbie-java-net-unknownhostexception/#comment-204</link>
		<dc:creator>Niko Roberts</dc:creator>
		<pubDate>Sun, 17 Mar 2013 18:20:00 +0000</pubDate>
		<guid isPermaLink="false">http://jaysonlane.net/?p=454#comment-204</guid>
		<description>Good to see a developer of your quality being platform agnostic. I am getting tired of running into zealots who can&#039;t stand anything else except their brand of hardware (from all sides)</description>
		<content:encoded><![CDATA[<p>Good to see a developer of your quality being platform agnostic. I am getting tired of running into zealots who can&#8217;t stand anything else except their brand of hardware (from all sides)</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Lock screen &#8220;Now Playing&#8221; with MPNowPlayingInfoCenter by spilliams</title>
		<link>http://jaysonlane.net/2012/04/lock-screen-now-playing-with-mpnowplayinginfocenter/#comment-203</link>
		<dc:creator>spilliams</dc:creator>
		<pubDate>Fri, 04 Jan 2013 23:51:00 +0000</pubDate>
		<guid isPermaLink="false">http://jaysonlane.net/?p=190#comment-203</guid>
		<description>Also keep in mind that in order to take control of the MPNowPlayingInfoCenter your AudioSession needs to NOT mix with others. It took me days to finally figure this one out, it was one of those &quot;well, let&#039;s just turn all the switches off and flip them on one by one, see what caused the problem&quot;. So yeah. Don&#039;t set `kAudioSessionProperty_OverrideCategoryMixWithOthers` to true.</description>
		<content:encoded><![CDATA[<p>Also keep in mind that in order to take control of the MPNowPlayingInfoCenter your AudioSession needs to NOT mix with others. It took me days to finally figure this one out, it was one of those &#8220;well, let&#8217;s just turn all the switches off and flip them on one by one, see what caused the problem&#8221;. So yeah. Don&#8217;t set `kAudioSessionProperty_OverrideCategoryMixWithOthers` to true.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Lock screen &#8220;Now Playing&#8221; with MPNowPlayingInfoCenter by jaysonlane</title>
		<link>http://jaysonlane.net/2012/04/lock-screen-now-playing-with-mpnowplayinginfocenter/#comment-202</link>
		<dc:creator>jaysonlane</dc:creator>
		<pubDate>Thu, 03 Jan 2013 22:15:00 +0000</pubDate>
		<guid isPermaLink="false">http://jaysonlane.net/?p=190#comment-202</guid>
		<description>Wow thanks! Fixed!</description>
		<content:encoded><![CDATA[<p>Wow thanks! Fixed!</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Lock screen &#8220;Now Playing&#8221; with MPNowPlayingInfoCenter by spilliams</title>
		<link>http://jaysonlane.net/2012/04/lock-screen-now-playing-with-mpnowplayinginfocenter/#comment-201</link>
		<dc:creator>spilliams</dc:creator>
		<pubDate>Thu, 03 Jan 2013 22:06:00 +0000</pubDate>
		<guid isPermaLink="false">http://jaysonlane.net/?p=190#comment-201</guid>
		<description>FYI your Apple Documentation link up top there is missing a close &quot;. It&#039;s messing up the intro paragraph and first screenshot (see attached).</description>
		<content:encoded><![CDATA[<p>FYI your Apple Documentation link up top there is missing a close &#8220;. It&#8217;s messing up the intro paragraph and first screenshot (see attached).</p>
]]></content:encoded>
	</item>
</channel>
</rss>
