Tag: javascript
-
Cycling, Javascript and Saving the Planet
A few weeks ago I bought a basic road bike with the intention of cycling to work. And I’m totally hooked! Addicted maybe? I think I finally get it. My primary reason for biking to work is to level up the amount of exercise I get in every week, but I’m aware that leaving the…
-
The Problem with NPM
Whenever you run `npm install` it generates a local, project specific /node_modules/ directory with literally 10s of thousands of files and folders. Why?! WHY?! I understand that javascript is a simple scripting language, missing many features that are baked in to more traditional languages like PHP and friends. I understand that many node modules are…
-
How To: File Upload Progress Bar. No Flash. No PHP addons.
Upload progressbars are pretty common on the web these days, they add a touch of feedback to the long and mysterious process of uploading a file to a website. Unfortunately, the most common methods for doing so involve flash or baring that PHP addons that require a recompiling. In this post I’m going to talk about…