This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* | |
Put this code on a page or paste on your console, then focus on the page | |
and try to press keys from q...p and a...l | |
*/ | |
const getKeyFrequency = n => Math.pow(2, (n - 49) / 12) * 440; | |
const audioCtx = new AudioContext(); | |
const playing = {}; | |
window.addEventListener('keydown', e => { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
public interface IRtdClient | |
{ | |
object GetValue(params object[] args); | |
} | |
public class RtdClient : IRtdClient | |
{ | |
readonly string _rtdProgId; | |
static IRtdServer _rtdServer; |