JavaScript

JavaScript

One of the most popular programming languages and one that I find so natural. Here i'll share with you the best and worst so you might learn as i have.
May
12

What is Application Cache Error event Manifest fetch failed

So you've been building an offline web app using Application Cache and when you test your functionality while
1 min read
Mar
19

Prototypes and Inheritance

Recently I had the unique pleasure of presenting at General Assembly Melbourne, I was asked to share what I knew
5 min read
Oct
30

Page Loads in JavaScript and Performance

This is a quick post to list the methods of initializing your JavaScript the right way in terms of Page
3 min read
Jan
03

Callback Functions Double Executing? Dont Forget To return

Callback Functions Double Executing? A quick example function doSomething(err, result, final){ if(err){ final(err); } final(null,result); } Take
2 min read
Dec
05

Node.js Error Handling Patterns

The WRONG Way There is always a exceptionally bad way of doing something in NodeJS (or any language) so I
4 min read
Nov
28

Process Functions Asynchronously with a Final Callback

Purpose and use case Generally your functions are executed asynchronously with some exceptions, and the challenge for some is when
2 min read