Skip to content

Instantly share code, notes, and snippets.

@corburn
corburn / package.json
Last active August 29, 2015 14:00
A script to monitor umple files, generate Java with the umple tool, compile with javac, and run the program.
{
"name": "umplemon",
"version": "0.0.0",
"description": "Monitor, compile, and run Java umple files",
"main": "watch.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1"
},
"author": "Jason Travis",
"license": "GPLv3",
@corburn
corburn / print_types.py
Created May 17, 2014 19:43
Recursively pretty print types of complex python structure
def print_type(data, indent_level):
if type(data) == dict:
for key in data:
print '\t' * indent_level + str(key) + ' ' + str(type(data[key]))
print_types(data[key], indent_level+1)
elif type(data) == list:
for i in range(len(data)):
print '\t' * indent_level + str(i) + ' ' + str(type(data[i]))
print_types(data[i], indent_level+1)
@corburn
corburn / m2p.go
Last active August 29, 2015 14:01
Script to add a command to the Windows right-click context menu for text files
// Copyright Jason Travis
package main
import (
"encoding/csv"
"errors"
"fmt"
"io"
"log"
"os"
@corburn
corburn / eventPage.js
Created May 29, 2014 22:00
Use AngularJS module in Chrome Extension eventPage
// The first array is an array of angular modules. The ng module is optional.
// It is normally implicitly included and provides access to the angular API.
// The second array is the module components that will be injected as parameters
// to the final element which is a function.
angular.injector(['ng', 'myModule']).inject(['myModuleFactory', ..., eventCtrl]);
// This is where the event handlers are registered
function eventCtrl(myModuleFactory) {
chrome.tabs.onCreated.addListener(myModuleFactory.doStuff);
// ...
@corburn
corburn / .gitignore
Last active August 29, 2015 14:02
PHP PSR-4 Package
vendor/
composer.lock
#!/usr/bin/env zsh
layouts=(dot neato fdp sfdp twopi circo)
for layout in $layouts; do
filename="graph.$layout.png"
echo $filename
madge --exclude '^node_modules|templates|^test' --layout $layout --image $filename "$1"
#convert $filename -fuzz 30% -fill \#FFFFFF -opaque \#000000 filtered.$filename
done
@corburn
corburn / vcf_to_matrix.sh
Last active August 29, 2015 14:12
Schedules a vcf_to_matrix job and diff the output against a reference folder
#!/bin/bash
#
# Schedules a vcf_to_matrix job and diff the output against a reference folder
#
# The REPO_PATH and VCF_TO_MATRIX variables must be set by the user
#
# REFERENCE_PATH is an output folder from the nasp program. The vcf_to_matrix
# program will read its files and write its output to a folder
# Set Script Name variable
@corburn
corburn / boot2docker_patch.sh
Created April 3, 2015 19:01
Fix docker can't connect to boot2docker because of tcp timeout when using Cisco Anyconnect
# http://stackoverflow.com/a/27804765
# I am using OSX Yosemite and Cisco Anyconnect (which are apparently a bad combo for using boot2docker)
# and the following finally worked for me (thanks to the linked GitHub issue comment):
# These steps will add a port forwarding rule and modify your environment to have docker point to 127.0.0.1
# (instead of 192.168.59.103 or other NATed IP).
# First - boot2docker needs to be installed but not running.
# If it is currently running - stop it now:
boot2docker down
Tools
=====
- [Intel XDK](https://software.intel.com/en-us/html5/tools)
HTML5 Cross platform dev tool.
- [Vagrant](https://www.vagrantup.com/)
Lightweight portable deve environments.
- [Docker](https://www.docker.com/)
An open platform for distributed applications for developers and sysadmins.
@corburn
corburn / goclean.sh
Last active August 29, 2015 14:19 — forked from h12w/goclean.sh
#!/bin/bash
# The script does automatic checking on a Go package and its sub-packages, including:
# 1. gofmt (http://golang.org/cmd/gofmt/)
# 2. goimports (https://github.com/bradfitz/goimports)
# 3. golint (https://github.com/golang/lint)
# 4. go vet (http://golang.org/cmd/vet)
# 5. race detector (http://blog.golang.org/race-detector)
# 6. test coverage (http://blog.golang.org/cover)
set -e