The contract has been signed, the training finished and all the company is ready to start using the best development practices known to man - unit testing, TDD, Clean code, pair programming you name it! But there’s just one problem preventing the change from happening...Or as the good doctor puts it:You can get so confused … Continue reading What are you waiting for???
Tag: Uncategorized
3 Windows Phone 8.1 features I’m already using
Two days ago I couldn’t take it anymore…There was a new and shiny (dev) release for my Windows Phone and I just had to install it. With trembling hands and a heavy heart I’ve installed Preview for Developers on my HTC 8x and dived right into the dreaded “download –> install –> reboot” cycle which … Continue reading 3 Windows Phone 8.1 features I’m already using
In search of a Better Place
Last week the company I was employed at went bankrupt. It was the end of a long process which started about a year ago. It was a sad experiencer - I believed in the company and its goals. I hoped that the company’s amazing vision would become reality - and it did for a while. … Continue reading In search of a Better Place
Are you better at math or code?
“Choose a number from 1 to 10” – they usually choose 5, I’m not sure why.This how an interview question I’ve used to ask begins…The questionSuppose you’re writing a client that receive a message with a number N (usually 5). Next you’ll receive N messages each contains a different number from 1 to N 1 … Continue reading Are you better at math or code?
The developer’s perspective
You’re lucky you know, said the developer to the consultant. You get to come and save the day and leave before all hell breaks loose. You got it all wrong said the consultant to the developer. I solve problems, teach best practices and explain what should be done and then they change and twist everything … Continue reading The developer’s perspective
9 years ago…
August 2002 I’ve started my first “real” programming job, I was an intern at Intel working side by side with intelligent and talented engineers on a performance monitoring tool for Linux. A lot has happened since, I switched a few jobs, sometimes I worked for big enterprise and sometime for a small startup until I … Continue reading 9 years ago…
3 signs that you’ve been coding too much
Could there be such thing as too much coding? From time to time I get reminded that there is more to the world than Visual Studio and highlighted text. Below are real stories that happened to me (sometimes more than once), causing me to ask myself – should I take a break? Run in debug … Continue reading 3 signs that you’ve been coding too much
Advice for the newbie developer
Every developer was a newbie once. It doesn’t matter if you’re fresh out of college or been developing software for 10 in this line of work you get to be the newbie from time to time – whenever you learn a new technology or programming language and to some extent whenever you start working in … Continue reading Advice for the newbie developer
How I Learned to Stop Worrying and Love the Coding Convensions
Can you spot the difference between the following two code snippets?Exhibit #1:public class MyClass{ public int MyFunc(int x, int y) { return x + y; }}Exhibit #2:public class MyClass{ public int MyFunc(int x, int y){ return x + y; }}If you have some programming experience you might recognize the two styles. One of which common … Continue reading How I Learned to Stop Worrying and Love the Coding Convensions
How to add RowTest support to MSTest
I’ve blogged (read: complained) about the shortcoming of Microsoft’s unit testing framework in the past – lack of required features such checking exception messages and plain nuisances like its notorious habit of spawning new vsmdi files without any cause. On the other side MSTest has a good integration with Visual Studio that makes it worth … Continue reading How to add RowTest support to MSTest