Skip to content

Instantly share code, notes, and snippets.

View raimue's full-sized avatar

Rainer Müller raimue

View GitHub Profile
@raimue
raimue / mutt2task.py
Last active December 23, 2015 01:49 — forked from noqqe/mutt2task.py
#!/usr/bin/env python
# -*- coding: utf-8 -*-
## About
# Add the subject of a mail as task to taskwarrior
#
## Usage
# add this to your .muttrc:
# macro index,pager t "<pipe-message>~/path/to/mutt2task.py<enter>"
@raimue
raimue / gist:e2b34aa560f8b8219937
Last active August 25, 2016 15:00
svndump setup
$ svnrdump dump https://svn.macports.org/repository/macports | xz > macports.xz
$ svnadmin create macports
$ xzcat macports.svndump.xz | svnadmin load macports --force-uuid
$ vim macports/hooks/pre-revprop-change
...
if [ "$USER" = "svnsync" ]; then exit 0; fi
...
exit 1
@raimue
raimue / keybase.md
Last active December 5, 2019 19:19
Verifying myself: I am raimue on Keybase.io.

Keybase proof

I hereby claim:

  • I am raimue on github.
  • I am raimue (https://keybase.io/raimue) on keybase.
  • I have a public key whose fingerprint is 7500 E6A3 6FA5 83B4 071B B540 6701 91C0 5C5C 6749

To claim this, I am signing this object:

@raimue
raimue / Makefile
Created April 13, 2018 19:35
pango-list-typefaces
pango-list-typefaces: pango-list-typefaces.c
cc -o $@ -Wall -g pango-list-typefaces.c \
`pkg-config --cflags --libs pango` \
`pkg-config --cflags --libs cairo` \
`pkg-config --cflags --libs pangocairo` \
`pkg-config --cflags --libs glib-2.0`