일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | |||
5 | 6 | 7 | 8 | 9 | 10 | 11 |
12 | 13 | 14 | 15 | 16 | 17 | 18 |
19 | 20 | 21 | 22 | 23 | 24 | 25 |
26 | 27 | 28 | 29 | 30 | 31 |
- GIT
- VirtualBox
- profile
- Windows
- bash
- Mac
- web.xml
- import
- tomcat
- Eclipse
- 줄바꿈 문자
- xargs
- Windows 10
- grep
- lsof
- port
- netsh
- JavaScript
- context
- resource
- ssh
- Quartz
- maVen
- vscode
- IntelliJ
- 네트워크
- plugin
- find
- 단축키
- Source
- Today
- Total
목록분류 전체보기 (1762)
develog
대소문자 변경 ctrl + ' format code ctrl + F7 SQL 실행 ctrl + enter describe window shift + F4 line comment ctrl + / 프로시저 컴파일 ctrl + F8
sqldeveloper.conf 파일에 아래 내용 추가 /Applications/SQLDeveloper.app/Contents/Resources/sqldeveloper/sqldeveloper/bin/sqldeveloper.conf AddVMOption -Duser.country=KR AddVMOption -Duser.language=en
REGEXP_LIKE(USER_NM, '[ㄱ-힣]')REGEXP_LIKE(USER_NM, '[a-zA-Z0-9]')
http://tutorials.jenkov.com/java-concurrency/synchronized.html // instance methods (one thread per instance)public synchronized void add(int value) {this.count += value;} // code blocks inside instance methodspublic void add(int value) {synchronized (this) {this.count += value;}} // static methods (one thread per class)public static synchronized void add(int value) {count += value;} // code bloc..
HeidiSQL : MySQL, MSSQL 클라이언트 프로그램http://www.heidisql.com/