Skip to content

Instantly share code, notes, and snippets.

View tjarksaul's full-sized avatar
🦄

Tjark Saul tjarksaul

🦄
View GitHub Profile
@tjarksaul
tjarksaul / autosetup_external_monitor.py
Created August 3, 2023 12:27 — forked from debsankha/autosetup_external_monitor.py
Automatically setup external monitors
#!/usr/bin/env python3
"""
Automatically setup external monitors at MOIA so that it's to the right of the
internal screen
Prerequisite: [displayplacer](https://github.com/jakehilborn/displayplacer)
```bash
brew tap jakehilborn/jakehilborn && brew install displayplacer
```
#!/usr/bin/env python3
import os
import subprocess
import tempfile
import sys
import glob
import requests
from datetime import datetime
OUT_DIR = '/tmp/scan-inbox/'
@tjarksaul
tjarksaul / git-update
Last active February 10, 2023 13:06 — forked from steve-jansen/git-update
A custom script for git to stash any working changes, pull origin main, and unstash your working changes
#!/bin/bash
stash() {
# check if we have uncommited changes to stash
git status --porcelain | grep "^." >/dev/null;
if [ $? -eq 0 ]
then
if git stash save -u "git-update on `date`";
then
@tjarksaul
tjarksaul / setup.sh
Last active January 29, 2022 09:41 — forked from lgreenlee/tinydns.service
TinyDNS/DJBDNS setup for Ubuntu/Debian
#!/bin/bash -e
apt install -y ucspi-tcp build-essential
wget http://cr.yp.to/djbdns/djbdns-1.05.tar.gz
tar xf djbdns-1.05.tar.gz
cd djbdns-1.05/
echo gcc -O2 -include /usr/include/errno.h > conf-cc
wget https://www.fefe.de/dns/djbdns-1.05-test28.diff.xz
xz -d djbdns-1.05-test28.diff.xz
@tjarksaul
tjarksaul / Readme.md
Last active November 17, 2021 09:23
Slack Status Automatization
  1. Copy this Zap into your Zapier account and connect your Slack account: https://zapier.com/shared/532ac667d67cd8fceefccc83cc2169488679056d
  2. Copy both files above into your Mac's $HOME/Library/LaunchAgents
  3. Replace the hoook URL in slackstatus.sh with the hook URL you get from Zapier, and replace [OFFICE NETWORK SSID] with your office's network SSID. Also update status emojis and text as you see fit
  4. Replace [USERNAME] in local.slackstatus.plist with your user account name
  5. Run launchctl load -w ~/Library/LaunchAgents/local.slackstatus.plist
  6. ???
  7. Profit
#!/usr/bin/env python3
import sys
import os
import csv
import xlsxwriter # pip3 install xlsxwriter
from typing import List
def convert_row(row: List[str]) -> List[str]:
row[3] = convert_gender(row[3])
@tjarksaul
tjarksaul / certbot.sh
Last active November 10, 2020 08:51
Certbot with DNS validation and tinydns
#!/bin/bash
DOMAIN="example.tld"
certbot certonly -n --preferred-challenges dns --manual --manual-public-ip-logging-ok --manual-auth-hook /usr/local/bin/tinydns-certbot-enable --manual-cleanup-hook /usr/local/bin/tinydns-certbot-disable -d $DOMAIN -d \*.$DOMAIN

Keybase proof

I hereby claim:

  • I am tjarksaul on github.
  • I am tjarksaul (https://keybase.io/tjarksaul) on keybase.
  • I have a public key whose fingerprint is B4EC CCF7 6837 A21B EA75 D7C0 D434 6A5E F714 22C2

To claim this, I am signing this object:

@tjarksaul
tjarksaul / gist:9047330
Created February 17, 2014 09:15
Script to change vbox user password on uberspace. Thanks to @_einstein_
<?php
if($_SERVER["HTTPS"] != "on") {
header("HTTP/1.1 301 Moved Permanently");
header("Location: https://" . $_SERVER["SERVER_NAME"] . $_SERVER["REQUEST_URI"]);
exit();
}
function setNewPassword($strMailbox, $strPassword)
{
$strPassword = utf8_decode($strPassword);
<?php
interface DlrgLogin
{
/**
* Diese Funktion gibt den HTML-Code eines Login- oder Logout-Formulars zurück, je nach Login-Status
* @see isAuthenticated
* @return string
*/
public function getLoginForm();