This file contains hidden or 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
tunnels="{ tun0 tun1 }" | |
local ="{ 10.0.0.0/8, 172.16.0.0/12, 192.168.0.0/16 }" | |
vpn ="{ 131.234.134.198 }" | |
dns ="{ 131.234.137.23 131.234.137.24 }" | |
set skip on lo | |
pass | |
block in on ! lo0 proto tcp to port 6000:6010 |
This file contains hidden or 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
# Privoxy configuration, stored as /etc/privoxy/config.m4 | |
confdir /etc/privoxy | |
actionsfile match-all.action # Actions that are applied to all sites and maybe overruled later on. | |
actionsfile default.action # Main actions file | |
actionsfile user.action # User customizations | |
filterfile default.filter | |
filterfile user.filter # User customizations |
This file contains hidden or 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
4,0 Datenstrukturen und Algorithmen | |
3,0 Grundlagen Mensch-Maschine-Wechselwirkung | |
1,0 Konzepte und Methoden der Systemsoftware | |
3,7 Einführung in Berechenbarkeit, Komplexität und formale Sprachen | |
3,0 Stochastik für Informatiker | |
4,0 Softwareentwurf | |
2,7 Grundlagen der Rechnerarchitektur | |
2,0 Lineare Algebra für Informatiker | |
2,7 Grundlagen der Programmiersprachen | |
2,3 Grundlagen der Technischen Informatik |
This file contains hidden or 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
[3135347.512] (--) checkDevMem: using aperture driver /dev/xf86 | |
[3135347.525] (--) Using wscons driver on /dev/ttyC4 in pcvt compatibility mode (version 3.32) | |
[3135347.533] | |
X.Org X Server 1.9.5 | |
Release Date: 2011-03-17 | |
[3135347.533] X Protocol Version 11, Revision 0 | |
[3135347.533] Build Operating System: OpenBSD 5.0 amd64 | |
[3135347.533] Current Operating System: OpenBSD hydrogen.lan 5.0 GENERIC.MP#86 amd64 | |
[3135347.534] Build Date: 12 September 2011 11:45:27AM | |
[3135347.534] |
This file contains hidden or 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
A-Post: | |
* Plakat von der Berlin Mathematical School -> Board am D-Flur | |
* Postkarte von msc | |
* Werbung vom SB | |
* Angebote fuer Gruppenfreizeiten | |
* Digitalbla fuer Joern | |
* Katalog fuer Buerofoo | |
* ganz viel Blabla | |
* Bestechungsversuch | |
E-Post: |
This file contains hidden or 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/ksh | |
T=`mktemp -d` | |
cd "$T" | |
pkg_info -m | cut -d' ' -f1 > pkg_manual | |
if [ "`whoami`" != "root" ]; then | |
echo "You're not root, so I'll just list the packages that would be removed." | |
else |
This file contains hidden or 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
nwid home | |
wpakey noneofyourbusiness | |
dhcp |
This file contains hidden or 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
char is_berlin; /* is the switch --berlin set? */ | |
int numaps; /* number of APs on the current list */ | |
int maxnumaps; /* maximum nubers of APs on the list */ | |
int maxaps; /* number of all APs found */ | |
int berlin; /* number of seconds it takes in berlin to fill the whole screen with APs*/ | |
/* | |
* The name for this option may look quite strange, here is the story behind it: | |
* During the CCC2007, 10 august 2007, we (hirte, Mister_X) went to visit Berlin | |
* and couldn't resist to turn on airodump-ng to see how much access point we can | |
* get during the trip from Finowfurt to Berlin. When we were in Berlin, the number |
This file contains hidden or 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
c.maximized_horizontal = true | |
c.maximized_vertical = true |
This file contains hidden or 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
print("new window: class=\"" .. (c.class and c.class or "none") .. | |
"\", instance=\"" .. (c.instance and c.instance or "none") .. | |
"\", name=\"" .. (c.name and c.name or "none") .. "\"") | |
if c.class and c.class:find("OpenOffice") then | |
print("new oo window managed") | |
if c.instance and c.instance == "VCLSalFrame" then | |
c.ontop = true | |
else | |
print("new ooimpress window managed") |