Last active
November 23, 2016 19:25
-
-
Save markis/66deabaf62d68f3545f1 to your computer and use it in GitHub Desktop.
Revisions
-
markis revised this gist
Nov 23, 2016 . 1 changed file with 4 additions and 8 deletions.There are no files selected for viewing
This file contains hidden or 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 charactersOriginal file line number Diff line number Diff line change @@ -1,13 +1,9 @@ /* Go to https://www.facebook.com/pokes/ and run the following */ setInterval(() => { for (let node of document.getElementsByTagName('a')) { if (node.textContent === "Poke Back") { node.click(); } } }, 100) -
Markis Taylor revised this gist
Aug 5, 2015 . 1 changed file with 2 additions and 1 deletion.There are no files selected for viewing
This file contains hidden or 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 charactersOriginal file line number Diff line number Diff line change @@ -1,6 +1,7 @@ /* Go to https://www.facebook.com/pokes/ and run the following */ setInterval(function() { var nodes = document.getElementsByTagName('a'); for (var i = 0; i < nodes.length; i++) { -
Markis Taylor revised this gist
Aug 5, 2015 . 1 changed file with 2 additions and 1 deletion.There are no files selected for viewing
This file contains hidden or 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 charactersOriginal file line number Diff line number Diff line change @@ -4,7 +4,8 @@ setInterval(function() { var nodes = document.getElementsByTagName('a'); for (var i = 0; i < nodes.length; i++) { if (nodes[i].textContent === "Poke Back") { nodes[i].click(); } } -
Markis Taylor revised this gist
Aug 5, 2015 . 1 changed file with 2 additions and 0 deletions.There are no files selected for viewing
This file contains hidden or 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 charactersOriginal file line number Diff line number Diff line change @@ -1,3 +1,5 @@ /* Go to https://www.facebook.com/pokes/ and run the following */ setInterval(function() { var nodes = document.getElementsByTagName('a'); for (var i = 0; i < nodes.length; i++) -
Markis Taylor created this gist
Aug 5, 2015 .There are no files selected for viewing
This file contains hidden or 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 charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,9 @@ setInterval(function() { var nodes = document.getElementsByTagName('a'); for (var i = 0; i < nodes.length; i++) { if (nodes[i].textContent === "Poke Back") { nodes[i].click(); } } }, 100)