반응형
반응형

How To Make The Bitty-Q - (A Drink-Can BBQ)

 

 

바베큐 그릴 만들기

 

 

반응형
반응형


How to make an alcohol stove for 1 dollar!








반응형
반응형

 

사람들이 일에 전혀 집중하지 않을 때
가장 뛰어난 사고를 할 수 있다.
마음을 전혀 혹사 하지 않고
아무것도 의식하지 않은 채 텅 비워 둘 때,
오히려 복잡한 문제들이 아주 잘 풀린다.
- 앤 피셔(포춘 원로 작가)

 

 


근면보다는 창의성으로, 인풋이 아닌 아웃풋으로
승부하는 시대엔 적절하게 쉴 줄 아는 것이 경쟁력입니다.
적절히 이완 될 때 놀랄만한 창의적 아이디어들이
떠오르는 경험을 많이 하게 됩니다.
그러나 집중적인 고민 끝, 몰입해서 일한 다음에야
그러한 메카니즘이 작동함을 잊지 말아야 합니다.
반응형
반응형
집중력이란
곧 기쁨을 발견하는 능력이다.
재미있으면 자연히 집중하게 된다.
명상을 시작할 때 치유를 목적으로 배우면
끝내 힐링을 경험하지 못한다. 하는 일을
사랑하고 집중하며 명상을 즐기다 보면
자연히 몸과 마음이 치유됨을
경험한다.


- 해암스님의《마음 비우기》중에서 -


* 기쁨은 샘물과 같습니다.
마른 맨땅에서 솟아나는 것입니다.
즐겁고 재미있고 웃음짓는 곳은 물론이고
힘들고 아프고 쓰라린 곳에서도 솟아납니다.
고통스런 일인데도 그에 몰입하고 집중할 때,
그 집중이 사랑과 감사로 이어질 때,
샘솟듯 터져나오는 것입니다.
기쁨도 발견입니다.

 

반응형

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

좀 더 깊은 치유  (0) 2014.12.24
인생의 맛  (0) 2014.12.23
아, 어머니!  (0) 2014.12.22
'미운정 고운정'  (0) 2014.12.19
땅의 시간, 하늘의 시간  (0) 2014.12.18
반응형

따로 살고 있는 부모님께 전화하면
혹시 부모님의 첫마디가
"네가 웬일이냐?"
라며 걱정 가득한 놀라는 반응인가?
그렇다면 당신의 행동을 뒤돌아봐야 한다.
무슨 일이 있을 때만 전화했다는 뜻이기 때문이다.


- 김양래의《우리 엄마 84.6세까지 치매 막아 드리는 42가지 방법》중에서 -


* 하루에 몇 번이나 부모님께 전화하나요?
어느 조사에 따르면 부모님께 하루에 한 번이라도 전화하는
사람은 열 명에 한두 명이라고 합니다. 대부분 일주일에 한 번,
아니면 한 달에 한 번 한답니다. 그런데 부모님께 자주 전화
드리는 것이 가장 쉬운 치매 예방법이라고 합니다.
나무는 고요하고자 해도 바람이 놔두지 않고
자식이 효도하고자 해도 부모님은 기다려주지 않습니다.
나중에는 하고 싶어도 못하는 것이 효도입니다.
어쩌면 지금 해드리는 한 통의 전화가
가장 큰 효도일 수도 있습니다.

반응형

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

인생의 맛  (0) 2014.12.23
기쁨을 발견하는 능력  (0) 2014.12.22
'미운정 고운정'  (0) 2014.12.19
땅의 시간, 하늘의 시간  (0) 2014.12.18
고통의 기록  (0) 2014.12.17
반응형

[javascript] DropzoneJS - drag'n'drop file uploads with image previews library

 

http://www.dropzonejs.com/

 

Github : https://github.com/enyo/dropzone

 

Dropzone.js 

Installation

Download the standalone dropzone.js and include it like this:

<script src="./path/to/dropzone.js"></script>

Dropzone is now activated and available as window.Dropzone.

Dropzone does not handle your file uploads on the server. You have to implement the code to receive and store the file yourself.

With component

If you use component you can just add dropzone as a dependency:

"enyo/dropzone": "*"

Then include it like this:

var Dropzone = require("dropzone");

so it is activated and scans the document.

The basic CSS markup is also included with component, but if you want it to look the same as on this page, you have to download the CSS (see below).

With RequireJS

Dropzone is also available as an AMD module for RequireJS.

You can find the dropzone-amd-module in the downloads folder.


This is all you need to get dropzone up and running. But if you want it to look as cool as my dropzone, you’ll need to download the css/dropzone.css, images/spritemap.png and images/spritemap@2x.png as well from the downloads folder.

If you change the folder names make sure you adjust the paths in the css.

The @2x.png spritemap is to support high density (retina) displays.

Usage

The typical way of using dropzone is by creating a form element with the class dropzone:

<form action="/file-upload"
      class="dropzone"
      id="my-awesome-dropzone"></form>

That’s it. Dropzone will find all form elements with the class dropzone, automatically attach itself to it, and upload files dropped into it to the specified action attribute. The uploaded files can be handled just as if there would have been a html input like this:

<input type="file" name="file" />

If you want another name than file you can configure dropzone with the option paramName.

If you’re using component don’t forget to require("dropzone"); otherwise it won’t be activated.

If you want your file uploads to work even without JavaScript, you can include an element with the class fallback that dropzone will remove if the browser is supported. If the browser isn’t supported, Dropzone will not create fallback elements if there is a fallback element already provided. (Obviously, if the browser doesn’t support JavaScript, the form will stay as is)

Typically this will look like this:

<form action="/file-upload" class="dropzone">
  <div class="fallback">
    <input name="file" type="file" multiple />
  </div>
</form>
반응형

+ Recent posts