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