The perils of tfs source control

I’ve used a few version control systems: visual source safe, subversion, git, mercurial and tfs.
My current favourite – git. It it’s the most popular one at the moment, but to be honest there’s a good reason for that. It has a gigantic learning curve, but once you grok the concept, everything falls into place.
My second  choice – subversion. I’ve used it for a long time and it got the job done.
The one I am using at the moment – tfs and here’s where the story starts.

By eidias on (tags: tfs, categories: tools)

Could not find required file 'setup.bin'

Full error (almost): C:\Windows\Microsoft.NET\Framework64\v4.0.30319\Microsoft.Common.targets (4486): Could not find required file 'setup.bin' – in practice – adventures with migration to .net 4.5

By eidias on (tags: None, categories: infrastructure)

CSS Preprocessors – Sass, Less, Stylus

CSS has been around for a while and will stay for a while longer and although I think it’s a good and working ‘language’ it has a few pitfalls – the biggest one being the lack of ability to reuse certain parts. Take colors for example, when you want to style a site you need to repeat the color declaration everywhere you want to set it, so when you change your mind, the only way to implement the changes is search and replace. Now that’s not that bad when you have a small site and one css file, but when the number of files grows, that problem grows along. So what can we do?

By eidias on (tags: css, less, sass, stylus, categories: code, web)