This file contains 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
allocation_type | uuid | allocated_for | |
---|---|---|---|
Protocol Identifier | 0x0001 | SDP | |
Protocol Identifier | 0x0002 | UDP | |
Protocol Identifier | 0x0003 | RFCOMM | |
Protocol Identifier | 0x0004 | TCP | |
Protocol Identifier | 0x0005 | TCS-BIN | |
Protocol Identifier | 0x0006 | TCS-AT | |
Protocol Identifier | 0x0007 | ATT | |
Protocol Identifier | 0x0008 | OBEX | |
Protocol Identifier | 0x0009 | IP |
This file contains 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
################################################################################ | |
# sox cheat sheet | |
################################################################################ | |
# Example commands for the sox command-line audio processing tool, | |
# for manipulating or batch processing audio files. | |
################################################################################ | |
# Daniel Jones <[email protected]> | |
################################################################################ | |
################################################################################ |
This file contains 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 | |
# download and recompile bash to patch the shellshock vulnerability | |
# http://www.theregister.co.uk/2014/09/24/bash_shell_vuln/ | |
# | |
# when built, replace your system /bin/bash (and /bin/sh) | |
# with bash-4.3/bash | |
# | |
# to verify the fix: | |
# env X="() { :;} ; echo vulnerable" | bash -c "echo completed" |
This file contains 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 | |
# a script to analyse a set of files to illustrate how the panning tends to vary by frequency, via a simple FFT analysis. | |
# REQUIREMENTS: | |
# - Python (was tested on 2.7) | |
# - Python modules: | |
# - numpy | |
# - scikits.audiolab | |
# - matplotlib |
This file contains 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/python | |
# Python: Retrieve filename of currently-open Ableton Live set | |
# based on inspecting Live's last Log.txt. | |
import re | |
import os | |
import glob | |
# Use Log.txt corresponding to latest Live version. eg: |