Skip to content

Instantly share code, notes, and snippets.

@steven2358
steven2358 / ffmpeg.md
Last active July 25, 2024 14:53
FFmpeg cheat sheet
@sdumetz
sdumetz / Firefox upstream installer
Last active June 10, 2020 14:00
Install firefox official stable release on debian stretch and consorts
#!/bin/sh
#Install firefox official stable release on debian stretch and consorts
set -e
TMP="$(mktemp -d)"
install_base="/usr/local"
echo "downloading latest firefox release..."
wget -O "$TMP/FirefoxSetup.tar.bz2" "https://download.mozilla.org/?product=firefox-latest-ssl&os=linux64&lang=fr"
echo "removing old firefox binaries"
test -d "$install_base/lib/firefox" && rm -rf "$install_base/lib/firefox"
echo "extracting..."