Posting new stackoverflow questions on twitter and identi.ca, useful or useless? - Stack Overflow [closed] most recent 30 from stackoverflow.com 2009-12-01T09:00:43Z http://stackoverflow.com/feeds/question/35691 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/35691/posting-new-stackoverflow-questions-on-twitter-and-identi-ca-useful-or-useless 5 Posting new stackoverflow questions on twitter and identi.ca, useful or useless? [closed] Peter Hoffmann 2008-08-30T05:05:30Z 2009-09-04T20:52:18Z <p>I registered the accounts <a href="http://twitter.com/stack_overflow" rel="nofollow">http://twitter.com/stack_overflow</a> and <a href="http://identi.ca/stackoverflow" rel="nofollow">http://identi.ca/stackoverflow</a> and wrote a script to post new questions to these accounts.</p> <p>Is this service useful or useless?</p> <pre><code>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) &gt;=140: url = shorten(url) if len(message+" "+url) &gt;=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() </code></pre> <p>If someone "official" from stackoverflow wants to provide this service, I will give them over the account information.</p> <p>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.</p>