Skip to content

Instantly share code, notes, and snippets.

View DaveAuld's full-sized avatar

Dave Auld DaveAuld

View GitHub Profile
@DaveAuld
DaveAuld / yobit-filter.js
Created October 14, 2017 11:04
Yobit Freecoin Filter
/* This will filter the table of coins to the ones that are 'ready' and have a
value greater than or equal to the value of threshold.
After the freecoins page has fully loaded, open the browser console, and copy and paste.
The filtered will be applied.
Next just manually click the collection button, as automation is stricly prohibited by the site.
*/
$('#freecoins_table > tbody > tr').each(
function (tr_index) {
@DaveAuld
DaveAuld / Arduino_Simon_V2.pde
Created June 9, 2016 17:47
Using the Arduino platform for a SIMON game implementation.
/*
Arduino Simon Game
Author: David M. Auld
Date: 19th October 2009
Version: 2.0
This is the simple game of Simon built on the Arduino Platform.
Article on CodeProject: http://www.codeproject.com/Articles/43325/Arduino-Platform-SIMON-Game-Implementation