본문 바로가기

웹스토리

(37)
JS 라이브러리 사이트 inputmask - http://javascriptools.sourceforge.net/samples/sample_mask.html
스크립트 bytes 단위 처리 function byteCalculation(bytes) {var bytes = parseInt(bytes);var s = ['bytes', 'KBytes', 'MBytes', 'GBytes', 'TBytes', 'PBytes'];var e = Math.floor(Math.log(bytes)/Math.log(1024)); if(e == "-Infinity") return "0 "+s[0]; else return (bytes/Math.pow(1024, Math.floor(e))).toFixed(2)+" "+s[e];}
AXISJ 예제 소스 ## 어제오늘 날짜 구하기var now = new Date();var toDay = now.print("yyyy-mm-dd hh:mi:ss");now.setDate(now.getDate()-1);var yesterDay = now.print("yyyy-mm-dd hh:mi:ss");
JSP에서 JSTL과 EL사용하기 펌 - http://kdarkdev.tistory.com/288 목표 : JSTL과 EL을 사용함으로써 와 같은 스크립팅을 없앨 수 있다. JSP페이지 상에 자바 소스는 이제 안녕~ Expression Language는 JSP에서 기본으로 지원한다. 세팅을 해야 하는 것은 JSTL(JavaServer Pages Standard Tag Library)이다. 1. 다운로드 http://www.apache.org - Jakarta - Taglibs - Standard - JSTL 1.1 다운로드 (jakarta-taglibs-standard-1.1.2.zip) JSTL 매뉴얼 : http://pds17.egloos.com/pds/201002/12/66/JSTL-Reference-11.pdf 2. 설치 다운로드..
HTML5 도구 사이트 웹 브라우져 HTML 기능지원 확인 사이트 - http://html5test.com/
AngularJS 관련 사이트 사이트 - https://angularjs.org/ 사이트 - 앵귤러js(AngularJs) 스타일 가이드 번역 - http://blog.nacyot.com/articles/2013-10-30-angularjs-style-guide/강좌 - https://www.codeschool.com/courses/shaping-up-with-angular-js강좌 - http://www.w3schools.com/angular/강좌 - 하루만에 끝내는 AngularJS - http://soomong.net/blog/2014/01/20/translation-ultimate-guide-to-learning-angularjs-in-one-day/
성능테스트툴 jMeter사용법 http://www.cikorea.net/lecture/view/289/page/1
부트스트랩 3.0 소개와 다운로드 http://demun.tistory.com/2351