The reading list
Essays, tech notes, and the in-between.
- code-quality · 3 min read
Estimating as a Programmer
A must read if you have doubt about your estimating skills.
- code-quality · 3 min read
Ping Pong Pair Programming
An ExtremeProgrammingPractice in which two engineers participate in one development effort at one workstation. Each member performs the action the other is not currently doing.
- code-quality · 3 min read
Debugging Strategies
Let's talk about debugging strategies with a bit of humour.
- Javascript · 3 min read
Debate: combined vs independent variable declaration in js
Debate regarding combined variable declaration and individual variable declaration in js.
- Javascript · 3 min read
Reduce Global Variables
small discussion on how to reduce global variables in js
- code-quality · 3 min read
Four Types of Duplication in Source Code
We all know about DRY but time and again we can find duplication in our code. Here we talk about four types of duplication: imposed, inadvertent, impatient and interdeveloper.