Why Unit Test?
Contrary to popular belief, the purpose of unit tests is not to verify correctness of code. Correctness can only be […]
a technical blog
Contrary to popular belief, the purpose of unit tests is not to verify correctness of code. Correctness can only be […]
Introduction: Kent Beck, one of the original signers of the Agile manifesto and creator of eXtreme Programming, is credited with […]
Here is a coding exercise I was asked to solve during a recent interview: Each new term in the Fibonacci sequence is […]
Apple’s UITableView component does has many clever features right out of the box, but the ability to pinch zoom is […]
I prefer to develop iOS apps without using .xib files. This iOS project is a simple demo of my layout […]
This common error plagued be when trying to run my weatherApp on an iOS device. It turns out that a […]
Recently I wanted to expand the functionality of an automated test harness for an embedded device. The device has a […]
I. Introduction / Summary The most practical way for a microcontroller to retrieve input is via interrupt. The vast majority […]
One way for a microcontroller to retrieve input is known as polling. Polling means repeatedly measuring a sensors […]
This Multi-threaded web server takes advantage of the posix thread library to enable it it serve multiple files at the […]