end0tknr's kipple - web写経開発

太宰府天満宮の狛犬って、妙にカワイイ

2017-02-28から1日間の記事一覧

HTML-lint tool (≠ metrics tool)

html-tidy がいいのかな? $ wget http://binaries.html-tidy.org/binaries/tidy-5.2.0/tidy-5.2.0-64bit.rpm $ su # rpm -ivh tidy-5.2.0-64bit.rpm $ tidy --help SourceMonitor は、win環境専用 “Another HTML-lint 5” は、web専用 HTML::Lint for perl は…

pythonでの基数変換の基本は format() ←→ int()、より複雑ならMath::BaseCalc のclone?

pythonの基数変換において、2, 8, 16進数なら… format() , int()が利用できるので… #!/usr/local/bin/python # -*- coding: utf-8 -*- def main(): from_int() to_int() def from_int(): org_int = 10 for base in ["b","o","x","X"]: from_int = format(org…