I hereby claim:
- I am JonTheNiceGuy on github.
- I am jontheniceguy (https://keybase.io/jontheniceguy) on keybase.
- I have a public key whose fingerprint is 165D CE43 94BA 1D2B 5C40 77D8 46C7 BB36 7C28 E565
To claim this, I am signing this object:
spriggsj@Minilith:~/HTIW/one$ ~/showoff/bin/showoff serve | |
WARN: pdf generation disabled - install pdfkit | |
------------------------- | |
Your ShowOff presentation is now starting up. | |
To view it plainly, visit [ http://localhost:9090 ] | |
To run it from presenter view, go to: [ http://localhost:9090/presenter ] |
<?php | |
switch($_SERVER['REQUEST_URI']) { | |
case '/t/': | |
case '/@/': | |
case '/twitter/': | |
redirect("https://twitter.com/JonTheNiceGuy"); | |
break; | |
case '/fb/': | |
case '/facebook/': | |
redirect("https://www.facebook.com/JonTheNiceGuy"); |
<?php | |
// This code is released under a CC-Zero license | |
// https://creativecommons.org/publicdomain/zero/1.0/ | |
// You need the AWS SDK - get the zip file from here: | |
// http://pear.amazonwebservices.com/get/aws.zip | |
// And then unpack it to this directory. | |
require dirname(__FILE__) . '/aws-autoloader.php'; | |
// Use the Ec2Client libraries by referring just to Ec2Client |
I hereby claim:
To claim this, I am signing this object:
#!/bin/sh | |
if [ -z "$2" ]; then | |
dpath=/media/usb0/Multimedia/Audio/ | |
else | |
dpath="$2" | |
fi | |
if [ -z "$3" ]; then | |
spath="`pwd`" | |
else | |
spath="$3" |
-----BEGIN PGP SIGNED MESSAGE----- | |
Hash: SHA512 | |
https://jon.sprig.gs/blog | |
https://twitter.com/jontheniceguy (defunct) | |
https://twitter.com/g7vri | |
http://g7vri.me | |
https://github.com/JonTheNiceGuy | |
https://keybase.io/jontheniceguy | |
-----BEGIN PGP SIGNATURE----- |
#! /bin/sh | |
# Authored by Jon Spriggs ([email protected]) on 2015-03-10 | |
# Based on the DDNS script at afraid.org | |
#!/bin/bash | |
# ALTERNATE ROUTE | |
# This is the path for the second DDNS update to take | |
NEW_ROUTE=192.168.1.1 | |
# TUNNELBROKER.NET CONFIGURATION |
Sub test() | |
Dim SourceString As String | |
Dim InterimString As String | |
Dim DestinationString As String | |
SourceString = "" | |
InterimString = "" | |
DestinationString = "" | |
Do Until Len(SourceString) > 220 |
IPSO Trunked Non-VRRP (run ifconfig -a) | |
lname\s+([^>]+)\s+flags[^>]+>\s+vlan-id\s+(\d+)\s+inet mtu \d+\s+(inet ([\d+\.\d+\.\d+\.\d+]+)|([\d+\.\d+\.\d+\.\d+]+))\/(\d+)\s+broadcast\s+\S+[^>]+>\s+ether\s+(\S+) | |
ifname 1 | |
vlan 2 | |
ip 4 or 5 | |
subnet 6 | |
mac 7 | |
IPSO Trunked VRRP (run ifconfig -a) |
# -*- mode: ruby -*- | |
# vi: set ft=ruby : | |
# Vagrantfile API/syntax version. Don't touch unless you know what you're doing! | |
VAGRANTFILE_API_VERSION = "2" | |
Vagrant.configure(VAGRANTFILE_API_VERSION) do |config| | |
config.vm.box = "ubuntu/trusty64" | |
config.vm.hostname = "demo.lan" | |
config.vm.network "public_network", ip: "192.0.2.1", bridge: "eth0", :use_dhcp_assigned_default_route => true |