Evan Machnic
Member since Mar 6, 2011
- Profile: /members/7935-evan-machnic.htm
- URL: http://broadmac.net
- Comments: 2
Recent Blog Comments By Evan Machnic
-
Seven Languages In Seven Weeks: Ruby - Day 2
Posted on Mar 6, 2011 at 3:43 PM
@Matt, I don't know what type of machine you're on but if it's Mac or Linux, you can use RVM to have different Ruby versions installed. If you're on Windows, you can use Pik to do the same type of thing. @Boatzart, One thing in Ruby that you probably wouldn't want to do is using the word 'spec' ... read more »
-
Seven Languages In Seven Weeks: Ruby - Day 2
Posted on Mar 6, 2011 at 3:31 PM
I don't know if you'd seen this yet, but you can print the array using each_slice with only one line of code like so: (1..16).each_slice(4) {|a| p a} It's short and sexy and amazing that this is built into Ruby.... read more »