Category page

dev

Page 2 of 6

Category archive

Posts

Page 2 of 6

    • 22 Mar 2019
    • 1 min read
    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…

    • 20 Mar 2019
    • 2 min read
    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…

    • 19 Mar 2019
    • 2 min read
    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…

    • 18 Mar 2019
    • 1 min read
    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…

    • 14 Mar 2019
    • 2 min read
    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.…

    • 13 Mar 2019
    • 2 min read
    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…

    • 12 Mar 2019
    • 2 min read
    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…

    • 9 Mar 2019
    • 1 min read
    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…

    • 9 Mar 2019
    • 1 min read
    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…

    • 7 Mar 2019
    • 2 min read
    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…