-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
88 lines (83 loc) · 3.37 KB
/
Copy pathindex.html
File metadata and controls
88 lines (83 loc) · 3.37 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
<!-- index.html -->
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>EasySynth</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<header>
<h1>Hello Modular World</h1>
<p>A Bauhaus-inspired exploration of synthesis</p>
</header>
<main>
<section>
<h1>Welcome to EasySynth</h1>
<p>A Bauhaus-inspired exploration of modular synthesis.</p>
</section>
<section>
<h2>Explore Further</h2>
<ul>
<li><a href="Ideas.md">Showcasing VCV Rack</a></li>
<li>
<details>
<summary><a href="electronics.html">Basic Electronics Primer</a></summary>
<ul>
<li><a href="electricity.html">Electricity</a> — the invisible thread behind every patch.</li>
<li><a href="switches.html">Switches</a> — the gesture that chooses, the silence that waits.</li>
<li><a href="resistors.html">Resistors</a> — shaping flow through friction and form.</li>
<li><a href="capacitors.html">Capacitors</a> — holding charge, shaping time.</li>
<li><a href="inductors.html">Inductors</a> — coiled memory, resisting change.</li>
<li><a href="transistors.html">Transistors</a> — switches that think, amplifiers that whisper.</li>
<li><a href="diodes.html">Diodes</a> — one-way gates, shaping flow and fate.</li>
<li><a href="op-amps.html">Op-Amps</a> — difference engines, sculpting signal and silence.</li>
</ul>
</details>
</li>
<li>
<details>
<summary><a href="synth.html">Basic Synth Primer</a></summary>
<ul>
<li><a href="switching.html">Switching</a> — the art of routing, gating, and choosing signal paths.</li>
<!-- Future additions might include: -->
<!-- <li><a href="oscillators.html">Oscillators</a> — the heartbeat of sound.</li> -->
<!-- <li><a href="filters.html">Filters</a> — carving tone from chaos.</li> -->
<!-- <li><a href="envelopes.html">Envelopes</a> — shaping time and gesture.</li> -->
</ul>
</details>
</li>
</ul>
</li>
<li><a href="colophon.html">Colophon: Behind the Design</a></li>
</ul>
</section>
<section class="lets-build">
<h2>Let’s Build</h2>
<ul>
<li><a href="/primers/flipflop-vco.html">Primitive VCO: Flip-Flop to Voltage-Controlled Oscillator</a></li>
<li><a href="/primers/opamp-mixer.html">Op-Amp Mixer: Summing Signals with Elegance</a></li>
<li><a href="/primers/passive-filter.html">Passive Filter: Sculpting Tone with Simplicity</a></li>
<li><a href="/primers/lfo-from-vco.html">LFO from VCO: Slowing the Pulse, Shaping the Flow</a></li>
</ul>
<p class="tagline">Hands-on modules for poetic synthesis — minimal parts, maximal meaning.</p>
</section>
<section>
<h2>What is a Modular Synth?</h2>
<p>Start with the building blocks: VCO, LFO, filters, mixers...</p>
</section>
<section>
<h2>East Coast vs West Coast</h2>
<p>Moog’s subtractive elegance vs Buchla’s experimental abstraction.</p>
</section>
</main>
<!-- Your page content -->
<footer class="bauhaus-footer">
<p>
© 2025 Edward Saul · <em>Form follows function, but meaning follows form</em><br>
Inspired by the Bauhaus ethos of clarity, utility, and poetic structure.<br>
Content licensed under <a href="https://creativecommons.org/licenses/by-nc/4.0/" target="_blank">CC BY-NC 4.0</a> · Forks welcome, attribution required.
</p>
</footer>
</body>
</html>