フォーチュンサモナーズ
最新 追記

Don'tStopMusic

2003|07|08|09|10|11|12|
2004|01|02|03|04|05|06|07|08|09|10|11|12|
2005|01|02|03|04|05|06|07|08|09|10|12|
2006|01|02|03|04|05|07|08|09|10|11|12|
2007|01|02|03|04|05|06|07|08|09|10|11|12|
2008|01|02|03|04|05|06|

カテゴリ別 2003年 | 2004年 | 2005年 | 2006年 | 2007年 | 2008年

知り合いサイト: よんだもの / 暴想 / Linuxでやる夫 / 新宿Vipper / 僕だけが幸せになればいいのに。


2005-06-18 この日を編集

_ [ソフトウェア] IE の不思議挙動 このエントリーを含むブックマーク

仕事でユーザサポートしていて気付いたことです。IE6 で以下のような HTML を表示して、

<form>
<input type="text" name="tags" value="">
</form>

[ファイル]-[印刷]しようとすると、こういうエラーになります。

このページのスクリプトでエラーが発生しました。
ライン:1402
文字:1
エラー:オブジェクトでサポートされていないプロパティまたはメソッドです
コード:0
URL:res://C:¥WINNT¥system32¥shdoclc.dll/preview.dlg

tags メソッド とバッティングするのかしらん。

_ Musical Baton このエントリーを含むブックマーク

なるものがnaoya さんからまわって来たので答えてみます。いやー更新したいのですが、アウトプットするものも気力もない日々が続いてますので。

Total volume of music files on my computer:(今コンピュータに入ってる音楽ファイルの容量)

PC に 7GB、iPod に 15GB。PC の容量を食うのが嫌なので同期させてません。

Song plauing right now (今聞いている曲)

Mogwai の Hunted by a Freak

The last CD I bought(最後に買ったCD)

BOOM BOOM SATELLITESFULL OF ELEVATING PLEASURES

そういや最近めっきり CD 買わなくなりました。

Five songs(tunes) I listen to a lot, or that mean a lot to me:(よく聞く、または特別な思い入れのある5曲)
  • Leave Home (Underworld Mix) : アルコールを摂り過ぎたときに毒が抜けるまでエンドレスで聴く曲にしています。
  • Underworld の rez : 特に Everything, Everything の rez/cowgirl が良いです。
  • Squarepusher の Tetra-Sync : やばいくらいかっこよすぎ。
  • child's view の sable : 大学生のころに曲を色々と薦めてくれた人が(ネットで)いました。竹村延和もそのときに教えてもらったアーチストの一人です。今でも良く聴きます。
  • AIR の鳥の詩 : 鍵っ子として挙げとかなくてはならないでしょう。

さて、バトンを渡す相手ですが……トラックバックは打ちません。


2005-06-22 この日を編集

_ [サイト運営] SPAM 避けチェックボックス入れました このエントリーを含むブックマーク

少し前になりますが、大量のツッコミスパムが来ましたので、あおきさんの tDiary / コメント SPAM 避けチェックボックスパッチを適用しました。

2.0.1 ですと index.rb にそのままパッチを当てても動作しませんので、手抜き修正をしています。手抜きじゃない修正をしている方がいましたら教えて下さい……


--- tdiary-2.0.1/index.rb       2004-03-15 00:03:59.000000000 +0900
+++ /var/www/localhost/htdocs/diary/index.rb    2005-06-15 19:56:26.000000000 +0900
@@ -28,7 +28,12 @@
 
        begin
                if @cgi.valid?( 'comment' ) then
-                       tdiary = TDiary::TDiaryComment::new( @cgi, "day.rhtml", conf )
+#                      tdiary = TDiary::TDiaryComment::new( @cgi, "day.rhtml", conf )
+                       if @cgi.valid?('ishuman') and @cgi.params['ishuman']
+                               tdiary = TDiary::TDiaryComment::new( @cgi, "day.rhtml", conf )
+                       else
+                               raise TDiary::ForceRedirect.new('spamwarn.html')
+                       end
                elsif @cgi.valid?( 'date' )
                        date = @cgi.params['date'][0]
                        if /^\d{8}$/ =~ date then
@@ -98,6 +103,20 @@
                        <body>Wait or <a href="#{$!.path}">Click here!</a></body>
                        </html>]
        end
+rescue TDiary::ForceRedirect
+       head = {
+               #'Location' => $!.path
+               'type' => 'text/html',
+       }
+       print @cgi.header( head )
+       print %Q[
+               <html>
+               <head>
+               <meta http-equiv="refresh" content="1;url=#{$!.path}">
+               <title>moving...</title>
+               </head>
+               <body>Wait or <a href="#{$!.path}">Click here!</a></body>
+               </html>]
 rescue Exception
        if @cgi then
                print @cgi.header( 'type' => 'text/plain' )

最近のコメント:

RSS
Creative Commons License
This work is licensed under a Creative Commons License
(note: text only. w/o web design, citations, (re)distributed softwares).