From: Christian Neukirchen Date: 2004-12-07T03:15:51+09:00 Subject: Re: [SOT]Signatures and one liners On Mon, 6 Dec 2004 18:54:29 +0100, Christian Neukirchen wrote: > How about this nice, 134 bytes CGI blog?: > > puts"Content-type: text/html\n\n

Blog",Dir["*.entry"].sort_by{|f|-File. > mtime(f).to_i}.first(9).map{|f|'

'+File.read(f)+'
'} 126 bytes now: puts"Content-type: text/html\n\n

Blog",Dir["*.entry"].sort_by{|f|-File. mtime(f).to_i}[0,9].map{|f|"

#{IO.read f}
"} > Happy hacking, > Christian Neukirchen