This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/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 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
%{ | |
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{ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# -*- 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 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/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]" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/env python | |
# -*- coding: utf-8 -*- | |
""" | |
:Author: Henning Hraban Ramm | |
:Organization: fiëé virtuëlle, www.fiee.net | |
:Contact: mailto:[email protected] | |
:Version: 0.3.6 | |
:Date: 2006-01-24 | |
:Status: beta | |
:License: same as Python |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
\version "2.14.0" | |
\include "global.ly" | |
\include "articulate.ly" % for better MIDI | |
\header{ | |
title = "" | |
poet = "" | |
%composer = "" | |
%arranger = "arr." | |
%instrument = "2 voc + git" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# -*- 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() |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/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 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
% 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 |
OlderNewer