thecodejunkie

Stories submitted by thecodejunkie

So you write unit tests, but do you really TDD?(www.thecodejunkie.com)

submitted by thecodejunkiethecodejunkie(45) 2 years, 4 months ago

Many developers are claiming to be TDD practitioners, without really understanding the differences between Test-Driven Development and unit testing. Somewhere along the line the definition of TDD has gotten lost and it is time to set the record straight; just because you write unit tests does not mean you practice TDD. read more...

add a comment |category: |Views: 10

tags: another

6 steps to mastering refactoring(www.thecodejunkie.com)

submitted by thecodejunkiethecodejunkie(45) 2 years, 4 months ago

Refactoring can turn into a nightmare unless you come prepared. Here I list 6 steps that I apply to my refactoring work to ensure the best possible outcome. read more...

add a comment |category: |Views: 13

tags: another

Getting .LESS 1.0.0.4 run on your machine(www.thecodejunkie.com)

submitted by thecodejunkiethecodejunkie(45) 2 years, 4 months ago

Short blog post on how to get .LESS 1.0.0.4 to run on your machine. There are undocumented changes that you are going to want to take into account or it will fail to run. read more...

add a comment |category: |Views: 4

tags: another

Downloadable videos of the NDC09 sessions(thecodejunkie.com)

submitted by thecodejunkiethecodejunkie(45) 2 years, 10 months ago

Most of the recorded sessions from the Norwegian Developers Conference 2009 can now be downloaded from Rune Grothaug (Microsoft Developer Community Manager in Norway) blog. The entire conference was awesome and there’s plenty of great material to watch! read more...

add a comment |category: |Views: 8

tags: another

The Code Junkie's blog » Integrating WCF with your favorite IoC(thecodejunkie.com)

submitted by thecodejunkiethecodejunkie(45) 2 years, 10 months ago

A while back I was working on a project where I had to implement a Windows Communication Service for authenticating users. Internally the service was going to use a user repository to validate the provided credentials. I wanted to design the service in such a way that it didn't take a hard dependency on a specific user repository implementation, instead I wanted to make use of the Dependency Inversion Principle to decouple the service's dependency on the user repository. read more...

add a comment |category: |Views: 19

tags: another