Skip to content

Instantly share code, notes, and snippets.

View jaxxzer's full-sized avatar
🍑
rounding edges

Jacob Walser jaxxzer

🍑
rounding edges
View GitHub Profile
@jaxxzer
jaxxzer / openssl_commands.md
Created August 28, 2018 15:29 — forked from p3t3r67x0/openssl_commands.md
Some list of openssl commands for check and verify your keys

openssl

Install

Install the OpenSSL on Debian based systems

sudo apt-get install openssl
@jaxxzer
jaxxzer / gstreamer-build.sh
Created February 15, 2017 21:33 — forked from sphaero/gstreamer-build.sh
Install & build gstreamer from git
#!/bin/bash --debugger
set -e
BRANCH="master"
if grep -q BCM2708 /proc/cpuinfo; then
echo "RPI BUILD!"
RPI="1"
fi
[ -n "$1" ] && BRANCH=$1