2011-03-01から1ヶ月間の記事一覧

Python

Closure Libraryに手を伸ばそうとして、下記サイトを参照して、 Python2.7.1をWindows 7にインストール.下記URLに足らなかった設定は、 ユーザー環境変数に、 PYTHONHOME、C:\Python27 を追加すること.http://webos-goodies.jp/archives/getting_started_w…

PowerPoint Shortcut Key よく使う物メモ

PowerPoint Shortcut Keyhttp://office.microsoft.com/ja-jp/powerpoint-help/HP010336519.aspx■[名前を付けて保存] Alt + F、A ■[テキスト ボックスを挿入]Alt、N、X キーの順 ■[オートシェイプを挿入]Alt、N、S、H キーの順、[図形] を選択 ■フォント サイ…

IEとその他ブラウザ HTML+CSSコーディング注意点:コンテンツのcenter

IEでは、これが効かない... margin:0 auto; のは、よく知られた話で、こうしないとできないみたい. <div style="text-align: center;"> <div style="margin-left: auto; margin-right: auto; border: 1px solid #000000; width: 200px; text-align: left;"> 中央寄せしたい部分 </div> </div>参考: http://www.res-system.com/weblog/item/567http://pgyougo.seesaa.net/ar…

LinuxにApache2をSSL付きでインストールする方法

1. Apacheをダウンロードするhttp://httpd.apache.org cd ~ wget http://www.eng.lsu.edu/mirrors/apache//httpd/httpd-2.2.17.tar.gz tar xvfz httpd-2.2.17.tar.gz 2. ApacheをSSL/TLS付きでインストール cd httpd-2.2.17 ./configure --enable-ssl --enab…