[Mac] Python virtualenv 사용하기

OS/Mac 2014. 7. 12. 21:14

링크: http://gadgetlip.tistory.com/entry/OS-X-Mavericks%EC%97%90%EC%84%9C-Python%ED%99%98%EA%B2%BD-%EB%A7%8C%EB%93%A4%EA%B8%B0

링크: http://liyoucat.com/220053714784

'OS > Mac' 카테고리의 다른 글

[Mac] Parallels Command + Space로 한영전환하기  (0) 2014.07.30
[Mac] Packet Capture  (0) 2014.07.17
[Mac] find + grep으로 파일 찾기  (0) 2014.06.11
[Mac] 콜솔에서 IP 확인하는 방법  (0) 2014.05.14
[OSX] Unix 프로세스 관리 (ps)  (0) 2014.04.08
posted by 뚱2

[JavaScript] linqjs

카테고리 없음 2014. 7. 11. 11:00

링크: http://linqjs.codeplex.com/

점점 웹과 CS의 경계가 무너지는 듯 하다.

posted by 뚱2

링크: http://jamesallardice.github.io/Placeholders.js/


posted by 뚱2

AngularJS + ReactJS 조합으로 속도를 향상시킬수 있다고 하는데 살펴봐야 할 듯.


http://facebook.github.io/react/


posted by 뚱2

링크: http://ejohn.org/blog/javascript-method-overloading/


Overriding 기능찾다가 찾게 되었다. 나중에 써먹어야겠다.

참고로 존레식은 jQuery 만든 사람이다.


// addMethod - By John Resig (MIT Licensed)

function addMethod(object, name, fn){

    var old = object[ name ];

    object[ name ] = function(){

        if ( fn.length == arguments.length )

            return fn.apply( this, arguments );

        else if ( typeof old == 'function' )

            return old.apply( this, arguments );

    };

}



posted by 뚱2

링크: http://www.sean-o.com/jquery/jmp3/

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

[jQuery] jQuery form validation  (0) 2014.06.05
[jQuery] jquery-validation document  (0) 2014.05.07
[jQuery] jQuery-File-Upload  (0) 2014.05.06
[jQuery] jQuery Form validator  (0) 2013.11.18
[jQuery] jQuery.serializeObject 만들기  (0) 2013.10.15
posted by 뚱2

[Internet] 인터넷 미디어 타입

일반 2014. 6. 24. 18:29

링크: http://en.wikipedia.org/wiki/Internet_media_type#Type_audio


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

[Chrom] 크롬 알람 사용 중지  (0) 2014.09.03
[png] png최적화 pngguant  (0) 2014.07.14
[CI] Continuous Intergation by Martin Fowler (지속적 통합)  (0) 2014.04.02
[REST] REST API 설계  (0) 2014.01.21
노땅 개발자가 가야할길  (0) 2014.01.19
posted by 뚱2

[Java] Java Installer IzPack

Java/Java 2014. 6. 24. 17:53

링크: http://izpack.org/

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

[Java] 자바 매크로  (0) 2015.01.20
[Java] HikariCP Connection Pool  (0) 2014.10.12
[Java] Current Project classpath  (0) 2014.05.31
[Java] Cron 문법  (0) 2014.03.31
[Java] Open Source Installers Generators in Java  (0) 2014.01.07
posted by 뚱2

링크: https://github.com/mbostock/d3/wiki/Gallery

문서: https://github.com/mbostock/d3/wiki

한글문서: https://github.com/zziuni/d3/wiki

'JavaScript > HighCharts / D3' 카테고리의 다른 글

[HightCharts] HightCharts Demo and API Documents  (0) 2014.06.23
posted by 뚱2

Demo: http://www.highcharts.com/demo

API Reference: http://api.highcharts.com/highcharts

'JavaScript > HighCharts / D3' 카테고리의 다른 글

[D3] 시각화 프레임워크 D3js  (0) 2014.06.23
posted by 뚱2

[JPA] @TableGenerator

Java/Hibernate / JPA 2014. 6. 23. 11:25

