This file contains 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
using System; | |
using System.Collections.Concurrent; | |
using System.Collections.Generic; | |
using System.Linq; | |
using System.Text; | |
using System.Threading.Tasks; | |
using System.Net.Mail; | |
using System.Threading; | |
namespace ConcurrentSMTP |
This file contains 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
/*! | |
* Cedric Van Goethem | |
* Rudimentary Twinkle Twinkle Little Star demo for | |
* http://wavepot.com/ | |
*/ | |
var transpose = 0.5; | |
var volume = 0.1; | |
var tempo = 2; | |
var notes = {'A': 440, 'B': 493.88, 'C': 523.25, 'D': 587.33, 'E': 659.25, 'F': 698.46, 'G': 783.99 }; |
OlderNewer