Skip to content

Instantly share code, notes, and snippets.

@naomiaro
naomiaro / debug-tick0.html
Last active March 2, 2026 08:09
Tone.js Player.sync() phantom replay debug — standalone reproduction for Tonejs/Tone.js#1417
<!DOCTYPE html>
<html>
<head>
<title>Tone.js Tick-0 Phantom Replay Debug (#1417)</title>
<script src="https://unpkg.com/tone@15.1.22/build/Tone.js"></script>
<style>
body { font-family: monospace; padding: 20px; background: #1a1a1a; color: #ddd; }
button { padding: 8px 16px; margin: 4px; font-size: 14px; cursor: pointer; }
#log { white-space: pre-wrap; background: #111; padding: 16px; margin-top: 16px; border: 1px solid #333; max-height: 600px; overflow-y: auto; font-size: 12px; }
.section { color: #63C75F; font-weight: bold; }
@naomiaro
naomiaro / debug-loop.html
Last active March 3, 2026 00:20
Tone.js Transport loop wrap debug — standalone reproduction for Tonejs/Tone.js#1419
<!DOCTYPE html>
<html>
<head>
<title>Tone.js Transport Loop Debug</title>
<script src="https://unpkg.com/tone@15.1.22/build/Tone.js"></script>
<style>
body { font-family: monospace; padding: 20px; background: #1a1a1a; color: #ddd; }
button { padding: 8px 16px; margin: 4px; font-size: 14px; cursor: pointer; }
#log { white-space: pre-wrap; background: #111; padding: 16px; margin-top: 16px; border: 1px solid #333; max-height: 600px; overflow-y: auto; font-size: 12px; }
.section { color: #63C75F; font-weight: bold; }
@naomiaro
naomiaro / wp_jquery.php
Created January 23, 2021 10:07
wp_enqueue_script example
wp_enqueue_script( $this->plugin_name, plugin_dir_url( __FILE__ ) . 'js/my-script.js', array( 'jquery' ), $this->version, false );