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 / 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
@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
func makeGetCall() {
// Set up the URL request
let todoEndpoint: String = "https://jsonplaceholder.typicode.com/todos/1"
guard let url = URL(string: todoEndpoint) else {
print("Error: cannot create URL")
return
}
let urlRequest = URLRequest(url: url)
// set up the session
@tjarksaul
tjarksaul / pliim-turnOff.scpt
Last active January 21, 2018 08:13 — forked from zehfernandes/pliim-turnOff.scpt
One click and be ready to go up on stage and shine! - https://zehfernandes.github.io/pliim/
# Turn on Notifications
do shell script "defaults -currentHost write com.apple.notificationcenterui doNotDisturb -bool FALSE; defaults -currentHost delete com.apple.notificationcenterui doNotDisturbDate; osascript -e 'quit application \"NotificationCenter\" ' && killall usernoted" -- this set 'Do not disturb' to false in the pref
# Show Desktop
do shell script "defaults write com.apple.finder CreateDesktop -bool true; killall Finder"
# Show all windows
tell application "System Events"
set visible of (every process) to true
end tell
@tjarksaul
tjarksaul / apache_serviceproxy_customsites_letsencrypt.conf
Last active March 8, 2017 08:45
Prepare macOS server for letsencryot
# file path: /Library/Server/Web/Config/Proxy/apache_serviceproxy_customsites_letsencrypt.conf
ProxyPass /.well-known/acme-challenge http://127.0.0.1:34543/.well-known/acme-challenge
ProxyPassReverse /.well-known/acme-challenge http://127.0.0.1:34543/.well-known/acme-challenge