Source of Nothingness - g

* Menu

[[About:self:AboutPage.txt]] | [[Profile:http://iddy.jp/profile/southly/]] | [[まとめ:self:1163859357.txt]] | [[オリジナル:http://ninjinix.x0.com/rn/]] | [[xyzzy:http://raido.sakura.ne.jp/southly/xyzzy/site-lisp/]] | [[あんてな:http://i-know.jp/southly/listall]] | [[■:http://raido.sakura.ne.jp/southly/lisp/ni/view.lisp]] | [[buzz:http://www.google.com/profiles/southly#buzz]]

* xyzzy topic : きまぐれにxyzzy移転&更新いっぱい

http://homepage2.nifty.com/kimagurenixyzzy/index.html

* xyzzy topic : gtags-menu

xyzzy.g-artistic.net/item_567_catid_32.html

* xyzzy topic : sudoku.l

http://megahurtz.bblog.jp/entry/294035/

* Scrapbook : 二次元配列の動的な割り当て方

ocities.jp/ku_470/tips_004.html

* Scrapbook : SaikyoLine.jp: さくらインターネットでSubversion

subversion_2.html

* Scrapbook : Yahoo!オークション - 【描く前から】例の化け物【半笑い】

http://page6.auctions.yahoo.co.jp/jp/auction/f43099180?

(笑)

* 2006-05-23 「A・E・H・R・T」でできるすべての文字列を表示するプログラム

http://d.hatena.ne.jp/tamago_girai/20060522#p1

pushが失敗だった。訂正版。
より簡潔に。再帰が一回分増えるのがアレだったんだけど、きれいな解答ならこちらかな。
(defun a-e-h-r-t (rest &optional pool)
  (if (not rest)
      (format t "~{~A~}~%" (reverse pool))
    (dolist (x rest)
      (a-e-h-r-t (remove x rest) (cons x pool)))))
(a-e-h-r-t '(a e h r t))

* xyzzy lisp : junk/httpの利用例として

RandomNote投稿lisp
refwikiのPOST用も作ってみたり。公開はしないけど。
[[(ReadMore...) index.rb?1148233294.txt]]

* Scrapbook : Functional Programming

http://homepage3.nifty.com/Aransk/contents2.html

* Scrapbook : IBM dW : Linux : GNUプロファイラーによるコード処理速度の向上 - Japan

gnuprof.shtml?ca=drs-

* Scrapbook : VisualWorks GC strategy

http://katsu.watanabe.name/smalltalk/gc/

* Scrapbook : パフォーマンス・マネージメント・ガイド - 目次

http://publib16.boulder.ibm.com/pseries/Ja_JP/aixbman/prftungd/prftungd02.htm#wq2

* Scrapbook : IBM dW : Linux : Linuxのデバッグ手法をマスターする - Japan

linux/021018/j_l-debug.html

* Scrapbook : M+ と IPAフォントの合成フォント

http://mix-mplus-ipa.sourceforge.jp/

* Scrapbook : Mostly-Concurrent Mark & Sweep GC のアルゴリズム

http://www.nminoru.jp/~nminoru/java/cms/concurrent_mark_sweep.html