unicornfree.com
Why You Should Do A Tiny Product First | Unicornfree with Amy Hoy: Creating And Selling Your Own Products
https://unicornfree.com/2013/why-you-should-do-a-tiny-product-first
7-part guide to kicking ass at the product biz. Why You Should Do A Tiny Product First. May 7, 2013. So, one of the major changes that Alex and I are making to 30×500 is to teach our students to create an educational product first. What’s an educational product, or infoproduct? Anything small that teaches (which isn’t software): an ebook, a report, a white paper, a screencast, a video series, a workshop. Well let me tell you a little story. How 37signals got their start. You’ve heard of 37signals. It was...
essentialtdd.com
Lab 1 - TDD Immersion - Brought to you by RubyPlus
http://www.essentialtdd.com/lab_01.html
Learn how to program and test calculator with simple math functions. In your favorite text editor write the following code and save file as calculator.rb. Class Calculator def add(x, y) x y end end calculator = Calculator.new result = calculator.add(1, 1) puts result. Result of 1 1=2 is showing correctly. This means our script works correctly. Addition passed" is displayed. This means our script works correctly. Class Calculator def add(x, y) x y end def subtract(x, y) x-y end end calculator = Calculator...
essentialtdd.com
TDD Immersion - Brought to you by RubyPlus
http://www.essentialtdd.com/index.html
Is a guided tour that walks through the fundamentals of TDD, inspired by the premise that to know a thing is to do it. TDD is a software development practice that results in fewer defects and results in quality software. TDD skill is an in-demand skill for jobs. The surest path to mastering TDD is to practice the Katas and experience it first-hand. We Provide Private Training. Get in contact with Ruby Plus. Try These Other Ruby Resources.