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
/* 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) { |
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
/* | |
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 |