Skip to content

Instantly share code, notes, and snippets.

View bszeliga's full-sized avatar

bszeliga bszeliga

View GitHub Profile
@bszeliga
bszeliga / git-aliases.md
Last active May 26, 2022 16:22
Helpful Git Aliases
[alias]
  co = checkout
  st = status --short
  br = branch -vv

  # Get the history of the last commit
  last = log --name-status -1 HEAD

  # Get the history of a file
@bszeliga
bszeliga / ffmpeg-builder.sh
Created February 27, 2015 15:14
ffmpeg build script
#!/bin/bash
# Get the dependencies
sudo apt-get update
sudo apt-get -y --force-yes install autoconf automake build-essential libass-dev libfreetype6-dev libgpac-dev \
libsdl1.2-dev libtheora-dev libtool libva-dev libvdpau-dev libvorbis-dev libxcb1-dev libxcb-shm0-dev \
libxcb-xfixes0-dev pkg-config texi2html zlib1g-dev
mkdir ~/ffmpeg_sources
# Install yasm