링크 : http://springsource.tistory.com/91 

posted by 뚱2

[Ping] KT 핑 테스트

Network 2012. 6. 30. 01:27

요즘 우리지역 KT 인터넷이 잘 안되서 핑 테스트 해봤다. ㅡㅡ;

결과는 참혹하다.

국내에서 37ms의 핑이라...

KT 반성해야 할 듯



posted by 뚱2

참조 : JavaScript Patterns 에서 발췌


//=======================================================================
// SEED Class 영역
//=======================================================================
var SEED = SEED || {};

/**
 * 네임스페이스를 생성한다.
 * @param ns_string
 */
SEED.ns = function(ns_string) {
	var parts = ns_string.split("."),
		parent = SEED,
		i;
	
	// 처음에 중복되는 전역 객체명은 제거한다.
	if ( parts[0] === "SEED" ) {
		parts = parts.slice(1);
	}
	
	for (i = 0; i < parts.length; i++) {
		// 프로퍼티가 존재하지 않는다면 생성한다.
		if ( typeof parent[parts[i]] === "undefined" ) {
			parent[parts[i]] = {};
		}
		
		// 자식들을 검사하기 위해서 현재 나를 부모로 만든다.
 		parent = parent[parts[i]];
	}
	
	return parent;
};

// 사용예
var module2 = SEED.ns("SEED.modules.modules2");
module2 === SEED.modules.module2;//true

posted by 뚱2

SVN을 변경했을때 변경 내역을 Console에 보여주는데 Console창을 자동으로 Active하게 보여주는 옵션




posted by 뚱2

네트워크 드라이브를 연결해서 사용하는데 로그인 할때마다 풀리는 경우가 발생했다.


분명 '내 자격 증명 기억'을 체크 했는데


설정 방법은 Windows7 일때...


시작 -> 제어판 -> 자격증명 관리자 -> Windows 자격증명 추가








posted by 뚱2

출처 : http://blog.angeleyes.kr/298 

 

 

SVNFolderDelete.reg

 

remove.reg

posted by 뚱2

저자 이일민씨 블로그 : http://toby.epril.com/ 

posted by 뚱2

링크 : http://blog.naver.com/webman?Redirect=Log&logNo=30035122084 

posted by 뚱2

링크 : http://gyumee.egloos.com/1471952 


posted by 뚱2

링크 : http://www.mungchung.com/xe/spring/21220 

posted by 뚱2

링크 : http://niceilm.blog.me/150136093639 


classpath: -> 경로를 순회해서 첫번째 발견하는 것을 찾음

classpath*: -> 경로를 끝까지 순회해서 발견하는 것을 모두 찾음 



posted by 뚱2

링크 : http://java.decompiler.free.fr/?q=jdeclipse 

수동설치 : http://feeeel.tistory.com/33 


 

 

 

 

 

jdeclipse_update_site.zip


 

jd-gui-0.3.3.windows.zip

'IDE/Tool > Eclipse' 카테고리의 다른 글

[Eclipse] SVN Console 표시  (0) 2012.06.29
[Eclipse] .svn 폴더 삭제  (0) 2012.06.27
[Eclipse] Team Synchronizing 화면전환 Disable  (0) 2012.06.22
[Eclipse] Subversion 계정 변경  (0) 2012.06.22
[Eclipse] JavaScript Errors/Warnings  (0) 2012.06.21
posted by 뚱2

[Spring] log4j 설정

Java/SpringFramework 2012. 6. 22. 18:08

링크 : http://blog.naver.com/PostView.nhn?blogId=ices&logNo=10103844324 

링크 : http://arawn.tistory.com/32 

posted by 뚱2

[Java] google-gson

Java/Java 2012. 6. 22. 15:54

홈페이지 : http://code.google.com/p/google-gson/ 

API        : http://google-gson.googlecode.com/svn/trunk/gson/docs/javadocs/index.html 

user guide : https://sites.google.com/site/gson/gson-user-guide 

'Java > Java' 카테고리의 다른 글

[Java] Convert ArrayList<String> to String[]  (0) 2012.07.05
[Java] DateFormat  (0) 2012.07.04
[Java] Java Dynamic method call  (0) 2012.02.09
[Java] map sort  (0) 2012.02.02
[Java] instanceof 연산자  (0) 2011.11.28
posted by 뚱2

