I can’t remember what bizzare series of clicks lead me there, but I just discovered an online copy of the original C-64 manual. I flipped through it and relived all the emotions of entering and running every single one of the programs in it. I was 10 years old. One of my favorites was the bouncing ball program in Section 4 - Animation on pg. 30.
Entries from March 2008 ↓
Dear Commodore 64: Thanks for getting me started.
Posted by Zach Scott | March 22nd, 2008
Tags: commodore 64
Python up front. Java in the back.
Posted by Zach Scott | March 3rd, 2008
I’ve always thought that the ideal web development platform would be comprised of a dynamically typed language in the presentation tier supported by a statically typed language where the business and persistence logic lives. It just never made sense to me to use a statically typed language for building web user-interfaces considering that there’s very little gain to be had from type-safety.
The news today that Sun hired two key Python programmers makes me hopeful that they’re thinking what I’m thinking.
xUnit Test Patterns
Posted by Zach Scott | March 3rd, 2008
Dustin Bartlett, one of the developers on the team here at Point2, was just in my office asking me about Mock testing. It turned into an interesting discussion about when to use Mock objects and when not to.
Ultimately I suggested he take a look at some of the material at xunitpatterns.com, a site developed by Gerard Meszaros while he was authoring the book xUnit Test Patterns. I was fortunate enough to be mentored by Gerard on several projects I worked on in Calgary, and have a tremendous amount of respect for him and his knowledge when it comes to testing software.
After looking at xunitpatterns.com Dustin and I realized the real question was what type of Test Double should be used. For the problem at hand, we decided to go with a Configurable Test Double. If you are stuck on a testing problem, or just want to improve your testing skills, I strongly recommend looking at Gerard’s site and picking up his book.
Tags: test patterns, xUnit