Skip to content

Instantly share code, notes, and snippets.

View fiee's full-sized avatar

Henning Hraban Ramm fiee

View GitHub Profile
@fiee
fiee / fabfile.py
Created July 29, 2009 13:55 — forked from anonymous/gist:156623
fabric fabfile.py for deployment of django apps on Debian servers
#!/usr/bin/env python
# -*- coding: utf-8 -*-
"""
fabfile for Django
------------------
see http://morethanseven.net/2009/07/27/fabric-django-git-apache-mod_wsgi-virtualenv-and-p/
modified for fabric 0.9/1.0 by Hraban (fiëé visuëlle)
several additions, corrections and customizations, too
@fiee
fiee / liedvorlage.ly
Created August 22, 2009 11:48
sample lead sheet in GNU LilyPond
%{
LilyPond-Musterdokument für ein Liederblatt
diverse Anpassungen sind auskommentiert
%}
\version "2.12.0"
#(ly:set-option (quote no-point-and-click))
%#(set-global-staff-size 18)
\header{
@fiee
fiee / laenderinfos.sql
Last active July 17, 2023 14:04
table of information about all countries of the world (German names)
CREATE TABLE adressen.land
(
isocode_2 character(2) not null, -- ISO 3166 ALPHA-2
isocode_3 character(3) not null, -- ISO 3166 ALPHA-3
name character varying not null, -- deutscher Name des Landes (international besser via ISO-Code ankoppeln!) // German name of the country
vorwahl integer default null, -- internationale Vorwahl // international phone code
null_bei_vorwahl boolean default FALSE, -- muss man die Null der Ortsvorwahl auch nach der internationalen Vorwahl wählen? // must one dial zero between international and local phone code?
vorwahl_lokal boolean default FALSE, -- muss man vor Ort die Vorwahl wählen? // must one dial the local phone code also locally?
tld character varying default NULL, -- Top Level Domain
kfz character varying default NULL, -- KFZ-Kennzeichen // car code
@fiee
fiee / site.py
Created October 28, 2010 09:36
site dependency for FeinCMS pages (feincms.modules.page.extensions)
# -*- coding: utf-8 -*-
"""
Extension for FeinCMS Page
"""
from django.conf import settings
from django.db import models
from django.contrib.sites.models import Site
from django.contrib.sites.managers import CurrentSiteManager
from django.utils.translation import ugettext_lazy as _
from feincms.module.page.models import Page, PageManager
@fiee
fiee / colors.py
Created November 16, 2010 10:48
Color conversion helpers, see also fiee/fiee-coloree
#!/usr/bin/env python
# -*- coding: utf-8 -*-
def HtmlColorCode_to_strings(value):
"Convert a HTML color code like '#FFCC00' or 'FFCC00' to a list of strings ['FF', 'CC', '00']"
x = 1 * value.startswith('#')
return [value[x:x+2],value[x+2:x+4],value[x+4:x+6]]
def HtmlColorCode_to_ints(value):
"Convert a HTML color code like '#FFCC00' or 'FFCC00' to a list of integers [255, 204, 0]"
@fiee
fiee / fs.py
Created September 30, 2011 08:00
file system helpers (part of an old toolbox)
#!/bin/env python
# -*- coding: utf-8 -*-
"""
:Author: Henning Hraban Ramm
:Organization: fiëé virtuëlle, www.fiee.net
:Contact: mailto:hraban@fiee.net
:Version: 0.3.6
:Date: 2006-01-24
:Status: beta
:License: same as Python
@fiee
fiee / choir_template.ly
Created September 30, 2011 08:02
Lead sheet setup for GNU LilyPond 2.14+
\version "2.14.0"
\include "global.ly"
\include "articulate.ly" % for better MIDI
\header{
title = ""
poet = ""
%composer = ""
%arranger = "arr."
%instrument = "2 voc + git"
@fiee
fiee / admin.py
Created September 30, 2011 08:14
Generic base classes for my django models, superseded by fiee/fiee-dorsale
# -*- coding: utf-8 -*-
import datetime
from django.contrib import admin
from django.contrib.sites.models import Site
class BaseAdmin(admin.ModelAdmin):
def save_model(self, request, obj, form, change):
if not change:
obj.createdby = request.user
obj.createdon = datetime.datetime.now()
@fiee
fiee / ocerrors.py
Created September 30, 2011 08:36
run GOCR and clean up afterwards
#!/usr/bin/env python
# -*- coding: utf-8 -*-
"""
Replace common (G)OCR errors (in German)
Usage: python ocerrors.py inputfile [outputfile]
"""
import locale
import os, sys
@fiee
fiee / cwpuzzle_beispiel.tex
Created October 12, 2011 13:07
LaTeX cwpuzzle Beispiel
% see the docs for Gerd Neugebauer’s cwpuzzle.sty at http://ctan.org/tex-archive/macros/latex/contrib/gene/crossword
\documentclass[a4paper]{article}
\usepackage{cwpuzzle}
\usepackage[utf8]{inputenc}
\usepackage{german}
\begin{document}
\PuzzleUnsolved