If you don't make mistakes, you're not working on hard enough problems. And that's a big mistake. ~F. Wikzek It was when I found out I could make mistakes that I knew I was on to something. ~Ornette Coleman While one person hesitates because he feels inferior, the other is busy making mistakes and becoming … Continue reading Learn to write better code
Month: July 2009
Refactor! – a free C++ refactoring tool
When I write .NET code I have Resharper to increase my productivity and help me generate and refactor code. I miss such a tool when I program in C++, I knew such tools exist but because I spend more time writing managed code I don’t want to purchase them. It seems that in C++ where … Continue reading Refactor! – a free C++ refactoring tool
Getting started with IronPython – Part 4: MiniMax algorithm
After learning the basics of IronPython programming in the previous posts you’re ready for the fourth post – where I’m going to add simple AI logic to the Mancala game. Previous Posts: Part 1 – Where to start Part 2 – Let’s write some code Part 3 - Unit testing As part of my quest … Continue reading Getting started with IronPython – Part 4: MiniMax algorithm