Skip to content

Instantly share code, notes, and snippets.

# Maintainer: Mike Redd <mredd@0tue0.com>
# Contributor: Mike Redd <mredd@0tue0.com>
pkgname=ttf-miso
pkgver=1
pkgrel=1.3
pkgdesc="MISO is an architectural lettering font completed in 2006 by Mårten Nettelbladt."
arch=('any')
license=('custom:free')
url="http://martennettelbladt.se/miso"
depends=('fontconfig' 'xorg-fonts-encodings' 'xorg-font-utils')
#!/usr/bin/env python3
# git.io - generate git.io URLs
#
# Author: slowpoke <mail+git@slowpoke.io>
#
# This program is free software under the non-terms
# of the Anti-License. Do whatever the fuck you want.
# See http://anti-licen.se for a copy.
#
# Github: https://www.github.com/proxypoke/kirschwasser
package main
import (
"fmt"
"image"
"log"
"os"
"github.com/BurntSushi/xgb/randr"
"github.com/BurntSushi/xgbutil"
@proxypoke
proxypoke / np_pp.py
Created April 28, 2013 13:19
Display the currently playing song on Pingie Pie++!
#!/usr/bin/env python3
import time
import requests # pip install requests
import sh # pip install sh
MPD_HOST = "mpd.rzl"
SCROLL_WIDTH = 20
@proxypoke
proxypoke / fix_python_shebangs
Created August 26, 2014 12:18
Fix broken python code that makes assumptions about /usr/bin/python.
#!/bin/sh
# Fix all shebangs of files in a directory which do not explicitly state the
# major version number of the Python interpreter, ie refer to /usr/bin/python
# and assume that it is 2.x (or 3.x, but most Python 3 projects already use
# /usr/bin/env python3).
echo "Explicit is better than implicit!
This will fix all shebangs referring to /usr/bin/python
in all files below the current directory.
@proxypoke
proxypoke / mkrole
Created August 27, 2014 16:55
mkrole - create an ansible role skeleton
#!/bin/sh
# create the directory structure and some files
# for an ansible role
ROLE=$1
if [ -z "$ROLE" ]; then
echo "need a role name"
exit 1
fi
#!/usr/bin/env python3
# -*- coding: utf-8 -*-
#
# Author: slowpoke <mail+gist@slowpoke.io>
#
# I place this in the Public Domain.
# Do whatever you want. Fuck copywrong.
import os
import time