Skip to content

Instantly share code, notes, and snippets.

#!/bin/bash
mkdir "merges"; # On crée le dossier contenant la sortie
mmv '*/*"*' "#1/#2 #3" || true;
mmv "*/* *" "#1/#2 #3" || true; # simplifie un problème affectant les noms de fichier
mmv "*/*'*" "#1/#2 #3" || true;
merge () {
for directory in */; do
@augustin64
augustin64 / theme.sh
Created November 7, 2021 17:30
Permet de changer rapidement de thème gnome, suivre l'exemple utilisé pour matcha pour l'appliquer sur un autre set de thèmes `load_theme gtk-theme icon-theme gnome-shell-theme`
#!/usr/bin/bash
mkdir -p {~/.local,/usr}/share/themes
mkdir -p ~/.themes
THEMES="$(ls ~/.themes) $(ls ~/.local/share/themes) $(ls /usr/share/themes)"
mkdir -p {~/.local,/usr}/share/icons
mkdir -p ~/.icons
@augustin64
augustin64 / rick.sh
Created November 22, 2021 19:57
Self-describing
#!/usr/bin/sh
run() {
number=$1
shift
for _ in $(seq $number); do
$@
done
}
#!/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;
@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"
@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">

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:

#!/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
@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); }')
#!/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)