Skip to content

Instantly share code, notes, and snippets.

View marcaurele's full-sized avatar
🚵
Coaching kids to jump of their fears

Marc-Aurèle Brothier marcaurele

🚵
Coaching kids to jump of their fears
View GitHub Profile

AWS cli Cheat Sheet

AMI

Get the Linux 2023 images for x86_84 sorted by the latest:

aws ec2 describe-images --filters "Name=name,Values=al2023-ami-*" Name=architecture,Values=x86_64 Name=virtualization-type,Values=hvm Name=root-device-type,Values=ebs --query 'sort_by(Images, &CreationDate)[-7:]'
@marcaurele
marcaurele / VollaPhone.md
Last active September 23, 2023 20:50
Volla Phone
@marcaurele
marcaurele / Redirector.json
Created January 18, 2024 21:24
Config for Redirector Firefox plugin
{
"createdBy": "Redirector v3.5.3",
"createdAt": "2024-01-18T21:23:34.230Z",
"redirects": [
{
"description": "Twitter",
"exampleUrl": "https://twitter.com/majek04/status/1334811330033946625",
"exampleResult": "https://nitter.unixfox.eu/majek04/status/1334811330033946625",
"error": null,
"includePattern": "https://twitter.com/*",
@marcaurele
marcaurele / Dockerfile
Created December 31, 2024 13:45
Dockerfile to build ghostty
FROM debian:testing
ENV ZIG_VERSION="0.13.0"
RUN apt-get update && \
apt-get install --yes --no-install-recommends --no-upgrade libgtk-3-dev libadwaita-1-dev git curl xz-utils ca-certificates
ADD https://ziglang.org/download/$ZIG_VERSION/zig-linux-x86_64-$ZIG_VERSION.tar.xz /
RUN tar -xf zig-linux-x86_64-$ZIG_VERSION.tar.xz && \