본문 바로가기

KLDPWiki: Emacs Change Fonts (Emacs 글꼴 바꾸기) From Evernote: KLDPWiki: Emacs Change Fonts (Emacs 글꼴 바꾸기) Clipped from: http://wiki.kldp.org/wiki.php/EmacsChangeFonts 출처 : http://wiki.kldp.org/wiki.php/EmacsChangeFonts Emacs 글꼴 바꾸기 Contents 1 X 글꼴 기본 지식과 필요 글꼴 설치 2 Fontset의 이해 3 여러 개 Fontset 정의 4 Fontset 정의 예제 4.1 lucida14 4.2 lucida18 4.3 etl14 4.4 etl16 4.5 etl18 4.6 etl24 5 Emacs 23버젼에서의 글꼴 설정 5.1 Xft X Resource Setting 5.2 Xft Lisp Setti.. 더보기
[WebScrab]WebScarab Getting Started - OWASP From Evernote: [WebScrab]WebScarab Getting Started - OWASP Clipped from: https://www.owasp.org/index.php/WebScarab_Getting_Started [출처 : https://www.owasp.org/index.php/WebScarab_Getting_Started] WebScarab has a large amount of functionality, and as such can be quite intimidating to the new user. But, for the simplest case, intercepting and modifying requests and responses between a browser and .. 더보기
[C] 0x07 조건문(Switch) From Evernote: [C] 0x07 조건문(Switch) 어제는 if 조건문 에 대해서 알아보았다. 어제에 이어서 조건문 Switch 에 대해 알아보자!! switch(변수값) { case 조건 : // 해당 조건에 만족할 경우 어떤 명령을 수행할지 명령문을 적어준다. break; } switch 문 : 변수에 해당하는 case 조건 ~ break문을 만나기 전까지 모두 수행한다. **주의사항** : if문과 다르게 case 조건 : => 이 부분에 비교 / 논리 연산자를 사용할 수 없다. 범위를 표현할 수도 없다. 그리고 조건에는 정수로 표현해야한다. (실수를 사용할 수 없다.) case 조건 : 의 예) case ch >= 'A' && ch > 31) { case -1 : puts(" - 값은.. 더보기