memo.xight.org

01 02 03 04 05 06 07 08 09 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30

2005-06-27 Mon

暑中見舞・残暑見舞い

- 暑中見舞・残暑見舞を送る時期

暑中見舞 梅雨明け後,夏の土用の期間 (立秋前の18または19日間)
残暑見舞 立秋を過ぎてから,8月中

- 立秋
  8月7日頃

- Reference
  年賀状・暑中見舞いドットコム
  http://www.nengasyotyuu.com/syochu/
  Wikipedia - 立秋

カテゴリ: [マナー]

AWStat Tips

- AWStats6.0 ログをUTF8に変換して検索語の文字化け回避
  http://cyberam.dip.jp/linux_server/log/awstats60_main.html

- Anti-spam domain blacklist
  Fighting email spamdom-bl.txtを利用.
  - awstats.conf の設定 (ちょっと強引)

LogFile="cat /var/log/httpd/access.log.`/bin/date -v-1d +%Y%m%d` | grep -v -f REFERERSPAMLIST |"


- AWStats用語集
  http://www.bflets.dyndns.org/Tools/AWStatsDocs_JP/awstats_glossary_jp.html

- Reference
  /home/pochi/ChangeLog - 2005-06-27
  http://www.pochi.cc/~sasaki/chalow/2005-06-27-2.html

  /home/pochi/ChangeLog - 2005-06-06
  http://www.pochi.cc/~sasaki/chalow/2005-06-06-1.html

  /home/pochi/ChangeLog - 2004-08-31
  http://www.pochi.cc/~sasaki/chalow/2004-08-31-5.html

カテゴリ: [AWStats][Stub]

del.icio.us direc.tor - Delivering A High-Performance AJAX Web Service Broker

- Reference
  del.icio.us direc.tor: Delivering A High-Performance AJAX Web Service Broker :: Johnvey
  http://johnvey.com/features/deliciousdirector/
- via
  読書記録ChangeLog - 2005-06-27
  http://dkiroku.com/2005-06-27-7.html
  Going My Way - 2005-06-25 - del.icio.usをスムーズに検索するdel.icio.us direc.tor
  http://kengo.preston-net.com/archives/002021.shtml

カテゴリ: [Ajax][del.icio.us]

View Your Mind

- Summary
  Qtベースの MindMap ソフトウェア.
  åƳ
- Reference
  View Your Mind
  http://www.insilmaril.de/vym/
  SourceForge - View Your Mind
  http://sourceforge.net/projects/vym
- via
  読書記録ChangeLog - 2005-06-27
  http://dkiroku.com/2005-06-27-2.html
  生きてま - 2004-09-22
  http://log.giantech.jp/daylist_html?year=2004&month=9&day=22

カテゴリ: [MindMap][視覚化]

cal コマンドで月曜始まりにする

- 方法

% cal -m


- 一年分出力

% cal -ym


- Reference
  capsctrldays - 2005-06-27
  http://capsctrl.que.jp/kdmsnr/diary/20050627.html#p03
- via
  TokuLog! - 2005-06-27
  http://tokuhirom.dnsalias.org/~tokuhirom/tokulog/1475.html

カテゴリ: [UNIX]

GHIBLIES

- Reference
  SoaR - Pict - パロディ作品 - GHIBLIES
  http://www005.upp.so-net.ne.jp/doraneko-21/gallery/ghiblies/ghiblies.html
- via
  たまにっき。 - 2005-06-27
  http://www.oikaze.com/~tamada/Diary/2005-06-27.html#2005-06-27-3

カテゴリ: [ジブリ][ネタ]

格言・名言・訓言

- Reference
  世界傑作格言集
  http://kuroneko22.cool.ne.jp/
  Ciao! 名言集
  http://www.cool-runnings.net/e-kotoba/meigen_db/mignsyu1.htm

カテゴリ: [Memo]

c-sig で複数の署名を利用する

- c-sig のインストール

# aptitude install c-sig


- .emacs の設定

(autoload 'add-signature "c-sig" "c-sig" t)
(autoload 'delete-signature "c-sig" "c-sig" t)
(autoload 'insert-signature-eref "c-sig" "c-sig" t)          ;; 対話的に選択する.
(autoload 'insert-signature-automatically "c-sig" "c-sig" t) ;; データベースからの検索結果に従って自動的に挿入する.
(autoload 'insert-signature-randomly "c-sig" "c-sig" t)      ;; ランダムに挿入する.
 
;;; Mewでシグネチャを対話的に選択する設定
(add-hook 'mew-draft-mode-hook
  (function (lambda ()
    (define-key mew-draft-mode-map "\C-c\C-i" 'insert-signature-eref)))) 
 


- 署名を直接編集するには
.signature.alist を編集
(setq sig-alist '(
( "default" .
"--
Yoshiki SATO <yoshiki@example.com>
")
( "private" .
"--
佐藤 克己 <yoshiki@example.com>
Tel : XXX-XXXX-XXXX
URI : http://xight.org/
")
))
(setq sig-name-alist nil)
(setq sig-regexp-alist nil)


- 署名を自動設定するには
.signature.alist を編集
;;; anonymous@example.com の署名を default に設定する.
(setq sig-name-alist '(
("anonymous@example.com" . "default")
))
(setq sig-regexp-alist nil)


- 操作
  M-x add-signature で登録 (.signature.alist が変更される)
  Mew の Draft バッファで C-c C-i でシグネチャの選択バッファ.(p,nで選択,リターンで確定)

- Reference
  c-sig のホームページ
  http://www.threeweb.ad.jp/~kshibata/c-sig/
  Mew FAQ (In Japanese) - 5. Mewをもっと便利に使いたい - 5.1 複数あるシグネチャをきりかえて使いたい
  http://www.i.kyushu-u.ac.jp/~minamoto/unix/mew/FAQ/FAQ05/index-j.html#5.1

カテゴリ: [mew]

Rosegarden - music software for Linux

- Summary
  オープンソースのMIDIシーケンサ/楽譜エディタ.
- Reference
  Rosegarden: music software for Linux
  http://www.rosegardenmusic.com/
- via
  Open Alexandria - Rosegarden
  http://www.openalexandria.com/item_632.html

カテゴリ: [音楽][Software]
2005-06 / 01 02 03 04 05 06 07 08 09 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30

Color Reference

ChangeLogを検索
携帯電話からアクセス!

カテゴリ

最近の話題

リンク

過去ログ

Google

QR Code

Since
2002-11-28
Update
2008-09-05 14:14
Copyright © 2005 xight.org All Rights Reserved.