Hi 馃憢

I鈥檓 Assim, born and raised in Morocco, currently based in beautiful Gothenburg, Sweden.

I moved to Sweden in 2019 to join Yogobe.com to revamp their tech, starting with the frontend and eventually improving everything else until I became CTO.

Currently, I鈥檓 the owner of Nordbeam.io.

I鈥檓 also passionate about building stuff, mostly just for the sake of learning things, but it sometimes turns into an income generator, which is never a bad thing.

I love using Elixir when it comes to building software. I鈥檓 a true believer in “using things where they鈥檙e meant to be used”.

That鈥檚 it about me, hope I鈥檒l see you again here.

Cheers,

A.

The Bionic Developer When Humans and AI Join Forces

I鈥檓 a developer, and I鈥檝e seen things you people wouldn鈥檛 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鈥檚 a new player in town, and it鈥檚 changing everything. I鈥檓 talking about AI, and how it鈥檚 turning us mere mortal coders into bionic superhumans. Okay, maybe that鈥檚 a bit dramatic. But stick with me, because we鈥檙e 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鈥檒l configure Jest and Cypress Jest Let鈥檚 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鈥橧l 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鈥檚 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鈥檒l show you how I saved $$$ by using Cloudflare Workers instead of AWS鈥檚 API-Gateway to proxy requests to my AWS Lambda functions. Why use Cloudflare Workers ? It鈥檚 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鈥檒l be using yarn:...

November 27, 2020 路 4 min 路 Me