반응형
반응형
                 


사랑을 하면
여자의 마음은 꽃이 된다.
사랑을 하는 여자만이 자신의 아름다움을
정면으로 마주한다. 떨리는 고백과 수줍은 입맞춤이
꽃이 된 여자의 마음이 활짝 피어오른다.
사랑을 할 때 여자는 가장 진한 향기를 낸다.
나는 사랑받고 있다고, 지금 사랑하고 있다고,


- 이하람의《떠난 뒤에 오는 것들》중에서 -


* 여름이 시작될 무렵
저에게도 사랑이 찾아왔습니다.
그를 만나는 요즘, 만나면 만날수록 내가 참 소중하고
귀한 사람이구나, 느껴집니다. 내 마음도 활짝 피어오르고
있습니다. 꽃이 필 때, 꽃이 지는 것을 두려워하지 않듯.
사랑은 모든 두려움을 이겨내는 힘이 있네요.
꽃이 그러하듯이...
 


반응형

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

지나고 보면 아름다웠다 싶은 것 두 가지  (0) 2014.09.11
덴마크인들은 외롭지 않다  (0) 2014.09.10
혼자가 아니다  (0) 2014.09.05
'성실'과 '실성'  (0) 2014.09.04
모든 아픈 이들에게  (0) 2014.09.03
반응형

Bumpkit: A library for the Web Audio API

Bumpkit is a still-in-progress DAW-inspired library for the Web Audio API. It lets you create mixers, sampler instruments, and more.

bumpkit

 

Basics

Create a mixer with two tracks

var mixer = bumpkit.createMixer().addTrack().addTrack();

Create a new Sampler instrument and load an audio buffer

var sampler = bumpkit.createSampler().connect(mixer.tracks[0]);

bumpkit.loadBuffer('/audio/clap.mp3', function(buffer) {
  sampler.buffer(buffer);
});


 

 

 

 

반응형
반응형

Chartist.js: Simple responsive charts

 

Chartist.js makes it simple to create highly customizable responsive charts. It’s completely built and customizable with SASS, uses SVG, and is DPI independent.

chartist.js

 

Checkout the documentation site at http://gionkunz.github.io/chartist-js/

Checkout this lightening talk that gives you an overview of Chartist in 5 minuteshttps://www.youtube.com/watch?v=WdYzPhOB_c8

Chartist.js is a simple responsive charting library built with SVG. There are hundreds of nice charting libraries already out there, but they are either:

  • not responsive
  • use the wrong technologies for illustration (canvas)
  • are not flexible enough while keeping the configuration simple
  • are not friendly to your own code
  • are not friendly to designers
  • have unnecessary dependencies to monolithic libraries
  • more annoying things

That's why we have started Chartist.js and our goal is to solve all of the above issues.

 

 

 

 

 

 

 

 

반응형
반응형

UILang: A UI-focused programming language


UILang is a UI-focused programming language specifically for web designers. It makes it easy to build interfaces with things like pop overs, galleries, tabs, overlays, and more.

uilang








반응형
반응형

QUnit: A JavaScript Unit Testing framework.

 

QUnit을 이용한 Javascript 단위테스트http://www.nextree.co.kr/p2256/ 

 

What is QUnit?

QUnit is a powerful, easy-to-use JavaScript unit testing framework. It's used by the jQuery, jQuery UI and jQuery Mobile projects and is capable of testing any generic JavaScript code, including itself!

Getting Started

A minimal QUnit test setup:

1
2
3
4
5
6
7
8
9
10
11
12
13
14
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>QUnit Example</title>
<link rel="stylesheet" href="//code.jquery.com/qunit/qunit-1.15.0.css">
</head>
<body>
<div id="qunit"></div>
<div id="qunit-fixture"></div>
<script src="//code.jquery.com/qunit/qunit-1.15.0.js"></script>
<script src="tests.js"></script>
</body>
</html>

The contents of tests.js:

1
2
3
QUnit.test( "hello test", function( assert ) {
assert.ok( 1 == "1", "Passed!" );
});

The result:

Browser Support

QUnit supports the same browsers as jQuery 1.x.

That's IE6+ and Current - 1 for Chrome, Firefox, Safari and Opera.

 ======================================================================

 

jQuery Mockjax: Ajax request mocking

http://github.com/appendto/jquery-mockjax/

jQuery Mockjax provides request/response mocking for ajax requests with jQuery and provides all standard behaviors in the request/response flow.

You may report any issues you may find in the github issue tracking.

jQuery Version Support

The current version of Mockjax has been tested with jQuery 1.3.2 through 2.0.0 with QUnit unit tests, residing in /test.

Browsers Tested

Internet Explorer 6-9, Firefox 3.6 and stable, Safari 5.x, Chrome stable, Opera 9.6-latest.

 

 

반응형
반응형

감정은 습관이다.


감정은 습관이다
국내도서
저자 : 박용철
출판 : 추수밭 2013.10.02
상세보기


 - 무라카미 하루키 인터파크 럭키백


여자없는 남자들


여자 없는 남자들
국내도서
저자 : 무라카미 하루키(Haruki Murakami) / 양윤옥역
출판 : 문학동네 2014.08.28
상세보기



1Q84(book 1)


1Q84 1
국내도서
저자 : 무라카미 하루키(Haruki Murakami) / 양윤옥역
출판 : 문학동네 2009.08.25
상세보기


반응형

+ Recent posts