기본 콘텐츠로 건너뛰기

12월, 2004의 게시물 표시
office 

firfox tip

firefox 와 thunderbird 사용 fedora에서 제공되는 firefox 스크립트 파일 #!/bin/sh # # The contents of this file are subject to the Netscape Public # License Version 1.1 (the "License"); you may not use this file # except in compliance with the License. You may obtain a copy of # the License at http://www.mozilla.org/NPL/ # # Software distributed under the License is distributed on an "AS # IS" basis, WITHOUT WARRANTY OF ANY KIND, either express or # implied. See the License for the specific language governing # rights and limitations under the License. # # The Original Code is mozilla.org code. # # The Initial Developer of the Original Code is Netscape # Communications Corporation. Portions created by Netscape are # Copyright (C) 1998 Netscape Communications Corporation. All # Rights Reserved. # # Contributor(s): # ## ## Usage: ## ## $ mozilla ## ## This script is meant to run a mozilla program from the mozilla ## rpm inst
me 

apache avalon project

Apache Avalon has closed. Apache Avalon began in 1999 as the Java Apache Server Framework and in late 2002 separated from the Apache Jakarta Project to become its own ASF top level project. Apache Avalon provided Java software for component and container programming and pioneered the use of design patterns such as Inversion of Control (IoC) and Separation of Concerns (SoC). By 2004 Avalon had grown into several subprojects which have since separated into the following: Excalibur : Apache Excalibur houses the Avalon 4.x framework, the Fortress IoC container, and several Avalon related components and utilities such as LogKit and the Cornerstone Component Collection. Loom : Codehaus Loom continues development of a micro-kernel container after the design of Avalon Phoenix. Metro : DPML's Metro project develops the next generation of the Merlin Service Platform using the Open Participation Software model. Castle : an IoC Frame

firfox에서 사용하는 확장기능.

all-in-one Gestures - 마우스 기능 강력추천.. 검색할때 많이 필요함. Right-Encoding - 기본적으로 필요한 기능.. 문자인코딩 방식선택 Paste and Go - 편리한 기능 enter 한번 입력덜하게 하는 기능.. ^^ Sage - rss 리더 Adblock - 광고 block Tab Clicking Options - tab을 더블클릭하는 경우 사용됨. Image Zoom - 그림파일 크기를 조절할 수 있는 확장기능.

Linux Kernel 2.6 한/영 패치 (RedHat 9.x)

Linux Kernel 2.6 한/영 패치 (RedHat 9.x) 요즘 리눅스 사용자에게 좋은 Tips으로 알려진 한/영패치 방법입니다 제가 수세리눅스에서 시도해봤는데 동작이 잘 되는 것을 확인했습니다 -- redhat에서도 잘 동작합니다. * 관련링크 http://people.kldp.org/~krisna/blog/%ED%94%84%EB%A1%9C%EA%B7%B8%EB%9E%A8/2004/11/12/364.html * 내용 저번에 여기에 써놨던 linux 2.6에서 한영키 인식 글에서 제가 실수한 부분을 jeremy 님 덕택에 찾았습니다. linux kernel 2.6.x에서 한영/한자키를 인식하게 하기 위해서는 아래와 같이 하면 되겠습니다. 핵심은 커널 패치하고 컴파일 할 필요가 없다는 것이죠. # setkeycodes 71 122 # setkeycodes 72 123 그럼 이제 커널에서는 한영/한자키를 인식하고 출력하니까 X에서 설정만 추가하면 됩니다. $ xmodmap -e 'keycode 122 = Hangul' $ xmodmap -e 'keycode 121 = Hangul_Hanja' 이렇게 실행하면 한영키와 한자키가 정상 작동합니다 :) 참고로 X에서 항상 설정하고 싶다면 $HOME/.Xmodmap 파일에 다음과 같이 써놓으면 되겠죠. keycode 122 = Hangul keycode 121 = Hangul_Hanja 덧붙임: eek - 한번만 설정되고 토글이 되지 않음. * 해결 방법 * 나비>설정>한글에서 더하기를 선택하고 한글키를 입력하면 적용이 정상적으로 적용됨. * 한자도 동일한 방법으로 설정가능
Eclipse Platform 시작하기 Eclipse 플러그인을 이용한 애플리케이션 편집, 컴파일, 디버깅 Level: Introductory David Gallardo 소프트웨어 컨설턴트 2002년 11월 Eclipse Platform을 소개한다. 기원과 아키텍쳐를 비롯하여 Eclipse의 오픈 소스적 특성과 다중 프로그래밍 언어 지원 등을 다룬다. 간단한 프로그램 예제를 사용하여 자바 개발 환경을 보여줄 것이다. Eclipse란 무엇인가? Eclipse는 오픈 소스이며 자바 기반의 확장 가능한 개발 플랫폼이다. 그 자체로 프레임웍이며 플러그인 컴포넌트에서 개발 환경을 구현하는 서비스 세트이다. 다행히, Eclipse에는 Java Development Tools(JDT)를 포함한 표준 플러그인 세트가 포함된다. 대부분의 개발자들이 Java IDE로서 Eclipse를 사용할 수 있다는 것은 큰 행운이며 야망은 여기서 그치지 않는다. Eclipse에는 Plug-in Development Environment (PDE)이 포함되어 있는데 Eclipse를 확장하려는 소프트웨어 개발자들이 주로 흥미를 갖고있다. Eclipse 환경과 완벽하게 통합하는 툴을 구현할 수 있기 때문이다. Eclipse의 모든 것이 플러그인 이기 때문에 모든 툴 개발자들은 Eclipse로 확장을 제공하고 일관성 있고 통합된 개발 환경을 제공하기 위해 레벨을 갖추게 된다.