The Bionic Developer When Humans and AI Join Forces

I’m a developer, and I’ve seen things you people wouldn’t believe. Attack ships on fire off the shoulder of Orion? Try debugging a massive legacy codebase at 3 AM with nothing but caffeine and desperation. But now, there’s a new player in town, and it’s changing everything. I’m talking about AI, and how it’s turning us mere mortal coders into bionic superhumans. Okay, maybe that’s a bit dramatic. But stick with me, because we’re about to dive into the wild world of AI-augmented development, where solo programmers are going the way of the dodo, and a new breed of dev is rising from the ashes....

September 12, 2024 · 9 min · Me

Testing React (Feat. GraphQL)

Hi ! This is a guide/cheatsheet that I comeback to read when I want to write tests for a project. I thought this might help other fellow developers so here you go 😁 Setup Install jest, cypress and helper libraries 1 yarn add jest @testing-library/react @testing-library/jest-dom -D Config In this section we’ll configure Jest and Cypress Jest Let’s create a config file for Jest in the root directory: 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 module....

September 22, 2021 · 6 min · Me

Setup PostgreSQL with TypeORM in GraphQL Tutorial

Hi ! In this post, I’Il show you how I to setup PostgreSQL with TypeORM in a GraphQL server. This is the backend setup that I usually use for my backend’s side projects. This tutorial is focused on MacOS environment 🍏. I might write other tutorials later for Windows and Linux. MacOS Postgres Setup The easiest way to do it is by using Homebrew, which is a MacOS package manager....

December 2, 2020 · 5 min · Me

Cloudflare Workers, A cheaper API-Gateway Alternative

Hi ! In this post, i’ll show you how I saved $$$ by using Cloudflare Workers instead of AWS’s API-Gateway to proxy requests to my AWS Lambda functions. Why use Cloudflare Workers ? It’s all about the cost. 10 million api requests will cost you : With API-Gateway: $35 With Cloudflare Workers: $5 We can say that Cloudflare Workers saves you 85% compared to API-Gateway !! Getting Started First, create a new node project, in this blog post i’ll be using yarn:...

November 27, 2020 · 4 min · Me