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
| // == UserScript To Be Used In Web Browser > Developer Tools > Console == | |
| // @name Tinder Blur Removal | |
| // @downloadURL https://gist.github.com/nimeshkasun/1df2a44eff67f3628305bb0071afc3f5/raw/27d6e831e1635b772ab07e83aa4d2e02961d98f9/tinder.likes.blur.removal.js | |
| // @description Simple script using the official Tinde API to get clean photos of the users who liked you | |
| // ==/UserScript== | |
| async function unblur() { | |
| const teasers = await fetch("https://api.gotinder.com/v2/fast-match/teasers", { "headers": { "X-Auth-Token": localStorage.getItem('TinderWeb/APIToken') }}).then(res => res.json()).then(res => res.data.results); | |
| const teaserEls = document.querySelectorAll('.Expand.enterAnimationContainer > div:nth-child(1)'); | |
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
| #!/usr/bin/env python | |
| import sys, os, time | |
| import tweepy | |
| keys = dict( | |
| consumer_key='_YOUR_CONSUMER_KEY', | |
| consumer_secret='_YOUR_SECRET_KEY', | |
| access_token='_YOUR_ACCESS_TOKEN', | |
| access_token_secret='_YOUR_ACCESS_TOKEN_SECRET' | |
| ) |
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
| MySQLProject |