Category page
dev
Page 2 of 6
Category archive
Posts
Page 2 of 6
- NPM and a Demon
So learning node.js has been really interesting so far, I'm quite taken by it. It's great being able to transfer my JavaScript skills from…
- The three stages of developer growth
Today I happened across a great Quora post by Andreas Blixt. In the post, Andreas outlines the three stages of developer growth: The novice…
- How much time should I spend a day learning to code?
This is the question I asked myself when I first started learning (well relearning really) to code a while back. Obviously I Googled this and…
- I made a thing: Aroha generator
So I made another thing. The only reason I'm really even talking about it is because what's going on in Christchurch is so awful I can hardly…
- Constantly letting down my variables
As it turns out I’ve been doing everything wrong. Well, maybe not everything, but at the very least I’ve been declaring variables incorrectly.…
- Flow
Getting into a flow state>) is super helpful when you're trying to get some coding done. Whenever I'm working on a course exercise or side…
- How to write modern JS
So you're learning JavaScript (JS), cool. Putting all this effort in, you'll want to be learning the modern usage of the language right? Time to…
- I made a thing: To-do list
Yep, I made another thing in JavaScript for the course I'm doing. This one's a bit more basic, but really it's more of cutting my teeth with…
- Pastebot
The more time I spend coding the more time I find myself researching solutions to workflow problems I've never had before. Copy and paste is a…
- on() click()
Today I learned the difference between the on("click") and click() methods in jQuery. click() only adds listeners for existing elements, so it…