タグ

2008年3月26日のブックマーク (4件)

  • Unix Toolbox

    This document is a collection of Unix/Linux/BSD commands and tasks which are useful for IT work or for advanced users. This is a practical guide with concise explanations, however the reader is supposed to know what s/he is doing. Unix Toolbox revision 14.5 The latest version of this document can be found at http://cb.vu/unixtoolbox.xhtml. Replace .xhtml on the link with .pdf for the PDF version a

  • つれづれなる技術屋日記

    このサイトではWindowsPMBOKなど、登録商標および商標を記載省略しています。以前の記事閲覧で、カレンダー経由「ページが見つかりません」になったら、”バックナンバー”経由で辿ってください。 「つれづれなる技術屋日記」ですが、現在移行中です。新しいサイトは以下です。ブログのタイトル名は、同じ「つれづれなる技術屋日記です。 https://honda-jimusyo.com/ 画像の移行の関係などもあって、しばらくこちらのサイトも残しておきますが、後日にサイトは削除というか閉鎖する予定です。ただし、各ブログ記事などを、順次削除していく予定です。 興味ある方は、新しいサイトの方をブックマーク願います。 なお、 ”奔車紀行”の方も移行して、新しいサイトは以下です。(ココログの奔車紀行サイトは、既に全体を削除しています。) https://blog2.honda-jimusyo.com/

  • Three Dogmas of Scheme

    Three Dogmas of Scheme (Recursion, Single name space and Continuation) R6RS にざっと目を通して一番驚いたのはそれまでの表示意味論が捨てられてしまっていることでした。 しかし 表示意味論 を捨てるなら以下に並べる Scheme 三つのドグマも捨てられなきゃ嘘だろう、ということでコメントしてみます。 Recursion (再帰) Scheme は何でも再帰です。 後で示すように、一見 iteration のような格好をしている構文ですら、 一旦末尾再帰に置き換えられてから実行されます。 つまり Scheme はその仕様に iteration を持ちません。 これが関数型プログラミングと関係の深い表示意味論からの要請であったことは容易に想像がつきます。 しかし、表示意味論が捨てられた今、反復制御構造に recursion

  • jQuery 日本語リファレンス

    jQueryとは、JavaScriptのコーディングを強力に支援するライブラリです。 $('.semooh a').hover( function(){ $(this).text('ヌ?'); }, function(){ $(this).text('ヌー'); } );