- 授权协议: MIT
- 开发语言: JavaScript
- 操作系统: 跨平台
- 软件首页: https://github.com/kylestetz/lissajous
- 软件文档: https://github.com/kylestetz/lissajous
软件介绍
Lissajous 是一个 JavaScript 的实时音频的性能工具。它将创建震荡器和采样器的方法封装成 API,允许通过简单的数行代码提升歌曲的构建和即兴创作。
Lissajous 存在于 JavaScript 控制台中,专门为 Firefox 和 Chrome 所设计。
示例代码:
// make a triangle wave that loops the notes 69, 67, then 60 in quarter note intervals t = new track() t.tri().beat(4).notes(69,67,60) // load a sample, set the beat to quarter notes, set the note length to a half measure, // set the envelope to give it a little attack and release, and loop the notes 69, 67, then 60 s = new track() s.sample(buffer) s.beat(4).nl(8).adsr(0.1,0,1,1).notes(69,67,60) // load an array of three AudioBuffers called 'drums', play them in 8th notes and give them // the sequence drums[0], drums[2], drums[1], drums[2] d = new track() d.sample(drums) d.beat(2).sseq(0,2,1,2) // load a piano sample and mess it up real good p = new track() p.sample(pianoSample) p.beat(2).nl(2).speed(0.5).clamp(1/16).clshift(-1/16)
谷歌的断舍离:互联网企业的破坏式创新
[日]辻野晃一郎 / 樊颖 / 机械工业出版社 / 2018-1 / 45.00
本书主要分为三部分: 第一部分主要讨论了世界当下如火如荼的互联网企业进军传统产业大潮,并探讨了传统企业在互联网时代的救赎之路。 第二部分主要探讨了成功体验的反面:速度与迭代,并讨论了传统企业之所以无法实现迭代与快速发展的关键原因。介绍互联网公司如何通过组织精简流程来实现高速竞争时代的机动性。 第三部分讨论了互联网时代究竟需要什么样的人才,传统企业的员工应当怎样投身互联网企业才能避......一起来看看 《谷歌的断舍离:互联网企业的破坏式创新》 这本书的介绍吧!
