Skip to content

Instantly share code, notes, and snippets.

View 3nt3's full-sized avatar
🦕

Nia 3nt3

🦕
  • BizFactory
  • Germany
  • 10:24 (UTC +02:00)
View GitHub Profile
\documentclass[a4paper,landscape,11pt]{article}
\usepackage[ngerman]{babel}
\usepackage[margin=2cm]{geometry}
\usepackage{helvet}
% \usepackage{times}
\usepackage{multicol}
\usepackage{wrapfig}
\usepackage{csquotes}
\usepackage[skip=5pt]{parskip}

Keybase proof

I hereby claim:

  • I am 3nt3 on github.
  • I am 3nt3 (https://keybase.io/3nt3) on keybase.
  • I have a public key whose fingerprint is 0E7C D1EB 9D4F 9273 5B24 3D87 E8A8 E10D CB38 E9BC

To claim this, I am signing this object:

@3nt3
3nt3 / cloud_to_butt.js
Last active December 25, 2021 19:52
This is a greasemonkey script that replaces the word "cloud" with "butt" on websites.
// ==UserScript==
// @name Cloud to Butt
// @namespace https://3nt3.de
// @include *
// @version 1
// ==/UserScript==
(function () {
"use strict";
var words = {
@3nt3
3nt3 / batwarn.sh
Last active August 6, 2021 20:04
bash script to warn you when your battery is low and play sounds when the charging connector is pluggin in/out
#!/bin/bash
get_current() {
bat0=$(cat /sys/class/power_supply/BAT0/capacity)
bat1=$(cat /sys/class/power_supply/BAT1/capacity)
echo $bat0 + $bat1 - 5 | bc # -5 because that's what the driver will say when the battery is unusably low
}
warn() {