링크: http://wiki.eclipse.org/EclipseLink/UserGuide/JPA/Basic_JPA_Development/Entities/Ids/TableGenerator

왜? @TableGenerator를 사용해야 하는가? : http://kkamdung.tistory.com/74


테이블 (MySQL)

CREATE TABLE `TB_SEQUENCE` (

  `SEQ_NAME` varchar(255) NOT NULL COMMENT '시퀀스 이름',

  `SEQ_COUNT` bigint(20) DEFAULT NULL COMMENT '시퀀스 카운트',

  PRIMARY KEY (`SEQ_NAME`)

) ENGINE=InnoDB DEFAULT CHARSET=utf8;


Java Entity (Hbernate)

...

@Id

@TableGenerator(

        name = "TEST_SEQ",

        table = "TB_SEQUENCE",

        pkColumnName = "SEQ_NAME",

        valueColumnName = "SEQ_COUNT",

        pkColumnValue = "TEST_SEQ",

        initialValue = 0,

        allocationSize = 1

)

@GeneratedValue(strategy = GenerationType.TABLE, generator = "TEST_SEQ")

@Column(name = "ID", length = 11)

private Integer id;

...


posted by 뚱2

[Python] Python Tutorial

Language 2014. 6. 22. 12:26

링크: https://docs.python.org/2.7/tutorial/index.html

링크: https://docs.python.org/3/tutorial/index.html

posted by 뚱2

[ScalaJs] Scala.js

JavaScript/JavaScript 2014. 6. 22. 11:49

참 재미있는 개발이다.

서버사이드 언어를 자바스크립트로 만들다니.

링크: http://www.scala-js.org/

posted by 뚱2

링크: http://chadly.net/2012/09/lazy-loading-an-observable-array-with-knockout-js/

posted by 뚱2

링크: http://tomcat.apache.org/tomcat-7.0-doc/jdbc-pool.html#JNDI_Factory_and_Type

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

링크: http://rocksea.tistory.com/71

posted by 뚱2

링크: http://www.howtocreate.co.uk/tutorials/javascript/browserwindow


function getSize() {

  var myWidth = 0, myHeight = 0;

  if( typeof( window.innerWidth ) == 'number' ) {

    //Non-IE

    myWidth = window.innerWidth;

    myHeight = window.innerHeight;

  } else if( document.documentElement && ( document.documentElement.clientWidth || document.documentElement.clientHeight ) ) {

    //IE 6+ in 'standards compliant mode'

    myWidth = document.documentElement.clientWidth;

    myHeight = document.documentElement.clientHeight;

  } else if( document.body && ( document.body.clientWidth || document.body.clientHeight ) ) {

    //IE 4 compatible

    myWidth = document.body.clientWidth;

    myHeight = document.body.clientHeight;

  }

  return [myWidth, myHeight];

}



function getScrollXY() {

  var scrOfX = 0, scrOfY = 0;

  if( typeof( window.pageYOffset ) == 'number' ) {

    //Netscape compliant

    scrOfY = window.pageYOffset;

    scrOfX = window.pageXOffset;

  } else if( document.body && ( document.body.scrollLeft || document.body.scrollTop ) ) {

    //DOM compliant

    scrOfY = document.body.scrollTop;

    scrOfX = document.body.scrollLeft;

  } else if( document.documentElement && ( document.documentElement.scrollLeft || document.documentElement.scrollTop ) ) {

    //IE6 standards compliant mode

    scrOfY = document.documentElement.scrollTop;

    scrOfX = document.documentElement.scrollLeft;

  }

  return [ scrOfX, scrOfY ];

}


posted by 뚱2

[JavaScript] RegExr

JavaScript/JavaScript 2014. 6. 14. 00:15

자바스크립트 정규표현식 테스트 하기 좋은 곳

링크: http://www.regexr.com/


posted by 뚱2

[Highlight] Document

JavaScript/Highlight 2014. 6. 13. 16:27

링크: http://highlightjs.readthedocs.org/en/latest/api.html



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

[Highlight] highlight.js  (0) 2013.11.27
posted by 뚱2

링크: https://help.github.com/articles/github-flavored-markdown

