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
import pygtk | |
pygtk.require("2.0") | |
import gobject | |
import gtk | |
from gtk import gdk | |
class EntryMultiCompletion(gtk.Entry): | |
def __init__(self): | |
gtk.Entry.__init__(self) |
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
''' | |
with_... docs: | |
@task | |
def setup_new_system(): | |
add_user() # executed as root | |
update_environ_of_user() # executed as user | |
''' | |
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
Support `infinity` in `-infinity` like PostgreSQL http://www.postgresql.org/docs/9.0/static/datatype-datetime.html#DATATYPE-DATETIME-SPECIAL-TABLE | |
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
/* | |
*/ | |
fieldset { | |
border: #eeeeee 2px groove; | |
} | |
/* Paginator: | |
<< < 1 2 *3* 4 5 > >> | |
*/ |
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
<html><head> | |
<meta http-equiv="Content-Type" content="text/html; charset=utf-8"> | |
<META name=Generator content=10.07> <title>BEW-Veranstaltungen: Aktuelles aus dem Bereich Immissionsschutz</title> | |
</head> | |
<body vLink=#595f7f aLink=#1349a1 link=#1349a1 bgColor=#e4e9ed> <DIV align=center> </DIV> <DIV align=center><table cellSpacing=0 cellPadding=1 width=716 bgColor=#f2f4f6 border=0><FONT color=#575757 size=2 face=Tahoma> </FONT><FONT color=#575757 face=Tahoma> </FONT><FONT color=#595f7f size=2 face=Tahoma> </FONT><FONT color=#595f7f size=2 face=Tahoma> </FONT> <tr><td bgColor=#ffffff width=716 colSpan=7><FONT color=#595f7f size=2 face=Tahoma> <IMG border=0 src="http://www.bew.de/fileadmin/uploads/newsletter_bilder/Header-fuer-Immissionsschutz.jpg" width=700 align=left height=250></FONT></TD></TR><FONT color=#595f7f size=2 face=Tahoma> </FONT><FONT color=#595f7f size=2 face=Tahoma> </FONT> <tr><td bgColor=#ffffff height=28 width=716 colSpan=7><FONT color=#1f497d size=5 face= |
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
# Reliable persistent SSH-Tunnel via systemd (not autossh) | |
# | |
[Unit] | |
Description=Tunnel for %i | |
After=network.target | |
[Service] | |
User=tunnel | |
ExecStart=/usr/bin/ssh -o "ExitOnForwardFailure yes" -o "ServerAliveInterval 60" -N tunnel@%i | |
Restart=always |
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
# Reliable persistent SSH-Tunnel via systemd (not autossh) | |
# https://gist.github.com/guettli/31242c61f00e365bbf5ed08d09cdc006#file-ssh-tunnel-service | |
[Unit] | |
Description=Tunnel for %i | |
After=network.target | |
[Service] | |
User=tunnel | |
ExecStart=/usr/bin/ssh -o "ExitOnForwardFailure yes" -o "ServerAliveInterval 60" -N tunnel@%i |