2006-03-02 Thu

[別の年の同じ日: 2005 2007 2008 2009 2010 2013

『30 日でできる OS 自作入門』発売 はてぶ

http://slashdot.jp/books/06/03/02/034208.shtml

著者は OSASK の川合秀実さん

- 30日でできる! OS自作入門
  http://book.mycom.co.jp/book/4-8399-1984-4/4-8399-1984-4.shtml
- OSASK 計画
  http://osask.jp/
- 「30日でできる! OS自作入門」のサポートページ
  http://hrb.osask.jp/
- 「30日でできる! OS自作入門」のページ
  http://wiki.osask.jp/?HariboteOS

Referrer (Inside):
[2009-05-29-2] byobu で GNU screen の status line を派手にする

GNU screen の status line を変更 はてぶ

GNU screen の status line に表示される active な window の背景色を変えるように変更.

hardstatus alwayslastline "%H[%n]: %Y-%m-%d %c [%-w%{=b cb}%n %t%{-}%+w]"


ChangeLog メモの TAB 幅を小さくする はてぶ

http://at-aka.blogspot.com/2005/11/changelog-tab.html

 __DATA__
 ^L
 ;;; Local Variables: ***
 ;;; mode: change-log ***
 ;;; clmemo-mode: t ***
 ;;; tab-width: 4 ***
 ;;; left-margin: 4 ***
 ;;; End: ***


を ChangeLog memo の末尾に追加.

かなりスッキリして,見易くなったような気もする.

生まれてから、何日たったのかな はてぶ

http://www.110kz.com/001/top.htm

via: clmemo@aka: 生まれて 10000 日 |Emacs|
     http://at-aka.blogspot.com/2006/03/10000-emacs.html

Funny UNIX Shell Commands はてぶ

http://www.csd.uwo.ca/staff/magi/personal/humour/Computer_Audience/
Funny%20UNIX%20Shell%20Commands.html

% make love
Make: Don't know how to make love. Stop.


といった類のネタ.

Javascript in Ten Minutes (Javascript) はてぶ

http://javascript.infogami.com/Javascript_in_Ten_Minutes

客らの情報 270 人、ネットに流出 モスフードサービス はてぶ

http://www.asahi.com/national/update/0301/TKY200603010303.html

- 社員所有の PC から
- 名前や住所、電話番号、メールアドレスなど
  - 藤野パーキングエリア店(神奈川県藤野町)で 2001-05 〜 2003-07 に
    アンケートに答えた客 58 人
  - 所沢東口店(埼玉県所沢市)で 2004-05 より前に商品を予約した客 176 人

「テレ朝bb」 テレビ朝日の動画サイト-「テレ朝bb」 はてぶ

http://bb.tv-asahi.co.jp/

- ITmedia News:テレ朝が動画ポータル 「クレヨンしんちゃん」も配信
  http://www.itmedia.co.jp/news/articles/0603/01/news104.html
- テレビ朝日、動画ポータルサイト「テレ朝bb」をスタート
  http://www.watch.impress.co.jp/av/docs/20060301/tvasahi.htm

北九州空港、メーテルがご案内 はてぶ

http://www.asahi.com/national/update/0228/SEB200602280005.html

九州工業大などが開発し、身長 170 センチ。空港ビルの観光案内所に立ち、
ビルの各施設や交通・宿泊、名所情報など約 200 種類の質問に身ぶり手ぶりで
答える。

なぜメーテル?

Using EmacsClient with screen はてぶ

http://www.emacswiki.org/cgi-bin/wiki/EmacsClient#toc6

screen 上で emacsclient を実行したら Emacs の window に切り替え,
編集を終えたら emacscient を実行した window に戻る方法.

- screen の設定
Emacs の window は特定しておきたいので,.screenrc に

screen -t Emacs 1 /usr/bin/emacs


などと書いておく.

- ~/bin/emacs を次の内容で用意

#!/bin/sh
echo $WINDOW >~/tmp/emacsclient-caller
screen -r -X select 1
emacsclient "$1"


- Emacs の設定

(add-hook 'after-init-hook 'server-start)
(add-hook 'server-done-hook
	  (lambda ()
	    (shell-command
	     "screen -r -X select `cat ~/tmp/emacsclient-caller`")))