반응형
반응형

Knockout.js: Simpler dynamic JavaScript UIs

knockout

 

반응형
반응형

성공할 것이라고 믿는 사람은 성공하고,
실패할 것이라고 믿는 사람은 실패한다.
대부분의 실패는 ‘안 된다’라는 그 마음에서 비롯된다.
무의식중에 똬리를 틀고 있는 그 고정관념이
‘이 일은 정말 불가능해’라고 속삭이면
그는 정작 해보지도 않고 포기한다.
- 상추 CEO 류근모

 

미리 안된다고 생각하고 포기해선 되는 일이 없습니다.
된다고 생각하고 추진하면
안되는 경우도 있지만 되는 경우도 있습니다.
미리 한계를 그을 필요는 없습니다.
한계를 긋지 않으면 끊임없이 어려움을 돌파하는 아이디어가 샘솟게 됩니다.
그게 사람입니다. (정이만 대표, ‘활력경영’에서 인용)

반응형
반응형
백발백중


살아가면서
어떤 것에든 탁월해지려면
반복하고 훈련해야 한다.
훈련하고, 반복하고,
직관적으로 구사할 수 있을 때까지
그 기술을 익혀야 한다.


- 파울로 코엘료의《알레프》중에서 -


* 처음 한 번은 쉽습니다.
그러나 반복 훈련은 어렵습니다.
엄청난 에너지와 인내력이 필요합니다.
백발백중, 금메달, 챔피언, 프로는
모두 그 반복 훈련이 주는
선물입니다.



 

반응형

'아침편지' 카테고리의 다른 글

용서  (0) 2013.11.09
지금 이대로도 충분합니다  (0) 2013.11.08
혼자서 앓는 병  (0) 2013.11.06
허물  (0) 2013.11.05
낙천성  (0) 2013.11.04
반응형

 

 

 

 

 

 

 

 

 

 

땅에서 넘어진 자 땅을 짚고 일어나야 한다.
땅을 떠나서 일어난다는 것은 있을 수 없다. - 지눌 스님 -

 

 

 

 

 

 

 

 

 

 

 

 

 

.

반응형
반응형

[1] 프로시저 총 목록...

Select ROUTINE_NAME from INFORMATION_SCHEMA.ROUTINES

 

[2] 프로시저 소스 보기

 sp_helptext  프로시저명

 

[3] 프로시저 정보 보기

sp_help 프로시저명

반응형
반응형

HTML5 File Uploads with jQuery

 

http://tutorialzine.com/2011/09/html5-file-upload-jquery-php/

 

 

Demo    Download

 

What are HTML5 File Uploads?

Uploading files using HTML5 is actually a combination of three technologies – the new File Reader API, the also new Drag & Drop API, and the good ol’ AJAX (with the addition of binary data transfer). Here is a description of a HTML5 file upload process:

  1. The user drops one or more files from their file system to the browser window by dragging. Browsers that support the Drag & Drop API will fire an event, which alongside other useful information, contains a list of files that were dropped;
  2. Using the File Reader API, we read the files in the list as binary data, and store them in memory;
  3. We use the new sendAsBinary method of the XMLHttpRequest object, and send the file data to the server.

Sounds complicated? Yes, it could use some optimization. Fortunately, there are jQuery plugins that can do this for us. One of them is Filedrop, which is a wrapper around this functionality, and provides features for limiting maximum file size and specifying callback functions, which is really handy for integrating it into your web applications.

Currently file uploads work only in Firefox and Chrome, but upcoming major versions of the other browsers also include support for it. A simple fallback solution for older browsers would be to display a regular file input dialog, but we won’t be doing this today, as we will be focusing our attention on using HTML5.

So lets get started!

반응형

+ Recent posts