Category

javascript

17 posts in this category.

Category archive

Posts

Showing 10 posts

    • 1 Feb 2020
    • 2 min read
    Taking the month off

    After I completed the full stack web dev boot camp (see my final project code) I decided to give myself a month off studying software…

    • 1 Apr 2019
    • 1 min read
    YelpCamp

    I've now reached a turning point in my web dev course. This morning I started writing code on my first meaty project, YelpCamp. As the name…

    • 29 Mar 2019
    • 1 min read
    JSON

    I've worked with JSON data before when I was learning Swift and iOS development. At the time I didn't really know much of JavaScript or its…

    • 25 Mar 2019
    • 2 min read
    Express snippets

    Since I'm playing with Express at the moment I've updated my collection of snippets to include a few things I seem to be doing regularly:…

    • 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…

    • 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.…

    • 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…

    • 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…