#acl YoonKyungKoo:read,write All:read 몇 가지 사고의 조각들을 주워둡니다. [[TableOfContents]] == Emacs 리소스 == * [http://ourcomments.org/Emacs/EmacsW32.html GNU Emacs for Win32 Build Project] : I copied the dlls for image rendering to GNU emacs bin directories from the EmacsW32 bundled emacs... * ["JDE for Emacs"] * [http://www.emacswiki.org/cgi-bin/wiki/PlannerMode Planner Mode (Emacs PIMS)] * [http://www.khngai.com/emacs/cygwin.php Using cygwin telnet in win32 GNU Emacs] * telnet works, but ftp doesn't work. (But Windows ftp.exe just works) * Using TRAMP .. * C-x C-f /:@: * Emacs 22.2 for windows and Korean * add these commands to site-start.el to see Hangul correctly in the shell {{{ ;; below one line added for emacs-22.2 (setq coding-system-for-write 'euc-kr-dos) ;; below should not be set ;; (setq coding-system-for-read 'euc-kr-dos) ;; below lines added for emacs-22.2 (if (eq system-type 'windows-nt) (progn (defun my-shell-setup () (setq w32-quote-process-args "\"") (set-buffer-file-coding-system 'euc-kr-dos) (set-buffer-process-coding-system 'euc-kr-dos 'euc-kr-dos) ) (setq shell-mode-hook 'my-shell-setup) )) }}} == Closure == * WhatIsClosure == Using Jakarta Slide == I've get into a need of a good repository. I found the Jakarta Slide can be a start point. Below is my gatherings on Slide. UsingJakartaSlide == Hibernate == The famous open-source OR mapper. UsingHibernate == XML == Java and XML .. ["JavaAndXML"] == BSF == Embedding some scripts into existing products is often required, and BSF should be a good scripting framework. BeanScriptingFramework == BPM/Workflow Management System/Petri Net/Pi Calculus/... == ["AroundBPM"] == SQL Join == ["SQLJoin"] == SQL Performance Tuning == ["SQLPerformanceTuning"] == GRASP Pattern == ["GRASPPattern"] == Web 2.0 == * [http://www.oreillynet.com/lpt/a/6228 What Is Web 2.0] * [http://en.wikipedia.org/wiki/Web_2 Web 2.0 From Wikipedia, the free encyclopedia] == JSF == JavaServerFaces == SOA and EDA == * [http://complexevents.com/ Complex Event Processing] * [http://thecepblog.com/ The Complex Event Processing Blog] * [http://soa-eda.blogspot.com/2006/11/how-eda-extends-soa-and-why-it-is.html SOA and EDA - Thoughts on Service Oriented Architecture and Event-Driven Architecture] * [http://www.w3.org/Submission/WS-Eventing/ Web Services Eventing (WS-Eventing)] == Web Services Resources and Management == * [http://www.w3.org/Submission/WS-Enumeration/ Web Services Enumeration (WS-Enumeration)] * [http://www.w3.org/Submission/WS-Transfer/ Web Services Transfer (WS-Transfer)] * [http://xml.coverpages.org/ConvergingWS-ResourcesEventsManagement20060315.pdf Toward Converging Web Service Standards for Resources, Events, and Management] == Mozilla Thunderbird == === Undelete messages from Mozilla Thunderbird === * Mozilla stores messages in ''mbox'' format and it doesn't remove delete messages until ''compact folder'' is done. * In each message header, Mozilla uses extended header name '''X-Mozilla-Status''' to denote the status of the message. if you want to revive deleted mail message, change '''''0009''''' to '''''0001'''''. == Unix Tips == * [http://kb.iu.edu/data/afar.html In Unix, how can I split large files into a number of smaller files?] * split -l 100000 jjj.log jjj-part- * Line is too long (usually for VI, specify line width) * fold -w 255 file > file.new * extract some parts of a file (from line to line) * sed -n "1222,13355 p" filename