[MongoDB] MongoDB Client

DB / NoSQL/MongoDB 2013. 11. 21. 15:18

링크 : http://robomongo.org/

'DB / NoSQL > MongoDB' 카테고리의 다른 글

[MongoDB] Install MongoDB on OS X  (0) 2014.01.22
[MongoDB] Shell Option  (0) 2013.12.31
[MongoDB] MongoDB Site  (0) 2013.11.22
posted by 뚱2

링크 : http://www.sjune.net/archives/431

링크 : https://github.com/sjune/spring-example-mongodb


MongDB 소개 자료(최범균) : http://javacan.tistory.com/entry/MongoDB-%EC%86%8C%EA%B0%9C-%ED%8C%80%EB%82%B4-%EB%B0%9C%ED%91%9C-%EC%9E%90%EB%A3%8C


Hibernate with MongoDB : http://docs.jboss.org/hibernate/ogm/4.0/reference/en-US/html_single/#ogm-mongodb

 

posted by 뚱2

[BAT] 배치파일 문법

일반 2013. 11. 20. 14:35

링크 : http://blog.naver.com/6420h?Redirect=Log&logNo=60095322019


posted by 뚱2
링크 : http://formvalidator.net/index.html



posted by 뚱2

[jqGrid] Homepage and Manual

JavaScript/jqGrid 2013. 11. 12. 11:26

링크 : http://dev.anyframejava.org/docs/anyframe/4.5.1/reference/htmlsingle/anyframe.html


커뮤니티 : https://www.anyframejava.org/


posted by 뚱2

링크 : http://zoonoo.egloos.com/2272248

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

'DB / NoSQL > SQL/ERD' 카테고리의 다른 글

[ERD] ERD 보는 법  (0) 2011.10.27
posted by 뚱2

링크 : http://www.jetbrains.com/idea/webhelp/live-templates.html


젠코딩 같이 쓸수 있는 IntelliJ 전용 템플릿 ouput, plain, surround 정도 사용하면 편할것 같다.

posted by 뚱2

링크 : http://tutorials.jenkov.com/java-unit-testing/running-tests-with-idea.html

링크 : http://confluence.jetbrains.com/display/IntelliJIDEA/Creating+Unit+Tests


posted by 뚱2

[Mind Map] XMind

뚱2's 이야기 2013. 11. 2. 22:22

회의를 하거나 일을 하기전 생각을 정리하고 싶은데 잘 정리가 안될때가 있다.

이럴때 마인드 맵 프로그램이 괜찮다고 해서 찾아보니 무료중에 XMind가 괜찮다고 함

Mac 뿐만 아니라 Windows도 지원하는게 큰 장점.


링크 : http://www.xmind.net/

posted by 뚱2

[CKEditor] Fileupload

JavaScript/CKEditor 2013. 10. 30. 18:27

링크 : http://docs.ckeditor.com/#!/guide/dev_file_browse_upload

링크 : http://docs.cksource.com/CKFinder_2.x/Developers_Guide/Java/CKEditor_Integration

posted by 뚱2

링크 : http://wiki.jetbrains.net/intellij/

posted by 뚱2

프로젝트 오일러 문제

일반 2013. 10. 28. 09:44

링크 : http://synap.co.kr/

'일반' 카테고리의 다른 글

ClenCode 서비스 후기  (0) 2013.12.18
[BAT] 배치파일 문법  (0) 2013.11.20
[WBS] WBS (Work Breakdown Structure)  (0) 2013.07.16
[객체지향] MVC, MVP, MVVM의 이해  (0) 2013.07.10
의사코드(슈도코드, pseudocode)  (0) 2013.04.24
posted by 뚱2

링크 : http://javacan.tistory.com/95

 

 

posted by 뚱2
posted by 뚱2

링크 : http://underscorejs.org/

posted by 뚱2

링크 : http://entworks.tistory.com/category/%EC%97%94%ED%84%B0%ED%94%84%EB%9D%BC%EC%9D%B4%EC%A6%88%20%EC%9E%90%EB%B0%94/Persistence 

'Java > Hibernate / JPA' 카테고리의 다른 글

[Hibernate] Hibernate Annotations  (0) 2013.12.13
[Hibernate] Hibernate 설명  (0) 2013.10.25
[Hibernate] Hibernate Manual  (0) 2013.10.11
[Hibernate] Import sql  (0) 2013.08.20
[Hibernate] Hibernate3 일대다 관계의 객체 저장  (0) 2013.08.15
posted by 뚱2

