I hereby claim:
- I am jwoglom on github.
- I am jwoglom (https://keybase.io/jwoglom) on keybase.
- I have a public key whose fingerprint is E8E2 A832 13C3 8F75 B1EF 4CCC B1AB 08CD 1663 C6F5
To claim this, I am signing this object:
g=function(c,x,i,a){i=i||0,a=a||[],e=function(h){a.push(h);g(c,x,++i,a)},i==c.length?x(a):((d=(f=c[i]).src)?$.get(d,e):e(f.innerHTML))} |
<!doctype html> | |
<html> | |
<head> | |
<title>Dogecoin to USD</title> | |
<script type='text/javascript' src='http://code.jquery.com/jquery-1.11.0.min.js'></script> | |
<script type='text/javascript'> | |
// Sadly Cryptsy and Bitstamp don't support JSONP, so we have to use a proxy. | |
var proxy = 'http://jsonp.guffa.com/Proxy.ashx?url='; | |
genValue = function() { | |
var dogejson = "http://pubapi.cryptsy.com/api.php?method=singlemarketdata&marketid=132"; |
DO WHAT THE FUCK YOU WANT TO PUBLIC LICENSE | |
Version 2, December 2004 | |
Copyright (C) 2014 James Woglom <wogloms.com> | |
Everyone is permitted to copy and distribute verbatim or modified | |
copies of this license document, and changing it is allowed as long | |
as the name is changed. | |
DO WHAT THE FUCK YOU WANT TO PUBLIC LICENSE |
DO WHAT THE FUCK YOU WANT TO PUBLIC LICENSE | |
Version 2, December 2004 | |
Copyright (C) 2014 James Woglom <wogloms.com> | |
Everyone is permitted to copy and distribute verbatim or modified | |
copies of this license document, and changing it is allowed as long | |
as the name is changed. | |
DO WHAT THE FUCK YOU WANT TO PUBLIC LICENSE |
DO WHAT THE FUCK YOU WANT TO PUBLIC LICENSE | |
Version 2, December 2004 | |
Copyright (C) 2014 James Woglom <wogloms.com> | |
Everyone is permitted to copy and distribute verbatim or modified | |
copies of this license document, and changing it is allowed as long | |
as the name is changed. | |
DO WHAT THE FUCK YOU WANT TO PUBLIC LICENSE |
I hereby claim:
To claim this, I am signing this object:
// ==UserScript== | |
// @name Pearson Successnet Keepalive | |
// @namespace http://www.wogloms.com/ | |
// @version 1 | |
// @description Keeps the Pearson Successnet login connection activated by sending a ping every 60 seconds, instead of opening a popup dialog to extend the session every 10 minutes and expiring every 15. | |
// @match https://www.pearsonsuccessnet.com/snpapp/iText/BrowseITEXTServlet* | |
// @copyright WTFPL | |
// ==/UserScript== | |
console.log("Loaded scn "+new Date()); | |
setInterval(function() { |
<?php | |
/* | |
* Pearson Successnet Downloader * | |
* Fully mirrors a HTML-based textbook stored on Pearson Successnet for offline viewing. | |
* Author: James Woglom <[email protected]> (wogloms.com) | |
*/ | |
require_once 'simple_html_dom.php'; /* http://simplehtmldom.sourceforge.net/ */ | |
// Cookie information in form name=value; name2=value2 | |
$cookies = "name=value; name2=value2"; |
import json | |
import argparse | |
import subprocess | |
import tempfile | |
def main(): | |
parser = argparse.ArgumentParser(description='Visualize AWS Security Groups') | |
parser.add_argument('--file', dest='file', action='store', help='JSON output of `aws ec2 describe-security-groups`') | |
parser.add_argument('--output', dest='output', action='store', help='SVG output filename') | |
args = parser.parse_args() |
// glocktobazel generates Bazel external repositories from a GLOCKFILE | |
package main | |
import ( | |
"bufio" | |
"os" | |
"strings" | |
"fmt" | |
) |