분류 전체보기473 PostgresQL #### # 참고 - [https://d2.naver.com/helloworld/227936](https://d2.naver.com/helloworld/227936) #### # PostgresQL ( 포스트-그레스-큐엘 )? 1. 15년 이상의 오랜 역사를 가지고 최근에는 1년 여반에 새로운 버전인 9.2버전을 출시함. 2. PostgreSQL([http://www.postgresql.org](http://www.postgresql.org))는 북미와 일본에서는 높은 인지도가 높음. 3. 엔터프라이즈급 DBMS의 기능과 차세대 DBMS에서나 볼 수 있는 기능을 제공하는 오픈소스 DBMS이다. 4. Oracle과 유사점이 많음. #### # 역사 - PostgresSQL은 Ingres(INteractiv.. 2019. 7. 29. <a href mailto: 메일 발송 팝업 링크 메일보내기 메일보내기 2019. 7. 29. fastcopy batch # fastcopy bash ```bash @echo off rem "C:\Users\jihoon14.kim\FastCopy\FastCopy.exe" /cmd=diff /exclude="Thumbs.db;.DS_Store;Desktop.ini;DfsrPrivate\" /filelog="D:\Work\doc\FastCopy_log\FastCopy.log" /speed=full /error_stop=FALSE /force_close /acl=FALSE /verify=TRUE "C:\WEB_APP\workspace\web-module" /to="C:\WEB_APP\workspace\web-module" setlocal @set YEAR=%date:~0,4% @set MONTH=%date:~5,2% @set D.. 2019. 7. 28. ECMA6 # ECMA6 ##### [source : https://jsfiddle.net/softm/vcrfj2tu/ ](https://jsfiddle.net/softm/vcrfj2tu/) ※ 참고 : https://www.sitepoint.com/javascript-versioning-es6-es2015 # ECMAScript 2015 Releases - Classes - Promises - Arrow functions - ES Modules - Generators and Iterators # ES2016 - Array.prototype.includes // pre-ES2016: const hasBob = names.indexOf('bob') > -1; // ES2016: const hasBob = names... 2019. 7. 27. date time random #### date time random ```javascript function randomTime(start, end) { var diff = end.getTime() - start.getTime(); var new_diff = diff * Math.random(); var date = new Date(start.getTime() + new_diff); return date; } document.write( randomTime(new Date(), new Date()) ); ``` 2019. 7. 26. Lambda에대해서 #### Lambda에대해서 #### Lambda(λ) 란? .각종프로그래밍언어의Lambda function 은논리수리학, 컴퓨터공학의Lambda 대수에서차용해온개념입니다. .흔히Lambda 를표현하는문자λ은그리스문자로,알파벳의L 과같습니다. .Lambda 대수는변수, 추상화, 적용이라는개념이있는데, 주로선언되는양식은(변수..) .{추상화단계} 형태이며, anObject.someFunction(lamdaFunction); 과같이함수의일반적호출형태를통해‘적용’하게됩니다. .함수대신에, 추상화라는개념이들어간다는점에서는Lambda를지원하는언어의공통점입니다. .Java 8 이전에,가장흔히접해보았을Lambda와유사한문법으로는Javascript의anonymous function 이있습니다. #### Lambda 의.. 2019. 7. 25. 이전 1 ··· 35 36 37 38 39 40 41 ··· 79 다음