Skip to content

Instantly share code, notes, and snippets.

local function getPathDelimiter()
local os = reaper.GetOS()
if os == 'Win32' or os == 'Win64' then
return '\\'
else
return '/'
end
end
local PD = getPathDelimiter()
@carrus2049
carrus2049 / dj-controller-in-html5-css3-and-jquery.markdown
Created January 30, 2023 06:07
DJ Controller in HTML5, CSS3 and jQuery

DJ Controller in HTML5, CSS3 and jQuery

Dj Controller developed with HTML5, CSS3 and jQuery, using many of the capabilities of HTML5 Audio API

A Pen by zero on CodePen.

License.

@carrus2049
carrus2049 / index.html
Created January 29, 2023 13:11
Tone.js Audio File Playback Example
<section>
<div id="Content">
<p>Click on the button to play the audio file on loop using
<a href="https://tonejs.github.io/docs/#Player" target="_blank">Tone.Player</a>.</p>
</div>
</section>