반응형
반응형

자바 애플리케이션을 튜닝할때는 먼저 성능튜닝이 필요한지 파악해야 한다.

성능 측정과정은 매우 고되고 언제나 좋은 결과를 얻을 수 있다는 보장도 없기 때문에

목표 성능에 충분하다면 굳이 튜닝을 하지 않는 것이 효율적이다.


"문제는 단 한 곳에 있고 그 하나만 수정하면 된다."


위의 파레토 이론은 성능 튜닝에도 적용된다. 문제가 반드시 하나라는 의미보다는 가장 성능에 영향을 미치는 하나에만 집중해 접근할 필요가 있다는 뜻으로 해석하자. 하나에 집중해서 해결하고 난 다음에 다른 문제 해결을 위해 노력하도록 하자.


무엇을 얻기 위해 무엇을 포기해야 하는지 결정해야 한다.

캐시를 적용해 응답 반응성을 높일 수는 있지만 캐시의 크기가 커지면 풀 GC 시간이 길어질 수 있다.

적은 메모리 사용량을 선택하면 대개 처리 용량이나 응답 반응 시간이 나빠진다.

하나를 선택하면 하나를 포기해야 한다는 것을 염두에 두고 우선순위를 정해 선택하자.




반응형
반응형

10개의 신선하고 유용한 jQuery 플러그인


http://webdesignledger.com/freebies/10-fresh-and-useful-jquery-plugins-2


There are many reasons why you can say jQuery has enormous popularity. Some might say it’s because of its excellent cross browser compatibility, while others will argue that the small footprint is responsible for jQuery’s widespread adoption. While these are valid points, no one can deny that all of the great plugins built by a very passionate community is a big reason as well. So for this post we’ve gathered some of the latest jQuery plugins to be released. In this list you will find some very useful ones that will help you with things like layout, typography, and more.

Jquery Transit

Super-smooth CSS3 transformations and transitions for jQuery — v0.1.3

jquery plugins

Pageslide

A jQuery plugin which slides a webpage over to reveal an additional interaction pane.

jquery plugins

stellar.js

Parallax has never been easier.

jquery plugins

Get turn.js

Is a plugin for jQuery that adds a beautiful transition similar to real pages in a book or magazine for HTML5.

jquery plugins

jQuery Scroll Path

jquery plugins
jquery plugins

Glisse.js

Glisse.js is a simple, responsive and fully customizable jQuery photo viewer. You’ll like the transitions between two pictures entirely assumed by CSS3.

jquery plugins

The Wookmark jQuery plugin

The Wookmark plugin detects the size of the window and automatically organizes the boxes into columns. Resize your browser to see the layout adjust. Note how the columns are approximately of equal height.

jquery plugins

SlabText

A jquery plugin for producing big, bold and responsive headlines.

jquery plugins

Morris.js

Making good-looking graphs shouldn’t be hard. Morris.js is a lightweight library that uses jQuery and Raphaël to make drawing time-series graphs easy.

jquery plugins

HiddenPosition

Position any element to any element, even if they are hidden

jquery plugins

Here's some other articles that you will definitely find useful.

12 Fresh and Free UI PSDs

11 Free Online Books for Web Designers

10 Excellent New Free Fonts

8 Beautiful New Free Fonts

15 High Quality PSD’s that You’ll Actually Use



반응형
반응형

확대 축소
/* 화면 확대 축소 시작 IE 전용 */
var nowZoom = 100; // 현재비율
var maxZoom = 200; // 최대비율(500으로하면 5배 커진다)
var minZoom = 80; // 최소비율

//화면 키운다.
function zoomIn(){
 if(nowZoom < maxZoom){
  nowZoom += 10; //25%씩 커진다.
 }else{
  return;
 }
 document.body.style.zoom = nowZoom + "%";
}

//화면 줄인다.
function zoomOut(){
 if(nowZoom > minZoom){
  nowZoom -= 10; //25%씩 작아진다.
 }else{
  return;
 }
 document.body.style.zoom = nowZoom + "%";
}


반응형

'프로그래밍 > Script' 카테고리의 다른 글

Skeleton to WordPress: Getting up and Running  (0) 2012.08.02
[jQuery] jquery로 iframe 다루기  (0) 2012.06.19
Node.js , Python, Django, Play Framework  (0) 2012.05.29
[javascript] Navigator  (0) 2012.04.30
node.js 외 js 관련  (0) 2012.03.26
반응형
자바스크립트 차트

http://www.humblesoftware.com/flotr2/index


http://www.humblesoftware.com/flotr2/
반응형
반응형

JavaScript에서의 location.href 와 location.replace 의 차이점


자바스크립트에서 페이지 이동 시킬때 location.href를 많이 사용하지만 location.replace 메세드도 종종 이용된다.
두가지 모두 같은 동작을 하는거 같지만 실제로는 아래와 같은 차이점이 있다.

location.href는 객체의 속성이며, loaction.replace()는 메서드(함수)로 작동된다.
href는 페이지를 이동하는 것이기 때문에 뒤로가기 버튼을 누른경우 이전 페이지로 이동이 가능하지만,
replace는 현재 페이지를 새로운 페이지로 덮어 씌우기 때문에 이전 페이지로 이동이 불가능하다.

href는 일반적인 페이지 이동시 이용을 하면 되고,
replace의 경우는 이전페이지로 접근이 필요없는경우 보안상 덮어씌우는 것도 괜찮을듯 하다.

location.href Method

Including the following script will immediately redirect visitors to the URL entered.

<script type="text/javascript">
     location.href='http://www.bloggingdeveloper.com';
</script>
 

location.replace Method

Including the following script will immediately redirect visitors to the URL entered.

<script type="text/javascript">
     location.replace('http://www.bloggingdeveloper.com/');
</script>

The difference between location.href and location.replace

The difference between location.href and location.replace is that the former creates a new history entry on the visitor's browser meaning that if they hit the back button, they can get in a 'redirection loop' which is usually undesirable and may have unwanted side effects.

반응형
반응형

json text를 json object로 바꿀때.

Json.parse() 를 사용한다. 단, json2.js 가 필요하다.

json.stirngify()는 오브젝트를 텍스트로 변환한다.

반응형

+ Recent posts