2013-02-01から1ヶ月間の記事一覧

あえてPythonの弱点をあげてみる

変数に型がないということの利点について考えるを読んで。 class A(object): def __init__(self): self.length = 0 def get_length(self): return self.length a=A() if something==wrong: logger.error('Length: %s'%a.get_lenght()) 要するにエラー処理の…

Windows 7でhostsの内容が反映されない

hostsに「ip_address fqdn」みたいに設定したけどping, IE, Firefoxへ反映されず、ただしChromeは名前解決にWinSockを使ってないっぽくてちゃんと反映される。もちろん「ipconfig /displaydns」でhostsの内容が認識されていることは確認済み。おそらくDNSサ…