반응형
반응형

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