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 | |
# | |
# This script converts multi-track "polywave" recording files generated by the Mackie DLZ Creator | |
# to A) combines the 2GB split recording files and B) split the multi-track 14-channel WAV file | |
# into 9 separate WAV files: inputs 1-4 (mono) and stereo 5/6, 7/8, 9/10, 11/12, and Stereo LR. | |
# | |
# It does everything in a single pass and joining the split recording parts is done with the | |
# concat filter rather than the concat demuxer (or protocol) so that there's no need for temporary | |
# files and there's less issues with quoting filenames. This script should work on anything that | |
# runs bash and has 'ffmpeg' somewhere in PATH. Tested on Linux but it should work in cygwin/msys |
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 python3 | |
import argparse | |
import inspect | |
from io import StringIO | |
from itertools import product | |
import random | |
import re | |
import sys |
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 python3 | |
""" | |
pacman-upgrades-graph.py: a script to visualize the most-upgraded packages on an pacman-based system. | |
""" | |
import argparse, os, re, shutil, subprocess, sys | |
parser = argparse.ArgumentParser() | |
parser.add_argument('-w', '--width', type=int, default=-1, | |
help='Max total width of graph. Defaults to terminal size, ' + |
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 | |
cat <<_EOF | |
This script has moved! | |
Check out https://github.com/aswild/vyatta-wireguard-build | |
_EOF |
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
From 087937f81634bd315444c38b7e0906280e8d2895 Mon Sep 17 00:00:00 2001 | |
From: Allen Wild <[email protected]> | |
Date: Tue, 23 Oct 2018 17:01:57 -0400 | |
Subject: [PATCH] sipmsg: insert line breaks between paragraphs | |
Pasting text into Lync causes the lines to be split with <p></p> tags, | |
but pidgin doesn't display this and puts everything on one ugly line. | |
This is really a pidgin bug but I can hack around it in sipe by sneaking | |
in <br/> after every </p> we see (unless it's at the end of the message |
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 | |
# Copyright (c) 2018 Allen Wild | |
# SPDX-License-Identifier: MIT | |
# | |
# based on https://github.com/stevejenkins/unifi-linux-utils/blob/master/unifi_ssl_import.sh | |
# and https://source.sosdg.org/brielle/lets-encrypt-scripts | |
set -e | |
UNIFI_DIR=/usr/lib/unifi |
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 -e | |
: ${PREFIX:=/usr/local/ncurses6} | |
default_configopts=( | |
--prefix=${PREFIX} | |
--with-abi-version=6 | |
--enable-widec | |
--disable-shared | |
--enable-pc-files |