AI is killing the web

How AI generated stuff gets crawled by search engine and end up polluting the internet

January 10, 2025 · 3 min

My home setup

A highly incomplete overview of my home automation setup

December 20, 2024 · 5 min

Contextualize your bash

Load custom bash aliases when entering directory

May 15, 2023 · 3 min

Repair your grub

On the list of bad computer things that happened to me, this one maybe in the top 3

January 7, 2022 · 2 min

Rust AWS lambda with glibc

Why AWS has announced supporting rust for the lambda, but does not provide an official runtime for it. You have to provide your own, and the official way is through building a target where you can statically link a libc implementation: musl. While it appears you could statically link the glibc, it is not advised. (see here and here) So for AWS: What While searching for alternative solutions to this (Because reasons), I found that since late 2020, they added a container image support to AWS lambda. ...

October 1, 2021 · 2 min

Never miss a google meet with systemd

I don’t like to be late at meetings, and I relied heavily on my coworkers to warn me about a meeting starting. Now, I’m working in a fully remote company, and I can’t rely on my coworkers, because they can only message me, and I don’t look at slack/emails all day. So I came up with 1 little script (and 2 systemd units) to automatically launch my meeting 1-2 minutes before it actually starts. ...

March 18, 2021 · 2 min

Using an AWS ECR image as a Github Action container

Moving from Docker Hub to ECR Pubstack, my current client decided to migrate all its docker images to ECR. With the recent announcement about rate limiting on Docker Hub, maybe we will not be the only ones moving away. For our CI/CD pipelines we use both CircleCI and GitHub Actions. Using an ECR image is a really simple task in CircleCI, it consists of adding the aws_auth to the image configuration. docker: - image: ACCOUNT.dkr.ecr.REGION.amazonaws.com/IMAGE:VERSION aws_auth: aws_access_key_id: $AWS_ACCESS_KEY_ID aws_secret_access_key: $AWS_SECRET_ACCESS_KEY On the other hand, using ECR images in GitHub Actions was a bit more tricky. ...

October 28, 2020 · 4 min

The Twelve-Factor App Checklist

Twelve-Factor Application If you don’t know about the 12 factor applications, I suggest you read this first. The twelve-factor app is a methodology for building software-as-a-service apps During my different missions, I found that these guidelines are wonderful for building and deploying software. I eventualy came up with a checklist I use on my clients’ projects in order to assess the team’s maturity level, and track what can be done to improve the application. ...

July 14, 2020 · 1 min