#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://nqmacs.sourceforge.net/ nqmacs : Distributes Latest Emacs Binaries for MS Windows] : Not active now. == 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] == SOA and EDA == * [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