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 | |
# _______ | |
# ____________ _______ _\__ /_________ ___ _____ | |
# | _ _ \ _ | ____\ _ / | |/ _ \ | |
# | / / / / | | | /___/ _ | | / / | |
# |___/___/ /___/____|________|___ | |_| |___|_____/ | |
# \__/ |___| | |
# | |
# (c) 2011 Wijnand Modderman-Lenstra <[email protected]> | |
# MIT License |
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
# | |
# _______ | |
# ____________ _______ _\__ /_________ ___ _____ | |
# | _ _ \ _ | ____\ _ / | |/ _ \ | |
# | / / / / | | | /___/ _ | | / / | |
# |___/___/ /___/____|________|___ | |_| |___|_____/ | |
# \__/ |___| | |
# | |
# | |
# Put this in your ~/.zshrc or ~/.bashrc: |
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 | |
if echo ${1} | grep -q '^vmnet[0-9]$'; then | |
ERRCOUNT='0' | |
PIDSNIFF='0' | |
PIDTDUMP='0' | |
CAPINTF="${1}" | |
CAPFILE="$(mktemp -t capture)" |
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 | |
# | |
# Tie together two serial pipes in VMWare (Fusion) | |
# | |
# 1st: | |
# serial1.present = "TRUE" | |
# serial1.fileType = "pipe" | |
# serial1.yieldOnMsrRead = "TRUE" | |
# serial1.startConnected = "TRUE" | |
# serial1.fileName = "ax25-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
diff -Nur tsocks-1.8.org/Makefile.in tsocks-1.8/Makefile.in | |
--- tsocks-1.8.org/Makefile.in 2002-03-16 11:12:40.000000000 +0100 | |
+++ tsocks-1.8/Makefile.in 2011-08-08 22:17:27.000000000 +0200 | |
@@ -1,6 +1,7 @@ | |
# Makefile used by configure to create real Makefile | |
CC=@CC@ | |
+SHLIB_EXT=@SHLIB_EXT@ | |
prefix=@prefix@ | |
exec_prefix = @exec_prefix@ |
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-b .. really? | |
set-option -g prefix C-a | |
# c-a c-a for the last active window | |
bind-key C-a last-window | |
# command sequence for nested tmux sessions | |
bind-key a send-prefix | |
# start window numbering at 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
diff -ur hamlib-1.2.15.org/configure hamlib-1.2.15/configure | |
--- hamlib-1.2.15.org/configure 2012-02-03 03:47:07.000000000 +0100 | |
+++ hamlib-1.2.15/configure 2012-04-16 17:05:11.000000000 +0200 | |
@@ -19863,12 +19863,12 @@ | |
pkg_cv_LIBUSB_CFLAGS="$LIBUSB_CFLAGS" | |
elif test -n "$PKG_CONFIG"; then | |
if test -n "$PKG_CONFIG" && \ | |
- { { $as_echo "$as_me:${as_lineno-$LINENO}: \$PKG_CONFIG --exists --print-errors \"libusb >= 0.1\""; } >&5 | |
- ($PKG_CONFIG --exists --print-errors "libusb >= 0.1") 2>&5 | |
+ { { $as_echo "$as_me:${as_lineno-$LINENO}: \$PKG_CONFIG --exists --print-errors \"libusb-1.0 >= 0.1\""; } >&5 |
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-b .. really? | |
set-option -g prefix C-a | |
# c-a c-a for the last active window | |
bind-key C-a last-window | |
# command sequence for nested tmux sessions | |
bind-key a send-prefix | |
# start window numbering at 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
#!/usr/bin/python | |
# _______ | |
# ____________ _______ _\__ /_________ ___ _____ | |
# | _ _ \ _ | ____\ _ / | |/ _ \ | |
# | / / / / | | | /___/ _ | | / / | |
# |___/___/ /___/____|________|___ | |_| |___|_____/ | |
# \__/ |___| | |
# | |
# | |
# (c) 2009-2012 Wijnand Modderman-Lenstra <[email protected]> |
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 python2 | |
# -*- coding: utf8; -*- | |
import json | |
import glob | |
import multiprocessing | |
import os | |
import sys | |
import time |