-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
721 lines (713 loc) · 20.9 KB
/
Copy pathindex.html
File metadata and controls
721 lines (713 loc) · 20.9 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
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>monome</title>
<meta name="keywords" content="monome, grid, norns, crow, teletype, ansible">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="alternate" type="application/rss+xml" href="/rss.xml" title="rss feed">
<!--<link href="https://fonts.googleapis.com/css2?family=Roboto+Mono&display=swap" rel="stylesheet"> -->
<style>
@font-face {
font-family: 'Roboto Mono'; font-style: normal; font-weight: 400;
src: local(''),
url('../include/roboto-mono-v21-latin-regular.woff2') format('woff2'),
url('../include/roboto-mono-v21-latin-regular.woff') format('woff'); }
body {background-color:#222; max-width:800px; color:#fff; line-height: 1.6;
font-family: 'Roboto Mono', monospace; font-size: 1.0em;
margin:40px auto; padding: 0 10px;}
code {font-size: 1.6em; color:#999;}
h1 {font-weight:bold; font-size: 1.6em; margin-top:2em;}
hr {margin-top: 4em; border: none; background-color: #555; color: #555; height: 1px;}
a {color:#aaa;}
a:hover {color:#ccc;}
img {margin-top: 4em; margin-bottom: 2em; max-width:100%;}
input {font-family: inherit;}
</style>
</head>
<body>
<br/>
<br/>
<p>sound machines for<br />
the exploration of time<br />
and space</p>
<br/>
<br/>
<hr />
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>monome</title>
<meta name="keywords" content="monome, grid, norns, crow, teletype, ansible">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="alternate" type="application/rss+xml" href="/rss.xml" title="rss feed">
<!--<link href="https://fonts.googleapis.com/css2?family=Roboto+Mono&display=swap" rel="stylesheet"> -->
<style>
@font-face {
font-family: 'Roboto Mono'; font-style: normal; font-weight: 400;
src: local(''),
url('../include/roboto-mono-v21-latin-regular.woff2') format('woff2'),
url('../include/roboto-mono-v21-latin-regular.woff') format('woff'); }
body {background-color:#222; max-width:800px; color:#fff; line-height: 1.6;
font-family: 'Roboto Mono', monospace; font-size: 1.0em;
margin:40px auto; padding: 0 10px;}
code {font-size: 1.6em; color:#999;}
h1 {font-weight:bold; font-size: 1.6em; margin-top:2em;}
hr {margin-top: 4em; border: none; background-color: #555; color: #555; height: 1px;}
a {color:#aaa;}
a:hover {color:#ccc;}
img {margin-top: 4em; margin-bottom: 2em; max-width:100%;}
input {font-family: inherit;}
</style>
</head>
<body>
<br/>
<br/>
<p>05/23/26 - monome is twenty. we put together a photo collection. part how it happened, part work-art-life entanglement, part disbelief.</p>
<p><a href="/twenty">monome.org/twenty</a></p>
<p>deep thanks to so many of you here who supported and participated in this journey towards other ways of being.</p>
<p><img loading=lazy src="/image/20/0410-wiring.jpg" alt="" /></p>
<hr/>
<p>monome — updated 05/26/26</p>
</body>
</html>
<!--NEWS-->
<p><a href="/old.html">old news</a> / <a href="rss.xml">rss</a></p>
<hr />
<p>before ordering <a href="/policy.html">please read this page</a> regarding taxes, shipping, and returns. note that all orders outside the US will have import taxes prepaid.</p>
<hr />
<p><a href="/image/high/arc.jpg"><img loading=lazy src="/image/arc.jpg" alt="" /></a>
an instrument for circular interaction with light and sound. following the pattern established by the grid, each attached application determines the tactile and visual process.</p>
<ul>
<li><a href="https://monome.org/docs/arc">documentation</a></li>
<li><a href="https://hyper8.monome.org/arc-snows/">video (snows)</a></li>
<li><a href="https://hyper8.monome.org/erosion/">vidoo (erosion)</a></li>
<li><a href="https://hyper8.monome.org/arc-iii-cycles/">video (cycles)</a></li>
</ul>
<div id='product-component-1743609406681'></div>
<script type="text/javascript">
/*<![CDATA[*/
(function () {
var scriptURL = 'https://sdks.shopifycdn.com/buy-button/latest/buy-button-storefront.min.js';
if (window.ShopifyBuy) {
if (window.ShopifyBuy.UI) {
ShopifyBuyInit();
} else {
loadScript();
}
} else {
loadScript();
}
function loadScript() {
var script = document.createElement('script');
script.async = true;
script.src = scriptURL;
(document.getElementsByTagName('head')[0] || document.getElementsByTagName('body')[0]).appendChild(script);
script.onload = ShopifyBuyInit;
}
function ShopifyBuyInit() {
var client = ShopifyBuy.buildClient({
domain: 'monome.myshopify.com',
storefrontAccessToken: '54686b55d507067316908858df83ace3',
});
ShopifyBuy.UI.onReady(client).then(function (ui) {
ui.createComponent('product', {
id: '9946037256491',
node: document.getElementById('product-component-1743609406681'),
moneyFormat: '%24%7B%7Bamount%7D%7D',
options: {
"product": {
"styles": {
"product": {
"@media (min-width: 601px)": {
"max-width": "calc(25% - 20px)",
"margin-left": "20px",
"margin-bottom": "50px"
},
"text-align": "left"
},
"button": {
"font-family": "Roboto, sans-serif",
"font-weight": "bold",
"font-size": "13px",
"padding-top": "14.5px",
"padding-bottom": "14.5px",
":hover": {
"background-color": "#848484"
},
"background-color": "#939393",
":focus": {
"background-color": "#848484"
},
"width": "300px",
},
"quantityInput": {
"font-size": "13px",
"padding-top": "14.5px",
"padding-bottom": "14.5px"
}
},
"contents": {
"img": false,
"title": false,
"price": false
},
"text": {
"button": "arc: add to cart"
},
"googleFonts": [
"Roboto"
]
},
"productSet": {
"styles": {
"products": {
"@media (min-width: 601px)": {
"margin-left": "-20px"
}
}
}
},
"modalProduct": {
"contents": {
"img": false,
"imgWithCarousel": true,
"button": false,
"buttonWithQuantity": true
},
"styles": {
"product": {
"@media (min-width: 601px)": {
"max-width": "100%",
"margin-left": "0px",
"margin-bottom": "0px"
}
},
"button": {
"font-family": "Roboto, sans-serif",
"font-weight": "bold",
"font-size": "13px",
"padding-top": "14.5px",
"padding-bottom": "14.5px",
":hover": {
"background-color": "#848484"
},
"background-color": "#939393",
":focus": {
"background-color": "#848484"
},
"width": "300px",
},
"quantityInput": {
"font-size": "13px",
"padding-top": "14.5px",
"padding-bottom": "14.5px"
}
},
"googleFonts": [
"Roboto"
],
"text": {
"button": "arc: add to cart"
}
},
"option": {},
"cart": {
"styles": {
"button": {
"font-family": "Roboto, sans-serif",
"font-weight": "bold",
"font-size": "13px",
"padding-top": "14.5px",
"padding-bottom": "14.5px",
":hover": {
"background-color": "#848484"
},
"background-color": "#939393",
":focus": {
"background-color": "#848484"
}
}
},
"text": {
"total": "Subtotal",
"button": "Checkout"
},
"popup": false,
"googleFonts": [
"Roboto"
]
},
"toggle": {
"styles": {
"toggle": {
"font-family": "Roboto, sans-serif",
"font-weight": "bold",
"background-color": "#939393",
":hover": {
"background-color": "#848484"
},
":focus": {
"background-color": "#848484"
}
},
"count": {
"font-size": "13px"
}
},
"googleFonts": [
"Roboto"
]
}
},
});
});
}
})();
/*]]>*/
</script>
<!-- ARCNEW -->
<p>arc<br />
four knobs ringed with decoupled warm white light<br />
1024 ticks per revolution, single pushbutton<br />
usb C, 10.2" x 2.7" x 0.9", 1.0 lbs<br />
$1100</p>
<!-- ARC B -->
<!--
arc
100% new and functional, with minor aesthetic defects. [see details on b-stock](/bstock.html)
$990
-->
<p><a href="/image/high/both.jpg"><img loading=lazy src="/image/both.jpg" alt="" /></a>
an open, tactile instrument that allows the user to imagine and define its function.</p>
<p>the monome <em>grid</em> by default does nothing. connected to a computer or module, interaction is determined by the chosen application: sequencer, sample cutter, tone map, polyrhythm machine. we’ve put together studies to help you create your own.</p>
<ul>
<li><a href="https://hyper8.monome.org/zero/">video</a></li>
<li><a href="https://monome.org/docs/grid">documentation</a></li>
</ul>
<p>zero<br />
sixteen by sixteen keys with decoupled warm white light<br />
usb C, 10.2" x 10.2" x 0.5", 2.8 lbs<br />
$1500</p>
<div id='product-component-1689344900511'></div>
<script type="text/javascript">
/*<![CDATA[*/
(function () {
var scriptURL = 'https://sdks.shopifycdn.com/buy-button/latest/buy-button-storefront.min.js';
if (window.ShopifyBuy) {
if (window.ShopifyBuy.UI) {
ShopifyBuyInit();
} else {
loadScript();
}
} else {
loadScript();
}
function loadScript() {
var script = document.createElement('script');
script.async = true;
script.src = scriptURL;
(document.getElementsByTagName('head')[0] || document.getElementsByTagName('body')[0]).appendChild(script);
script.onload = ShopifyBuyInit;
}
function ShopifyBuyInit() {
var client = ShopifyBuy.buildClient({
domain: 'monome.myshopify.com',
storefrontAccessToken: '54686b55d507067316908858df83ace3',
});
ShopifyBuy.UI.onReady(client).then(function (ui) {
ui.createComponent('product', {
id: '8451447849259',
node: document.getElementById('product-component-1689344900511'),
moneyFormat: '%24%7B%7Bamount%7D%7D',
options: {
"product": {
"styles": {
"product": {
"@media (min-width: 601px)": {
"max-width": "calc(25% - 20px)",
"margin-left": "20px",
"margin-bottom": "50px"
},
"text-align": "left"
},
"button": {
"font-family": "Roboto, sans-serif",
"font-weight": "bold",
"font-size": "13px",
"padding-top": "14.5px",
"padding-bottom": "14.5px",
":hover": {
"background-color": "#848484"
},
"background-color": "#939393",
":focus": {
"background-color": "#848484"
},
"width": "300px"
},
"quantityInput": {
"font-size": "13px",
"padding-top": "14.5px",
"padding-bottom": "14.5px"
}
},
"contents": {
"img": false,
"title": false,
"price": false
},
"text": {
"button": "zero: add to cart"
},
"googleFonts": [
"Roboto"
]
},
"productSet": {
"styles": {
"products": {
"@media (min-width: 601px)": {
"margin-left": "-20px"
}
}
}
},
"modalProduct": {
"contents": {
"img": false,
"imgWithCarousel": true,
"button": false,
"buttonWithQuantity": true
},
"styles": {
"product": {
"@media (min-width: 601px)": {
"max-width": "100%",
"margin-left": "0px",
"margin-bottom": "0px"
}
},
"button": {
"font-family": "Roboto, sans-serif",
"font-weight": "bold",
"font-size": "13px",
"padding-top": "14.5px",
"padding-bottom": "14.5px",
":hover": {
"background-color": "#848484"
},
"background-color": "#939393",
":focus": {
"background-color": "#848484"
},
"width": "300px"
},
"quantityInput": {
"font-size": "13px",
"padding-top": "14.5px",
"padding-bottom": "14.5px"
}
},
"googleFonts": [
"Roboto"
],
"text": {
"button": "Add to cart"
}
},
"option": {},
"cart": {
"styles": {
"button": {
"font-family": "Roboto, sans-serif",
"font-weight": "bold",
"font-size": "13px",
"padding-top": "14.5px",
"padding-bottom": "14.5px",
":hover": {
"background-color": "#848484"
},
"background-color": "#939393",
":focus": {
"background-color": "#848484"
}
}
},
"text": {
"total": "Subtotal",
"button": "Checkout"
},
"popup": false,
"googleFonts": [
"Roboto"
]
},
"toggle": {
"styles": {
"toggle": {
"font-family": "Roboto, sans-serif",
"font-weight": "bold",
"background-color": "#939393",
":hover": {
"background-color": "#848484"
},
":focus": {
"background-color": "#848484"
}
},
"count": {
"font-size": "13px"
}
},
"googleFonts": [
"Roboto"
]
}
},
});
});
}
})();
/*]]>*/
</script>
<!--ZERONEW-->
<!--
zero (b-stock)
100% new and functional, with minor aesthetic defects. [see details on b-stock](/bstock.html)
$1350
<!--ZERO BSTOCK-->
<p>one<br />
sixteen by eight keys with decoupled warm white light<br />
usb C, 10.2" x 5.4" x 0.5", 1.6 lbs<br />
$800</p>
<div id='product-component-1689344965848'></div>
<script type="text/javascript">
/*<![CDATA[*/
(function () {
var scriptURL = 'https://sdks.shopifycdn.com/buy-button/latest/buy-button-storefront.min.js';
if (window.ShopifyBuy) {
if (window.ShopifyBuy.UI) {
ShopifyBuyInit();
} else {
loadScript();
}
} else {
loadScript();
}
function loadScript() {
var script = document.createElement('script');
script.async = true;
script.src = scriptURL;
(document.getElementsByTagName('head')[0] || document.getElementsByTagName('body')[0]).appendChild(script);
script.onload = ShopifyBuyInit;
}
function ShopifyBuyInit() {
var client = ShopifyBuy.buildClient({
domain: 'monome.myshopify.com',
storefrontAccessToken: '54686b55d507067316908858df83ace3',
});
ShopifyBuy.UI.onReady(client).then(function (ui) {
ui.createComponent('product', {
id: '6622419845225',
node: document.getElementById('product-component-1689344965848'),
moneyFormat: '%24%7B%7Bamount%7D%7D',
options: {
"product": {
"styles": {
"product": {
"@media (min-width: 601px)": {
"max-width": "calc(25% - 20px)",
"margin-left": "20px",
"margin-bottom": "50px"
},
"text-align": "left"
},
"button": {
"font-family": "Roboto, sans-serif",
"font-weight": "bold",
"font-size": "13px",
"padding-top": "14.5px",
"padding-bottom": "14.5px",
":hover": {
"background-color": "#848484"
},
"background-color": "#939393",
":focus": {
"background-color": "#848484"
},
"width": "300px",
},
"quantityInput": {
"font-size": "13px",
"padding-top": "14.5px",
"padding-bottom": "14.5px"
}
},
"contents": {
"img": false,
"title": false,
"price": false
},
"text": {
"button": "one: add to cart"
},
"googleFonts": [
"Roboto"
]
},
"productSet": {
"styles": {
"products": {
"@media (min-width: 601px)": {
"margin-left": "-20px"
}
}
}
},
"modalProduct": {
"contents": {
"img": false,
"imgWithCarousel": true,
"button": false,
"buttonWithQuantity": true
},
"styles": {
"product": {
"@media (min-width: 601px)": {
"max-width": "100%",
"margin-left": "0px",
"margin-bottom": "0px"
}
},
"button": {
"font-family": "Roboto, sans-serif",
"font-weight": "bold",
"font-size": "13px",
"padding-top": "14.5px",
"padding-bottom": "14.5px",
":hover": {
"background-color": "#848484"
},
"background-color": "#939393",
":focus": {
"background-color": "#848484"
},
"width": "300px",
},
"quantityInput": {
"font-size": "13px",
"padding-top": "14.5px",
"padding-bottom": "14.5px"
}
},
"googleFonts": [
"Roboto"
],
"text": {
"button": "Add to cart"
}
},
"option": {},
"cart": {
"styles": {
"button": {
"font-family": "Roboto, sans-serif",
"font-weight": "bold",
"font-size": "13px",
"padding-top": "14.5px",
"padding-bottom": "14.5px",
":hover": {
"background-color": "#848484"
},
"background-color": "#939393",
":focus": {
"background-color": "#848484"
}
}
},
"text": {
"total": "Subtotal",
"button": "Checkout"
},
"popup": false,
"googleFonts": [
"Roboto"
]
},
"toggle": {
"styles": {
"toggle": {
"font-family": "Roboto, sans-serif",
"font-weight": "bold",
"background-color": "#939393",
":hover": {
"background-color": "#848484"
},
":focus": {
"background-color": "#848484"
}
},
"count": {
"font-size": "13px"
}
},
"googleFonts": [
"Roboto"
]
}
},
});
});
}
})();
/*]]>*/
</script>
<!--ONENEW-->
<!--
one (b-stock)
100% new and functional, with minor aesthetic defects. [see details on b-stock](/bstock.html)
$720
<!--ONE BSTOCK-->
<p><img loading=lazy src="/image/norns-black.jpg" alt="" />
changes. travels. is open to possibilities.</p>
<p><em>norns</em> is many sound instruments. it connects to grids, MIDI and other objects. norns lets you define its behavior with scripts and DSP. we've created extensive studies to help actualize new instruments yet to be imagined.</p>
<ul>
<li><a href="https://hyper8.monome.org/norns-approaching/">video</a></li>
<li><a href="https://monome.org/docs/norns">documentation</a></li>
</ul>
<p>$900. out of stock. estimate for next edition not yet established.</p>
<!--BLACK NEW-->
<!--
norns (b-stock)
100% new and functional, with minor aesthetic defects. [see details on b-stock](/bstock.html)
$810
<!--BLACK BSTOCK-->
<p><img loading=lazy src="/image/crow.jpg" alt="" /></p>
<p>speaks and listens and remembers bits of text. a scriptable usb-cv-ii machine.</p>
<p><em>crow</em> connects to norns and computers running max, max for live, and other serial-enabled applications. we've created various norns scripts and max for live devices which require no programming, and we've also created tutorials and studies to get you started quickly programming your own ideas into this tiny, powerful module.</p>
<ul>
<li><a href="https://hyper8.monome.org/approaching-crow/">video</a></li>
<li><a href="https://monome.org/docs/crow">documentation</a></li>
</ul>
<p>as of october 2025 crow is discontinued. while we've schemed with whimsical raps about future evolutions, there is no timeline.</p>
<hr />
<p>contact help@monome.org with questions.</p>
<p><a href="https://llllllll.co">llllllll.co</a> is for community discussion.</p>
<p>shipping happens on wednesdays, and often other days. a tracking number is sent when each order ships. please contact us if special arrangements are required.</p>
<p>we offer a cash discount for in-person purchases. workshop visits are welcome.</p>
<p>we're committed to keeping these machines working. email us for repairs. also see purchase <a href="/policy.html">policy</a>.</p>
<p>we've made many of our designs open-source which means monome-like machines out there. please keep in mind that we do not have the capacity to offer direct support for anything we did not manufacture.</p>
<p>in the <a href="/past.html">past</a> we created some other objects.</p>
<p>events and release announcements and stock updates: subscribe via our <a href="https://buttondown.email/monome">email newsletter</a> or use <a href="/rss.xml">rss</a></p>
<hr />
<br/>
<p><img loading=lazy src="/image/barn.jpg" alt="barn" /></p>
<p>monome is <a href="https://nnnnnnnn.co">brian crabtree</a> and <a href="http://kellicain.com">kelli cain</a>. we met in art school where our initial collaborations included electro-mechanical installations, films, and music. now we live and work in the mountains of upstate new york where we also tend apple orchards, shiitake stacks, and forest paths.</p></p>
<p>monome is supported by a global community of curious, helpful, and creative people. all based at <a href="https://luckdragon.space">luck dragon</a>.</p>
<p>we began in 2005. we continue.</p>
<hr/>
<p>monome — updated 06/08/26</p>
</body>
</html>