Setting up Netlify forms with Gatsby

I recently built a website using Gatsby , choosing to host it on the Netlify free tier. One of the features I wanted to try was form handling. Typically, handling form posts requires wiring up and hosting a backend to process requests. Netlify forms allows me deploy a simple static site with zero backend, letting them handle the rest for me. React setup The setup is relatively straightforwards. Firstly, we need to add in the usual form, input and button tags. Below is a sample component for submitting a user email address. ...

February 22, 2020 · 2 min

Time hacking with the Trello API

Following on from my post about using time effectively , I thought I would deep dive into a tool I created using the Trello API. The reason behind this work was that I had multiple Trello boards and projects in flight, each using a Kanban column layout. I needed a way to see all of the tickets I had in Ready or Progress states and there didn’t seem to be an obvious solution using Trello itself. I also just fancied having a play with their API. ...

October 5, 2019 · 3 min