4분할 윈도우 동작







이렇게 분할 동작하는 캐드형 윈도우를 빨리 만들어야 되는데.......쉽지가 않네...

by icanfly | 2007/06/11 14:55 | 잡담들 | 트랙백 | 덧글(0)

엑박용 헤리케인 팩....

  엑박용 허리케인팩 화질이....엄청나다.

  이건 에복스 화면 480i


  아래는 XBMC 1080i화면


  이건 화면 떨린거 아니냐고 할까바 모니터 로고와 같이 찍은것...

  역시 모니터로고와 함께 찍은 720p 화면..

  케이블 길이는 1.5m정도되는 동양사, 비싼 디옵텍 모두 해봤는데..동일함..

 

by icanfly | 2006/12/12 13:38 | 잡담들 | 트랙백 | 덧글(0)

asp.net 프로젝트 cvs로 버젼 어러개 관리하기

 
asp.net 프로젝트는 iis에서 가상웹사이트와 연결되어 동작하기 때문에

브랜치에서 작업한것이 바로 메인 스트림을 수정하는 문제가 있다.

그래서 다음과 같은 절차를 따라야 한다.

우선 브랜치를 만든다. 여기서는 B라고 명명한다.

B브랜치를 체크아웃한다. 이때 다른 폴더로 체크아웃한다. 폴더이름은 [프로그램명-브랜치명]

으로 한다.

iis관리자에서 가상웹사이트를 하나 만들어 방금 브랜치한 폴더를 사이트루트로 잡는다.

브랜치폴더로 가서 sln 파일을 열어서 다음부분에

Project("{F184B08F-XXXX-45F6-A57F-5ABD9991F28F}") = "rems.net", "http://localhost/rems.net/rems.net.vbproj", "{E50DC78E-7844-4727-XXXX-9529996CEE36}"
ProjectSection(ProjectDependencies) = postProject
EndProjectSection
EndProject

프로젝트가 명시된 부분을 브랜치 폴더로 손으로 바꿔준다.

http://localhost/prog/prog.vbproj 이부분을

http://localhost/prog-B/prog.vbproj 이런식으로 바꾼다.

이제 독립된 두 프로젝트 처럼 각각에서 수정하고 커밋하면 된다.

by icanfly | 2006/05/30 09:44 | 윈도우쪽 관련 | 트랙백 | 덧글(0)

vim 고급 정규표현

Concat operator

The concat operator is PATTERN&PATTERN. It maches the last pattern if all preceding patterns (joined by the concat operator) match as well.
For example /.*foo&.*bar matches any (beginning of a) line containing foo and bar, irrespective of their order.

Zero-width Assertions

Zero-width positive look ahead assertion

ATOM@=
The perl equivalent is (?=PATTERN)

Zero-width negative look ahead assertion

ATOM@!
The perl equivalent is (?!PATTERN)

Zero-width positive look behind assertion

ATOM@<=
The perl equivalent is (?<=PATTERN)

Zero-width negative look behind assertion

ATOM@<!
If for example you want to find all lines that don't end with at least three digits in this snippet,
eins 1 zwei 2 hundert 100 tausend 1000 dreiunddreissig 33 vierhundertachzig 480 fuenfhundert 500 f 

you can use
(d{3})@<!$  

to do this.
The perl equivalent is (?<!PATTERN)

Non greedy search

ATOM{-}

Searching within muliptle lines

_.

by icanfly | 2006/01/02 15:15 | 리눅스 설치 및 설정 | 트랙백 | 덧글(0)

◀ 이전 페이지 다음 페이지 ▶