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
| // go to https://twitter.com/your-username, and enter the following into the developer console: | |
| for(var i = 1; i < 500; i++){ // just do it a bunch | |
| // Un retweet | |
| document.getElementsByClassName("ProfileTweet-actionButtonUndo")[i].click(); | |
| document.getElementsByClassName("js-close")[0].click(); | |
| // Delete tweets | |
| document.getElementsByClassName("js-actionDelete")[i].childNodes[1].click(); | |
| document.getElementsByClassName("delete-action")[0].click() | |
| } |
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
| try { | |
| ConfigurationBuilder builder = new ConfigurationBuilder(); | |
| builder.setOAuthAccessToken("configure") | |
| .setOAuthAccessTokenSecret("these") | |
| .setOAuthConsumerKey("params") | |
| .setOAuthConsumerSecret("in twitter"); | |
| //twitter4j | |
| Twitter twitter = new TwitterFactory(builder.build()).getInstance(); | |
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 | |
| # -*- coding: utf-8 -*- | |
| import urllib2 | |
| gh_url = 'https://api.github.com' | |
| req = urllib2.Request(gh_url) | |
| password_manager = urllib2.HTTPPasswordMgrWithDefaultRealm() |