Skip to content

Instantly share code, notes, and snippets.

View plasticine's full-sized avatar
🐧
Hello? Is this thing on?

Justin Morris plasticine

🐧
Hello? Is this thing on?
View GitHub Profile
@plasticine
plasticine / gist:35960b0447200e00145f
Last active August 29, 2015 14:03
Install ShairPort on Arch on a Rpi
#!/usr/bin/env bash +xe
# Assumes a sane-ish system with git and wget
pacman -S --noconfirm avahi libao openssl perl-crypt-openssl-rsa perl-io-socket-inet6 perl-libwww
wget https://aur.archlinux.org/packages/pe/perl-net-sdp/perl-net-sdp.tar.gz
tar -zxvf perl-net-sdp.tar.gz
pushd perl-net-sdp
makepkg -s --asroot
pacman -U perl-net-sdp-*.pkg.tar.xz
@plasticine
plasticine / jiffy.sh
Created January 22, 2015 06:32
Command line tool to convert video files to GIF
#!/usr/bin/env bash +x
#
# Compress video files into GIFs.
#
# Requirements:
# - ffmpeg
# - imagemagick
# - terminal-notifier
# - gifsicle
#
// Tumblr bookmarklet script
javascript:
var%20d = document,
w = window,
e = w.getSelection,
k = d.getSelection,
x = d.selection,
s = (e?e():(k)?k():(x?x.createRange().text:0)),
f = 'http://www.tumblr.com/share',
#!/bin/sh
# /share/MD0_DATA/.qpkg/autorun/autorun-plexconnect.sh
# chmod +x /share/MD0_DATA/.qpkg/autorun/autorun-plexconnect.sh
curl -L https://gist.githubusercontent.com/plasticine/86e189c42ac8ec7598a8/raw/b0a2c963c9e3cb5928157439976734860014914e/update_plex_connect.sh | bash &
@plasticine
plasticine / spendyspendy.txt
Last active August 29, 2015 14:26 — forked from dannolan/spendyspendy.txt
Top Entitlement Claiming Federal Politicians in Australia (2014)
Top Spenders OVERALL
The Hon Tony Abbott MP $ 1,057,673
The Hon Julie Bishop MP $ 866,653
Mr Tony Pasin MP $ 851,482
Mr Tim Watts MP $ 556,863
The Hon Andrew Robb AO MP $ 539,247
The Hon Darren Chester MP $ 529,344
Mr Wyatt Roy MP $ 526,258
Senator the Hon Simon Birmingham $ 523,191
ServerPath /repo/
RewriteEngine On
RewriteRule ^(/repo/.*) /path/$1
$(document).ready(function() {
jQuery.fn.commentform = function(){
return this.each(function(){
$("#slider").slideToggle("slow").toggleClass('open');
$(this).toggleClass("active");
if($(this).attr('id')){
var replyData = /reply-([\d]{1,})-([\w]{1,})/.exec($(this).attr('id'));
var userSelection = getSelectedText();
if(userSelection){
@plasticine
plasticine / gist:44151
Created January 7, 2009 02:42
jQuery Fairydust to help style form inputs...
$(document).ready(function() {
$('input:file').each(function(index) {
$(this).wrap('<label class="file-input"></label>').wrap('<div class="file-wrapper" style="position:relative;"></div>');
$('.file-wrapper').prepend('<span class="file-input-title">Upload file</span>').append('<span class="file-input-path">...</span>');
$(this).css({'opacity':'0.0', 'position':'absolute', 'top':'0', 'left':'0'});
$(this).change(function(){
var value = $(this).val();
from django.conf import settings
from django.contrib.auth.decorators import user_passes_test
@user_passes_test(lambda u: u.has_perm('foo.bar'), login_url=settings.LOGIN_URL)
def widgetize(request):
""" Clever, clever, clever... """
pass