I hereby claim:
- I am jjones646 on github.
- I am jjones646 (https://keybase.io/jjones646) on keybase.
- I have a public key whose fingerprint is 183F 365D E76C 5234 8B98 58B5 EF89 C0B1 B11F 9932
To claim this, I am signing this object:
#!/usr/bin/env python2 | |
import os | |
import re | |
import sys | |
import argparse | |
import configparser | |
import pystache | |
from os.path import abspath, isfile, islink, join |
#!/usr/bin/env python2 | |
import re | |
import struct | |
import argparse | |
import StringIO | |
import pyexiv2 as pe | |
from pprint import PrettyPrinter | |
from os.path import abspath, isfile |
#!/bin/bash | |
# git-tweaks.sh | |
# Setup a slick default 'git log' display | |
git config --global log.date relative | |
git config --global log.abbrevCommit true | |
git config --global format.pretty 'format:"%Cred%h%Creset -%C(yellow)%d%Creset %s %Cgreen(%cr) %C(bold blue)<%an>%Creset"' | |
# Alias for 'git graph' since log.graph isn't a valid config |
# Put this file in /etc/udev/rules.d/ and run this command: | |
# $ /etc/init.d/udev restart | |
# This file contains the udev rule for allowing access to a Yubikey for U2F authentication. | |
ACTION!="add|change", GOTO="yubikey_u2f_end" | |
KERNEL=="hidraw*", SUBSYSTEM=="hidraw", ATTRS{idVendor}=="1050", ATTRS{idProduct}=="0113|0114|0115|0116|0120|0402|0403|0406|0407|0410", TAG+="uaccess" | |
LABEL="yubikey_u2f_end" |
#!/bin/bash | |
# Shows you the largest objects in your repo's entire history. Just call this script after | |
# you cd into the repo you'd like to run it on. | |
# | |
# To save the results to a file, just redirect stderr to /dev/null, and then redirect | |
# stdout to the filename of your choice. Here's an example: | |
# | |
# ./git-big-objects.sh 2>/dev/null > sorted-git-objects.txt | |
#!/usr/bin/env python | |
""" | |
Basic script that parses the default formatted log files from the | |
logkeys program on linux. Prints out json formatted stats. | |
https://apps.ubuntu.com/cat/applications/logkeys | |
""" | |
import re | |
import argparse |
/* | |
* Example program showing how to get the temperature readings from | |
* an MLX90614 infrared temperature sensor using an mbed. | |
* http://www.haoyuelectronics.com/Attachment/GY-906/MLX90614.pdf | |
* | |
* Jonathan Jones | |
*/ | |
#include "mbed.h" | |
#include "gy-906.h" |
I hereby claim:
To claim this, I am signing this object:
#!/bin/bash | |
# Simple setup script for dce-python-sdn | |
# | |
# Use 'chmod +x dce-sdn-setup.sh' then run using './dce-sdn-setup.sh' | |
echo "installing mandatory packages" | |
sudo apt-get update | |
sudo apt-get install -y git hg python |