Skip to content

Instantly share code, notes, and snippets.

View thelastfantasy's full-sized avatar
😄

thelastfantasy

😄
  • Osaka
View GitHub Profile
@thelastfantasy
thelastfantasy / deletes tweets.js
Last active May 2, 2018 02:05
Delete all of your tweets
// Go to your Twitter profile page: https://twitter.com/username
setInterval(deleteTweets, 2000);
function deleteTweets() {
jQuery('.js-stream-item:visible').each(function () {
var id = jQuery(this).data('item-id');
var that = this;
jQuery.post(
'https://twitter.com/i/tweet/destroy',
{
'_method': 'DELETE',