Skip to content

Instantly share code, notes, and snippets.

@kazmiekr
kazmiekr / playground.sh
Created March 18, 2016 13:54
Shell script to run a swift Xcode playground
#!/bin/bash
function error_exit {
echo "$1"
exit 1
}
function clean_dir {
rm $MAIN_SWIFT_FILE
}
@kazmiekr
kazmiekr / gifoffmylawn.user.js
Created February 10, 2015 22:11
Script to remove any giphy reference in slack
// ==UserScript==
// @name Gif off my lawn
// @description banish the scourge of giphys
// @include https://universalmind.slack.com/*
// ==/UserScript==
(function() {
var classList = [ 'inline_attachment', 'msg_inline_img_holder' ];
var blackList = [ 'giphy' ];