Skip to content

Instantly share code, notes, and snippets.

Installer activation:
The password is the CRC-32 hash of the username
i.e.
user
0x8D93D649
@flyser
flyser / makemkv.sh
Last active August 29, 2015 13:57 — forked from powerswitch/makemkv.sh
#!/bin/sh
if [[ "x$1" = "x" ]]; then
echo "Usage:"
echo " $0 <searchpath>"
exit 1
fi
find "$(readlink -f "$1")" -type d -name STREAM | while read M ; do
cd "$M"
@willurd
willurd / web-servers.md
Last active November 13, 2024 13:44
Big list of http static server one-liners

Each of these commands will run an ad hoc http static server in your current (or specified) directory, available at http://localhost:8000. Use this power wisely.

Discussion on reddit.

Python 2.x

$ python -m SimpleHTTPServer 8000
@muellermartin
muellermartin / hdr.sh
Created November 28, 2012 16:28
Exposure fusion (a.k.a. "Fake HDR") workflow for Magic Lantern
#!/bin/sh
# Exposure fusion (a.k.a. "Fake HDR") workflow for Magic Lantern
# 2012-11-28 17:20:30
# Martin Müller <[email protected]>
#
# REQUIREMENTS:
# ffmpeg
# enfuse
# hugin (for align_image_stack)
#