2010-04-01から1ヶ月間の記事一覧
[環境:MacOS10.4, Firefox3.6] ヘルプにやり方あった Remember The Milk - Services / Remember The Milk for Google Calendar / Sidebar Gadget / FAQ の『I want to remove this feature』 To remove this feature from Google Calendar: 1. In Google …
#!/usr/bin/env python # *-# -*- coding: utf-8 -*- import random num = 8 arr = list('0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ') print "".join([random.choice(arr) for i in range(num)]) もっとスマートな方法あったような?…