Skip to content

Instantly share code, notes, and snippets.

View deangiberson's full-sized avatar

Dean Giberson deangiberson

View GitHub Profile
@deangiberson
deangiberson / download_all_humblebundle.js
Last active May 10, 2019 23:35
Download humble bundle contents
/*
After purchasing a humble book bundle, go to your download page for that bundle.
Open a console window for the page and paste in the below javascript
*/
function getTitle() {
var re = /^Humble.*Bundle\:\ (.*)\ \(/g;
return re.exec(document.title)[1];
}
dynamodb.deleteTable({
TableName: 'record'
})
dynamodb.createTable({
TableName: 'record',
AttributeDefinitions: [
{ AttributeName: 'name', AttributeType: 'S' },
{ AttributeName: 'part', AttributeType: 'N' }
dynamodb.deleteTable({
TableName: 'record'
})
dynamodb.createTable({
TableName: 'record',
AttributeDefinitions: [
{ AttributeName: 'name', AttributeType: 'S' },
{ AttributeName: 'part', AttributeType: 'N' }
aws --endpoint-url=http://localhost:4569 dynamodb create-table \
--table-name MusicCollection \
--attribute-definitions \
AttributeName=Artist,AttributeType=S AttributeName=SongTitle,AttributeType=S \
--key-schema AttributeName=Artist,KeyType=HASH AttributeName=SongTitle,KeyType=RANGE \
--provisioned-throughput ReadCapacityUnits=1,WriteCapacityUnits=1 \
--stream-specification StreamEnabled=true,StreamViewType=NEW_IMAGE
{
@deangiberson
deangiberson / gist:1ee1430c706de07c62caac847644c7b9
Created June 15, 2016 00:25 — forked from mattm7n/gist:1405067
Monitor DHCP traffic with tcpdump
# Monitoring on interface eth0
tcpdump -i eth0 -n port 67 and port 68
@deangiberson
deangiberson / geoff-yed-tips
Created January 8, 2016 00:55 — forked from malcolmocean/geoff-yed-tips
Geoff's tips for setting up yEd
From Geoff Anders, of Leverage Research (http://www.leverageresearch.org/)
For people doing goal factoring - or for people making any sort of box-and-arrow diagram - I recommended the program yEd. It is available here: http://www.yworks.com/en/products_yed_about.html
After you install it, I highly recommend setting up the defaults in the following way:
1. Open yEd.
2. Create a new document.
3. Click the white background; a small yellow square should appear on the canvas.
4. Click the small yellow square so as to select it.
/**
* Circular Tooltip (SO)
* http://stackoverflow.com/q/13132864/1397351
*/
* { margin: 0; padding: 0; }
body {
overflow: hidden;
background: url(http://theearlcarlson.com/experiments/amTooltip/img/bg.jpg);
}
/* generic styles for button & circular menu */
function MonitorAssignment( F, names, valNames, E )
% MonitorAssignment( F, names, valNames, E ) - Pretty prints all the
% marginals for an assignment
%
% F contains the struct array of factors
% names contains the variable names
% valNames contains the assignment names for each variable,
% as seen in SAMIAM
% E is an N-by-2 cell array, each row being a variable/value pair.
% Variables are in the first column and values are in the second column.
@deangiberson
deangiberson / gist:4166712
Created November 29, 2012 03:52
Integrate Emacs with git grep for grepping and interactive search and replace
(defun* get-closest-pathname (&optional (file "Makefile"))
"Determine the pathname of the first instance of FILE starting from the
current directory towards root. This may not do the correct thing in presence
of links. If it does not find FILE, then it shall return the name of FILE in
the current directory, suitable for creation"
(let ((root (expand-file-name "/")))
(expand-file-name file
(loop
for d = default-directory
then (expand-file-name ".." d)
@deangiberson
deangiberson / Visually_weighted_regression_Zelig.R
Created September 26, 2012 03:33 — forked from dsparks/Visually_weighted_regression_Zelig.R
Visually-weighted regression plot, with Zelig
# A simple approach to visually-weighted regression plots, with Zelig
doInstall <- TRUE # Change to FALSE if you don't want packages installed.
toInstall <- c("ggplot2", "reshape2", "Zelig")
if(doInstall){install.packages(toInstall, repos = "http://cran.us.r-project.org")}
lapply(toInstall, library, character.only = TRUE)
# Generate some data:
nn <- 1000
myData <- data.frame(X = rnorm(nn),