Back

Markov Chain Twitter Bot

tjheffner

2016-08-06


Thanks to this tutorial and my nearly 15,000 tweets (holy shit, when did that happen?), I now have a nonsensical, yet occasionally profound, twitter_ebooks bot to call my own. It was actually a whole lot simpler to set up than I thought it would be— creating a dummy email, new twitter account, and setting up Heroku for the first time with all their various authentication processes took longer than actually setting up the bot’s code.

For now, this bot spits out tweets based on an archive of my past tweets, using a Markov chain. A Markov chain is a stochastic model describing a sequence of possible events in which the probability of each event depends only on the state attained in the previous event.

What that means in this context is, my bot will never immediately repeat a tweet. Each tweet is generated from the grammar and syntactical structure of my actual tweets, by starting with a random-length fragment from anywhere in my archived tweets. I added some logic to vary the construction patterns to ensure it wasn’t copying past tweets entirely word for word. It does occasionally tweet fragments word-for-word from my past tweets, as a fallback if the tweet that was originally constructed exceeds the character limit.

All in all, it’s got me excited to play around with Ruby, and more advanced twitter bots in general. I’m particularly interested in exploring avenues involving randomized image manipulations once I find the time.

For now, you can follow the occasionally profound mutterings of my spambot here: @food_libs


Loading comments...
Back to top