2009-02-06から1日間の記事一覧

並べてみた

js

twitterのフォロー中の人々の画像をプロフィール写真の大きさにする。 // ==UserScript==// @name change images// @namespace http://d.hatena.ne.jp/hateka/// @description 写真を大きくする// @include http://twitter.com/*// ==/UserScript==(function…

現在時間を表示するグリモン

js

// ==UserScript== // @name timekeeper // @namespace http://d.hatena.ne.jp/hateka/ // @description 現在時間を表示する // @include http://* // ==/UserScript== var div = document.createElement('div'); div.id="timespace"; document.body.appendC…

クックパッドのおいしそうな写真を見る

# -*- coding: utf-8 -*-import urllib import urllib2 from BeautifulSoup import BeautifulSoup def cook_photo(name = "パン"): url = "http://cookpad.com/search/post/" keyword = {"keyword":name} data= urllib.urlencode(keyword) read = BeautifulS…