タグ

2011年8月29日のブックマーク (3件)

  • Proxyサーバー

    という具合に必ずアクセスログは残ります。また、サーバーだけではなく、一般のWebサイトにおいても、掲示板やチャットなどCGIプログラムを利用しているサイトは必ずアクセスログを取得しているといっても過言ではないでしょう。 プロキシサーバーを利用するには、ブラウザで設定する必要があります。設定方法はブラウザによって違うのでヘルプ等でプロキシサーバーの設定方法を検索してみてください。例としてIE6の場合を下記に挙げます。 インターネットのプロパティから「接続」タブを選択して、「設定」ボタンを押すと下記画面になります。 「LANの設定」ボタンを押すと下記画面が出てきますので、「プロキシサーバーを使用する」にチェックを入れてあらかじめ用意したプロキシサーバーのホスト名またはIPアドレスを入力し、そのプロキシサーバーが利用できるポートを入力します。プロキシサーバーがよく使用するポートとしては「80番」

    geeksnil
    geeksnil 2011/08/29
  • Erlang/OTP 26.2.4

    Expand All Contract All System Documentation Installation Guide System Principles Embedded System Getting Started Erlang Reference Manual Programming Examples Efficiency Guide Interoperability Tutorial Design Principles OAM Principles Application Groups Basic compiler erts kernel sasl stdlib Database mnesia odbc Operation & Maintenance os_mon snmp Interface and Communication asn1 crypto diameter e

    geeksnil
    geeksnil 2011/08/29
  • Index - Erlang/OTP

    fact(0) -> 1; %% Pattern matching for control-flow fact(N) -> N * fact(N-1). %% Recursion to create loops > example:fact(10). %% Interactive shell for fast iterations 3628800 > [{I, example:fact(I)} || I <- lists:seq(1,10)]. [{1, 1}, {2, 2}, {3, 6}, {4, 24}, {5, 120}, {6, 720}, {7, 5040}, {8, 40320}, {9, 362880}, {10, 3628800}] > Fruits = ["banana","monkey","jungle"]. %% Immutable variables ["bana

    Index - Erlang/OTP
    geeksnil
    geeksnil 2011/08/29