By Mousie, 30 March, 2017 Paintbrush Tune Player var noteFrequencies = { "4": { "0":{ "note": "C", "frequency": 261 }, "1":{ "note": "C#", "frequency": 277 }, "2":{ "note": "D", "frequency": 293 }, "3":{ "note": "D#", "frequency": 311 }, "4":{ "note": "E", "frequency": 329
By Mousie, 4 March, 2017 Timestamp Conversion Tool var regexStandardHH = /([0-9]{2}:[0-9]{2}:[0-9]{2}.[0-9]{3})/; var regexStandardnoHH = /([0-9]{2}:[0-9]{2}.[0-9]{3})/; var regexHex = /([0-9A-F]{8})/ig; // Formats strings nicely. // Stolen from https://stackoverflow.com/questions/610406/javascript-equivalent-to-printf-string-format // First, checks if it isn't implemented yet. if (!String.prototype.format) { String.prototype.format = function() { var args = arguments; return this.replace(/{(\d+)}/g, function(match, number) { return typeof args[number] != 'un
By khyizang, 2 March, 2017 Complete the MWM phrase tool This dev tool inputs an incomplete MWM phrase and outputs a complete MWM phrase, including the leading 0x9X and trailing CHKProps to Mousie for hacking the Javascript and sharing it with all of us