Tag

development

46 posts with this tag.

Tag archive

Posts

Showing 10 posts

    • 15 Aug 2023
    • 1 min read
    Ternary! ☘️

    If you find yourself with a conditional in the form on an if else, there's a more concise way of writing it. Say hello to a ternary. Take this…

    • 17 Aug 2021
    • 1 min read
    Mutation === 💩

    One of the many things I've picked up from the excellent Syntax podcast over the years is mutation should be avoided. Today a came across a…

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

    • 21 Oct 2019
    • 1 min read
    MongoDB and macOS Catalina

    Like a good Apple nerd, I updated to the latest version of macOS Catalina. If you're using older 32bit apps Catalina won't run them. Thankfully,…

    • 29 Jun 2019
    • 5 min read
    Coding on a plane... on an iPad

    The project In my ongoing efforts to up my development game, I’m currently working on learning how to create an app that has user…

    • 25 Apr 2019
    • 1 min read
    Traversing folders

    I always manage to forget the syntax for traversing folders. So for the recorded, this is how it's done: / means drop back to the root folder…

    • 15 Apr 2019
    • 1 min read
    RESTful Routes

    What are REST, Routes, CRUD? Representation State Transfer or REST is a pattern/convention for defining our routes. Routes are the code that…

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

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