I hereby claim:
- I am shortstuffsushi on github.
- I am shortstuffsushi (https://keybase.io/shortstuffsushi) on keybase.
- I have a public key ASCHHDfD5SMurI-XluQlSRSAN1d3FNLj_39V-7zDQWkA8Qo
To claim this, I am signing this object:
Power - | |
[ 135, 133, 0, 180, 255, 167, 0, 12, 255, 222, 0, 12, 255, 222, 0, 12, 255, 222, 0, 12, 255, 245, 0, 12, 255, 245, 0, 12, 255, 245, 0, 12, 255, 245, 0, 12, 255, 222, 0, 12, 255, 245, 0, 12, 255, 222, 0, 12, 255, 245, 0, 12, 255, 245, 0, 12, 255, 245, 0, 12, 255, 222, 0, 12, 255, 245, 0, 12, 255, 245, 0, 12, 255, 245, 0, 12, 255, 245, 0, 12, 255, 245, 0, 12, 255, 245, 0, 12, 255, 245, 0, 12, 255, 222, 0, 12, 255, 222, 0, 12, 255, 222, 0, 12, 255, 222, 0, 12, 255, 222, 0, 12, 255, 222, 0, 12, 255, 222, 0, 12, 255, 222, 0, 12, 255, 245, 0, 12, 255, 245, 0, 12, 255, 245, 0, 12 ] | |
[ 37, 13, 0, 180, 255, 167, 0, 12, 255, 222, 0, 12, 255, 222, 0, 12, 255, 222, 0, 12, 255, 245, 0, 12, 255, 245, 0, 12, 255, 245, 0, 12, 255, 245, 0, 12, 255, 222, 0, 12, 255, 245, 0, 12, 255, 222, 0, 12, 255, 245, 0, 12, 255, 245, 0, 12, 255, 245, 0, 12, 255, 222, 0, 12, 255, 245, 0, 12, 255, 245, 0, 12, 255, 245, 0, 12, 255, 245, 0, 12, 255, 245, 0, 12, 255, 245, 0, 12, 255, 245, 0, 12, 255, 222, 0, 12, 255, 222, 0, 12, 255, 2 |
Mon Jun 16 2014 06:47:40 GMT+0000 (GMT) Light level: 0.00976562 | |
Mon Jun 16 2014 06:52:40 GMT+0000 (GMT) Light level: 0.01074219 | |
Mon Jun 16 2014 06:57:40 GMT+0000 (GMT) Light level: 0.01074219 | |
Mon Jun 16 2014 07:02:40 GMT+0000 (GMT) Light level: 0.01074219 | |
Mon Jun 16 2014 07:07:40 GMT+0000 (GMT) Light level: 0.01074219 | |
Mon Jun 16 2014 07:12:40 GMT+0000 (GMT) Light level: 0.01074219 | |
Mon Jun 16 2014 07:17:40 GMT+0000 (GMT) Light level: 0.00976562 | |
Mon Jun 16 2014 07:22:40 GMT+0000 (GMT) Light level: 0.00976562 | |
Mon Jun 16 2014 07:27:40 GMT+0000 (GMT) Light level: 0.00976562 | |
Mon Jun 16 2014 07:32:40 GMT+0000 (GMT) Light level: 0.01074219 |
public class Convert { | |
public static JSONObject toJson(Map<String, Object> map) { | |
JSONObject jsonObject = new JSONObject(); | |
for (String key : map.keySet()) { | |
try { | |
Object obj = map.get(key); | |
if (obj instanceof Map) { | |
jsonObject.put(key, toJson((Map) obj)); | |
} |
// | |
// Printer.h | |
// | |
// Created by Graham Mueller on 10/27/15. | |
// Copyright © 2015 Graham Mueller. All rights reserved. | |
// | |
#import <Foundation/Foundation.h> |
#define _XOPEN_SOURCE | |
#include <stdio.h> | |
#include <unistd.h> | |
#include <string.h> | |
int main(int argc, char **argv) | |
{ | |
if (argc != 2) | |
{ | |
printf("Please enter exactly one hashed password as a command line argument."); |
I hereby claim:
To claim this, I am signing this object:
// This script will monitor the Google Music page and skip songs you've already downvoted. | |
// Google doesn't do this automatically for some weird reason, so this hacks around that. | |
// Note that you're limited to somewhere around five skips per hour per station, so you | |
// can pretty quickly run into a scenario where this won't work. In the case that you want | |
// to stop the script, just run clearInterval(skipper) after this script. | |
var skipper = setInterval(function() { | |
// Grab the rating container (first of two with the same class) | |
var ratingContainer = document.getElementsByClassName('rating-container')[0]; | |