Skip to content

Instantly share code, notes, and snippets.

@rlandas
rlandas / .htaccess
Last active August 29, 2015 14:22 — forked from ericmagnuson/.htaccess
<IfModule mod_rewrite.c>
RewriteEngine on
RewriteRule (.*\.min.css) less.php?min=yes&path=$1
RewriteRule (.*\.css) less.php?min=no&path=$1
</IfModule>
@rlandas
rlandas / install_ffmpeg_ubuntu.sh
Created November 11, 2015 10:16 — forked from xdamman/install_ffmpeg_ubuntu.sh
UBUNTU Install latest ffmpeg on ubuntu 12.04 or 14.04
#!/bin/bash
# Bash script to install latest version of ffmpeg and its dependencies on Ubuntu 12.04 or 14.04
# Inspired from https://gist.github.com/faleev/3435377
# Remove any existing packages:
sudo apt-get -y remove ffmpeg x264 libav-tools libvpx-dev libx264-dev
# Get the dependencies (Ubuntu Server or headless users):
sudo apt-get update