I hereby claim:
- I am mrworf on github.
- I am huckabay (https://keybase.io/huckabay) on keybase.
- I have a public key whose fingerprint is C7B5 2124 9611 E098 52D1 872F 4256 7B63 44C3 77F0
To claim this, I am signing this object:
#!/bin/bash | |
PREFIX=dhcp | |
if [ ! -z "$1" ]; then | |
PREFIX="$1" | |
fi | |
if [ ! -f /tmp/macdb ]; then | |
curl 'https://code.wireshark.org/review/gitweb?p=wireshark.git;a=blob_plain;f=manuf' > /tmp/macdb | |
fi |
#include <MsgBoxConstants.au3> | |
#include <AutoItConstants.au3> | |
Opt("SendKeyDelay", 50) | |
Opt("SendAttachMode", 1) | |
Opt("SendKeyDownDelay", 50) | |
Global $g_bInACall = False | |
HotKeySet ( "+!^c" , "Call" ) |
#!/bin/bash | |
# 1 = Filename | |
# 2 = Record (starting from 0) | |
function getrecord() | |
{ | |
BASE=$((180 + $2 * 8)) | |
hexdump -v -s $BASE -n 8 -e '8/1 "%02x " "\n"' $1 | |
} |
/** | |
* Copyright 2016 Henric Andersson | |
* | |
* Licensed under the Apache License, Version 2.0 (the "License"); | |
* you may not use this file except in compliance with the License. | |
* You may obtain a copy of the License at | |
* | |
* http://www.apache.org/licenses/LICENSE-2.0 | |
* | |
* Unless required by applicable law or agreed to in writing, software |
#!/bin/bash | |
# | |
# WiFi Presence for ISY994 | |
# | |
# Keeps track of your presence by the virtue of the WiFi in your | |
# cellphone. This script assumes that the server that runs it | |
# is also your Firewall/Router so it will see the device in | |
# question. | |
# | |
# You CANNOT run this on a machine which doesn't see all traffic |
#!/bin/bash | |
# | |
# Normalizes the audio in the supplied video file. Will cause some audio | |
# degradation since there is a recompression step going on here. | |
# | |
# You must have a done folder and processed folder in the same path as | |
# this script. | |
# | |
# Script depends on avconv (ffmpeg on ubuntu 14.x) and sox | |
# |
I hereby claim:
To claim this, I am signing this object:
<?php | |
/** | |
* A handy PHP class which allows communication with | |
* Universal Device's ISY994i over their exposed REST | |
* API. | |
* | |
* Primarily this class was created to interface with any | |
* INSTEON product hooked up to the ISY994i. It does not support | |
* all functionality of the REST interface, instead it's expanded | |
* as the need for a feature arises. |