Posts Tagged ‘twitter’

#!/usr/bin/env python
import base64
import simplejson as json
import os
import sys
import urllib
import urllib2
 
global twitter_username
global digu_username
global digu_password
twitter_username = ‘username’
digu_username = ‘username’
digu_password = ‘password’
 
def post_to_digu(msg):
url = ‘http://api.minicloud.com.cn/statuses/update.json’
data = urllib.urlencode(msg)
req = urllib2.Request(url, data)
req.add_header("Authorization", "Basic %s" % base64.encodestring(’%s:%s’ % (digu_username, digu_password))[:-1])
handle = urllib2.urlopen(req)
 
def main():
path = sys.path[0]
if (sys.platform[:3] == ‘win’):
path += ‘\\’
else:
path += ‘/’
id_file = path + ‘last_id’
last_id = 0
if os.path.exists(id_file):
f = open(id_file, [...]

Friday, October 30th, 2009 at 20:04 | 2 comments
Categories: Programming, linux

Tweetboard can be activated by either clicking on the button on the left side of the page or directly opening http://phill84.org/#tboard
The old twitter widget is removed

Saturday, September 5th, 2009 at 12:17 | 4 comments
Categories: blah

google 看到 raptium同學的 post Twitter和饭否同步
像我這種懶人自然就拿來用了
不過又不想把 twitter 上的回復也 sync 到飯否
so 加了一個 statement 把 @blah 都過濾了
如果有比我更懶得同學也想這麼做的話只要把

elif snode.nodeName == ‘text’:

改成

elif (snode.nodeName == ‘text’) and (snode.childNodes[0].nodeValue[0] != ‘@’):

就可以了

Friday, March 27th, 2009 at 10:16 | 0 comments
Categories: Programming
TOP