Skip to content

Instantly share code, notes, and snippets.

View stiles69's full-sized avatar

Brett Salemink stiles69

View GitHub Profile
@stiles69
stiles69 / zsh-lovers
Created August 20, 2019 20:23 — forked from jheidt/zsh-lovers
zsh-lovers manpage - great list of zsh examples
ZSH-LOVERS(1) ZSH-LOVERS(1)
NAME
zsh-lovers - tips, tricks and examples for the Z shell
SYNOPSIS
Just read it. ;-)
@stiles69
stiles69 / Dockerfile
Created June 11, 2019 01:40 — forked from rosstimson/Dockerfile
Easily get ffmpeg on Fedora with support for all the things.
# Dockerfile for ffmpeg with pretty much support for everything as per:
# https://trac.ffmpeg.org/wiki/CompilationGuide/Centos
# includes codecs with weird licensing like MP3 and AAC.
#
FROM fedora
MAINTAINER Ross Timson <[email protected]>
# Install build requirements.
RUN dnf install -y autoconf automake cmake freetype-devel gcc gcc-c++ git libtool make mercurial nasm pkgconfig zlib-devel
@stiles69
stiles69 / Download-Bin.sh
Last active November 6, 2018 10:01
For Installs
#!/bin/sh
function Main ()
{
cd $HOME
wget https://github.com/stiles69/bin/archive/master.zip
unzip master.zip
wait
rm master.zip
sudo chmod -R 774 $HOME/bin-master