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 characters
| import re | |
| import requests | |
| from datetime import date | |
| import matplotlib.pyplot as plt | |
| web = requests.get("https://nyzo.co/queue/all").text | |
| reds = re.findall("#f88", web) | |
| yellows = re.findall("#ff0", web) | |
| whites = re.findall('style=""', web) |
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 characters
| <html> | |
| <body> | |
| <form action="/login" method="post"> | |
| Name: <input type="text" name="name"> | |
| <input type="submit" value="Sign in"> | |
| </form> | |
| </body> | |
| </html> |
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 characters
| import random | |
| more0s = 0 | |
| more1s = 0 | |
| more0s_list = [] | |
| more1s_list = [] | |
| preset = [] | |
| for x in range(10000): |
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 characters
| """ | |
| Generic helpers Bismuth | |
| """ | |
| import re | |
| import hashlib | |
| import base64 | |
| from decimal import Decimal | |
| __version__ = '0.0.5' |
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 characters
| (function() { | |
| var intervalObj = null; | |
| var retry = 0; | |
| var clickHandler = function() { | |
| console.log("Clicked; stopping autoscroll"); | |
| clearInterval(intervalObj); | |
| document.body.removeEventListener("click", clickHandler); | |
| } | |
| function scrollDown() { | |
| var scrollHeight = document.body.scrollHeight, |
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 characters
| /* | |
| Unfollow (stop following) those people who are not following you back on Twitter (or unfollow everyone if desired). | |
| This will work for new Twitter web site code structure (it was changed from July 2019, causing other unfollow-scripts to stop working). | |
| Instructions: | |
| 1) The code may need to be modified depending on the language of your Twitter web site: | |
| * For English language web site, no modification needed. | |
| * For Spanish language web site, remember to set the 'LANGUAGE' variable to "ES". | |
| * For another language, remember to set the 'LANGUAGE' variable to that language and modify the 'WORDS' object to add the words in that language. |
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 characters
| !!! DELETE FRIEND REQUESTS OUTGOING: https://m.facebook.com/friends/center/requests/outgoing/#friends_center_main | |
| javascript:var inputs = document.getElementsByClassName('_54k8 _56bs _56bt'); | |
| for(var i=0; i<inputs.length;i++) { | |
| inputs[i].click(); | |
| } | |
| !!! ADD NEW FRIENDS: https://m.facebook.com/friends/center/requests/?rfj&no_hist=1 | |
| javascript:var inputs = document.getElementsByClassName('_54k8 _52jg _56bs _26vk _40x9 _56bu'); |
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 characters
| from fbchat import Client | |
| from fbchat.models import * | |
| import time | |
| import json | |
| import random | |
| from textgenrnn import textgenrnn | |
| with open("secret.json") as file: | |
| parsed = json.loads(file.read()) |
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 characters
| from fbchat import Client | |
| from fbchat.models import * | |
| import time | |
| import json | |
| import random | |
| counter = 0 | |
| with open("secret.json") as file: | |
| parsed = json.loads(file.read()) |
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 characters
| javascript: | |
| var delayInput = prompt("Delay between actions (ms)", "1000"); | |
| var stopAfter = prompt("Stop after how many friend requests are sent?", "100"); | |
| var workDelay = parseInt(delayInput, 10); | |
| var loading = document.createElement("div"); | |
| loading.setAttribute("id", "noni_loading"); | |
| loading.setAttribute("style", "position: fixed; background: rgba(255,255,255,0.8); top: 0; left: 0; width: 100%; font-size: 24px; z-index: 1000; padding: 12px;"); | |
| document.body.appendChild(loading); | |
| document.getElementById("noni_loading").innerHTML = "No friends added."; |