/twitter-purge

A systematic way to delete your tweets.

Primary LanguageRuby

Twitter Purge

A systematic way to remove your tweets because we all say dumb things. This script will delete all your tweets after an specific number of days that you can change. Well, in fact, not all the tweets since the Twitter API only return the last 3,200 published ones.

The rest of them are in a limbo. They won't be accessible through your timeline if someone aved them (as in fav them) they can read them.

Birdy

How to Install

This is a fork from littlemove's fork from marcelinollano's original repo. The difference with this fork is that it's been deployed to Heroku and so I had to make some changes.

So, with this fork you will need an Heroku account and an app created. Once you have that:

  1. Register a new Twitter application on Twitter Application Management.

  2. Set the ENV variables with your own data so the script can read them:

heroku config:set USERNAME=data-from-twitter
heroku config:set CONSUMER_KEY=data-from-twitter
heroku config:set CONSUMER_SECRET=data-from-twitter
heroku config:set ACCESS_TOKEN=data-from-twitter
heroku config:set ACCESS_TOKEN_SECRET=data-from-twitter
heroku config:set DAYS_TO_KEEP=7
  1. Push the code to your heroku app.

git push heroku master

  1. Configure the Heroku scheduler addon in your app.

  2. Create a new job with your desired frequency that runs ruby twitter-purge.rb

Too Many Attempts

If you have been using Twitter for a while the script will fail. The reason is simple, Twitter does not allow to delete a lot of tweets in one go. The API will throw something like TooManyAttempts. You just can not make a lot of requests and they block you. How many requests? Well, when I tried a while ago it was something like 150 requests.

What I did the first time was to trigger the script several times and then wait and trigger again until I had no tweets. After that the script works like a charm. I set my DAYS_TO_KEEP to 7 to keep a week and that number is very rarely more than 150 tweets.

In this Heroku version, at first I set the frequency to 10 minutes. This will create a lot of TooManyAttempts errors, but it gets executed more frequently than with the hourly option. After this initial process I set to a Daily frequency.

But, Marce, Why?!!

I am glad you asked. When I first started using Twitter it was something like sending SMS messages in the Internet. What mattered was the communication with people you followed and the links they shared. It was the first and only social network that I really enjoy and use everyday.

If you look closely at Twitter's movements they are going into this Twitter Cards thing. If dig a bit into it you will find it looks a lot like Facebook's posts. I think what makes Twitter great is realtime communication.

All those posts generate clicks and open the door to advertisement. Twitter could use your content in creative ways to generate revenue. I am not saying it is not fair, it is. Their platform, their rules. But I am chosing to delete my tweets to reinforce the idea of Twitter as a messaging service in the open. At least until they let me.

And anyway, have you ever read your tweets after a long time without the context of that day? It all sounds super dumb! I also delete them so I do not have to read them again. Which brings me to a deeper point: if I am not the same person from moment to moment, why all these social networks have to archive all my selves? I find that I cannot move forward if I dwell too much on my past.

License

Do whatever you want with the script, after all the heavy lifting is done by the Twitter gem which is not my work at all. I did the little illustration in Procreate, you can also do whatever with it. Twitter is a trademark and is copyright of their respective owners.