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

gTLDが選べるようになるらしい。

40年のインターネット史上最大の改正が承認,ICANNがドメイン名を自由に選べるように制度変更:ITproルートサーバーに負荷かかりそう。

page_attachmentエクステンションで、画像をリサイズする。

page_attachmentエクステンションを利用すると、Wikiの様にページごとに画像を添付することができる。でも、リサイズをしてくれなかったりするのでその辺を改良。このextensiongがRailsのプラグインであるattachment_fuを利用していたので簡単に改良できた。…

apt-getで入るgit

ソースコード管理システムのgitを入れたく、 apt-get install git としても入った様子がなかったので、調べてみたら、 git (GNU Interactive Tools) is a set of interactive text-mode tools, closely integrated with the shell. 同名の異なるアプリケーシ…

Script-fuで、画像を50%にリサイズ(初めの一歩)

日本語リソースが少なすぎて時間かかった。 (define (script-fu-resize image drawable) (let* ( (org-width (car (gimp-image-width image))) (org-height (car (gimp-image-height image))) (cnv-width (/ org-width 2)) (cnv-height (/ org-height 2)) ) …