See the new site: https://postgresisenough.dev
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/bin/bash | |
| PORTAL="vpn.ohmportal.de" | |
| # Get username from Keychain | |
| USER=$(security find-generic-password -s "$PORTAL" -g 2>&1 | \ | |
| awk -F\" '/"acct"<blob>="/ {print $(NF-1); exit}') | |
| # Get password from Keychain | |
| PASS=$(security find-generic-password -s "$PORTAL" -w 2>/dev/null) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| \documentclass{article} | |
| \usepackage{pgffor} | |
| \usepackage{pgfkeys} | |
| \usepackage{ifthen} | |
| \pgfkeys{ | |
| /contributions/.cd, | |
| 1/.initial=Conceptualization, | |
| 2/.initial=Methodology, |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # I'll be doing another one for Linux, but this one will give you | |
| # a pop up notification and sound alert (using the built-in sounds for macOS) | |
| # Requires https://github.com/caarlos0/timer to be installed | |
| # Mac setup for pomo | |
| alias work="timer 60m && terminal-notifier -message 'Pomodoro'\ | |
| -title 'Work Timer is up! Take a Break 😊'\ | |
| -appIcon '~/Pictures/pumpkin.png'\ | |
| -sound Crystal" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| \documentclass{standalone} | |
| \usepackage{amsmath,amssymb} | |
| \usepackage{charter} | |
| \usepackage[charter]{mathdesign} | |
| %\font\nullfont=cmr10 | |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| \documentclass{minimal} | |
| \usepackage{tikz} | |
| \usepackage{tikz-network} | |
| \usetikzlibrary{calc, backgrounds, positioning} | |
| \input{tikz-hypergraph} | |
| \usepackage{xcolor} |
The always enthusiastic and knowledgeable mr. @jasaltvik shared with our team an article on writing (good) Git commit messages: How to Write a Git Commit Message. This excellent article explains why good Git commit messages are important, and explains what constitutes a good commit message. I wholeheartedly agree with what @cbeams writes in his article. (Have you read it yet? If not, go read it now. I'll wait.) It's sensible stuff. So I decided to start following the