cmder is my go-to shell for Windows. Up until recently, I was unaware that it could be split into multiple panels.
There doesn't seem to be a menu option to do it, but it’s easily done with these commands (which, yes, I need to look up every time).
Split the window horizontally (left/right split):
cmd -new_console:s…
Our team made the move to TypeScript and Angular at the tail end of last year. I'd had a look at Angular a year or so ago but struggled to get my head around the excessive usage of $scope and the nesting of $parent items that needed to be traversed.
Since then (with version 1.2.0), Angular now supports Controller As…
As JavaScript applications become more common and more complex, the need for good unit test coverage also increases. Hopefully you’re already writing tests. If not, why not?
When I’m doing TDD with C#, I use NCrunch to monitor all tests within the Visual Studio Solution and run them as they change. This saves me…