vote up 5 vote down star

I registered the accounts http://twitter.com/stack_overflow and http://identi.ca/stackoverflow and wrote a script to post new questions to these accounts.

Is this service useful or useless?

import sys
import urllib
import time
from datetime import datetime
import feedparser
# http://www.feedparser.org/
import twitter
# http://code.google.com/p/python-twitter/
import identi
# http://commandline.org.uk/python/2008/jul/23/using-new-social-networking-service-identica-command-line/

#IDENTICA_USER = ""
#IDENTICA_PASS = ""

#TWITTERUSER = ""
#TWITTERPASS = ""

def shorten(url):
    u = urllib.urlopen("http://tinyurl.com/api-create.php?url="+url)
    return u.read()

def post(message, url):
    if len(message+" "+url) >=140:
        url = shorten(url)

    if len(message+" "+url) >=140:
        max = 139-len(url)
        message = message[:max]
    message = message +" "+url

    #post_identica(message)
    post_twitter(message)

def post_twitter(message):
    api = twitter.Api(username=TWITTERUSER, password=TWITTERPASS)
    api.PostUpdate(message)

def post_identica(message):
    myid = identi.IdentiCA(username=IDENTICA_USER, password=IDENTICA_PASS)
    myid.login()
    myid.put_message(message)


def get_feed():
    feedurl = "http://beta.stackoverflow.com/feeds"
    feed = feedparser.parse(feedurl)
    new_questions = []
    for entry in feed["entries"]:
        # feed has new and updated items, we are only interested in new questions
        if entry["published_parsed"] == entry["updated_parsed"]:
            tags = [t["term"] for t in entry.tags]
            tags = " ".join(["#"+x for x in tags])
            msg = "%s %s " %(entry.title, tags)
            new_questions.append((msg, entry.link))
    return new_questions

def main(argv=None):
    if argv is None:
        argv = sys.argv

    known_questions = {}

    #do a dry run to prevent questions to be posted twice
    for msg, link in get_feed():
        known_questions[link] = msg
        print "First Run, skip: "+link


    while True:
        time.sleep(300)

        print "%s download feed" %(datetime.now().isoformat())
        for msg, link in get_feed():
            if link in known_questions:
                continue

            known_questions[link] = msg
            print "post: "+link
            post(msg, link)

if __name__ == '__main__':
    main()

If someone "official" from stackoverflow wants to provide this service, I will give them over the account information.

I just talked to some guys from identi.ca on irc and they have ambivalent feelings about posting (flooding??) their service with links to a closed beta service. So I disabled identi.ca for the moment and just sent updates to twitter.

flag

migrated from stackoverflow.com

6 Answers

vote up 0 vote down

There are tools around the Internet to post RSS feeds to a twitter user, and I'm sure there are the same for Identi.ca. So I don't know if a specialised script is really needed there.

The bot idea sounds interesting. (Whatever happened to sobot?)

link|flag
vote up 0 vote down

Questions are showing up on Twitter now under "StackOverflow_Q".

link|flag
vote up 0 vote down

@glenn, no I'm thinking more of an instant messaging bot like http://mojipage.com/pages/bot/

link|flag
vote up 0 vote down

@Peter yeah being able to subscribe to particular tag(s) would be good, but wouldn't you need to create a twitter/identi.ca account for every tag then?

link|flag
vote up 1 vote down

@glenn yes you are right about the noise problem.

I'm experimenting with providing an xmpp feed for new messages where you can subscribe to certain tags or users. Do you think this will be better?

link|flag
vote up 4 vote down

I'm of two minds about this, it could be good to get notified by twitter/identica, but I think it might just be too noisy. The current rate of new questions is huge, at least one new one turns up every one or two minutes and that's just in the private beta, can you imagine what the noise would be like once SO is open to the public?

link|flag

Your Answer

Get an OpenID

Not the answer you're looking for? Browse other questions tagged or ask your own question.