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
remote openvpn.uni-paderborn.de | |
client | |
dev tun0 | |
comp-lzo | |
verb 3 | |
# proto tcp | |
# port 443 |
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/sh | |
exec 2>&1 | |
env > /tmp/up-${script_type}.env | |
if [ "${script_context}" != "init" ]; then | |
exit | |
fi | |
case "${script_type}" in |
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 }" | |
local ="{ 10.0.0.0/8, 172.16.0.0/12, 192.168.0.0/16, 131.234.0.0/16 }" # local networks, last one is UPB | |
vpn ="{ 131.234.134.198 }" # vpn endpoint | |
dns ="{ 131.234.137.23 8.8.4.4 }" | |
login ="{ 131.234.5.5 172.24.6.65 }" # webauth login | |
set skip on lo | |
# block traffic except to/from the VPN endpoint and tunnelled/local traffic | |
block all |
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
! make CapsLock work as modbutton3 | |
keycode 66 = Hyper_L | |
clear lock | |
clear mod3 | |
clear mod4 | |
add mod3 = Hyper_L | |
add mod4 = Super_L Super_R |
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
#!/usr/local/bin/python3.2 | |
import encodings | |
import os | |
import re | |
import subprocess | |
import syslog | |
import sys | |
import time |
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
processor : 0 | |
vendor_id : GenuineIntel | |
cpu family : 6 | |
model : 23 | |
model name : Pentium(R) Dual-Core CPU T4400 @ 2.20GHz | |
stepping : 10 | |
microcode : 0xa07 | |
cpu MHz : 1200.000 | |
cache size : 1024 KB | |
physical id : 0 |
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
hackpad | |
description: Notebook | |
product: 2958 (Lenovo) | |
vendor: LENOVO | |
version: Lenovo G550 | |
serial: 2292224906060 | |
width: 32 bits | |
capabilities: smbios-2.5 dmi-2.5 smp-1.4 smp | |
configuration: boot=oem-specific chassis=notebook cpus=2 family=Lenovo sku=Lenovo uuid=9826D3A5-0DFC-11DF-80EA-705AB658A873 | |
*-core |
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
! turn the scroll wheel upside-down | |
pointer = 1 2 3 5 4 | |
! make CapsLock work as modbutton3 | |
keycode 66 = Hyper_L | |
clear lock | |
clear mod3 | |
clear mod4 |
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
#include <stdlib.h> | |
#include <fcntl.h> | |
#include <sys/types.h> | |
#include <unistd.h> | |
#define CHILDREN 50 | |
void | |
spin(void) { | |
while (1) { |
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
Index: arch/amd64/amd64/identcpu.c | |
=================================================================== | |
RCS file: /cvs/src/sys/arch/amd64/amd64/identcpu.c,v | |
retrieving revision 1.41 | |
diff -u -r1.41 identcpu.c | |
--- arch/amd64/amd64/identcpu.c 9 Oct 2012 09:16:09 -0000 1.41 | |
+++ arch/amd64/amd64/identcpu.c 23 Oct 2012 10:27:44 -0000 | |
@@ -210,6 +210,8 @@ | |
void via_nano_setup(struct cpu_info *ci); |