-
JSON Parsing with Go Embedded StructsA brief intro to Go's embedded structs.
-
CSS Flexbox: Push an element to the endUse margin-left: auto to force a flexbox item to the end of a row.
-
A Disabled React componentA reusable Disabled React component to wrap conditional display logic.
-
Automatically Assign Elastic IPs to Elastic Beanstalk InstancesEasily assign newly launched elastic beanstalk instances elastic IP addresses.
-
A Simple React Date Picker ComponentNone 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
-
How to Disable Specific Eslint RulesThe create react app [http://github.com/facebook/create-react-app/] eslint presets come with a few rules that are slightly annoying. One of them is jsx-a11y/href-no-hash, which makes sure you don’t add an tag without a valid http address for the href property. To ignore this, add a .eslintrc.
-
☝️Redux dev tools are a thing and they're incredibleRedux dev tools are some life-changing shit.
-
React CRA + Netlify = 💯❤Why mess with S3 & Cloudfront when netlify is so damn easy (and free)?
-
Elasticsearch full-text queries explained, for humans 🤓A quick overview of the core elastic search query types.
-
🚫😩 An array of react refsApparently 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'