Skip to content

Instantly share code, notes, and snippets.

// ==UserScript==
// @name Hookpad scroll fix
// @namespace http://github.com/lucasjones
// @version 0.1
// @description Fix scrolling on hookpad
// @author Lucas Jones
// @match http*://www.hooktheory.com/hookpad/app*
// @grant none
// ==/UserScript==

Keybase proof

I hereby claim:

  • I am lucasjones on github.
  • I am lucasjones (https://keybase.io/lucasjones) on keybase.
  • I have a public key whose fingerprint is C211 B211 4D77 9D45 DF90 09F1 4B9B 6369 85A0 A185

To claim this, I am signing this object:

@lucasjones
lucasjones / index.php
Created April 20, 2013 02:15
Simple 'getinfo' request to bytecoind written in PHP
<?php
require_once 'jsonRPCClient.php';
$bytecoin = new jsonRPCClient('http://username:password@127.0.0.1:9778/');
print_r($bytecoin->getinfo());
?>
@lucasjones
lucasjones / app.js
Last active January 29, 2017 05:49
Simple node.js static and dynamic file express server
/***********************************
*Simple node.js static and dynamic file express server
*Author: Lucas Jones
***********************************/
//Load node.js modules
var express = require('express'); //Require the Express Module
//Runs every time a request is recieved
function logger(req, res, next) {