@tyleretters/discography 2.1.1 → 2.1.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/discography.d.ts +148 -0
- package/dist/discography.yml +225 -17
- package/dist/index.es.js +251 -29
- package/dist/index.es.js.map +1 -1
- package/dist/index.umd.js +2 -2
- package/dist/index.umd.js.map +1 -1
- package/dist/types.d.ts +3 -0
- package/package.json +1 -1
package/dist/discography.d.ts
CHANGED
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
export declare const discography: ({
|
|
2
2
|
title: string;
|
|
3
|
+
slug: string;
|
|
3
4
|
project: string;
|
|
4
5
|
released: string;
|
|
5
6
|
type: string;
|
|
@@ -8,9 +9,11 @@ export declare const discography: ({
|
|
|
8
9
|
label: string;
|
|
9
10
|
mp3: boolean;
|
|
10
11
|
wav: boolean;
|
|
12
|
+
trackIds: string[];
|
|
11
13
|
tracks: {
|
|
12
14
|
number: number;
|
|
13
15
|
title: string;
|
|
16
|
+
slug: string;
|
|
14
17
|
length: string;
|
|
15
18
|
mp3_url: string;
|
|
16
19
|
wav_url: string;
|
|
@@ -40,11 +43,46 @@ export declare const discography: ({
|
|
|
40
43
|
label: string;
|
|
41
44
|
mp3: boolean;
|
|
42
45
|
wav: boolean;
|
|
46
|
+
trackIds: string[];
|
|
43
47
|
tracks: {
|
|
44
48
|
number: number;
|
|
45
49
|
title: string;
|
|
46
50
|
length: string;
|
|
47
51
|
mp3_url: string;
|
|
52
|
+
wav_url: string;
|
|
53
|
+
id: string;
|
|
54
|
+
}[];
|
|
55
|
+
streams: {
|
|
56
|
+
platform: string;
|
|
57
|
+
url: string;
|
|
58
|
+
id: string;
|
|
59
|
+
}[];
|
|
60
|
+
notes: string;
|
|
61
|
+
credits: string;
|
|
62
|
+
project_slug: string;
|
|
63
|
+
release_slug: string;
|
|
64
|
+
cover_url: string;
|
|
65
|
+
mp3_url: string;
|
|
66
|
+
wav_url: string;
|
|
67
|
+
id: string;
|
|
68
|
+
slug?: undefined;
|
|
69
|
+
monospaceNotes?: undefined;
|
|
70
|
+
} | {
|
|
71
|
+
title: string;
|
|
72
|
+
project: string;
|
|
73
|
+
released: string;
|
|
74
|
+
type: string;
|
|
75
|
+
format: string;
|
|
76
|
+
role: string;
|
|
77
|
+
label: string;
|
|
78
|
+
mp3: boolean;
|
|
79
|
+
wav: boolean;
|
|
80
|
+
tracks: {
|
|
81
|
+
number: number;
|
|
82
|
+
title: string;
|
|
83
|
+
length: string;
|
|
84
|
+
mp3_url: string;
|
|
85
|
+
wav_url: string;
|
|
48
86
|
id: string;
|
|
49
87
|
}[];
|
|
50
88
|
streams: {
|
|
@@ -58,7 +96,76 @@ export declare const discography: ({
|
|
|
58
96
|
release_slug: string;
|
|
59
97
|
cover_url: string;
|
|
60
98
|
mp3_url: string;
|
|
99
|
+
wav_url: string;
|
|
61
100
|
id: string;
|
|
101
|
+
slug?: undefined;
|
|
102
|
+
trackIds?: undefined;
|
|
103
|
+
monospaceNotes?: undefined;
|
|
104
|
+
} | {
|
|
105
|
+
title: string;
|
|
106
|
+
slug: string;
|
|
107
|
+
project: string;
|
|
108
|
+
released: string;
|
|
109
|
+
type: string;
|
|
110
|
+
format: string;
|
|
111
|
+
role: string;
|
|
112
|
+
label: string;
|
|
113
|
+
mp3: boolean;
|
|
114
|
+
wav: boolean;
|
|
115
|
+
trackIds: string[];
|
|
116
|
+
tracks: {
|
|
117
|
+
number: number;
|
|
118
|
+
title: string;
|
|
119
|
+
length: string;
|
|
120
|
+
mp3_url: string;
|
|
121
|
+
wav_url: string;
|
|
122
|
+
id: string;
|
|
123
|
+
}[];
|
|
124
|
+
streams: {
|
|
125
|
+
platform: string;
|
|
126
|
+
url: string;
|
|
127
|
+
id: string;
|
|
128
|
+
}[];
|
|
129
|
+
notes: string;
|
|
130
|
+
credits: string;
|
|
131
|
+
project_slug: string;
|
|
132
|
+
release_slug: string;
|
|
133
|
+
cover_url: string;
|
|
134
|
+
mp3_url: string;
|
|
135
|
+
wav_url: string;
|
|
136
|
+
id: string;
|
|
137
|
+
monospaceNotes?: undefined;
|
|
138
|
+
} | {
|
|
139
|
+
title: string;
|
|
140
|
+
project: string;
|
|
141
|
+
released: string;
|
|
142
|
+
type: string;
|
|
143
|
+
format: string;
|
|
144
|
+
role: string;
|
|
145
|
+
label: string;
|
|
146
|
+
mp3: boolean;
|
|
147
|
+
wav: boolean;
|
|
148
|
+
trackIds: string[];
|
|
149
|
+
tracks: {
|
|
150
|
+
number: number;
|
|
151
|
+
title: string;
|
|
152
|
+
length: string;
|
|
153
|
+
mp3_url: string;
|
|
154
|
+
id: string;
|
|
155
|
+
}[];
|
|
156
|
+
streams: {
|
|
157
|
+
platform: string;
|
|
158
|
+
url: string;
|
|
159
|
+
id: string;
|
|
160
|
+
}[];
|
|
161
|
+
notes: string;
|
|
162
|
+
credits: string;
|
|
163
|
+
project_slug: string;
|
|
164
|
+
release_slug: string;
|
|
165
|
+
cover_url: string;
|
|
166
|
+
mp3_url: string;
|
|
167
|
+
id: string;
|
|
168
|
+
slug?: undefined;
|
|
62
169
|
wav_url?: undefined;
|
|
63
170
|
monospaceNotes?: undefined;
|
|
64
171
|
} | {
|
|
@@ -88,9 +195,44 @@ export declare const discography: ({
|
|
|
88
195
|
release_slug: string;
|
|
89
196
|
cover_url: string;
|
|
90
197
|
id: string;
|
|
198
|
+
slug?: undefined;
|
|
199
|
+
trackIds?: undefined;
|
|
91
200
|
mp3_url?: undefined;
|
|
92
201
|
wav_url?: undefined;
|
|
93
202
|
monospaceNotes?: undefined;
|
|
203
|
+
} | {
|
|
204
|
+
title: string;
|
|
205
|
+
project: string;
|
|
206
|
+
released: string;
|
|
207
|
+
type: string;
|
|
208
|
+
format: string;
|
|
209
|
+
role: string;
|
|
210
|
+
label: string;
|
|
211
|
+
mp3: boolean;
|
|
212
|
+
wav: boolean;
|
|
213
|
+
tracks: {
|
|
214
|
+
number: number;
|
|
215
|
+
title: string;
|
|
216
|
+
length: string;
|
|
217
|
+
mp3_url: string;
|
|
218
|
+
id: string;
|
|
219
|
+
}[];
|
|
220
|
+
streams: {
|
|
221
|
+
platform: string;
|
|
222
|
+
url: string;
|
|
223
|
+
id: string;
|
|
224
|
+
}[];
|
|
225
|
+
notes: string;
|
|
226
|
+
credits: string;
|
|
227
|
+
project_slug: string;
|
|
228
|
+
release_slug: string;
|
|
229
|
+
cover_url: string;
|
|
230
|
+
mp3_url: string;
|
|
231
|
+
id: string;
|
|
232
|
+
slug?: undefined;
|
|
233
|
+
trackIds?: undefined;
|
|
234
|
+
wav_url?: undefined;
|
|
235
|
+
monospaceNotes?: undefined;
|
|
94
236
|
} | {
|
|
95
237
|
title: string;
|
|
96
238
|
project: string;
|
|
@@ -113,6 +255,8 @@ export declare const discography: ({
|
|
|
113
255
|
release_slug: string;
|
|
114
256
|
cover_url: string;
|
|
115
257
|
id: string;
|
|
258
|
+
slug?: undefined;
|
|
259
|
+
trackIds?: undefined;
|
|
116
260
|
streams?: undefined;
|
|
117
261
|
mp3_url?: undefined;
|
|
118
262
|
wav_url?: undefined;
|
|
@@ -143,6 +287,8 @@ export declare const discography: ({
|
|
|
143
287
|
mp3_url: string;
|
|
144
288
|
wav_url: string;
|
|
145
289
|
id: string;
|
|
290
|
+
slug?: undefined;
|
|
291
|
+
trackIds?: undefined;
|
|
146
292
|
streams?: undefined;
|
|
147
293
|
monospaceNotes?: undefined;
|
|
148
294
|
} | {
|
|
@@ -177,4 +323,6 @@ export declare const discography: ({
|
|
|
177
323
|
mp3_url: string;
|
|
178
324
|
wav_url: string;
|
|
179
325
|
id: string;
|
|
326
|
+
slug?: undefined;
|
|
327
|
+
trackIds?: undefined;
|
|
180
328
|
})[];
|
package/dist/discography.yml
CHANGED
|
@@ -1,4 +1,5 @@
|
|
|
1
|
-
- title:
|
|
1
|
+
- title: 𝐻𝑒𝒶𝓇𝓉𝓈 𝒾𝓃 𝒱𝒶𝓁𝑒𝓃𝒸𝒾𝒶, 𝒞𝒽𝒶𝓅𝓉𝑒𝓇 𝟤
|
|
2
|
+
slug: hearts-in-valencia-chapter-2
|
|
2
3
|
project: DJ STUXNET
|
|
3
4
|
released: 02025-11-18
|
|
4
5
|
type: Mix
|
|
@@ -7,9 +8,25 @@
|
|
|
7
8
|
label: Intertext
|
|
8
9
|
mp3: true
|
|
9
10
|
wav: true
|
|
10
|
-
|
|
11
|
-
-
|
|
12
|
-
|
|
11
|
+
trackIds:
|
|
12
|
+
- "Wicked Game by Chris Isaak"
|
|
13
|
+
- "Tearn' Up My Heart (Original Radio Edit) by *NSYNC"
|
|
14
|
+
- "Bother by Stone Sour"
|
|
15
|
+
- "All Fucked Up by The Amity Affliction"
|
|
16
|
+
- "Misery Business by Paramore"
|
|
17
|
+
- "You Give Love a Bad Name by Bon Jovi"
|
|
18
|
+
- "Hurt by Johnny Cash"
|
|
19
|
+
- "Poison Girl by HIM"
|
|
20
|
+
- "End of the World by Cold"
|
|
21
|
+
- "Closer by Nine Inch Nails"
|
|
22
|
+
- "Over Each Other by Linkin Park"
|
|
23
|
+
- "Get Together by Madonna"
|
|
24
|
+
- "Kiss from a Rose by Seal"
|
|
25
|
+
- "Desert Rose by Sting"
|
|
26
|
+
tracks:
|
|
27
|
+
- number: 1
|
|
28
|
+
title: 𝐻𝑒𝒶𝓇𝓉𝓈 𝒾𝓃 𝒱𝒶𝓁𝑒𝓃𝒸𝒾𝒶, 𝒞𝒽𝒶𝓅𝓉𝑒𝓇 𝟤
|
|
29
|
+
slug: hearts-in-valencia-chapter-2
|
|
13
30
|
length: 00:57:30
|
|
14
31
|
streams:
|
|
15
32
|
- platform: SoundCloud
|
|
@@ -28,6 +45,15 @@
|
|
|
28
45
|
label: Intertext
|
|
29
46
|
mp3: true
|
|
30
47
|
wav: true
|
|
48
|
+
trackIds:
|
|
49
|
+
- "The Angels Fell (2015 Remaster) by Dillinja"
|
|
50
|
+
- "hung over as the queen in maida vale by Godspeed You! Black Emperor"
|
|
51
|
+
- "Music for 18 Musicians by Steve Reich"
|
|
52
|
+
- "Flower by HKE"
|
|
53
|
+
- "Save and Sound by bvdub"
|
|
54
|
+
- "Stay with Me by Clint Mansell"
|
|
55
|
+
- "Treale by Autechre"
|
|
56
|
+
- 'Final Movement (feat. "Not At Home") by Clint Mansell, Peter Broderick'
|
|
31
57
|
tracks:
|
|
32
58
|
- number: 1
|
|
33
59
|
title: In Abstraction, Part 2
|
|
@@ -49,6 +75,20 @@
|
|
|
49
75
|
label: Intertext
|
|
50
76
|
mp3: true
|
|
51
77
|
wav: true
|
|
78
|
+
trackIds:
|
|
79
|
+
- "Blade Runner Blues by Vangelis"
|
|
80
|
+
- "Reprocessing by Fireground"
|
|
81
|
+
- "The Blue Notebooks by Max Richter, Tilda Swinton"
|
|
82
|
+
- "Fenix Funk 5 by Aphex Twin"
|
|
83
|
+
- "Give It All by Rise Against"
|
|
84
|
+
- "fullmoon by Ryuichi Sakamoto"
|
|
85
|
+
- "CONCRETE JUNGLE by Bad Omens"
|
|
86
|
+
- "Imaginary Festival by Burial"
|
|
87
|
+
- "Hybrid by Gary Numan"
|
|
88
|
+
- "Disorder by Chiasm"
|
|
89
|
+
- "Severed by Crossbreed"
|
|
90
|
+
- "Hydropolis by LSTNGT"
|
|
91
|
+
- "トルキア by Yoko Kanno, Gabriela Robin"
|
|
52
92
|
tracks:
|
|
53
93
|
- number: 1
|
|
54
94
|
title: In Abstraction, Part 1
|
|
@@ -106,6 +146,20 @@
|
|
|
106
146
|
label: Intertext
|
|
107
147
|
mp3: true
|
|
108
148
|
wav: true
|
|
149
|
+
trackIds:
|
|
150
|
+
- "Count On You by Tokyo Tears"
|
|
151
|
+
- "3AM by araabMUZIK"
|
|
152
|
+
- "Four Walls by Massive Attack vs Burial"
|
|
153
|
+
- "Precious by Depeche Mode"
|
|
154
|
+
- "You And Me by Skeler"
|
|
155
|
+
- "Silence (John Summit Remix) by Delerium, Sara McLachlan, John Summit"
|
|
156
|
+
- "Drown U Out by 4K & Conni"
|
|
157
|
+
- "We Are Free by Tokyo Tears & SAGE"
|
|
158
|
+
- "As The Rush Comes (Gabriel & Dresden Chillout Mix) by Motorcycle"
|
|
159
|
+
- "In The End (Mellen Gi Remix) by Tommee Profitt, Mellen Gi & Fleurie"
|
|
160
|
+
- "Strangers by Portishead"
|
|
161
|
+
- "Sound in a Dark Room by Telefon Tel Aviv"
|
|
162
|
+
- "Afterglow (feat. Soundmouse) by Phaeleh"
|
|
109
163
|
tracks:
|
|
110
164
|
- number: 1
|
|
111
165
|
title: In Ecstasy
|
|
@@ -127,6 +181,18 @@
|
|
|
127
181
|
label: Intertext
|
|
128
182
|
mp3: true
|
|
129
183
|
wav: true
|
|
184
|
+
trackIds:
|
|
185
|
+
- "Serenity <Remake ver.> by Kota Suzuki,千本木操"
|
|
186
|
+
- "Trade Winds, White Heat by Tim Hecker"
|
|
187
|
+
- "And the Birds Are About to Bust Their Guts with Singing by Set Fire to Flames"
|
|
188
|
+
- "(B) by mewithoutYou"
|
|
189
|
+
- "VLetrmx by Autechre"
|
|
190
|
+
- "Leaving Hope by Nine Inch Nails"
|
|
191
|
+
- "Merry Christmas Mr. Lawrence by Ryuichi Sakamoto"
|
|
192
|
+
- "True North by Hilyard"
|
|
193
|
+
- "Shadow by Ernst Reijseger"
|
|
194
|
+
- "Mandy Love Theme by Jóhann Jóhannsson"
|
|
195
|
+
- "at another working gate by tyler etters & the northern information movement"
|
|
130
196
|
tracks:
|
|
131
197
|
- number: 1
|
|
132
198
|
title: In Entropy
|
|
@@ -148,6 +214,22 @@
|
|
|
148
214
|
label: Intertext
|
|
149
215
|
mp3: true
|
|
150
216
|
wav: true
|
|
217
|
+
trackIds:
|
|
218
|
+
- "Numbered Days - feat. Jesse Leach of Killswitch Engage, by Heaven Shall Burn"
|
|
219
|
+
- "Beneath A Lightless Star by Holy Fawn"
|
|
220
|
+
- "Coffin Varnish by The Atlas Moth"
|
|
221
|
+
- "Meaningless by Deadships"
|
|
222
|
+
- "Instill by Humanity's Last Breath"
|
|
223
|
+
- "Hostage by Fit For An Autopsy"
|
|
224
|
+
- "Hum From The Hollow by After The Burial"
|
|
225
|
+
- "Nerve by Soilwork"
|
|
226
|
+
- "Rational Gaze by Meshuggah"
|
|
227
|
+
- "Open Letter by The Amity Affliction"
|
|
228
|
+
- "Feeding The Meatgrinder by Shadow of Intent, Corpsegrinder"
|
|
229
|
+
- "The Laws of Time by Nik Nocturnal, Darkest Hour, John Henry"
|
|
230
|
+
- "Dig by Mudvayne"
|
|
231
|
+
- "Breaking Free by Ocean Sleeper"
|
|
232
|
+
- "Memphis Will Be Laid To Waste by Norma Jean, Aaron Weiss"
|
|
151
233
|
tracks:
|
|
152
234
|
- number: 1
|
|
153
235
|
title: In Breakdowns
|
|
@@ -160,7 +242,8 @@
|
|
|
160
242
|
notes: For Spencer.
|
|
161
243
|
credits: STUXNET is Tyler Etters.
|
|
162
244
|
|
|
163
|
-
- title:
|
|
245
|
+
- title: 𝐻𝑒𝒶𝓇𝓉𝓈 𝒾𝓃 𝒱𝒶𝓁𝑒𝓃𝒸𝒾𝒶, 𝒞𝒽𝒶𝓅𝓉𝑒𝓇 𝟣
|
|
246
|
+
slug: hearts-in-valencia-chapter-1
|
|
164
247
|
project: DJ STUXNET
|
|
165
248
|
released: 02025-07-07
|
|
166
249
|
type: Mix
|
|
@@ -169,9 +252,26 @@
|
|
|
169
252
|
label: Intertext
|
|
170
253
|
mp3: true
|
|
171
254
|
wav: true
|
|
172
|
-
|
|
173
|
-
-
|
|
174
|
-
|
|
255
|
+
trackIds:
|
|
256
|
+
- "Radioactive by Imagine Dragons, Kendrick Lamar"
|
|
257
|
+
- "Breathless by The Corrs"
|
|
258
|
+
- "vista by iamamiwhoami, ionnalee"
|
|
259
|
+
- "The Taste of Ink by The Used"
|
|
260
|
+
- "Stetson by Walker Hayes"
|
|
261
|
+
- "Pretending by HIM"
|
|
262
|
+
- "Everytime We Touch by Cascada"
|
|
263
|
+
- "Gantz Graf by Autechre"
|
|
264
|
+
- "Iris by The Goo Goo Dolls"
|
|
265
|
+
- "Sweetness by Jimmy Eat World"
|
|
266
|
+
- "Monochrome # 27 by TU M'"
|
|
267
|
+
- "The Boys of Summer by Don Henley"
|
|
268
|
+
- "17 Crimes by AFI"
|
|
269
|
+
- "§1 by Opeth"
|
|
270
|
+
- "Enjoy the Silence by Depeche Mode"
|
|
271
|
+
tracks:
|
|
272
|
+
- number: 1
|
|
273
|
+
title: 𝐻𝑒𝒶𝓇𝓉𝓈 𝒾𝓃 𝒱𝒶𝓁𝑒𝓃𝒸𝒾𝒶, 𝒞𝒽𝒶𝓅𝓉𝑒𝓇 𝟣
|
|
274
|
+
slug: hearts-in-valencia-chapter-1
|
|
175
275
|
length: 00:59:14
|
|
176
276
|
streams:
|
|
177
277
|
- platform: SoundCloud
|
|
@@ -309,7 +409,8 @@
|
|
|
309
409
|
credits: |
|
|
310
410
|
STUXNET IS TYLER ETTERS
|
|
311
411
|
|
|
312
|
-
- title:
|
|
412
|
+
- title: 𝔓𝔰𝔞𝔩𝔪𝔰
|
|
413
|
+
slug: psalms
|
|
313
414
|
project: DJ STUXNET
|
|
314
415
|
released: 02025-06-21
|
|
315
416
|
type: Mix
|
|
@@ -318,6 +419,21 @@
|
|
|
318
419
|
label: Intertext
|
|
319
420
|
mp3: true
|
|
320
421
|
wav: true
|
|
422
|
+
trackIds:
|
|
423
|
+
- "inner universe by Origa"
|
|
424
|
+
- "Just Communication by TWO-MIX"
|
|
425
|
+
- "Danzai no Hana: Guilty Sky by Riyu Kosaka"
|
|
426
|
+
- "rise by Origa"
|
|
427
|
+
- "Beautiful World by Hiraku Utada"
|
|
428
|
+
- "Obsession by See-Saw"
|
|
429
|
+
- "Simple And Clean by Hiraku Utada"
|
|
430
|
+
- "Kiss me sunlights by Heart of Air"
|
|
431
|
+
- "Beyond the Bounds by KONAMI, Maki Kimura"
|
|
432
|
+
- "Making of a Cyborg by Kenji Kawai"
|
|
433
|
+
- "Liberi Fatali by Nobuo Uematsu"
|
|
434
|
+
- "Gustaberg by Kumi Tanioka"
|
|
435
|
+
- "Broken Promise [Dreams] by Joe Boyd Vigil"
|
|
436
|
+
- "Hiru no Tsuki by Akino Arai"
|
|
321
437
|
tracks:
|
|
322
438
|
- number: 1
|
|
323
439
|
title: Psalms
|
|
@@ -341,7 +457,8 @@
|
|
|
341
457
|
|
|
342
458
|
credits: STUXNET is Tyler Etters.
|
|
343
459
|
|
|
344
|
-
- title:
|
|
460
|
+
- title: midwest_sad, part 2
|
|
461
|
+
slug: midwest-sad-part-2
|
|
345
462
|
project: DJ STUXNET
|
|
346
463
|
released: 02025-06-14
|
|
347
464
|
type: Mix
|
|
@@ -350,9 +467,25 @@
|
|
|
350
467
|
label: Intertext
|
|
351
468
|
mp3: true
|
|
352
469
|
wav: true
|
|
353
|
-
|
|
354
|
-
-
|
|
355
|
-
|
|
470
|
+
trackIds:
|
|
471
|
+
- "In Keeping Secrets of Silent Earth: 3 (cont.) by Coheed and Cambria"
|
|
472
|
+
- "Love Rhymes with Hideous Car Wreck by The Blood Brothers"
|
|
473
|
+
- "People ii: The Reckoning by AJJ"
|
|
474
|
+
- "The Bad In Each Other by Feist"
|
|
475
|
+
- "Hurt by Johnny Cash"
|
|
476
|
+
- "Obsessive Compulsive by The Firebird Band"
|
|
477
|
+
- "To a Friend by Alexisonfire"
|
|
478
|
+
- "Eye by The Smashing Pumpkins"
|
|
479
|
+
- "Sometimes by The Digital Kill"
|
|
480
|
+
- "Skinny Love by Bon Iver"
|
|
481
|
+
- "How to Disappear Completely by Radiohead"
|
|
482
|
+
- "Weak And Powerless by A Perfect Circle"
|
|
483
|
+
- "Soul Meets Body by Death Cab for Cutie"
|
|
484
|
+
- "To Be Alone With You by Sufjan Stevens"
|
|
485
|
+
tracks:
|
|
486
|
+
- number: 1
|
|
487
|
+
title: midwest_sad, part 2
|
|
488
|
+
slug: midwest-sad-part-2
|
|
356
489
|
length: 00:59:25
|
|
357
490
|
streams:
|
|
358
491
|
- platform: SoundCloud
|
|
@@ -367,7 +500,8 @@
|
|
|
367
500
|
Now, we're coming home.
|
|
368
501
|
credits: STUXNET is Tyler Etters.
|
|
369
502
|
|
|
370
|
-
- title:
|
|
503
|
+
- title: midwest_sad, part 1
|
|
504
|
+
slug: midwest-sad-part-1
|
|
371
505
|
project: DJ STUXNET
|
|
372
506
|
released: 02025-06-14
|
|
373
507
|
type: Mix
|
|
@@ -376,9 +510,25 @@
|
|
|
376
510
|
label: Intertext
|
|
377
511
|
mp3: true
|
|
378
512
|
wav: true
|
|
379
|
-
|
|
380
|
-
-
|
|
381
|
-
|
|
513
|
+
trackIds:
|
|
514
|
+
- "Fight Song by The Appleseed Cast"
|
|
515
|
+
- "Gunpowder: A Ballet by Dr Manhattan"
|
|
516
|
+
- "Our Holy Ghosts by The Felix Culpa"
|
|
517
|
+
- "The Seer's Tower by Sufjan Stevens"
|
|
518
|
+
- "Shiola by Murder by Death"
|
|
519
|
+
- "Understanding in a Car Crash by Thursday"
|
|
520
|
+
- "In Circles - Remastered by Sunny Day Real Estate"
|
|
521
|
+
- "January 1979 by mewithoutYou"
|
|
522
|
+
- "Your Death Makes Me Wish Heaven Was Real by Frail Body"
|
|
523
|
+
- "Stare At The Sun by Thrice"
|
|
524
|
+
- "Four Winds by Bright Eyes"
|
|
525
|
+
- "Art is Hard by Cursive"
|
|
526
|
+
- "Act Appalled by Circa Survive"
|
|
527
|
+
- "In Keeping Secrets of Silent Earth: 3 by Coheed and Cambria"
|
|
528
|
+
tracks:
|
|
529
|
+
- number: 1
|
|
530
|
+
title: midwest_sad, part 1
|
|
531
|
+
slug: midwest-sad-part-1
|
|
382
532
|
length: 00:59:18
|
|
383
533
|
streams:
|
|
384
534
|
- platform: SoundCloud
|
|
@@ -397,6 +547,22 @@
|
|
|
397
547
|
label: Intertext
|
|
398
548
|
mp3: true
|
|
399
549
|
wav: false
|
|
550
|
+
trackIds:
|
|
551
|
+
- "Vengeance. (feat. Graham Sayle) by Rainy Miller"
|
|
552
|
+
- "Poltergeist by Arjan Miranda"
|
|
553
|
+
- "Penance by Uniform, The Body"
|
|
554
|
+
- "Failed Future by Master Musicians of Bukkake"
|
|
555
|
+
- "Aperic sers elel by Ernest Ogannesyan"
|
|
556
|
+
- "Made by Jamie Isaac, Nosaj Thing"
|
|
557
|
+
- "Jetset by Ojerime"
|
|
558
|
+
- "Suits Maps And Guns by Tyler Bates, Joel J. Richard"
|
|
559
|
+
- "A Glass Can Only Spill What It Contains by mewithoutYou"
|
|
560
|
+
- "The Boxer by Simon and Garfunkel"
|
|
561
|
+
- "Wat U Sed (feat. Doechii & Karl Banx) by Isaiah Rashad"
|
|
562
|
+
- "Street Struck by Big L"
|
|
563
|
+
- "Heart of the Devil by Danzig"
|
|
564
|
+
- "Out of Touch by Fruit & Flowers"
|
|
565
|
+
- "Requiem by Cade Diehm"
|
|
400
566
|
tracks:
|
|
401
567
|
- number: 1
|
|
402
568
|
title: Brooklyn Vengeance
|
|
@@ -489,6 +655,20 @@
|
|
|
489
655
|
label: Intertext
|
|
490
656
|
mp3: true
|
|
491
657
|
wav: false
|
|
658
|
+
trackIds:
|
|
659
|
+
- "Not Afraid by アンジェラ (Vo.Alisa)"
|
|
660
|
+
- "In The Air Tonight by Phil Colins"
|
|
661
|
+
- "Straight Up by Paula Abdul"
|
|
662
|
+
- "Give It All - Redux by The Amity Affliction"
|
|
663
|
+
- "Dead End by In Flames"
|
|
664
|
+
- "Pete Standing Alone by Boards of Canada"
|
|
665
|
+
- "Alberto Balsalm by Aphex Twin"
|
|
666
|
+
- "Decode by Paramore"
|
|
667
|
+
- "The World Engulfed In Flames by Darkest Hour"
|
|
668
|
+
- "This Is What It Feels Like by BANKS"
|
|
669
|
+
- "2•GOLDEN DAWN•7 by Die Antwoord"
|
|
670
|
+
- "Goodbye by Ulrich Schnauss"
|
|
671
|
+
- "Hiru no Tsuki by Akino Arai"
|
|
492
672
|
tracks:
|
|
493
673
|
- number: 1
|
|
494
674
|
title: DISSOLUTION
|
|
@@ -510,6 +690,20 @@
|
|
|
510
690
|
label: Intertext
|
|
511
691
|
mp3: true
|
|
512
692
|
wav: false
|
|
693
|
+
trackIds:
|
|
694
|
+
- "Lips Like Morphine by Kill Hannah"
|
|
695
|
+
- "Razorblade Kiss by HIM"
|
|
696
|
+
- "Raindrops + Sunshowers by The Smashing Pumpkins"
|
|
697
|
+
- "The Hollow by A Perfect Circle"
|
|
698
|
+
- "Alibi by BANKS"
|
|
699
|
+
- "Sell Your Soul by Hollywood Undead"
|
|
700
|
+
- "sLeepwALkeR by The Pretty Wild"
|
|
701
|
+
- "Circle With Me by Spiritbox"
|
|
702
|
+
- "17 Crimes by AFI"
|
|
703
|
+
- "Going Under by Evanescence"
|
|
704
|
+
- "Chasing Ghosts by The Amity Affliction"
|
|
705
|
+
- "Heaven's a Lie by Lacuna Coil"
|
|
706
|
+
- "Another Love by bvdub"
|
|
513
707
|
tracks:
|
|
514
708
|
- number: 1
|
|
515
709
|
title: ELEGIES FOR ASHLEY
|
|
@@ -533,6 +727,20 @@
|
|
|
533
727
|
wav: true
|
|
534
728
|
notes: |
|
|
535
729
|
we are a special interest group. we have special interests. william basinski. and cathal. and are all geographically aligned with SF except me. and cathal. we are very normal.
|
|
730
|
+
trackIds:
|
|
731
|
+
- "Red Horizon by Fit For An Autoposy"
|
|
732
|
+
- "Blue Dream by Dance Gavin Dance"
|
|
733
|
+
- "KIssing Cousins by Closure in Moscow"
|
|
734
|
+
- "Stronger by Britteny Spears"
|
|
735
|
+
- "Last Resort by Papa Roach"
|
|
736
|
+
- "It's My Life by Bon Jovi"
|
|
737
|
+
- "Runnin' with the Devil by Van Halen"
|
|
738
|
+
- "limerence by Nakedleisure, gwendear"
|
|
739
|
+
- "09-15-00 by Godspeed You! Black Emperor"
|
|
740
|
+
- "Hearing Things by Shoi Miyazawa"
|
|
741
|
+
- "Ritual by 1000 Eyes, Tom Schley"
|
|
742
|
+
- "Roundtable Hold by Tsukasa Saitoh"
|
|
743
|
+
- "The Sky Is Black (OG YouTube Rip) by Telefon Tel Aviv"
|
|
536
744
|
tracks:
|
|
537
745
|
- number: 1
|
|
538
746
|
title: baysinski event ii world war iii
|