Skip to content

Instantly share code, notes, and snippets.

View nicolaeser's full-sized avatar
🎯
WORKING

Nico Laeser nicolaeser

🎯
WORKING
View GitHub Profile
@nicolaeser
nicolaeser / debian13-upgrader.sh
Last active August 10, 2025 12:47
Upgrades to Debian13 without interaction required
#!/bin/bash
set -e
GREEN="\e[32m"
YELLOW="\e[33m"
RED="\e[31m"
RESET="\e[0m"
log() { echo -e "${GREEN}[✔]${RESET} $1"; }
warn() { echo -e "${YELLOW}[!]${RESET} $1"; }
@nicolaeser
nicolaeser / abkürzungen.txt
Last active July 20, 2023 18:13
Englische Chat Abkürzungen
ngl = Not Gonna Lie = Ich werde nicht lügen
fr = For Real = wirklich
tbh = To Be Honest = ehrlich gesagt
asap = As soon as possible = So bald wie möglich
afk = Away from Keyboard = Nicht an der Tastatur
btw = By the way = Übrigens
eod = End of discussion = Ende der Diskussion
fyi = For your information = Für Ihre Information
afk = Away from Keyboard = Nicht am Computer
afaik = As far as i know = Soweit ich weiß
@nicolaeser
nicolaeser / redirect.html
Created December 4, 2022 16:59 — forked from advaith1/redirect.html
Redirects the page to a new url.
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<title>Redirecting...</title>
<meta HTTP-EQUIV="REFRESH" content="0; url=/newurl">
<link rel="canonical" href="/newurl" /></head>
<body>
<a href="/newurl">Click here if you are not redirected automatically.</a></body>
</html>