Skip to content

Instantly share code, notes, and snippets.

@mmb
mmb / wunderlist_unfinished.sh
Created February 15, 2014 09:31
Using jq to extract lists from a Wunderlist json export
# All unfinished items from a list called "Buy"
cat ~/Downloads/wunderlist-20140214-23-56-27.json | \
jq -r '([.lists[] | {key: .id, value: .title}] | from_entries) as $lists |
.tasks |
map(select(.completed_at == null)) |
map({title, list: $lists[.list_id]}) |
map(select(.list == "Buy")) |
.[].title'
@mmb
mmb / weechat_otr.py
Created April 16, 2014 06:58
weechat otr with irc parsing debugging
# -*- coding: utf-8 -*-
# otr - WeeChat script for Off-the-Record IRC messaging
#
# DISCLAIMER: To the best of my knowledge this script securely provides OTR
# messaging in WeeChat, but I offer no guarantee. Please report any security
# holes you find.
#
# Copyright (c) 2012-2014 Matthew M. Boedicker <matthewm@boedicker.org>
# Nils Görs <weechatter@arcor.de>
# Daniel "koolfy" Faucon <koolfy@koolfy.be>
@mmb
mmb / bosh2docker.rb
Created June 13, 2014 05:21
convert a bosh job into a Dockerfile that builds a container with all the job's packages installed
require 'yaml'
require 'fileutils'
job = ARGV[0]
job_spec = YAML.load_file(File.join('jobs', job, 'spec'))
packages = job_spec['packages']
work_dir = 'docker'
FileUtils.mkdir_p(work_dir)
@mmb
mmb / plz_verify
Last active August 29, 2015 14:03
When USB drives are mounted, check them for a script called plz_verify.sh and run it if found.
#!/usr/bin/env ruby
# When USB drives are mounted, check them for a script called plz_verify.sh
# and run it if found.
#
# symlink all USB volumes you want to check into ~/usb
# ln -s /Volumes/mmb ~/usb/mmb
require 'logger'
require 'set'
@mmb
mmb / gist:f2ae27e66df8c473a2ce
Created July 12, 2014 04:27
test wkhtmltopdf header
<!DOCTYPE html>
<p>hello</p>
@mmb
mmb / gist:3cee36e6fd16bf33df0b
Created July 31, 2014 06:46
Rack::Test::UploadedFile doesn't respond to encoding
def create
@src_image = SrcImage.new(src_image_params)
@src_image.user = current_user
read_image_data @src_image
respond_to do |format|
if @src_image.save
create_success(format)
else
@mmb
mmb / rmagick_anim_test.rb
Created December 2, 2014 05:09
How to tell if an image is animated using rmagick
require 'rmagick'
img_list = Magick::ImageList.new('http://i.imgur.com/Txjn52a.gif')
p img_list.size
img_list = Magick::ImageList.new('http://i.imgur.com/UthfKGQ.jpg')
p img_list.size
@mmb
mmb / run_and_eject.sh
Last active August 29, 2015 14:17
shell script that ejects the USB drive it's on
#!/bin/bash
set -e
COPY_PATH=/tmp/mount_mmb.sh
MOUNT_PATH=/Volumes/mmb
cat > $COPY_PATH << EOF
#!/bin/bash
set -e
@mmb
mmb / gist:15e62996d2053bba7e21
Last active August 29, 2015 14:27
watch Cloud Foundry gorouter routing table on bosh-lite
watch -d 'curl -s http://router:router@10.244.0.22:8080/routes \
| jq -r "to_entries[] | .key+\" \"+.value[].address+\" \"+.value[].route_service_url" | \
column -t'
#!/usr/bin/ruby
# convert embed code generated by some Flash video players into valid markup
# (use object tag instead of deprecated embed tag)
require 'rexml/document'
require 'rubygems'
require 'builder'