Skip to content

Instantly share code, notes, and snippets.

View WisdomPill's full-sized avatar

Anas WisdomPill

View GitHub Profile
@Swap-File
Swap-File / gstreamer-build.sh
Last active July 10, 2019 07:23 — forked from sphaero/gstreamer-build.sh
Install & build gstreamer from git
#!/bin/bash --debugger
export MAKEFLAGS="-j 1"
set -e
BRANCH="1.10"
if grep -q BCM270 /proc/cpuinfo; then
echo "RPI BUILD!"
RPI="1"
fi
@lesstif
lesstif / aws-ami2-ec2-redis-cli.md
Created June 12, 2019 10:33
install redis-cli on AWS AMI2 without redis server
#!/bin/bash
sudo yum install gcc -y
wget http://download.redis.io/redis-stable.tar.gz
tar xvzf redis-stable.tar.gz
cd redis-stable
make MALLOC=libc