twittefier 400 B

12345678910111213141516
  1. #!/bin/bash
  2. #
  3. # Script to shuffle around tweets so that we can always have something
  4. # interesting to talk about in the social networks.
  5. #
  6. # Based off of the comment generator
  7. #
  8. TWEET_DB="tweets.db"
  9. # Choose a random tweet from the list, then mark it as "used."
  10. # Go to the next one, repeat.
  11. # When all of these are used. Mark them all as unread and start again.
  12. sqlite3 "$TWEET_DB" < create.sql