-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.htm
73 lines (73 loc) · 2.08 KB
/
index.htm
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
<!DOCTYPE html>
<html>
<head>
<style>
html,
body {
background: #1c1c1c;
color: #FFFFFF;
text-align: center;
margin: 0;
padding: 0;
}
header {
background: #262626;
margin: 0;
padding: 0;
}
h1 {
margin: 0;
padding: 0.3em;
}
a {
text-decoration: none;
color: #FFFFFF;
}
nav {
display: flex;
}
nav>* {
background: #4a8ec8;
width: 30%;
padding: 2em;
text-align: center;
margin: 1em;
}
nav>*:hover {
background: #2b5d8a;
}
</style>
</head>
<body>
<header>
<h1>othmar52.github.io</h1>
</header>
<p>
Some of my music related projects...
</p>
<nav>
<a href="matrix-mixer/">
<h2>Ui24r Matrix Mixer</h2>
<p>
My personal synth setup helper GUI<br>
Basically an audio matrix router for Soundcraft Ui24r<br>
and tables with cc values of my devices
</p>
</a>
<a href="synthspiration/">
<h2>Synthspiration</h2>
<p>
Sound browser for the presets of all my devices<br><br>
All audio samples autogenerated/crawled with https://github.com/othmar52/synth-patch-grabber
</p>
</a>
<a href="blazing-baton/">
<h2>Blazing Baton</h2>
<p>
Helper GUI for all musicians during our JAM sessions<br>
to achieve better song structure and see which notes/chords other people are playing<br>
</p>
</a>
</nav>
</body>
</html>