Skip to content

Instantly share code, notes, and snippets.

@kristianfreeman
Created January 15, 2014 01:41
Show Gist options
  • Save kristianfreeman/8429296 to your computer and use it in GitHub Desktop.
Save kristianfreeman/8429296 to your computer and use it in GitHub Desktop.
imessage is garbage
# run this shit in ~/Library/Messages
@last = ""
while true do
@mine = false
@new = `sqlite3 chat.db 'select text, is_from_me from message order by date desc limit 1;'`
@from = @new.split("|").last.chomp
@mine = true if @from == "1"
@new = @new.split("|").first
unless @last == @new.split("|").first
@last = @new
if @mine
@message = "me: "
else
@message = "other: "
end
@message += @last
puts @message
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment