Archive page

Blog archive

Page 7 of 55

Paged archive

Posts

Page 7 of 55

    • 8 Feb 2019
    • 1 min read
    I made a thing - Score keeper

    I’ve been doing a web development course for a few months and today I made my first thing that actually does something. Nothing amazing…

    • 7 Feb 2019
    • 2 min read
    Learning from a 579-year-old printing press

    Gutenberg is the name of WordPress’ new editor and like its namesake, the Gutenberg printing press, I think it’s going to be a big deal.…

    • 6 Feb 2019
    • 1 min read
    Listen to your heart

    JavaScript is responsible for the behaviour of your website/app. At the heart of affecting the behaviour of the page is listening for user…

    • 5 Feb 2019
    • 1 min read
    This is our concern, Dude

    In web development, there's a concept called "the separation of concerns" between your HTML, CSS and JavaScript. Each language plays a role…

    • 4 Feb 2019
    • 1 min read
    DOM DOM DOM

    Playing with the DOM is all about adding interactivity to your page. The DOM (Document Object Model) is the interface between your…

    • 2 Feb 2019
    • 2 min read
    GitHub flow

    I've recently been attempting to contribute to some open-source GitHub projects with varying degrees of success. One thing that's extremely…

    • 1 Feb 2019
    • 1 min read
    Load scripts last

    So you’ve got your HTML and CSS sorted and you’ve started to drop in some customs scripts to make things a bit interactive. To keep things…

    • 31 Jan 2019
    • 1 min read
    No Comments

    When I was first learning to code, something that came up a lot was to always comment your code. Code comments have value, but despite what…

    • 30 Jan 2019
    • 1 min read
    DRY variables

    The concept of DRY code is simple, Don’t Repeat Yourself. So if you look at some code you’ve just written and notice it’s looking a bit…

    • 29 Jan 2019
    • 1 min read
    Equals vs equals

    In JavaScript not all comparisons are created equal... see what I did there. Let’s say we’re comparing two values like this: The use of…