반응형
반응형



문득 내 마음 안에 있는
상처 입은 아이가 사랑스럽게 느껴진다.
그 아이를 사랑스러운 눈길로 다독이자
어느새 보채던 아이가 새근새근 잠이 든다.
그 아이에게 필요한 것은 다른 사람의 사랑이 아니라
바로 나 자신의 사랑이었던 것이다. 내가 좀더
그 아이에게 너그러워진다면 그 아이는
멈추었던 성장을 계속해 나갈 것이다.


- 김혜남의《어른으로 산다는 것》 중에서 -


* 내 안의 '아이'가 아직도 보채고 있나요?
저 먼 옛날의 상처 때문에 아직도 울고 있나요?
이제는 더 보채지 않게 사랑의 빛을 보내야 합니다.
우는 아이에서 웃는 아이로, 상처받은 아이에서
상처를 이겨낸 아이로 자라게 해야 합니다.
내 안에 있는 아이가 잘 자라나야
나도 잘 성장할 수 있습니다.


반응형

'생활의 발견 > 아침편지' 카테고리의 다른 글

'지금, 여기'  (0) 2014.07.11
인연  (0) 2014.07.10
어루만짐  (0) 2014.07.08
마음의 빚  (0) 2014.07.07
마음의 해방  (0) 2014.07.05
반응형

훌륭한 통치자가 되려면
들리지 않는 소리를 듣는 훈련을 하셔야 합니다.
통치자가 백성들의 마음속 생각을 잘 듣고,
드러내지 않는 그들의 심정과 표현하지 않는 고통,
말하지 않는 불만을 들을 수 있을 때,
그때 비로소 무엇이 문제인지 이해할 수 있고
백성들이 진실로 원하는 일들을 행할 수 있는 것입니다.
- 김위찬, ‘리더십 우화’중 (‘필 잭슨의 일레븐 링즈’에서 재인용)

 

 

구성원의 소리를 제대로 듣는 것은 매우 중요합니다.
그러나 더 중요한 것은 직원들이 편안하게
아무 이야기나 할 수 있는 분위기를 만드는 것입니다.
그것보다 더 중요한 것은
들리지 않는 것을 들을 줄 알아야 한다는 것입니다.
내가 아닌 상대의 입장에 설 때 비로소
들리지 않는 것이 들리기 시작합니다.

 

반응형
반응형



                                                       

그녀가 나를 아주 유심히
지켜보고 있다는 사실을 눈치챘다.
그녀는 내 팔을 어루만지거나 목을 긁어주면
내가 차분해진다는 걸 알아차렸다. 그녀는 또
내 머리를 긁어주고 내 귀를 문질러주었다.
그녀의 그런 어루만짐에 나는 편안해졌고,
안절부절 못하는 일이 줄었다. 전에는
한 번도 경험해보지 못한
기쁨과 고요가 있다.


- 존 엘더 로비슨의《나를 똑바로 봐》중에서 -


* '아스퍼거 증후군'이라는 난치병 환자의 체험글입니다.
유심히 지켜보고 어루만지는 것만으로도 편안해지고
아픈 몸과 마음에 기쁨과 고요가 찾아옵니다.
'건강하다'는 사람에게도 마찬가지입니다.
겉은 멀쩡해 보이지만 속은 깊이 멍들고
지쳤을 때 누군가 사랑과 정성으로
지켜보고 어루만지면 다가오던
병도 한걸음 물러갑니다.
기쁨과 고요가 옵니다.


반응형

'생활의 발견 > 아침편지' 카테고리의 다른 글

인연  (0) 2014.07.10
내 안의 '아이'  (0) 2014.07.09
마음의 빚  (0) 2014.07.07
마음의 해방  (0) 2014.07.05
휴(休)  (0) 2014.07.04
반응형

Make your HTML5 video behave like a background cover image with this simple jQuery extension


CoverVid: HTML5 background videos


CoverVid is a simple jQuery extension that lets you use an HTML5 video as a cover-size background image on a website. It’s easy to use and scales to whatever the parent element is.

covervid



CoverVid

Make your HTML5 video behave like a background cover image with a simple jQuery extension. Very simple to use, just follow these few steps...

Drop the covervid.min.js file into your javascript folder and load it after jQuery.

<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.10.2/jquery.min.js"></script>
<script src="covervid.min.js"></script>

It is important to note that the video you target will use its' parent element to scale. With that in mind, we will create some simple markup and add some base styling to size the videos' parent/wrapper element.

<div class="covervid-wrapper">
    <video class="covervid-video" autoplay loop poster="img/video-fallback.png">
        <source src="videos/clouds.webm" type="video/webm">
        <source src="videos/clouds.mp4" type="video/mp4">
    </video>
</div>
.covervid-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

Now, we simply call the coverVid() function on the video element, passing through the native dimensions of the video.

$('.covervid-video').coverVid(1920, 1080);


반응형
반응형

jQuery Cheat Sheet: A quick API reference

http://oscarotero.com/jquery/

This colorful jQuery Cheat Sheet is your one-stop reference for the jQuery API. It covers selectors, attributes, CSS, events, effects, and much more.

jquery

 

 

 

 

 

 

반응형
반응형

Passwordless: Authentication middleware for Express & Node.js

Javascript / Added on July 4, 2014 / Add to favorites

Passwordless is a token-based password authentication middleware for Express and Node.js. It’s faster to deploy, with just a single form and text field, with no need for separate registration, login, and lost password pages.

passwordless

node.js/express module to authenticate users without password 

 


Passwordless

Passwordless is a modern node.js module for express that allows authentication and authorization without passwords by simply sending one-time password (OTPW) tokens via email or other means. It utilizes a very similar mechanism as the reset password feature of classic websites. The module was inspired by Justin Balthrop's article "Passwords are Obsolete"

Check out a demo and further documentation on https://passwordless.net or have a look at an example.

Token-based authentication is...

  • Faster to implement compared to typical user auth systems (you only need one form)
  • Better for your users as they get started with your app quickly and don't have to remember passwords
  • More secure for your users avoiding the risks of reused passwords

 

반응형

+ Recent posts