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:
| 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== |
| #!/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) |
| #!/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 |
I hereby claim:
To claim this, I am signing this object:
| <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"> |
| #!/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; |