多媒体工具包 Beep.js
- 授权协议: MIT
- 开发语言: JavaScript HTML/CSS
- 操作系统: 跨平台
- 软件首页: https://github.com/stewdio/beep.js
软件介绍
Beep.js 是一款使用 WebAudio API 基于浏览器的 JavaScript 工具包,用来开发声音合成应用。你可以使用它来做一个电子琴。
示例:
var trigger = new BEEP.Trigger( '2Eb', function(){
// Let’s call this our “Foundation Voice”
// because it will sing the intended Note.
this.voices.push(
new BEEP.Voice( this.note, this.audioContext )
.setOscillatorType( 'sine' )
.setGainHigh( 0.4 )
)
// This Voice will sing a Perfect 5th above the Foundation Voice.
this.voices.push(
new BEEP.Voice( this.note.hertz * 3 / 2, this.audioContext )
.setOscillatorType( 'triangle' )
.setGainHigh( 0.1 )
)
// This Voice will sing 2 octaves above the Foundation Voice.
this.voices.push(
new BEEP.Voice( this.note.hertz * 4, this.audioContext )
.setOscillatorType( 'sawtooth' )
.setGainHigh( 0.01 )
)
// This Voice will sing 1 octave below the Foundation Voice.
this.voices.push(
new BEEP.Voice( this.note.hertz / 2, this.audioContext )
.setOscillatorType( 'square' )
.setGainHigh( 0.01 )
)
})
安全测试指南(第4版)
OWASP基金会 / 电子工业出版社 / 2016-7-1 / CNY 89.00
软件安全问题也许是这个时代面临的*为重要的技术挑战。Web应用程序让业务、社交等网络活动飞速发展,这同时也加剧了它们对软件安全的要求。我们急需建立一个强大的方法来编写和保护我们的互联网、Web应用程序和数据,并基于工程和科学的原则,用一致的、可重复的和定义的方法来测试软件安全问题。本书正是实现这个目标的重要一步,作为一本安全测试指南,详细讲解了Web应用测试的“4W1H”,即“什么是测试”、“为什......一起来看看 《安全测试指南(第4版)》 这本书的介绍吧!
