본문 바로가기

Development/Coding

EJB 관련 서적 메모 Core Java 1. Thinking in Java (3rd Edition) - 대웅미디어 2. Java How to Program (4th Edition) – 피어슨에듀케이션코리아 (DEITEL) 3. (New) Java2 Programming Bible – 정보문화사 (DEITEL) - JDK 1.4 튜토리얼 – 인포북 (Manning) - JAVA Tip & Tuning Technic - 크라운출판사 Network / Web 1. Beginning Java Databases – 정보문화사 (Wrox) 2. Java Network Progrmmnig (2nd Edition) – 인포북 (Manning) 3. Web Development with JavaServerPages (2nd Edition) .. 더보기
한글 입력기 변환 자바 스크립트 펜포에 갔다가 발견... 스펨 방지에도 도움이 될 듯... ahim.js /* ALee's Hangul Input Method on JavaScript Author: Ho-Seok Ee Date: 2006-07-12 Version: 0.1 Usage: Use to include this script and use En to enable status notification (not required). Copyright 2006 (C) Ho-Seok Ee . All rights reserved. This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public Licens.. 더보기
ECMAScript Basics – Syntax 1. Everything is case-sensitive. - Just as with Java, variables, function names, operators, and everything else is case-sensitive, meaning that a variable named test is different from one named Test. 2. Variables are loosely typed. - Unlike Java and C, varibles in ECMAScript are not given a specific type. Instead, each variable is defined using the var operator and can be initalized with any val.. 더보기
숫자, 한글 등 체크하는 스크립트 자바스크립트의 세계도 너무 복잡해... 입력 필드 검사할 때 사용하겠죠... /* 숫자+알파벳 검사 */ function alphanum_check (alphanum){ var pattern = /^[0-9a-zA-Z]*$/; if (pattern.test(alphanum.value)){ return true; }else{ return false; } } /* 알파벳 검사 */ function alpha_check (alpha){ var pattern =/^[A-Za-z]*$/; if (pattern.test(alpha.value)){ return true; }else{ return false; } } /* 숫자 검사 */ function number_check (number){ var pattern =.. 더보기
IRB 인터프리터 내에서 클래스 메소드 보기 IRB 인터프리터 내에서 사용된 변수, 함수, 클래스 보기 방법이 있었던 것 같은데... 어디서 본지 기억이 나질 않네요. 아시는 분 댓글 좀... 오해했던 우문이었습니다. 루비 공식홈의 20분 튜토리얼 부분에 대한 잘못된 기억으로 여러날 골치 아팟네요. 제가 궁금했던 내용은 http://www.ruby-lang.org/ko/documentation/quickstart/3/ 이 페이지의 클래스 객체 보기 방법이었습니다. 클래스명.instance_methods 이것이었습니다. 천리길도 한걸음부터인데 너무 앞서가려했나봐요. 더보기