Skip to content

Instantly share code, notes, and snippets.

View pjivers's full-sized avatar

Patrick Ivers pjivers

  • Melbourne, Australia
View GitHub Profile
@pjivers
pjivers / asx-announcements-filter.js
Last active September 1, 2017 00:42
Displays all price sensitive ASX announcements containing specified keywords
// Run in console at: http://www.asx.com.au/asx/statistics/todayAnns.do
(function() {
var keywords = [
'positive',
'deal',
'upgrade',
'profit',
'cash',
'high',
'success',
@pjivers
pjivers / number-quick-search.js
Last active September 1, 2017 00:53
Find a given number
var toFind = 1e15;
var query = 1;
var increment = 1;
var i = 1
for ( ; ; i++) {
console.log('Query = ' + query);
if (query === toFind) {
break;