Skip to content

Instantly share code, notes, and snippets.

View syhe's full-sized avatar

Sýlvan Heuser syhe

View GitHub Profile
@syhe
syhe / README.md
Created January 19, 2023 17:36
Git Commit Template

Git commit template

Git commit template to improve your project's commit messages.

This commit template has a bunch of information inside, and it's set up so you can freely edit it as you like.

If you want to learn why we use this kind of template, see our repo How to write a great git commit message

@syhe
syhe / maclookup.sh
Created May 15, 2020 09:48
Dump of paraxor's maclookup.sh
#!/bin/sh
# maclookup.sh 0.2 by paraxor (Evan Teitelman)
# Looks up MAC addresses in the IEEE MA-L/OUI public listing.
# override with -f
oui_file=/usr/share/maclookup/oui.txt
# override with -a
additional_info=false
# override with -v
verbose=/dev/null
@syhe
syhe / simple_modman_test.sh
Last active April 26, 2017 15:29
Simple modman test
#!/usr/bin/env bash
set -e
MODMAN="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )/modman"
TMPDIR=$(mktemp -d)
function cleanup () {
rm -rfv "$TMPDIR"
}
trap cleanup EXIT