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 | |
| 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 |
| #!/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 |
| #!/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; |
| #!/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" |
| <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"> |
I hereby claim:
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 |
| #!/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) |