1. JSON Parsing with Go Embedded Structs
    A brief intro to Go's embedded structs.
  2. CSS Flexbox: Push an element to the end
    Use margin-left: auto to force a flexbox item to the end of a row.
  3. A Disabled React component
    A reusable Disabled React component to wrap conditional display logic.
  4. Automatically Assign Elastic IPs to Elastic Beanstalk Instances
    Easily assign newly launched elastic beanstalk instances elastic IP addresses.
  5. A Simple React Date Picker Component
    None of the existing open source react date picker components quite fit my requirements (mostly too bloated with too many dependencies), so I decided to see if I could quickly hack one together. This took a couple of hours, was easier than I thought it'd be, and meets my needs
  6. How to Disable Specific Eslint Rules
  7. ☝️Redux dev tools are a thing and they're incredible
    Redux dev tools are some life-changing shit.
  8. React CRA + Netlify = 💯❤
    Why mess with S3 & Cloudfront when netlify is so damn easy (and free)?
  9. Elasticsearch full-text queries explained, for humans 🤓
    A quick overview of the core elastic search query types.
  10. 🚫😩 An array of react refs
    Apparently you can't store React refs [https://reactjs.org/docs/refs-and-the-dom.html] in an array. For some reason they get wiped out, so if you need to store a collection of refs, you have to do something like this (forgive me lord, for I hath sinned): import React from 'react'