Another antipattern I come across in legacy codebases is a lack of a separation of concern.
Here we have a few issues,
read more
(2 minutes)
Another antipattern I come across in legacy codebases is a lack of a separation of concern.
Here we have a few issues,
read more
(2 minutes)
A massive anti-pattern when dealing with Ajax calls in javacript is to send in a success parameter into the ajax options.
Of course a better way
read more
(1 minute)
So I’ve been watching the world of module loaders in javascript over the past few year, too nervous to jump in to either CommonJS or RequireJS in fear of getting it wrong.
Just as we started to feel like making the jump, ES6 modules seemed to take the world by storm, offering a fresh new and elegant solution. The fear is - es6 modules are not baked into the browsers yet, so is it too risky to jump into ES6 already?
My answer is no!
read more
(1 minute)
After recent company changes, it is becoming clear we are migrating some of our SVN repos to git. A collegues was kind enough to push the current codebase up to the shared git space, but sadly the import process lost the full history.
I was sure this should already be a solved problem and after a little research I found
read more
(2 minutes)
I’ve been trying to get my head around how to be productive on OSX. I often come along script commands to facilitate the development process and take alot of the menial tasks off to a short script in a command line. However I’m often stumbling around in the dark. An example of this is using jekyll to compile my blog.
Every time I come to write a blog post (once every 3 months going by history) I have to re-rememeber how to compile. Inevitably I think “How do I compile the site?” and type “Jeckyll” into google (Yes my spelling is atrocious).
read more
(1 minute)