Skip to content

Instantly share code, notes, and snippets.

@augustin64
augustin64 / raspberrypi_fan.py
Created October 26, 2024 14:05
Activate RPI's fan based on its temperature, and define certain off hours
import RPi.GPIO as GPIO
import subprocess
import datetime
import time
SLEEPING_PERIOD=(21, 7)
MAX_TEMP=50
GPIO.setmode(GPIO.BOARD)
GPIO.setup(8, GPIO.OUT)
// ==UserScript==
// @name Pédantix/Cémantix helper
// @namespace http://tampermonkey.net/
// @version 0.1
// @description Prefill Pédantix, copy cemantix if you want
// @author augustin64
// @match https://cemantix.certitudes.org/*
// @icon https://www.google.com/s2/favicons?sz=64&domain=certitudes.org
// @grant none
// ==/UserScript==
@augustin64
augustin64 / hyprland_monitor_setup.py
Created April 9, 2024 13:10
Setup multi-monitor on laptop hyprland easily !
#!/home/augustin64/.venv/global/bin/python3
import subprocess
import argparse
import json
import sys
import enquiries
def main(internal_display, ext_name, side, interactive=False):
output = subprocess.check_output(["hyprctl", "monitors", "-j"]).decode("utf-8")
#!/usr/bin/python3
import sqlite3
import datetime
import time
FILE_IN="paseo.db"
FILE_OUT="forest_database"
#* Get old data
con = sqlite3.connect(FILE_IN)
@augustin64
augustin64 / gitea-update.sh
Last active November 28, 2023 13:21
Update gitea to latest available version (from GH)
#!/bin/bash
if [[ $USER != "root" ]]; then
echo "Run as root !"
exit 1
fi;
# Config (you can hardcode values too)
TAG=$1
[[ $TAG ]] || TAG=$(curl -Ss https://api.github.com/repos/go-gitea/gitea/releases | jq '.[0].tag_name' -r | awk '{print substr($1,2); }')
#!/bin/bash
MEMORY=8192
CORES=4
DISK_IMAGE=windows10.qcow2
LIVE_CD=Win10_French_x64.iso # Download this from https://www.microsoft.com/fr-fr/software-download/windows10
create () {
# Will create a blank disk of 64G maximum capacity
# It does not require 64G of disk space on your computer, but just creates a file that can contain up to 64G in a VM

Keybase proof

I hereby claim:

  • I am augustin64 on github.
  • I am augustin64 (https://keybase.io/augustin64) on keybase.
  • I have a public key whose fingerprint is A707 02C2 201C 2761 9EC7 45FC F6B9 C10D 94CB 2E9A

To claim this, I am signing this object:

@augustin64
augustin64 / login-with-args.html
Last active March 8, 2025 08:36
Specify code-server password in url parameter
<html lang="en"><head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0, user-scalable=no">
<meta http-equiv="Content-Security-Policy" content="style-src 'self'; script-src 'self' 'unsafe-inline'; manifest-src 'self'; img-src 'self' data:; font-src 'self' data:;">
<title>code-server login</title>
<link rel="icon" href="./_static/src/browser/media/favicon-dark-support.svg">
<link rel="alternate icon" href="./_static/src/browser/media/favicon.ico">
<link rel="manifest" href="./manifest.json" crossorigin="use-credentials">
<link rel="apple-touch-icon" sizes="192x192" href="./_static/src/browser/media/pwa-icon-192.png">
<link rel="apple-touch-icon" sizes="512x512" href="./_static/src/browser/media/pwa-icon-512.png">
@augustin64
augustin64 / webhook-it.sh
Created February 22, 2022 08:08
Pipe command output to discord webhooks
#!/bin/bash
declare -a A=("$@")
[[ -p /dev/stdin ]] && { \
mapfile -t -O ${#A[@]} A; set -- "${A[@]}"; \
}
[[ $1 ]] || exit
WEBHOOK_URL="https://discord.com/api/webhooks/xxxxx/XXXXX"
#!/bin/bash
NOM="NOM_UTILISE_POUR_LA_COMMANDE"
if [[ ! $1 ]]; then
echo "Quelle est la référence du ticket ?"
read -r REF
else
REF="$1"
fi;