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/bash | |
case $script_type in | |
up) | |
ip netns add vpn | |
ip link set dev "$1" up netns vpn mtu "$2" | |
ip netns exec vpn ip link set dev lo up | |
ip netns exec vpn ip addr add dev "$1" local "$4" peer "$5" | |
;; | |
route-up) | |
ip netns exec vpn ip route add default via "$route_vpn_gateway" |
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/bin/python3 -OO | |
import logging | |
import socket | |
import pygame | |
import pyudev | |
import subprocess | |
import time | |
count = 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
#!/usr/bin/python3 | |
# -*- coding: utf-8 -*- | |
import os | |
import re | |
from glob import glob | |
from requests import head | |
def main(): |
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/bin/python2 | |
import numpy as np | |
import scipy.ndimage as nd | |
import PIL.Image | |
import sys | |
sys.path.append('../caffe/distribute/python') | |
import caffe | |
# a couple of utility functions for converting to and from Caffe's input image layout |
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
alias pia="sudo ip netns exec pia sudo -u peter" |
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
var fs = require('fs'), | |
util = require('util'), | |
mixin = require('./util').mixin, | |
EventEmitter = require('events').EventEmitter, | |
// Default regular expressions for log parsing | |
defaultRegexps = { | |
// Log open / log close / day change: $1 = date+time | |
logopen: /^--- Log opened (.*)$/, | |
logclose: /^--- Log closed (.*)$/, | |
daychange: /^--- Day changed (.*)$/, |
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
echo 'read -s -n 1 -t 5 -p "Press any key to exit" && exit | |
/stage1.sh |& tee log | |
chroot /mnt/gentoo /stage2.sh |& tee -a log | |
mv log /mnt/gentoo | |
rm /mnt/gentoo/stage2.sh | |
init 0' >> etc/local.d/auto.start | |
chmod +x etc/local.d/auto.start | |
cp mnt/cdrom/stage*.sh . |
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
import logging | |
import sys | |
import time | |
from configparser import ConfigParser | |
from irc.client import SimpleIRCClient | |
class IrcClient(SimpleIRCClient): | |
def __init__(self, nick, config): |
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/bin/env python | |
# -*- coding: utf-8 -*- | |
from __future__ import unicode_literals | |
import ldap3 | |
if __name__ == '__main__': | |
import ssl | |
# ssl.CERT_REQUIRED | |
tls = ldap3.Tls(validate=ssl.CERT_NONE, version=ssl.PROTOCOL_TLSv1_2) |
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
# -*- coding: utf-8 -*- | |
import gssapi | |
import ldap3 | |
from ldap3.protocol.sasl.sasl import send_sasl_negotiation, abort_sasl_negotiation | |
NO_SECURITY_LAYER = 1 | |
INTEGRITY_PROTECTION = 2 | |
CONFIDENTIALITY_PROTECTION = 4 |
NewerOlder