タグ

2008年7月19日のブックマーク (4件)

  • Introduction to the Atom Publishing Protocol

    A video introduction to the Atom Publishing Protocol: If you have trouble seeing the text in the video you can click through to YouTube and watch the high resolution version. Hi Joe, This was relaly useful, thanks. I'm just getting to grips with these technologies and short tutorials like this are great. Question, when you say media I think of video and audio. However does what you said about medi

    Introduction to the Atom Publishing Protocol
    HISAMATSU
    HISAMATSU 2008/07/19
    英語の勉強にもよい
  • KLab/DSAS×はてなで本を書きました『サーバ/インフラを支える技術』 - (ひ)メモ

    ぼくが所属しているKLabのDSASチームのみんなと、はてなのid:naoyaさん、id:stanakaさんとで書いたサーバ/インフラがいよいよ発売されます。 Amazonなどでも予約が開始されたようです。 [24時間365日] サーバ/インフラを支える技術 ?スケーラビリティ、ハイパフォーマンス、省力運用 (WEB+DB PRESS plusシリーズ) 作者: 安井真伸,横川和哉,ひろせまさあき,伊藤直也,田中慎司,勝見祐己出版社/メーカー: 技術評論社発売日: 2008/08/07メディア: 単行(ソフトカバー)購入: 133人 クリック: 2,270回この商品を含むブログ (288件) を見る そしてなんと!! 出版を記念して、執筆者陣によるTech Talkイベントも開催する予定です。詳しくは、週明け(多分7/22(火))に http://gihyo.jp/ 上で告知があります

    KLab/DSAS×はてなで本を書きました『サーバ/インフラを支える技術』 - (ひ)メモ
    HISAMATSU
    HISAMATSU 2008/07/19
    買う。
  • 40行の Ruby製 簡易テンプレートエンジン [ゼロと無限の間に]

    require "cgi" class Template # テンプレートから作成したViewを取得する def self.get(tmpl_path, http_headers = "text/html") view_path = tmpl_path + ".view.rb" # Viewのファイルパス view_name = "View_" + tmpl_path.gsub(/[-.]/, "_") # Viewのクラス名 # Viewクラスがまだ無いか、テンプレートより古い場合はViewクラスを作成する if !FileTest.exist?(view_path) || File::stat(tmpl_path).mtime > File::stat(view_path).mtime self.create_view(tmpl_path, view_path, view_name)

  • ゆの in Ruby を読む - gan2 の Ruby 勉強日記

    ゆの in Ruby - 冬通りに消え行く制服ガールは、夢物語にリアルを求めない。 - subtechは パッと見て全然よく分からなかったのであきらめて投げていたのだけど 他のバージョンとかも色々出てきて読めていないのが段々くやしくなってきた。 そこで、気合を入れて「なめるなよ!カッ!」ってしてみたところ今度は読めたので ついでにメモを残しておこうと思う。 さて、これがそのスクリプトである。 (タブはスペース2つ分に置き換えている) #!ruby -Ku class X attr_reader :a, :b def self./(a) new(a) end def self.to_s "×365" end def initialize(a) @a = a end def /(b) @b = b print self self end def <(o) puts " #{o}" end de

    ゆの in Ruby を読む - gan2 の Ruby 勉強日記