[JavaScript] Date Format

JavaScript/JavaScript 2013. 10. 15. 14:15

링크 : http://blog.stevenlevithan.com/archives/date-time-format

 

posted by 뚱2

    $.fn.serializeObject = function() {
        var o = {};
        var a = this.serializeArray();

        $.each(a, function() {
            if ( o[this.name] ) {
                if ( !o[this.name].push ) {
                    o[this.name] = [o[this.name]];
                }
                o[this.name].push(this.value || '');
            } else {
                o[this.name] = this.value || '';
            }
        });
        return o;
    };

posted by 뚱2

링크 :http://ldg.pe.kr/framework_reference/hibernate/ver3.1/html/index.html

링크 : http://dev.anyframejava.org/anyframe/doc/core/3.1.0/corefw/guide/hibernate-introduction.html

 

 

 

posted by 뚱2

링크 : http://msdn.microsoft.com/en-us/library/az24scfc.aspx

 

'.Net > .Net' 카테고리의 다른 글

[.Net] Thread Pool  (0) 2013.06.19
[.Net] 런타임에서 어셈블리를 찾는 방법  (0) 2013.05.20
[.Net] 닷넷프레임워크 버전 확인  (0) 2013.05.10
[.Net] TransactedInstaller  (0) 2013.04.22
[.Net] Windows Service Current Directory  (0) 2013.04.20
posted by 뚱2

[Tomcat] Tomcat 튜닝

WAS/Tomcat 2013. 9. 6. 13:04
링크 : http://bcho.tistory.com/788



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

[Tomcat] VM Option UTF-8 설정  (0) 2014.01.01
[Tomcat] Ipv4 사용하기  (0) 2013.12.25
[Tomcat] Tomcat 7.0 번역 문서  (0) 2013.07.31
[Tomcat] Tomcat 6.0 JNDI 설정  (0) 2013.07.29
[Tomcat] Tomcat 5.5. JNDI 설정  (0) 2013.04.04
posted by 뚱2

링크 : http://plugins.jetbrains.com/plugin/?id=2190

링크 : https://marketplace.atlassian.com/plugins/com.atlassian.ide.plugins.idea

 

 

 

스크린샷? : http://whiteship.tistory.com/2493

 

 

posted by 뚱2

링크 : http://fightingmamoru.tistory.com/58

 

 

위 링크를 따라했는데 내 채팅이 전송은 되는데 수신이 안되는 상황이

그래서 옵션을 달리 했다.

 

Server : talk.google.com

Port : 5222

Force SSL 2.0 instead of TLS 체크하지 않고 하면 됨

 

posted by 뚱2

[respond.js] respond.js

JavaScript/respondjs 2013. 8. 26. 15:07

구 버전 브라우져에서 반응형 웹 구현에 도움을 주는 스크립트

링크 : https://github.com/scottjehl/Respond

 

posted by 뚱2

html5를 지원하지 않는 브라우져에서 사용가능하게 하는 자바스크립트

 

링크 : http://code.google.com/p/html5shiv/

 

 

posted by 뚱2

링크 : http://getbootstrap.com/

 

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

[Bootstrap] bootstrap-live-customizer  (0) 2015.07.28
[Bootstrap] Bootstrap-datepicker  (0) 2014.04.24
posted by 뚱2

[Android] YUV420 Format

Mobile/Android 2013. 8. 26. 10:24

링크 : http://iamflower.tistory.com/235


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

[dex] Android Decompile  (0) 2013.05.10
[Json] 안드로이드 Json 처리  (0) 2012.06.15
WebView.addJavascriptInterface 활용  (0) 2010.12.11
[Android] 테트리스  (0) 2010.12.06
posted by 뚱2

[Java] ThreadLocal

Java/Java 2013. 8. 21. 11:29

링크 : http://javacan.tistory.com/entry/ThreadLocalUsage

 

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

[Java] enum에 대해서  (0) 2013.12.24
[Java] Java Garbage Collection  (0) 2013.11.28
[Java] JDBC SQL Server 연결 URL  (0) 2013.07.18
[Java] 윈도우 JDK 버전 확인  (0) 2013.05.10
[Java] jar 파일 실행 시키기  (0) 2013.04.07
posted by 뚱2

링크 : http://krams915.blogspot.kr/2011/01/spring-security-3-full-acl-tutorial.html

posted by 뚱2