-
Restful Services with the Play Framework, MySQL, and a Security Level with JWT @ Salon E | http://www.codemash.org/sessions?id=6885
-
AWS Security Essentials @ Aloeswood, Leopardwood | http://www.codemash.org/sessions?id=7589
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# reusable Graphviz dot -> (PNG,SVG) makefile | |
DOT=dot | |
PNGCRUSH=pngcrush | |
SVGO=svgo | |
DOTS=$(wildcard *.dot) | |
PNGS=$(DOTS:.dot=.png) | |
SVGS=$(DOTS:.dot=.svg) | |
diagrams: $(PNGS) $(SVGS) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env ruby | |
q = [['2016-02-09', 0], ['2016-02-10', 23], ['2016-02-11', 3], ['2016-02-12', 11], ['2016-02-13', 3], ['2016-02-14', 7], ['2016-02-15', 6], ['2016-02-16', 7], ['2016-02-17', 0], ['2016-02-18', 7], ['2016-02-19', 1], ['2016-02-20', 2], ['2016-02-21', 0], ['2016-02-22', 8], ['2016-02-23', 11], ['2016-02-24', 4], ['2016-02-25', 3], ['2016-02-26', 4], ['2016-02-27', 0], ['2016-02-28', 4], ['2016-02-29', 9], ['2016-03-01', 3], ['2016-03-02', 4], ['2016-03-03', 5], ['2016-03-04', 6], ['2016-03-05', 6], ['2016-03-06', 2], ['2016-03-07', 16], ['2016-03-08', 7], ['2016-03-09', 5], ['2016-03-10', 3], ['2016-03-11', 6], ['2016-03-12', 0], ['2016-03-13', 1], ['2016-03-14', 2], ['2016-03-15', 0], ['2016-03-16', 4], ['2016-03-17', 6], ['2016-03-18', 5], ['2016-03-19', 7], ['2016-03-20', 6], ['2016-03-21', 0], ['2016-03-22', 7], ['2016-03-23', 8], ['2016-03-24', 6], ['2016-03-25', 8], ['2016-03-26', 7], ['2016-03-27', 6], ['2016-03-28', 18], ['2016-03-29', 12], ['2016-03-30', 24], ['2016-03-31', 50], ['2 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/******** | |
* ListDatabaseTablesWithLookup | |
* | |
* by Colin Dean <[email protected]> | |
* | |
* It it a cobbled-together attempt at implementing something to workaround | |
* ListDatabaseTables' inability to take incoming FlowFiles, which prevents | |
* that processor from using DBCPConnectionPoolLookup as its controller service | |
* instead of DBCPConnectionPool. This affects NiFi 1.7.0+. | |
* |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env bash | |
# Did your company change its email domain? | |
# Use this handy script to change all of your git repos quickly and easily! | |
# Don't worry, it'll only the change the repos where user.email was set to the old one! | |
# Usage: change_emails.bash username old_domain new_domain | |
# Example: change_emails.bash maxine.mustermann boringdomain.com exciting.io | |
EMAIL_USER="$1" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
# by colindean | |
# unlicensed, public domain: https://unlicense.org | |
# invocation: | |
# getquote-coinmarketcap.sh crypto-transactions.ledger | |
# | |
# This tool may try to look up any commodity that is in the commodity list. | |
# I recommend tracking cryptocurrencies in a separate ledger file that is |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// drop this into your console while on the users page | |
// https://lobste.rs/u | |
var pattern = /\((\d*)\)/; | |
var users_by_score_desc = Array.from(users).map(function(e){ | |
var score_match = pattern.exec(e.children[0].nextSibling.textContent.trim()); | |
var score = score_match === null ? NaN : parseInt(score[1]); | |
var name = e.children[0].getAttribute("name"); | |
return {name: name, score: score } | |
}).sort(function(ths,that){ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env bash | |
# nodes.json has JSONP crap on it so you have to remove | |
# the first and last line of the file before parsing it as JSON. | |
curl http://www.pittmesh.net/node-data/nodes.json | tail -n +2 | sed '$d' | jq -s '.[] | { type: "FeatureCollection", features: [ .[] | {type: "Feature", id: .name, properties: { address, hood, status, device_count }, geometry: { type: "Point", coordinates: [ .lon, .lat] } } ] }' |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import org.json4s.{DefaultFormats, Formats} | |
import java.util.Date | |
import org.json4s.JsonDSL._ | |
import org.json4s._ | |
import org.scalatra._ | |
import org.scalatra.atmosphere._ | |
import org.scalatra.json.JValueResult | |
import org.scalatra.scalate.ScalateSupport |