2011-02-20から1日間の記事一覧

doc-view-mode を使ってみた

pdf を png に変換して表示するらしい(Ghostscript が必要).キャッシュがない場合は変換に数秒から数分かかる.その間はこんな画面が表示される. 文書内検索には pdftotext が必要.ない場合は % brew install xpdf とかして入れる. 検索を一度実行する…

Cocoa Emacs に Aspell が入ってないことに気付く

homebrew なら brew install aspell --lang=en だけでいける.ispell-program-name は自動で設定されるはずだけど,上手くいかない場合は "/usr/local/bin" にパスが通っていないってことだから,どこかに (let ((brew "/usr/local/bin") (path (getenv "PAT…

Chapter 1 Building Abstractions with Procedures

追記:英語の文章はSICPからの引用です.何故 lisp なのか云々. 1.1 The Elements of Programming In programming, we deal with two kinds of elements: procedures and data. (Later we will discover that they are really not so distinct.) Informally…

SICP 読むための設定とか

春休みなのでプログラミングを勉強しようと思い,SICPを読んでいます(取り敢えず三章までやる予定).以下は SICP のサンプルコードに使われている Scheme の処理系(Gauche)をインストールをした際のメモです. Gauche のインストール homebrew の pull r…