링크: https://help.github.com/articles/markdown-basics

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

[Markdown] Markdown syntax  (0) 2013.12.17
posted by 뚱2

[Mac] find + grep으로 파일 찾기

OS/Mac 2014. 6. 11. 15:10

링크: http://geundi.tistory.com/114



# 공백문자 처리

find . -type f -print0 | xargs -0 grep string

'OS > Mac' 카테고리의 다른 글

[Mac] Packet Capture  (0) 2014.07.17
[Mac] Python virtualenv 사용하기  (0) 2014.07.12
[Mac] 콜솔에서 IP 확인하는 방법  (0) 2014.05.14
[OSX] Unix 프로세스 관리 (ps)  (0) 2014.04.08
[OSX] OSX 파일구조  (0) 2014.04.07
posted by 뚱2

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

posted by 뚱2

링크: http://ehcache.org/documentation/integrations/hibernate

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

[Hibernate] Configuration-Logging  (0) 2014.08.08
[JPA] @TableGenerator  (0) 2014.06.23
[Hibernate] Hibernate Performance Optimization  (0) 2014.05.27
[Hibernate] Hibernate Tutorial Site  (0) 2014.05.25
[Hibernate] Hibernate Query Language  (0) 2014.05.22
posted by 뚱2

링크: http://groovy.codehaus.org/Korean+Home

posted by 뚱2

Gradle: http://kwonnam.pe.kr/wiki/gradle

Groovy: http://groovy.codehaus.org/Korean+Beginners+Tutorial

'Java > Groovy / Gradle' 카테고리의 다른 글

[Gradle] User Guide  (0) 2015.03.03
[Groovy] Groovy Korea Homepage  (0) 2014.06.06
[Gradle] Maven을 넘어 Gradle로 가자  (0) 2014.06.05
[Gradle] Gradle 사용자 가이드  (0) 2013.12.18
[Gradle] Gradle 에 대해서...  (0) 2013.11.29
posted by 뚱2

[Redis] Messaging with Redis

Open Source 2014. 6. 5. 16:45

http://www.javacodegeeks.com/2012/10/redis-pubsub-using-spring.html

http://spring.io/guides/gs/messaging-redis/

번역: http://blog.softwareinlife.com/2013/05/building-applications-with-spring-data.html




posted by 뚱2

[Git] Git Server 설치

VCS/Git 2014. 6. 5. 16:42
posted by 뚱2

[Git] Git 명령어 정리

VCS/Git 2014. 6. 5. 16:39

링크: http://blog.outsider.ne.kr/572

'VCS > Git' 카테고리의 다른 글

[Git] Git Tutorials and Training (Atlassian)  (0) 2014.07.13
[Git] Git Server 설치  (0) 2014.06.05
[Git] SVN 능력자를 위한 git 개념 가이드  (0) 2014.04.04
[Git] Set up SSH for Git  (0) 2014.04.04
[Git] git command를 편하게 변경하기  (0) 2014.01.15
posted by 뚱2

링크: http://kwon37xi.egloos.com/4747016

'Java > Groovy / Gradle' 카테고리의 다른 글

[Gradle] User Guide  (0) 2015.03.03
[Groovy] Groovy Korea Homepage  (0) 2014.06.06
[Gradle] Gradle 사용자 가이드.  (0) 2014.06.05
[Gradle] Gradle 사용자 가이드  (0) 2013.12.18
[Gradle] Gradle 에 대해서...  (0) 2013.11.29
posted by 뚱2

링크: http://경support.microsoft.com/default.aspx?scid=kb;en-us;306759

posted by 뚱2

링크: http://blog.naver.com/goolungsoi?Redirect=Log&logNo=10112463395

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

[jQuery] jQuery plugin jmp3  (0) 2014.06.25
[jQuery] jquery-validation document  (0) 2014.05.07
[jQuery] jQuery-File-Upload  (0) 2014.05.06
[jQuery] jQuery Form validator  (0) 2013.11.18
[jQuery] jQuery.serializeObject 만들기  (0) 2013.10.15
posted by 뚱2