at_yasu's blog

ロード的なことを

2011-06-01から1ヶ月間の記事一覧

Twitter で URL 流したらやってきたクローラー一覧メモ

多分ここらへん。FriendFeed のAdobeAirアプリがあるのにへぇ〜と思うなど。 Twitturly / v0.6 PEAR HTTP_Request class ( http://pear.php.net/ ) mozilla/5.0 (compatible; googlebot/2.1; +http://www.google.com/bot.html) AppEngine-Google; (+http://c…

logging

logging module を使ってるのですが、basicConfig をよく書き忘れるのでメモ書き logging.basicConfig(format='%(asctime)s %(module)s[%(lineno)d] [%(levelname)s]: %(message)s', filename = 'log.txt', level = logging.DEBUG) 上記のようにやると、下記…

ピラミッドを作る?をPythonで。

http://ja.doukaku.org/8/ を頭の体操がてらやってみました。 def pl (n, max = 0): """ >>> pl(4) * *** ***** ******* """ if max == 0: max = n if n <= 0: return ws = ' ' * (n - 1) ast = '*' * ((max - n) * 2 + 1) print "%s%s" % (ws, ast) pl(n -1,…