Eclipse Helios까지는 SVN 동기화를 하면은 화면전환이 되지 않았었다.


사실 남이 셋팅해준걸 사용한거라 원래 그런건지 설정을 한건지 알수 없었다.


이번에 Indigo로 업글하고 SVN 동기화면 하면 화면 전환이 ㅡㅡ;


그래서 할 수 없이 설정을 뒤짐....


빙고!!!




'IDE/Tool > Eclipse' 카테고리의 다른 글

[Eclipse] .svn 폴더 삭제  (0) 2012.06.27
[Eclipse] Java Decompiler JDEclipse  (0) 2012.06.23
[Eclipse] Subversion 계정 변경  (0) 2012.06.22
[Eclipse] JavaScript Errors/Warnings  (0) 2012.06.21
[Eclipse] Code Templete  (0) 2012.06.21
posted by 뚱2

[html] dd, dt, dl

JavaScript/Html 2012. 6. 22. 13:36

링크 : http://polinah.blog.me/50134577072 

'JavaScript > Html' 카테고리의 다른 글

[html] Zen Coding 링크  (0) 2012.09.23
[html] http 프로토콜  (0) 2012.02.16
[html] html 특수문자 태그  (0) 2011.08.18
[html] map 사용  (0) 2011.07.22
posted by 뚱2

링크 : http://blog.naver.com/joypheonix?Redirect=Log&logNo=100148171839 

'Java > SpringFramework' 카테고리의 다른 글

[Spring] Spring Import 시 classpath:와 classpath*: 의 차이점  (0) 2012.06.23
[Spring] log4j 설정  (0) 2012.06.22
[Spring] 환경설정  (0) 2012.06.19
[Spring] 설치 방법  (0) 2012.06.18
[Spring] Java ModelAndView  (0) 2012.02.09
posted by 뚱2

원본 : http://bllizz.tistory.com/11 


* XP

C:\Documents and Settings\Administrator\Application Data\Subversion\auth\svn.simple


* Vista

C:\User\Administrator\AppData\Roaming\Subversion\auth\svn.simple


* Window 7

C:\Users\[로그인아이디]\AppData\Roaming\Subversion\auth


안에 사용자 정보가 저장되어 있는 파일을 삭제 후

Eclipse 실행 한 다음에 SVN Repository를 열어서 SVN 서버에 접속하려 하면

다시 계정을 물어보는 화면이 나온다.

'IDE/Tool > Eclipse' 카테고리의 다른 글

[Eclipse] Java Decompiler JDEclipse  (0) 2012.06.23
[Eclipse] Team Synchronizing 화면전환 Disable  (0) 2012.06.22
[Eclipse] JavaScript Errors/Warnings  (0) 2012.06.21
[Eclipse] Code Templete  (0) 2012.06.21
[Eclipse] Generic types Disable  (0) 2012.06.21
posted by 뚱2



posted by 뚱2

[Eclipse] Code Templete

IDE/Tool/Eclipse 2012. 6. 21. 10:24



'IDE/Tool > Eclipse' 카테고리의 다른 글

[Eclipse] Subversion 계정 변경  (0) 2012.06.22
[Eclipse] JavaScript Errors/Warnings  (0) 2012.06.21
[Eclipse] Generic types Disable  (0) 2012.06.21
[Eclipse] eclipse change default perspective  (0) 2012.06.20
[Eclipse] SVN(Subversion 설치)  (0) 2012.06.19
posted by 뚱2



'IDE/Tool > Eclipse' 카테고리의 다른 글

[Eclipse] JavaScript Errors/Warnings  (0) 2012.06.21
[Eclipse] Code Templete  (0) 2012.06.21
[Eclipse] eclipse change default perspective  (0) 2012.06.20
[Eclipse] SVN(Subversion 설치)  (0) 2012.06.19
[Eclipse] Automatically Close 해제  (0) 2012.06.15
posted by 뚱2

Jave EE IDE를 사용하본 기본 퍼스펙티브가 JavaEE다.

평소 무거워서 기본 Java를 사용하는데 이게 기본이 아닌게 은근히 신경쓰인다.

변경가능




posted by 뚱2

[Jeus] Tmax jeus

WAS/Jeus 2012. 6. 20. 14:17

소개 : http://technet.tmax.co.kr/kr/edocs/jeus/60/introduction/chapter_What_is_JEUS.html 

 

환경 : http://technet.tmax.co.kr/kr/edocs/jeus/60/introduction/chapter_jeus_environment.html

 

 

* 호스트 변경시 유의사항

링크 : http://blog.naver.com/PostView.nhn?blogId=ssamba&logNo=124773497 

'WAS > Jeus' 카테고리의 다른 글

[Jeus] Jeus5 스펙  (0) 2013.04.02
[Jeus] encoding 설정  (0) 2012.07.07
[Jeus] 환경셋팅  (0) 2012.06.14
[Jeus 5.0] Eclipse 에서 Jeus 디버깅이 안될때...  (0) 2012.06.14
posted by 뚱2

[Spring] 환경설정

Java/SpringFramework 2012. 6. 19. 21:32

[chapter 01] : http://blog.naver.com/jazz1234k/40122259812 


'Java > SpringFramework' 카테고리의 다른 글

[Spring] Spring Import 시 classpath:와 classpath*: 의 차이점  (0) 2012.06.23
[Spring] log4j 설정  (0) 2012.06.22
[Spring] Bean Order Property  (0) 2012.06.22
[Spring] 설치 방법  (0) 2012.06.18
[Spring] Java ModelAndView  (0) 2012.02.09
posted by 뚱2

링크(Market) : http://taranakite.blog.me/100152885165 

링크(Install Software) : http://479lgs.blog.me/150048395205 


저는 둘중에 밑에 방법으로 설치했습니다.

posted by 뚱2

[Spring] 설치 방법

Java/SpringFramework 2012. 6. 18. 18:04
프레임워크 다운로드 : http://www.springsource.org/download

링크 : http://blog.naver.com/PostView.nhn?blogId=arumizz&logNo=70126691795 

'Java > SpringFramework' 카테고리의 다른 글

[Spring] Spring Import 시 classpath:와 classpath*: 의 차이점  (0) 2012.06.23
[Spring] log4j 설정  (0) 2012.06.22
[Spring] Bean Order Property  (0) 2012.06.22
[Spring] 환경설정  (0) 2012.06.19
[Spring] Java ModelAndView  (0) 2012.02.09
posted by 뚱2

[jQuery] Plugin Validation

JavaScript/jQuery 2012. 6. 18. 09:59

다운로드 : http://bassistance.de/jquery-plugins/jquery-plugin-validation/


링크 : http://mytory.co.kr/archives/195 

posted by 뚱2

링크 : http://www.vogella.com/articles/AndroidJSON/article.html 

'Mobile > Android' 카테고리의 다른 글

[Android] YUV420 Format  (0) 2013.08.26
[dex] Android Decompile  (0) 2013.05.10
WebView.addJavascriptInterface 활용  (0) 2010.12.11
[Android] 테트리스  (0) 2010.12.06
posted by 뚱2

개인적으로 if 후 괄도 생성이나 메소드나 함수 선언시 블락이 ㅈ동으로 생성되는것을 싫어한다.

해제 방법


* Java 해제

Window -> Preferences -> Java -> Editor -> Typing -> (Parentheses), [square] and <angle> brakets 해제, 

Window -> Preferences -> Java -> Editor -> Typing -> {Braces} 해제 


* JavaScript 해제

Window -> Preferences ->  JavaScript  -> Editor -> Typing -> (Parentheses), [square] and <angle> brakets 해제, 

Window -> Preferences ->  JavaScript  -> Editor -> Typing -> {Braces} 해제 




posted by 뚱2

[Jeus] 환경셋팅

WAS/Jeus 2012. 6. 14. 16:43

링크 : http://blog.naver.com/PostView.nhn?blogId=lsv400&logNo=100128102099 

'WAS > Jeus' 카테고리의 다른 글

[Jeus] Jeus5 스펙  (0) 2013.04.02
[Jeus] encoding 설정  (0) 2012.07.07
[Jeus] Tmax jeus  (0) 2012.06.20
[Jeus 5.0] Eclipse 에서 Jeus 디버깅이 안될때...  (0) 2012.06.14
posted by 뚱2