Update ID generation, CV formatting, and regenerate IDs

This commit is contained in:
Michael Winter 2026-02-27 22:15:47 +01:00
parent 241beb396b
commit a62ea09760
13 changed files with 771 additions and 718 deletions

View file

@ -39,6 +39,22 @@ const talksByYear = computed(() => {
}) })
}) })
const sortedPublications = computed(() => {
if (!resumeData.value?.publications) return []
return [...resumeData.value.publications].sort((a, b) => {
const getYear = (key) => parseInt(key.replace(/\D/g, '')) || 0
const getSuffix = (key) => key.replace(/^Winter\d+/, '') || ''
const yearA = getYear(a.citationKey)
const yearB = getYear(b.citationKey)
if (yearA !== yearB) return yearB - yearA
return getSuffix(b.citationKey).localeCompare(getSuffix(a.citationKey))
})
})
function formatMonth(dateStr) { function formatMonth(dateStr) {
if (!dateStr) return 'Present' if (!dateStr) return 'Present'
const date = new Date(dateStr) const date = new Date(dateStr)
@ -123,17 +139,16 @@ useHead({
<section v-if="resume?.publications?.length" class="cv-section"> <section v-if="resume?.publications?.length" class="cv-section">
<h4>Publications</h4> <h4>Publications</h4>
<div class="cv-entry"> <div class="cv-entry">
<div v-for="pub in resume.publications" :key="pub.id" class="item"> <div v-for="pub in sortedPublications" :key="pub.id" class="item">
<div class="item-title" v-html="pub.entryTags?.title"></div> <div class="item-title" v-html="pub.entryTags?.title"></div>
<div class="bib ml-4"> <div class="bib ml-4 text-[#7F7F7F]">
<span v-if="pub.entryTags?.author">{{ pub.entryTags.author }}.</span> {{ pub.entryTags?.author }}
<span v-if="pub.entryTags?.editor"> <span v-if="pub.entryTags?.booktitle">{{ pub.entryTags?.booktitle }}.&nbsp;</span>
<span v-if="pub.entryTags?.author">, </span>editors {{ pub.entryTags.editor }}. <span v-if="pub.entryTags?.journal">{{ pub.entryTags?.journal }}.&nbsp;</span>
</span> <span v-if="pub.entryTags?.editor">editors {{ pub.entryTags?.editor }}&nbsp;</span>
<span v-if="pub.entryTags?.booktitle"><em>{{ pub.entryTags.booktitle }}.</em></span> <span v-if="pub.entryTags?.volume">volume {{ pub.entryTags?.volume }}.</span>
<span v-if="pub.entryTags?.journal"><em>{{ pub.entryTags.journal }}</em>,</span> <span v-if="pub.entryTags?.publisher">{{ pub.entryTags?.publisher }}.</span>
<span v-if="pub.entryTags?.volume">vol. {{ pub.entryTags.volume }}</span> {{ pub.entryTags?.year }}.
<span v-if="pub.entryTags?.publisher">{{ pub.entryTags.publisher }},</span> {{ pub.entryTags?.year }}.
</div> </div>
</div> </div>
</div> </div>

View file

@ -134,7 +134,17 @@
pub.entryTags.howpublished = "/pubs/" + pub.entryTags.howpublished pub.entryTags.howpublished = "/pubs/" + pub.entryTags.howpublished
} }
} }
return cloned.sort((a,b) => (a.citationKey > b.citationKey) ? -1 : ((b.citationKey > a.citationKey) ? 1 : 0)) return cloned.sort((a, b) => {
const getYear = (key) => parseInt(key.replace(/\D/g, '')) || 0
const getSuffix = (key) => key.replace(/^Winter\d+/, '') || ''
const yearA = getYear(a.citationKey)
const yearB = getYear(b.citationKey)
if (yearA !== yearB) return yearB - yearA
return getSuffix(b.citationKey).localeCompare(getSuffix(a.citationKey))
})
} }
}) })

View file

@ -1,5 +1,6 @@
import { readFileSync, writeFileSync, existsSync } from 'node:fs' import { readFileSync, writeFileSync, existsSync } from 'node:fs'
import { join } from 'node:path' import { join } from 'node:path'
import { nanoid } from 'nanoid'
const dataDir = './server/data' const dataDir = './server/data'
@ -15,7 +16,7 @@ function getFilePath(collection) {
} }
function generateId() { function generateId() {
return Math.random().toString(36).substring(2, 15) return nanoid(12)
} }
export default defineEventHandler(async (event) => { export default defineEventHandler(async (event) => {

View file

@ -1,50 +1,50 @@
[ [
{ {
"id": "563ee6f1e4b0ce38bd2f9a89", "id": "cHmyjWQ9aMp2",
"filename": "Ostrava_cover.jpg", "filename": "Ostrava_cover.jpg",
"contentType": "image/jpeg" "contentType": "image/jpeg"
}, },
{ {
"id": "563fcc41e4b0ce38bd2f9aa1", "id": "IyxbqsKnKKu-",
"filename": "west_coast_soundings_cover.jpg", "filename": "west_coast_soundings_cover.jpg",
"contentType": "image/jpeg" "contentType": "image/jpeg"
}, },
{ {
"id": "56426516e4b0ce38bd2f9aa6", "id": "gTqFuVPe4Z8H",
"filename": "DIY_Canons_cover.jpg", "filename": "DIY_Canons_cover.jpg",
"contentType": "image/jpeg" "contentType": "image/jpeg"
}, },
{ {
"id": "56483e15e4b0ce38bd2f9b65", "id": "XF-6oGsoAg_H",
"filename": "Rounds_cover.jpg", "filename": "Rounds_cover.jpg",
"contentType": "image/jpeg" "contentType": "image/jpeg"
}, },
{ {
"id": "5a493efe4f82170dbbb3fe72", "id": "LlzjEhgRg_-z",
"filename": "approximating_omega_cover.jpg", "filename": "approximating_omega_cover.jpg",
"contentType": "image/jpeg" "contentType": "image/jpeg"
}, },
{ {
"id": "5a49617e4f82170dbbb3fe79", "id": "X7ReTVSm4Gw1",
"filename": "lower_limit_cover.jpg", "filename": "lower_limit_cover.jpg",
"contentType": "image/jpeg" "contentType": "image/jpeg"
}, },
{ {
"id": "5b4601a96082b5226d429b99", "id": "J4GMOD2qGvBd",
"filename": "preliminary_thoughts_TR.jpg", "filename": "preliminary_thoughts_TR.jpg",
"contentType": "image/jpeg" "contentType": "image/jpeg"
}, },
{ {
"id": "5b4601ee6082b5226d429ba5", "id": "c_HEs-35do6e",
"filename": "preliminary_thoughts_BMV.jpg", "filename": "preliminary_thoughts_BMV.jpg",
"contentType": "image/jpeg" "contentType": "image/jpeg"
}, },
{ {
"id": "6016ca5e2ab79c0001885a4d", "id": "gttkTOzN5mGT",
"filename": "single_track_cover.jpg" "filename": "single_track_cover.jpg"
}, },
{ {
"id": "61f7793cb9d8210001e771e8", "id": "MmfXswlHr7rp",
"filename": "CiCC_cover.jpg" "filename": "CiCC_cover.jpg"
} }
] ]

File diff suppressed because it is too large Load diff

View file

@ -1,90 +1,90 @@
[ [
{ {
"id": "564d2906e4b0ce38bd2f9b6b", "id": "FjOGUYPKIE_3",
"filename": "waterline_la_river_1.jpg", "filename": "waterline_la_river_1.jpg",
"contentType": "image/jpeg" "contentType": "image/jpeg"
}, },
{ {
"id": "564d2949e4b0ce38bd2f9b78", "id": "9jfLZP23itD6",
"filename": "waterline_la_river_2.jpg", "filename": "waterline_la_river_2.jpg",
"contentType": "image/jpeg" "contentType": "image/jpeg"
}, },
{ {
"id": "564e9bade4b0ce38bd2f9b88", "id": "3u2LVd_kg-8W",
"filename": "mbw_ostrava_1.jpg", "filename": "mbw_ostrava_1.jpg",
"contentType": "image/jpeg" "contentType": "image/jpeg"
}, },
{ {
"id": "5653a9c2e4b0ce38bd2f9bf5", "id": "PfXH1oYwnsqY",
"filename": "quieting_rooms_image_1.jpg", "filename": "quieting_rooms_image_1.jpg",
"contentType": "image/jpeg" "contentType": "image/jpeg"
}, },
{ {
"id": "5653a9dae4b0ce38bd2f9c12", "id": "WW2nhTChBPaD",
"filename": "quieting_rooms_image_2.jpg", "filename": "quieting_rooms_image_2.jpg",
"contentType": "image/jpeg" "contentType": "image/jpeg"
}, },
{ {
"id": "5653a9e9e4b0ce38bd2f9c26", "id": "DT_nyxIXXp4S",
"filename": "quieting_rooms_image_3.jpg", "filename": "quieting_rooms_image_3.jpg",
"contentType": "image/jpeg" "contentType": "image/jpeg"
}, },
{ {
"id": "5653a9eee4b0ce38bd2f9c3a", "id": "hbeagS52q_MB",
"filename": "quieting_rooms_image_4.jpg", "filename": "quieting_rooms_image_4.jpg",
"contentType": "image/jpeg" "contentType": "image/jpeg"
}, },
{ {
"id": "5653bd2fe4b0ce38bd2f9c4a", "id": "EYvzs489mE2o",
"filename": "waterline_ostrava.jpg", "filename": "waterline_ostrava.jpg",
"contentType": "image/jpeg" "contentType": "image/jpeg"
}, },
{ {
"id": "5653be13e4b0ce38bd2f9c60", "id": "gT3E5rMNLcxJ",
"filename": "minor_third_abstract.jpg", "filename": "minor_third_abstract.jpg",
"contentType": "image/jpeg" "contentType": "image/jpeg"
}, },
{ {
"id": "5653be2ce4b0ce38bd2f9c6c", "id": "Ayei6Mhmke-d",
"filename": "for_gregory_chaitin.jpg", "filename": "for_gregory_chaitin.jpg",
"contentType": "image/jpeg" "contentType": "image/jpeg"
}, },
{ {
"id": "5808bcabe4b04741c902e45e", "id": "Yo6GUlmbZ-6K",
"filename": "mbw_hundred_years_1.jpg", "filename": "mbw_hundred_years_1.jpg",
"contentType": "image/jpeg" "contentType": "image/jpeg"
}, },
{ {
"id": "5808bd3fe4b04741c902e46e", "id": "Mjxnz9V-Dicy",
"filename": "mbw_hundred_years_2.jpg", "filename": "mbw_hundred_years_2.jpg",
"contentType": "image/jpeg" "contentType": "image/jpeg"
}, },
{ {
"id": "5808bdbbe4b04741c902e480", "id": "OFQcFOUS_tNd",
"filename": "mbw_oaxaca_1.jpg", "filename": "mbw_oaxaca_1.jpg",
"contentType": "image/jpeg" "contentType": "image/jpeg"
}, },
{ {
"id": "5808bdf1e4b04741c902e48a", "id": "kV_W-qhMHwoj",
"filename": "mbw_oaxaca_2.jpg", "filename": "mbw_oaxaca_2.jpg",
"contentType": "image/jpeg" "contentType": "image/jpeg"
}, },
{ {
"id": "5808be13e4b04741c902e494", "id": "wOj61VitPhhQ",
"filename": "mbw_oaxaca_3.jpg", "filename": "mbw_oaxaca_3.jpg",
"contentType": "image/jpeg" "contentType": "image/jpeg"
}, },
{ {
"id": "58ebee414f82171557aecb3c", "id": "L8Pj5Tbyj3SD",
"filename": "rockfall.jpg", "filename": "rockfall.jpg",
"contentType": "image/jpeg" "contentType": "image/jpeg"
}, },
{ {
"id": "6016e5232ab79c0001885a52", "id": "uid0iZ44ApBB",
"filename": "mbw_plants_foto.jpg" "filename": "mbw_plants_foto.jpg"
}, },
{ {
"id": "6016e64c2ab79c0001885a62", "id": "_s4kavHdvab_",
"filename": "mbw_domino_perf.jpg" "filename": "mbw_domino_perf.jpg"
} }
] ]

View file

@ -1,48 +1,48 @@
[ [
{ {
"id": "56f75398fdc52469b6c07c56", "id": "bnCJ0qGvYMOt",
"image": "mbw_hundred_years_2.jpg", "image": "mbw_hundred_years_2.jpg",
"credit": "Anton Lukoszevieze", "credit": "Anton Lukoszevieze",
"priority": 200 "priority": 200
}, },
{ {
"id": "5808be40ec6cea73b9674e76", "id": "K430nNlBthu2",
"image": "mbw_oaxaca_1.jpg", "image": "mbw_oaxaca_1.jpg",
"credit": "Bradford Bailey", "credit": "Bradford Bailey",
"priority": 300 "priority": 300
}, },
{ {
"id": "5808be4fec6cea73b9674e77", "id": "9LbO0bV10LEl",
"image": "mbw_oaxaca_2.jpg", "image": "mbw_oaxaca_2.jpg",
"credit": "Bradford Bailey", "credit": "Bradford Bailey",
"priority": 400 "priority": 400
}, },
{ {
"id": "5808be60ec6cea73b9674e78", "id": "wjUhdVp1tK2l",
"image": "mbw_oaxaca_3.jpg", "image": "mbw_oaxaca_3.jpg",
"credit": "Bradford Bailey", "credit": "Bradford Bailey",
"priority": 500 "priority": 500
}, },
{ {
"id": "5808ce03ec6cea73b9674e7a", "id": "sHzL5JrYZoX7",
"image": "mbw_hundred_years_1.jpg", "image": "mbw_hundred_years_1.jpg",
"credit": "Anton Lukoszevieze", "credit": "Anton Lukoszevieze",
"priority": 100 "priority": 100
}, },
{ {
"id": "5808d232ec6cea73b9674e7c", "id": "g5L0bQMaSCPi",
"image": "mbw_ostrava_1.jpg", "image": "mbw_ostrava_1.jpg",
"credit": "ONMD", "credit": "ONMD",
"priority": 600 "priority": 600
}, },
{ {
"id": "6016e58a2276b60007751e83", "id": "NC2DYWEW4b3Q",
"image": "mbw_plants_foto.jpg", "image": "mbw_plants_foto.jpg",
"credit": "Irasema Fernández", "credit": "Irasema Fernández",
"priority": 50 "priority": 50
}, },
{ {
"id": "6016e6cc2276b60007751e84", "id": "I7ES3Qs_4-iB",
"image": "mbw_domino_perf.jpg", "image": "mbw_domino_perf.jpg",
"credit": "Anna-Lena Reulein", "credit": "Anna-Lena Reulein",
"priority": 60 "priority": 60

View file

@ -1,31 +1,32 @@
[ [
{ {
"id": "68e6c3abeaa478002aaf6603", "id": "DPC42dbcPnSX",
"citationKey": "Winter26c",
"entryType": "article",
"entryTags": {
"author": "with Borot, G.",
"title": "Haros Families",
"year": "forthcoming"
}
},
{
"id": "NVroGG5Diwkt",
"citationKey": "Winter26a", "citationKey": "Winter26a",
"entryType": "article", "entryType": "article",
"entryTags": { "entryTags": {
"author": "Michael Winter", "author": "",
"title": "Tom Johnson and a Rational Theory of Harmony", "title": "Tom Johnson and a Rational Theory of Harmony",
"journal": "Journal of Mathematics and Music", "journal": "Journal of Mathematics and Music",
"year": "2026", "year": "2026",
"pages": "1--17", "pages": "117",
"volume": "1",
"publisher": "Taylor & Francis", "publisher": "Taylor & Francis",
"doi": "10.1080/17459737.2025.2591899", "doi": "10.1080/17459737.2025.2591899",
"url": "https://doi.org/10.1080/17459737.2025.2591899" "url": "https://doi.org/10.1080/17459737.2025.2591899"
} }
}, },
{ {
"id": "68e6c3abeaa478002aaf6604", "id": "-ypiNO6zuH5M",
"citationKey": "Winter25a",
"entryType": "article",
"entryTags": {
"author": "with Abrahão, F., Zenil, H., Porto, F., Wehmuth, K. and D'Ottaviano, I.",
"title": "A simplicity bubble problem in formal-theoretic learning systems",
"year": "forthcoming"
}
},
{
"id": "68e6c3abeaa478002aaf6605",
"citationKey": "Winter24a", "citationKey": "Winter24a",
"entryType": "incollection", "entryType": "incollection",
"entryTags": { "entryTags": {
@ -38,7 +39,7 @@
} }
}, },
{ {
"id": "68e6c3abeaa478002aaf6606", "id": "AxPrV72Iz5Q-",
"citationKey": "Winter23", "citationKey": "Winter23",
"entryType": "article", "entryType": "article",
"entryTags": { "entryTags": {
@ -50,7 +51,7 @@
} }
}, },
{ {
"id": "68e6c3abeaa478002aaf6607", "id": "8R_y4w_PX9Ey",
"citationKey": "Winter20c", "citationKey": "Winter20c",
"entryType": "article", "entryType": "article",
"entryTags": { "entryTags": {
@ -62,7 +63,7 @@
} }
}, },
{ {
"id": "68e6c3abeaa478002aaf6608", "id": "ir_mPsMnICaY",
"citationKey": "Winter20b", "citationKey": "Winter20b",
"entryType": "incollection", "entryType": "incollection",
"entryTags": { "entryTags": {
@ -76,7 +77,7 @@
} }
}, },
{ {
"id": "68e6c3abeaa478002aaf6609", "id": "BWZsIYM7QuSI",
"citationKey": "Winter20a", "citationKey": "Winter20a",
"entryType": "misc", "entryType": "misc",
"entryTags": { "entryTags": {
@ -88,7 +89,7 @@
} }
}, },
{ {
"id": "68e6c3abeaa478002aaf660a", "id": "Eov-ZdnhB8VN",
"citationKey": "Winter19c", "citationKey": "Winter19c",
"entryType": "incollection", "entryType": "incollection",
"entryTags": { "entryTags": {
@ -103,7 +104,7 @@
} }
}, },
{ {
"id": "68e6c3abeaa478002aaf660b", "id": "9fTMObVTq6bK",
"citationKey": "Winter19b", "citationKey": "Winter19b",
"entryType": "incollection", "entryType": "incollection",
"entryTags": { "entryTags": {
@ -117,7 +118,7 @@
} }
}, },
{ {
"id": "68e6c3abeaa478002aaf660c", "id": "-EMgMdcmcVwG",
"citationKey": "Winter19a", "citationKey": "Winter19a",
"entryType": "misc", "entryType": "misc",
"entryTags": { "entryTags": {
@ -129,7 +130,7 @@
} }
}, },
{ {
"id": "68e6c3abeaa478002aaf660d", "id": "7MZV46hLmp0U",
"citationKey": "Winter17a", "citationKey": "Winter17a",
"entryType": "incollection", "entryType": "incollection",
"entryTags": { "entryTags": {
@ -143,7 +144,7 @@
} }
}, },
{ {
"id": "68e6c3abeaa478002aaf660e", "id": "rHw-6j9K9oPH",
"citationKey": "Winter16a", "citationKey": "Winter16a",
"entryType": "misc", "entryType": "misc",
"entryTags": { "entryTags": {
@ -155,7 +156,7 @@
} }
}, },
{ {
"id": "68e6c3abeaa478002aaf660f", "id": "-ZafAhCZsda1",
"citationKey": "Winter15a", "citationKey": "Winter15a",
"entryType": "Book", "entryType": "Book",
"entryTags": { "entryTags": {
@ -168,7 +169,7 @@
} }
}, },
{ {
"id": "68e6c3abeaa478002aaf6610", "id": "eLlkfz2XIvX4",
"citationKey": "Winter14b", "citationKey": "Winter14b",
"entryType": "misc", "entryType": "misc",
"entryTags": { "entryTags": {
@ -181,7 +182,7 @@
} }
}, },
{ {
"id": "68e6c3abeaa478002aaf6611", "id": "9aQaRawHso4_",
"citationKey": "Winter14a", "citationKey": "Winter14a",
"entryType": "article", "entryType": "article",
"entryTags": { "entryTags": {
@ -196,7 +197,7 @@
} }
}, },
{ {
"id": "68e6c3abeaa478002aaf6612", "id": "ONer_k62eJM3",
"citationKey": "Winter12a", "citationKey": "Winter12a",
"entryType": "incollection", "entryType": "incollection",
"entryTags": { "entryTags": {
@ -210,7 +211,7 @@
} }
}, },
{ {
"id": "68e6c3abeaa478002aaf6613", "id": "_eRFSbL5XUKe",
"citationKey": "Winter11a", "citationKey": "Winter11a",
"entryType": "article", "entryType": "article",
"entryTags": { "entryTags": {
@ -225,7 +226,7 @@
} }
}, },
{ {
"id": "68e6c3abeaa478002aaf6614", "id": "iHTZzQNJ88MQ",
"citationKey": "Winter10d", "citationKey": "Winter10d",
"entryType": "misc", "entryType": "misc",
"entryTags": { "entryTags": {
@ -238,7 +239,7 @@
} }
}, },
{ {
"id": "68e6c3abeaa478002aaf6615", "id": "RzJxs_pCt8fD",
"citationKey": "Winter10c", "citationKey": "Winter10c",
"entryType": "article", "entryType": "article",
"entryTags": { "entryTags": {
@ -253,7 +254,7 @@
} }
}, },
{ {
"id": "68e6c3abeaa478002aaf6616", "id": "Kbar50Nq3v6J",
"citationKey": "Winter10b", "citationKey": "Winter10b",
"entryType": "phdthesis", "entryType": "phdthesis",
"entryTags": { "entryTags": {
@ -267,7 +268,7 @@
} }
}, },
{ {
"id": "68e6c3abeaa478002aaf6617", "id": "yNNa6PGHvo0Z",
"citationKey": "Winter10a", "citationKey": "Winter10a",
"entryType": "article", "entryType": "article",
"entryTags": { "entryTags": {
@ -282,7 +283,7 @@
} }
}, },
{ {
"id": "68e6c3abeaa478002aaf6618", "id": "N1uPKzRxTwQD",
"citationKey": "Winter09a", "citationKey": "Winter09a",
"entryType": "misc", "entryType": "misc",
"entryTags": { "entryTags": {
@ -294,7 +295,7 @@
} }
}, },
{ {
"id": "68e6c3abeaa478002aaf6619", "id": "-LOPcqph3L5K",
"citationKey": "Winter08a", "citationKey": "Winter08a",
"entryType": "article", "entryType": "article",
"entryTags": { "entryTags": {
@ -309,7 +310,7 @@
} }
}, },
{ {
"id": "68e6c3abeaa478002aaf661a", "id": "9GF-AexkMXNW",
"citationKey": "Winter07b", "citationKey": "Winter07b",
"entryType": "article", "entryType": "article",
"entryTags": { "entryTags": {
@ -323,7 +324,7 @@
} }
}, },
{ {
"id": "68e6c3abeaa478002aaf661b", "id": "ncG2WZ7EU3Yo",
"citationKey": "Winter07a", "citationKey": "Winter07a",
"entryType": "inproceedings", "entryType": "inproceedings",
"entryTags": { "entryTags": {
@ -337,5 +338,15 @@
"address": "New York, NY, USA", "address": "New York, NY, USA",
"howpublished": "Automatic_notation_generators.pdf" "howpublished": "Automatic_notation_generators.pdf"
} }
},
{
"citationKey": "Winter26b",
"entryType": "article",
"entryTags": {
"author": "with Abrahão, F., Zenil, H., Porto, F., Wehmuth, K. and D'Ottaviano, I.",
"title": "A simplicity bubble problem in formal-theoretic learning systems",
"year": "forthcoming"
},
"id": "WTv69enTBSla"
} }
] ]

View file

@ -1,93 +1,93 @@
[ [
{ {
"id": "5643a187e4b0ce38bd2f9ab1", "id": "2y-6XNLXQ3Kv",
"filename": "Dissonant_counterpoint_and_statistical_feedback.pdf", "filename": "Dissonant_counterpoint_and_statistical_feedback.pdf",
"contentType": "application/pdf" "contentType": "application/pdf"
}, },
{ {
"id": "56454db7e4b0ce38bd2f9ab8", "id": "49bh0wsPDpzA",
"filename": "Chordal_and_timbral_morphologies_using_Hamiltonian_cycles.pdf", "filename": "Chordal_and_timbral_morphologies_using_Hamiltonian_cycles.pdf",
"contentType": "application/pdf" "contentType": "application/pdf"
}, },
{ {
"id": "56454e40e4b0ce38bd2f9ad5", "id": "U2AfhImsaEFX",
"filename": "Livescore.pdf", "filename": "Livescore.pdf",
"contentType": "application/pdf" "contentType": "application/pdf"
}, },
{ {
"id": "56454e92e4b0ce38bd2f9adb", "id": "6tTu0iOYtY8K",
"filename": "Structural_Metrics.pdf", "filename": "Structural_Metrics.pdf",
"contentType": "application/pdf" "contentType": "application/pdf"
}, },
{ {
"id": "56454fe7e4b0ce38bd2f9af3", "id": "te6YrmfCk63U",
"filename": "On_Arbor_Vitae.pdf", "filename": "On_Arbor_Vitae.pdf",
"contentType": "application/pdf" "contentType": "application/pdf"
}, },
{ {
"id": "56455116e4b0ce38bd2f9b01", "id": "s0C9tfMACnls",
"filename": "Automatic_notation_generators.pdf", "filename": "Automatic_notation_generators.pdf",
"contentType": "application/pdf" "contentType": "application/pdf"
}, },
{ {
"id": "57e93ca6e4b04741c902e446", "id": "m1t1rgZWnVrM",
"filename": "On_minimal_change_musical_morphologies.pdf", "filename": "On_minimal_change_musical_morphologies.pdf",
"contentType": "application/pdf" "contentType": "application/pdf"
}, },
{ {
"id": "5895474d4f82171557aecb0c", "id": "Iir5aas-fPPF",
"filename": "polansky_piano_liner_notes.pdf" "filename": "polansky_piano_liner_notes.pdf"
}, },
{ {
"id": "5d1a4e686082b53a9fd05d37", "id": "X76BEAB5wCTW",
"filename": "A_few_more_thoughts_about_Leibniz.pdf" "filename": "A_few_more_thoughts_about_Leibniz.pdf"
}, },
{ {
"id": "5d1a4f6c6082b53a9fd05d47", "id": "7A7RlR6unb1g",
"filename": "tenney_changes_liner_notes.pdf" "filename": "tenney_changes_liner_notes.pdf"
}, },
{ {
"id": "5f41b67830c49e00011f3c22", "id": "Frjy7y0Mrhlt",
"filename": "metaphenomenology_primer.pdf" "filename": "metaphenomenology_primer.pdf"
}, },
{ {
"id": "5fb7bc05b3cb1f0001a435fc", "id": "f0ZC2Y5hy4nm",
"filename": "krieger_yggdrasil_soli_liner_notes.pdf" "filename": "krieger_yggdrasil_soli_liner_notes.pdf"
}, },
{ {
"id": "5fd5f5484d27fc0001f8273a", "id": "Qppt7LdoqM1s",
"filename": "reflections_on_the_quarantine_seminars.pdf" "filename": "reflections_on_the_quarantine_seminars.pdf"
}, },
{ {
"id": "623d6e8da7b11b000184f463", "id": "1OeCdeZNsUTI",
"filename": "metaphenomenology_proposal.pdf" "filename": "metaphenomenology_proposal.pdf"
}, },
{ {
"id": "64f0d0a756991947b7dacbf1", "id": "PpmFnuNEmYDf",
"filename": "barlow_hidden_gems.pdf" "filename": "barlow_hidden_gems.pdf"
}, },
{ {
"id": "652e6cbb5f08170e024432e0", "id": "LsbxPxPJ_mcX",
"filename": "hdp_poster.pdf" "filename": "hdp_poster.pdf"
}, },
{ {
"id": "6551fbff85cc5850833c9f45", "id": "IWVbBVgDpzar",
"filename": "a_few_thoughts_exhibition_poster.pdf" "filename": "a_few_thoughts_exhibition_poster.pdf"
}, },
{ {
"id": "65e6219f2c04433ddf02c143", "id": "W6YnbIyqcNwb",
"filename": "selected_work_samples.pdf" "filename": "selected_work_samples.pdf"
}, },
{ {
"id": "668d27e5ec71714cfe60e33e", "id": "dWqHoUmShNIA",
"filename": "compact_sets_description.pdf" "filename": "compact_sets_description.pdf"
}, },
{ {
"id": "67c96a0e1499351cfea1757c", "id": "vtzBsSAinrnu",
"filename": "teaching_statement.pdf" "filename": "teaching_statement.pdf"
}, },
{ {
"id": "67c96a6e1499351cfea17580", "id": "4Jjf5-go8POP",
"filename": "research_statement.pdf" "filename": "research_statement.pdf"
} }
] ]

View file

@ -1,6 +1,6 @@
[ [
{ {
"id": "563eb5a4dbb260acfadc4c35", "id": "RJSQqLlVV_0N",
"title": "west coast soundings", "title": "west coast soundings",
"label": "Edition Wandelweiser Records", "label": "Edition Wandelweiser Records",
"date": "2014", "date": "2014",
@ -50,7 +50,7 @@
] ]
}, },
{ {
"id": "563eb670dbb260acfadc4c36", "id": "L7lhY7GTL4Uf",
"title": "DIY Canons", "title": "DIY Canons",
"label": "Pogus Records", "label": "Pogus Records",
"date": "2005", "date": "2005",
@ -67,7 +67,7 @@
] ]
}, },
{ {
"id": "563eb762dbb260acfadc4c37", "id": "aw4oak5-sylL",
"title": "Music of Ostrava Days 2009 Live", "title": "Music of Ostrava Days 2009 Live",
"label": "Ostrava Center for New Music", "label": "Ostrava Center for New Music",
"date": "2009", "date": "2009",
@ -85,7 +85,7 @@
] ]
}, },
{ {
"id": "563eb819dbb260acfadc4c38", "id": "m82-1eI1RP7j",
"title": "rounds", "title": "rounds",
"label": "the wulf. records", "label": "the wulf. records",
"date": "2013", "date": "2013",
@ -101,7 +101,7 @@
] ]
}, },
{ {
"id": "5a4940b705a681a2659a0efe", "id": "yfcxLmzKf-D5",
"title": "approximating omega", "title": "approximating omega",
"label": "Edition Wandelweiser Records", "label": "Edition Wandelweiser Records",
"date": "2017", "date": "2017",
@ -121,7 +121,7 @@
] ]
}, },
{ {
"id": "5a49621905a681a2659a0eff", "id": "_o2w2fvMqWQA",
"title": "lower limit", "title": "lower limit",
"label": "New World Records", "label": "New World Records",
"date": "2018", "date": "2018",
@ -147,7 +147,7 @@
] ]
}, },
{ {
"id": "5b46022cd66afc4a413f148c", "id": "xPfN8qA4Ddho",
"title": "preliminary thoughts", "title": "preliminary thoughts",
"label": "Bahn Mi Verlag", "label": "Bahn Mi Verlag",
"date": "2018", "date": "2018",
@ -164,7 +164,7 @@
] ]
}, },
{ {
"id": "5b460243d66afc4a413f1495", "id": "TFqI3_v6d1JF",
"title": "preliminary thoughts", "title": "preliminary thoughts",
"label": "Tsonami Records", "label": "Tsonami Records",
"date": "2018", "date": "2018",
@ -181,7 +181,7 @@
] ]
}, },
{ {
"id": "6016c9742276b60007751e82", "id": "FjBp3OfziW3w",
"title": "single track", "title": "single track",
"label": "Another Timbre", "label": "Another Timbre",
"date": "2021", "date": "2021",
@ -198,7 +198,7 @@
] ]
}, },
{ {
"id": "61f777b0dc86b900073f369d", "id": "2PivtC6zdgXN",
"title": "Counterfeiting in Colonial Connecticut", "title": "Counterfeiting in Colonial Connecticut",
"label": "XI Records", "label": "XI Records",
"date": "2022", "date": "2022",

View file

@ -1,732 +1,732 @@
[ [
{ {
"id": "563c8608e4b0ce38bd2f97ba", "id": "m158ldbXuile",
"filename": "to_hum_and_walk_score.pdf", "filename": "to_hum_and_walk_score.pdf",
"contentType": "application/pdf", "contentType": "application/pdf",
"legacy_filename": "to_hum_and_walk_total.pdf" "legacy_filename": "to_hum_and_walk_total.pdf"
}, },
{ {
"id": "563c8609e4b0ce38bd2f97c2", "id": "-Q58yZzoM2O9",
"filename": "a_conversation_score.pdf", "filename": "a_conversation_score.pdf",
"contentType": "application/pdf", "contentType": "application/pdf",
"legacy_filename": "a_conversation.pdf" "legacy_filename": "a_conversation.pdf"
}, },
{ {
"id": "563c860ae4b0ce38bd2f97c6", "id": "eOHGLt2gY_JY",
"filename": "necklaces_score.pdf", "filename": "necklaces_score.pdf",
"contentType": "application/pdf", "contentType": "application/pdf",
"legacy_filename": "necklaces_total.pdf" "legacy_filename": "necklaces_total.pdf"
}, },
{ {
"id": "563c860ae4b0ce38bd2f97cc", "id": "-MhggzY2EbF8",
"filename": "partition_and_gate_score.pdf", "filename": "partition_and_gate_score.pdf",
"contentType": "application/pdf", "contentType": "application/pdf",
"legacy_filename": "partition_and_gate_total.pdf" "legacy_filename": "partition_and_gate_total.pdf"
}, },
{ {
"id": "563c860ce4b0ce38bd2f97d9", "id": "z4zV9kBApMVf",
"filename": "order_matters_score.pdf", "filename": "order_matters_score.pdf",
"contentType": "application/pdf", "contentType": "application/pdf",
"legacy_filename": "order_matters.pdf" "legacy_filename": "order_matters.pdf"
}, },
{ {
"id": "563c860de4b0ce38bd2f97dd", "id": "JaVHJ79AjRHc",
"filename": "to_converge_abstract_score.pdf", "filename": "to_converge_abstract_score.pdf",
"contentType": "application/pdf", "contentType": "application/pdf",
"legacy_filename": "to_converge_abstract.pdf" "legacy_filename": "to_converge_abstract.pdf"
}, },
{ {
"id": "563c8611e4b0ce38bd2f97e1", "id": "eI1YfrE4YJhI",
"filename": "material_for_james_klopfleisch_score.pdf", "filename": "material_for_james_klopfleisch_score.pdf",
"contentType": "application/pdf", "contentType": "application/pdf",
"legacy_filename": "material.pdf" "legacy_filename": "material.pdf"
}, },
{ {
"id": "563c8612e4b0ce38bd2f9801", "id": "XgR0i5R009n0",
"filename": "lv_score.pdf", "filename": "lv_score.pdf",
"contentType": "application/pdf", "contentType": "application/pdf",
"legacy_filename": "lv.pdf" "legacy_filename": "lv.pdf"
}, },
{ {
"id": "563c8613e4b0ce38bd2f9807", "id": "WhKFBj136LkU",
"filename": "glass_economies_score.pdf", "filename": "glass_economies_score.pdf",
"contentType": "application/pdf", "contentType": "application/pdf",
"legacy_filename": "glass economies_2013_03_09.pdf" "legacy_filename": "glass economies_2013_03_09.pdf"
}, },
{ {
"id": "563c8616e4b0ce38bd2f980c", "id": "6rWsneWcrbrj",
"filename": "economy_study_in_one_dimension_score.pdf", "filename": "economy_study_in_one_dimension_score.pdf",
"contentType": "application/pdf", "contentType": "application/pdf",
"legacy_filename": "economy_study.pdf" "legacy_filename": "economy_study.pdf"
}, },
{ {
"id": "563c8616e4b0ce38bd2f9814", "id": "9aVhYfaCT64D",
"filename": "copyedit_score.pdf", "filename": "copyedit_score.pdf",
"contentType": "application/pdf", "contentType": "application/pdf",
"legacy_filename": "copyedit.pdf" "legacy_filename": "copyedit.pdf"
}, },
{ {
"id": "563c8616e4b0ce38bd2f9818", "id": "Q4w0RGiUPW1J",
"filename": "quieting_rooms_score.pdf", "filename": "quieting_rooms_score.pdf",
"contentType": "application/pdf", "contentType": "application/pdf",
"legacy_filename": "quieting_rooms_score_final.pdf" "legacy_filename": "quieting_rooms_score_final.pdf"
}, },
{ {
"id": "563c861be4b0ce38bd2f981c", "id": "dTNvWwaxb85d",
"filename": "half_normal_score.pdf", "filename": "half_normal_score.pdf",
"contentType": "application/pdf", "contentType": "application/pdf",
"legacy_filename": "half_normal_draft.pdf" "legacy_filename": "half_normal_draft.pdf"
}, },
{ {
"id": "563c861be4b0ce38bd2f982d", "id": "OgGiSvyYylfL",
"filename": "project_reflect_refract_score.pdf", "filename": "project_reflect_refract_score.pdf",
"contentType": "application/pdf", "contentType": "application/pdf",
"legacy_filename": "project_reflect_refract.pdf" "legacy_filename": "project_reflect_refract.pdf"
}, },
{ {
"id": "563c861be4b0ce38bd2f9831", "id": "etgSIK-Hn_1G",
"filename": "minor_third_score.pdf", "filename": "minor_third_score.pdf",
"contentType": "application/pdf", "contentType": "application/pdf",
"legacy_filename": "minor_third.pdf" "legacy_filename": "minor_third.pdf"
}, },
{ {
"id": "563c861de4b0ce38bd2f9835", "id": "5XEWCcwAGsee",
"filename": "mass_and_band_score.pdf", "filename": "mass_and_band_score.pdf",
"contentType": "application/pdf", "contentType": "application/pdf",
"legacy_filename": "mass_and_band.pdf" "legacy_filename": "mass_and_band.pdf"
}, },
{ {
"id": "563c861de4b0ce38bd2f983c", "id": "VeONcrUL8AFv",
"filename": "minor_third_abstract_score.pdf", "filename": "minor_third_abstract_score.pdf",
"contentType": "application/pdf", "contentType": "application/pdf",
"legacy_filename": "minor_third_abstract.pdf" "legacy_filename": "minor_third_abstract.pdf"
}, },
{ {
"id": "563c8623e4b0ce38bd2f9840", "id": "u9gf61OoXs_7",
"filename": "slip_and_stitch_score.pdf", "filename": "slip_and_stitch_score.pdf",
"contentType": "application/pdf", "contentType": "application/pdf",
"legacy_filename": "slip_and_stitch.pdf" "legacy_filename": "slip_and_stitch.pdf"
}, },
{ {
"id": "563c8629e4b0ce38bd2f9846", "id": "Wz1UlVca9RKb",
"filename": "lower_limit_score.pdf", "filename": "lower_limit_score.pdf",
"contentType": "application/pdf", "contentType": "application/pdf",
"legacy_filename": "lowerlimittotalrev.pdf" "legacy_filename": "lowerlimittotalrev.pdf"
}, },
{ {
"id": "563c862ae4b0ce38bd2f986d", "id": "DUa2ujvrvl9e",
"filename": "line_and_cipher_score.pdf", "filename": "line_and_cipher_score.pdf",
"contentType": "application/pdf", "contentType": "application/pdf",
"legacy_filename": "line_and_cipher_full_score_7_24_2011.pdf" "legacy_filename": "line_and_cipher_full_score_7_24_2011.pdf"
}, },
{ {
"id": "563c862be4b0ce38bd2f9874", "id": "-LTwDS_c6XTX",
"filename": "partition_conjugate_prime_choir|orchestra|choir_one|two|onescore.pdf", "filename": "partition_conjugate_prime_choir|orchestra|choir_one|two|onescore.pdf",
"contentType": "application/pdf", "contentType": "application/pdf",
"legacy_filename": "partition_conjugate_prime.pdf" "legacy_filename": "partition_conjugate_prime.pdf"
}, },
{ {
"id": "563c862ce4b0ce38bd2f987b", "id": "GykePt-W4KGm",
"filename": "subset_canon_score.pdf", "filename": "subset_canon_score.pdf",
"contentType": "application/pdf", "contentType": "application/pdf",
"legacy_filename": "subset_canon.pdf" "legacy_filename": "subset_canon.pdf"
}, },
{ {
"id": "563c862ce4b0ce38bd2f9880", "id": "H5gbpJxLq-uE",
"filename": "scene_plus_plus_score.pdf", "filename": "scene_plus_plus_score.pdf",
"contentType": "application/pdf", "contentType": "application/pdf",
"legacy_filename": "scene++.pdf" "legacy_filename": "scene++.pdf"
}, },
{ {
"id": "563c862de4b0ce38bd2f9884", "id": "MRyKE1l31cON",
"filename": "before_you_cure_the_beast_score.pdf", "filename": "before_you_cure_the_beast_score.pdf",
"contentType": "application/pdf", "contentType": "application/pdf",
"legacy_filename": "before_you_cure_the_beast.pdf" "legacy_filename": "before_you_cure_the_beast.pdf"
}, },
{ {
"id": "563c862de4b0ce38bd2f9888", "id": "7EdNegCuQXl4",
"filename": "just_above_and_or_below_the_waterline_score.pdf", "filename": "just_above_and_or_below_the_waterline_score.pdf",
"contentType": "application/pdf", "contentType": "application/pdf",
"legacy_filename": "waterline.pdf" "legacy_filename": "waterline.pdf"
}, },
{ {
"id": "563c862de4b0ce38bd2f988c", "id": "xFz_OZVBpk5i",
"filename": "pedal_triangle_machine_and_perhaps_coda_score.pdf", "filename": "pedal_triangle_machine_and_perhaps_coda_score.pdf",
"contentType": "application/pdf", "contentType": "application/pdf",
"legacy_filename": "pedal_triangle_machine_and_coda.pdf" "legacy_filename": "pedal_triangle_machine_and_coda.pdf"
}, },
{ {
"id": "563c862ee4b0ce38bd2f9891", "id": "ROVS6ThZd5ZU",
"filename": "after_eons_score.pdf", "filename": "after_eons_score.pdf",
"contentType": "application/pdf", "contentType": "application/pdf",
"legacy_filename": "after_eons.pdf" "legacy_filename": "after_eons.pdf"
}, },
{ {
"id": "563c862fe4b0ce38bd2f9895", "id": "LKDSO-yQ6z6N",
"filename": "Approximating_Omega_score.pdf", "filename": "Approximating_Omega_score.pdf",
"contentType": "application/pdf", "contentType": "application/pdf",
"legacy_filename": "Approximating_Omega.pdf" "legacy_filename": "Approximating_Omega.pdf"
}, },
{ {
"id": "563c862fe4b0ce38bd2f989b", "id": "867-uJB2zzp4",
"filename": "piano_machine_score.pdf", "filename": "piano_machine_score.pdf",
"contentType": "application/pdf", "contentType": "application/pdf",
"legacy_filename": "piano_machine.pdf" "legacy_filename": "piano_machine.pdf"
}, },
{ {
"id": "563c8630e4b0ce38bd2f989f", "id": "FcY4VkwQEEH1",
"filename": "recitation_code_and_perhaps_round_score.pdf", "filename": "recitation_code_and_perhaps_round_score.pdf",
"contentType": "application/pdf", "contentType": "application/pdf",
"legacy_filename": "recitation_code_and_round.pdf" "legacy_filename": "recitation_code_and_round.pdf"
}, },
{ {
"id": "563c8630e4b0ce38bd2f98a5", "id": "lRBMgqx-LOOG",
"filename": "field_and_perfect_circuit_score.pdf", "filename": "field_and_perfect_circuit_score.pdf",
"contentType": "application/pdf", "contentType": "application/pdf",
"legacy_filename": "field_and_perfect_circuit.pdf" "legacy_filename": "field_and_perfect_circuit.pdf"
}, },
{ {
"id": "563c8631e4b0ce38bd2f98aa", "id": "Kel8VGF0P-wK",
"filename": "for_gregory_chaitin_score.pdf", "filename": "for_gregory_chaitin_score.pdf",
"contentType": "application/pdf", "contentType": "application/pdf",
"legacy_filename": "for_gregory_chaitin.pdf" "legacy_filename": "for_gregory_chaitin.pdf"
}, },
{ {
"id": "563c8631e4b0ce38bd2f98ae", "id": "uXKEb4Tkg3BV",
"filename": "for_Sol_LeWitt_score.pdf", "filename": "for_Sol_LeWitt_score.pdf",
"contentType": "application/pdf", "contentType": "application/pdf",
"legacy_filename": "for_Sol_LeWitt.pdf" "legacy_filename": "for_Sol_LeWitt.pdf"
}, },
{ {
"id": "563c8633e4b0ce38bd2f98b2", "id": "8q1vjrG2-EzG",
"filename": "gray_codes_score.pdf", "filename": "gray_codes_score.pdf",
"contentType": "application/pdf", "contentType": "application/pdf",
"legacy_filename": "gray_codes.pdf" "legacy_filename": "gray_codes.pdf"
}, },
{ {
"id": "563c8639e4b0ce38bd2f98bf", "id": "gywvVWZ3lWo1",
"filename": "towards_completeness_score.pdf", "filename": "towards_completeness_score.pdf",
"contentType": "application/pdf", "contentType": "application/pdf",
"legacy_filename": "towards_completeness.pdf" "legacy_filename": "towards_completeness.pdf"
}, },
{ {
"id": "563c863ae4b0ce38bd2f98ea", "id": "sIRto8UcCH6t",
"filename": "small_world_score.pdf", "filename": "small_world_score.pdf",
"contentType": "application/pdf", "contentType": "application/pdf",
"legacy_filename": "small_world.pdf" "legacy_filename": "small_world.pdf"
}, },
{ {
"id": "563c863be4b0ce38bd2f98f0", "id": "hHrVBlMb9nlk",
"filename": "dissection_and_field_score.pdf", "filename": "dissection_and_field_score.pdf",
"contentType": "application/pdf", "contentType": "application/pdf",
"legacy_filename": "dissection_and_field.pdf" "legacy_filename": "dissection_and_field.pdf"
}, },
{ {
"id": "563c863ce4b0ce38bd2f98f7", "id": "OSjG5a8LCdZL",
"filename": "20_arrows_9_dashes_score.pdf", "filename": "20_arrows_9_dashes_score.pdf",
"contentType": "application/pdf", "contentType": "application/pdf",
"legacy_filename": "arrows_and_dashes.pdf" "legacy_filename": "arrows_and_dashes.pdf"
}, },
{ {
"id": "563c863ce4b0ce38bd2f98fb", "id": "GPI_RqaTChHq",
"filename": "for_orin_hildestad_score.pdf", "filename": "for_orin_hildestad_score.pdf",
"contentType": "application/pdf", "contentType": "application/pdf",
"legacy_filename": "for_orin_hildestad.pdf" "legacy_filename": "for_orin_hildestad.pdf"
}, },
{ {
"id": "563c863ce4b0ce38bd2f98ff", "id": "U-Oraqfi7lEe",
"filename": "room_and_seams_score.pdf", "filename": "room_and_seams_score.pdf",
"contentType": "application/pdf", "contentType": "application/pdf",
"legacy_filename": "room_and_seams.pdf" "legacy_filename": "room_and_seams.pdf"
}, },
{ {
"id": "563c863de4b0ce38bd2f9903", "id": "rDBCF2ZYOhI2",
"filename": "seams_score.pdf", "filename": "seams_score.pdf",
"contentType": "application/pdf", "contentType": "application/pdf",
"legacy_filename": "seams.pdf" "legacy_filename": "seams.pdf"
}, },
{ {
"id": "563c863de4b0ce38bd2f9908", "id": "pqidSLvqeKBe",
"filename": "resonance_i_score.pdf", "filename": "resonance_i_score.pdf",
"contentType": "application/pdf", "contentType": "application/pdf",
"legacy_filename": "resonance_i.pdf" "legacy_filename": "resonance_i.pdf"
}, },
{ {
"id": "563c863ee4b0ce38bd2f9911", "id": "lsgdXB9nP9ec",
"filename": "after_a_koan_score.pdf", "filename": "after_a_koan_score.pdf",
"contentType": "application/pdf", "contentType": "application/pdf",
"legacy_filename": "after_a_koan.pdf" "legacy_filename": "after_a_koan.pdf"
}, },
{ {
"id": "563c863ee4b0ce38bd2f9915", "id": "sdftGKu3Ouq5",
"filename": "sound_sound_score.pdf", "filename": "sound_sound_score.pdf",
"contentType": "application/pdf", "contentType": "application/pdf",
"legacy_filename": "sound_dot_sound.pdf" "legacy_filename": "sound_dot_sound.pdf"
}, },
{ {
"id": "563c863fe4b0ce38bd2f9919", "id": "Kmb0dFG53trH",
"filename": "many_many_score.pdf", "filename": "many_many_score.pdf",
"contentType": "application/pdf", "contentType": "application/pdf",
"legacy_filename": "many_many.pdf" "legacy_filename": "many_many.pdf"
}, },
{ {
"id": "563c863fe4b0ce38bd2f991d", "id": "Y9Jzpjh_pxiQ",
"filename": "4_James_Orsher_score.pdf", "filename": "4_James_Orsher_score.pdf",
"contentType": "application/pdf", "contentType": "application/pdf",
"legacy_filename": "4_james_orsher.pdf" "legacy_filename": "4_james_orsher.pdf"
}, },
{ {
"id": "563c8640e4b0ce38bd2f9921", "id": "2Ay2fqEtRtYK",
"filename": "Entropic_Canon_score.pdf", "filename": "Entropic_Canon_score.pdf",
"contentType": "application/pdf", "contentType": "application/pdf",
"legacy_filename": "Entropic_Canon.pdf" "legacy_filename": "Entropic_Canon.pdf"
}, },
{ {
"id": "563c8640e4b0ce38bd2f9926", "id": "w9X4KPWl_vlx",
"filename": "Three_score.pdf", "filename": "Three_score.pdf",
"contentType": "application/pdf", "contentType": "application/pdf",
"legacy_filename": "Three.pdf" "legacy_filename": "Three.pdf"
}, },
{ {
"id": "563c8640e4b0ce38bd2f992a", "id": "Ze2Ux2O4bqub",
"filename": "Transplanting_06_11_07_06_16_07_or_Transcription_USA_score.pdf", "filename": "Transplanting_06_11_07_06_16_07_or_Transcription_USA_score.pdf",
"contentType": "application/pdf", "contentType": "application/pdf",
"legacy_filename": "USA.pdf" "legacy_filename": "USA.pdf"
}, },
{ {
"id": "563c8641e4b0ce38bd2f992e", "id": "H0AIBgtnVHx6",
"filename": "a_chance_happening_score.pdf", "filename": "a_chance_happening_score.pdf",
"contentType": "application/pdf", "contentType": "application/pdf",
"legacy_filename": "a_chance_happening.pdf" "legacy_filename": "a_chance_happening.pdf"
}, },
{ {
"id": "563c8641e4b0ce38bd2f9933", "id": "Jt1dFglegV1j",
"filename": "cactus_for_james_orsher_score.pdf", "filename": "cactus_for_james_orsher_score.pdf",
"contentType": "application/pdf", "contentType": "application/pdf",
"legacy_filename": "cactus.pdf" "legacy_filename": "cactus.pdf"
}, },
{ {
"id": "563c8641e4b0ce38bd2f9937", "id": "vE7KG8FJlbeB",
"filename": "1_sample_x_performers_y_seconds_score.pdf", "filename": "1_sample_x_performers_y_seconds_score.pdf",
"contentType": "application/pdf", "contentType": "application/pdf",
"legacy_filename": "1sample_xperformers_yseconds.pdf" "legacy_filename": "1sample_xperformers_yseconds.pdf"
}, },
{ {
"id": "563c8645e4b0ce38bd2f993b", "id": "w8UezkjG3avW",
"filename": "4_Ascents_for_James_Tenney_score.pdf", "filename": "4_Ascents_for_James_Tenney_score.pdf",
"contentType": "application/pdf", "contentType": "application/pdf",
"legacy_filename": "4_Ascents_for_James_Tenney.pdf" "legacy_filename": "4_Ascents_for_James_Tenney.pdf"
}, },
{ {
"id": "563c8646e4b0ce38bd2f9955", "id": "InW8eR8fg_hl",
"filename": "Trajectories_score.pdf", "filename": "Trajectories_score.pdf",
"contentType": "application/pdf", "contentType": "application/pdf",
"legacy_filename": "Trajectories.pdf" "legacy_filename": "Trajectories.pdf"
}, },
{ {
"id": "563c864be4b0ce38bd2f995a", "id": "ObtNHYU9n6Fa",
"filename": "Prime_Decomposition_score.pdf", "filename": "Prime_Decomposition_score.pdf",
"contentType": "application/pdf", "contentType": "application/pdf",
"legacy_filename": "Prime_Decomposition.pdf" "legacy_filename": "Prime_Decomposition.pdf"
}, },
{ {
"id": "563c864de4b0ce38bd2f997e", "id": "ZWbZlVsbrmFJ",
"filename": "Intersections_I_score.pdf", "filename": "Intersections_I_score.pdf",
"contentType": "application/pdf", "contentType": "application/pdf",
"legacy_filename": "Intersections_I.pdf" "legacy_filename": "Intersections_I.pdf"
}, },
{ {
"id": "563c8652e4b0ce38bd2f9988", "id": "6rVxJKQ24xsp",
"filename": "Streams_I_score.pdf", "filename": "Streams_I_score.pdf",
"contentType": "application/pdf", "contentType": "application/pdf",
"legacy_filename": "Streams_I.pdf" "legacy_filename": "Streams_I.pdf"
}, },
{ {
"id": "563c8653e4b0ce38bd2f99a3", "id": "OnPdRCnQh8MQ",
"filename": "diy_for_larry_polansky_score.pdf", "filename": "diy_for_larry_polansky_score.pdf",
"contentType": "application/pdf", "contentType": "application/pdf",
"legacy_filename": "diy_for_larry_polansky.pdf" "legacy_filename": "diy_for_larry_polansky.pdf"
}, },
{ {
"id": "563c8653e4b0ce38bd2f99a7", "id": "Oy4DRlEqznd-",
"filename": "three_books_and_a_dissertation_score.pdf", "filename": "three_books_and_a_dissertation_score.pdf",
"contentType": "application/pdf", "contentType": "application/pdf",
"legacy_filename": "three_books_and_a_dissertation_rev.pdf" "legacy_filename": "three_books_and_a_dissertation_rev.pdf"
}, },
{ {
"id": "563c8653e4b0ce38bd2f99ab", "id": "qsICSyW_pbvO",
"filename": "in_tone_score.pdf", "filename": "in_tone_score.pdf",
"contentType": "application/pdf", "contentType": "application/pdf",
"legacy_filename": "in_tone.pdf" "legacy_filename": "in_tone.pdf"
}, },
{ {
"id": "563c8653e4b0ce38bd2f99af", "id": "M-w0eGHg5byi",
"filename": "random_I_score.pdf", "filename": "random_I_score.pdf",
"contentType": "application/pdf", "contentType": "application/pdf",
"legacy_filename": "random_I.pdf" "legacy_filename": "random_I.pdf"
}, },
{ {
"id": "563c8654e4b0ce38bd2f99b3", "id": "X5bdn2KmwEhq",
"filename": "almost_every_piece_score.pdf", "filename": "almost_every_piece_score.pdf",
"contentType": "application/pdf", "contentType": "application/pdf",
"legacy_filename": "almost_every_piece.pdf" "legacy_filename": "almost_every_piece.pdf"
}, },
{ {
"id": "563c8654e4b0ce38bd2f99b7", "id": "CeasV2B6EkgA",
"filename": "for_cassia_streb_score.pdf", "filename": "for_cassia_streb_score.pdf",
"contentType": "application/pdf", "contentType": "application/pdf",
"legacy_filename": "for_cassia_streb.pdf" "legacy_filename": "for_cassia_streb.pdf"
}, },
{ {
"id": "563c8655e4b0ce38bd2f99bb", "id": "1UjyRF913-p-",
"filename": "for_michael_pisaro_score.pdf", "filename": "for_michael_pisaro_score.pdf",
"contentType": "application/pdf", "contentType": "application/pdf",
"legacy_filename": "for_michael_pisaro.pdf" "legacy_filename": "for_michael_pisaro.pdf"
}, },
{ {
"id": "563c8656e4b0ce38bd2f99bf", "id": "QtVsFTXzlc1V",
"filename": "sort_I_score.pdf", "filename": "sort_I_score.pdf",
"contentType": "application/pdf", "contentType": "application/pdf",
"legacy_filename": "sort_I.pdf" "legacy_filename": "sort_I.pdf"
}, },
{ {
"id": "563c865ee4b0ce38bd2f99c8", "id": "Hkh_h9iB3KWY",
"filename": "nothingI_score.pdf", "filename": "nothingI_score.pdf",
"contentType": "application/pdf", "contentType": "application/pdf",
"legacy_filename": "nothing_I.pdf" "legacy_filename": "nothing_I.pdf"
}, },
{ {
"id": "563c865fe4b0ce38bd2f9a01", "id": "BiOmtLZZkZRv",
"filename": "A_Gaussian_Canon_score.pdf", "filename": "A_Gaussian_Canon_score.pdf",
"contentType": "application/pdf", "contentType": "application/pdf",
"legacy_filename": "A_Gaussian_Canon.pdf" "legacy_filename": "A_Gaussian_Canon.pdf"
}, },
{ {
"id": "563c8660e4b0ce38bd2f9a06", "id": "mD56ubIpwQ7M",
"filename": "Infinity_III_score.pdf", "filename": "Infinity_III_score.pdf",
"contentType": "application/pdf", "contentType": "application/pdf",
"legacy_filename": "Infinity_III.pdf" "legacy_filename": "Infinity_III.pdf"
}, },
{ {
"id": "563c8660e4b0ce38bd2f9a0b", "id": "nOc_aOBSPnJ3",
"filename": "Lecture_on_Infinity_score.pdf", "filename": "Lecture_on_Infinity_score.pdf",
"contentType": "application/pdf", "contentType": "application/pdf",
"legacy_filename": "Lecture_on_Infinity_Realization.pdf" "legacy_filename": "Lecture_on_Infinity_Realization.pdf"
}, },
{ {
"id": "563c8661e4b0ce38bd2f9a0f", "id": "mO66hAlbeeVA",
"filename": "A_Flourish_score.pdf", "filename": "A_Flourish_score.pdf",
"contentType": "application/pdf", "contentType": "application/pdf",
"legacy_filename": "A_Flourish.pdf" "legacy_filename": "A_Flourish.pdf"
}, },
{ {
"id": "563c8661e4b0ce38bd2f9a14", "id": "EHJY4xynBAV2",
"filename": "Infinity_2_score.pdf", "filename": "Infinity_2_score.pdf",
"contentType": "application/pdf", "contentType": "application/pdf",
"legacy_filename": "Infinity_2.pdf" "legacy_filename": "Infinity_2.pdf"
}, },
{ {
"id": "563c8661e4b0ce38bd2f9a18", "id": "Aoq0Nhhtab35",
"filename": "Perspectives_I_score.pdf", "filename": "Perspectives_I_score.pdf",
"contentType": "application/pdf", "contentType": "application/pdf",
"legacy_filename": "Perspectives_I_revised.pdf" "legacy_filename": "Perspectives_I_revised.pdf"
}, },
{ {
"id": "563c8663e4b0ce38bd2f9a1c", "id": "IRVRKl9a2otK",
"filename": "Commas_score.pdf", "filename": "Commas_score.pdf",
"contentType": "application/pdf", "contentType": "application/pdf",
"legacy_filename": "Commas.pdf" "legacy_filename": "Commas.pdf"
}, },
{ {
"id": "563c8663e4b0ce38bd2f9a23", "id": "TcXmij_c8dp1",
"filename": "a_set_of_pieces_with_one_note_score.pdf", "filename": "a_set_of_pieces_with_one_note_score.pdf",
"contentType": "application/pdf", "contentType": "application/pdf",
"legacy_filename": "a_set_of_pieces_with_one_note.pdf" "legacy_filename": "a_set_of_pieces_with_one_note.pdf"
}, },
{ {
"id": "563c8663e4b0ce38bd2f9a27", "id": "nvYSv_DhaorZ",
"filename": "Infinity_1_score.pdf", "filename": "Infinity_1_score.pdf",
"contentType": "application/pdf", "contentType": "application/pdf",
"legacy_filename": "Infinity_1.pdf" "legacy_filename": "Infinity_1.pdf"
}, },
{ {
"id": "563c8667e4b0ce38bd2f9a2b", "id": "zQikLxxl4VoY",
"filename": "Filter_IVP_I_X_LStudy_No1_score.pdf", "filename": "Filter_IVP_I_X_LStudy_No1_score.pdf",
"contentType": "application/pdf", "contentType": "application/pdf",
"legacy_filename": "Filter_IV.pdf" "legacy_filename": "Filter_IV.pdf"
}, },
{ {
"id": "563c866ae4b0ce38bd2f9a44", "id": "XcDpAm9fBQEf",
"filename": "Filter_IIITransformation_Filter_score.pdf", "filename": "Filter_IIITransformation_Filter_score.pdf",
"contentType": "application/pdf", "contentType": "application/pdf",
"legacy_filename": "Filter_III.pdf" "legacy_filename": "Filter_III.pdf"
}, },
{ {
"id": "563c866be4b0ce38bd2f9a5b", "id": "kGxr5kHuJICm",
"filename": "Difference_score.pdf", "filename": "Difference_score.pdf",
"contentType": "application/pdf", "contentType": "application/pdf",
"legacy_filename": "Difference.pdf" "legacy_filename": "Difference.pdf"
}, },
{ {
"id": "563c866ce4b0ce38bd2f9a60", "id": "djdHNtzpKAzI",
"filename": "2_Filters_score.pdf", "filename": "2_Filters_score.pdf",
"contentType": "application/pdf", "contentType": "application/pdf",
"legacy_filename": "2_Filters.pdf" "legacy_filename": "2_Filters.pdf"
}, },
{ {
"id": "563c866ce4b0ce38bd2f9a64", "id": "6p0lXLdP3EpF",
"filename": "Flux_score.pdf", "filename": "Flux_score.pdf",
"contentType": "application/pdf", "contentType": "application/pdf",
"legacy_filename": "Flux.pdf" "legacy_filename": "Flux.pdf"
}, },
{ {
"id": "563c866ee4b0ce38bd2f9a68", "id": "-z4dWgEGaDnS",
"filename": "Fission_score.pdf", "filename": "Fission_score.pdf",
"contentType": "application/pdf", "contentType": "application/pdf",
"legacy_filename": "Fission.pdf" "legacy_filename": "Fission.pdf"
}, },
{ {
"id": "563c866fe4b0ce38bd2f9a71", "id": "n9AqOo-8G7mD",
"filename": "Coincidental_Canon_score.pdf", "filename": "Coincidental_Canon_score.pdf",
"contentType": "application/pdf", "contentType": "application/pdf",
"legacy_filename": "Coincidental_Canon.pdf" "legacy_filename": "Coincidental_Canon.pdf"
}, },
{ {
"id": "563c866fe4b0ce38bd2f9a76", "id": "tBnzQFfM8SiT",
"filename": "A_Meditation_for_Solo_Piano_score.pdf", "filename": "A_Meditation_for_Solo_Piano_score.pdf",
"contentType": "application/pdf", "contentType": "application/pdf",
"legacy_filename": "A_Meditation_for_Solo_Piano_With_Correction.pdf" "legacy_filename": "A_Meditation_for_Solo_Piano_With_Correction.pdf"
}, },
{ {
"id": "563c866fe4b0ce38bd2f9a7a", "id": "9sAylc_wGAKw",
"filename": "Beat_Canon_score.pdf", "filename": "Beat_Canon_score.pdf",
"contentType": "application/pdf", "contentType": "application/pdf",
"legacy_filename": "Beat_Canon.pdf" "legacy_filename": "Beat_Canon.pdf"
}, },
{ {
"id": "5652d28ce4b0ce38bd2f9b8c", "id": "eFu20sAA1GrU",
"filename": "welcome_round_for_larry_score.pdf", "filename": "welcome_round_for_larry_score.pdf",
"contentType": "application/pdf" "contentType": "application/pdf"
}, },
{ {
"id": "5652d32be4b0ce38bd2f9b90", "id": "p42ntM0-WKTE",
"filename": "to_walk_and_ponder_abstract_score.pdf", "filename": "to_walk_and_ponder_abstract_score.pdf",
"contentType": "application/pdf" "contentType": "application/pdf"
}, },
{ {
"id": "5665e6d8e4b09ed7b5997f5e", "id": "onvhnUSHIEGq",
"filename": "to_walk_and_ponder_score.pdf", "filename": "to_walk_and_ponder_score.pdf",
"contentType": "application/pdf" "contentType": "application/pdf"
}, },
{ {
"id": "5696d8fde4b024208f68fb4b", "id": "Y0WuNckhDika",
"filename": "Approximating_Omega_redux_score.pdf", "filename": "Approximating_Omega_redux_score.pdf",
"contentType": "application/pdf", "contentType": "application/pdf",
"legacy_filename": "Approximating_Omega_redux.pdf" "legacy_filename": "Approximating_Omega_redux.pdf"
}, },
{ {
"id": "56f70ad1e4b024208f68fb5c", "id": "Myjb2Pg7_WMA",
"filename": "single_track_score.pdf", "filename": "single_track_score.pdf",
"contentType": "application/pdf" "contentType": "application/pdf"
}, },
{ {
"id": "57b9e35ae4b04741c902e408", "id": "bP-v9NQ0Ncbx",
"filename": "essay_on_the_art_of_combinations_score.pdf", "filename": "essay_on_the_art_of_combinations_score.pdf",
"contentType": "application/pdf" "contentType": "application/pdf"
}, },
{ {
"id": "57fcf5f2e4b04741c902e455", "id": "MpwtpWe0Hq0a",
"filename": "chorale_and_finely_tuned_resonators_score.pdf", "filename": "chorale_and_finely_tuned_resonators_score.pdf",
"contentType": "application/pdf" "contentType": "application/pdf"
}, },
{ {
"id": "5825aaa4e4b04741c902e4aa", "id": "2axk0Q1mH8mR",
"filename": "tergiversate_score.pdf", "filename": "tergiversate_score.pdf",
"contentType": "application/pdf" "contentType": "application/pdf"
}, },
{ {
"id": "5887d3b0e4b00a1088060677", "id": "Uq5rrOfsWRr6",
"filename": "scaffold_and_map_score.pdf", "filename": "scaffold_and_map_score.pdf",
"contentType": "application/pdf" "contentType": "application/pdf"
}, },
{ {
"id": "5887d57fe4b00a108806067d", "id": "5JpoLb1feVNk",
"filename": "Vein_Transcription_score.pdf", "filename": "Vein_Transcription_score.pdf",
"contentType": "application/pdf" "contentType": "application/pdf"
}, },
{ {
"id": "5887d614e4b00a1088060686", "id": "3culbWusOCOy",
"filename": "a_tone_for_Eric_KM_Clark_score.pdf", "filename": "a_tone_for_Eric_KM_Clark_score.pdf",
"contentType": "application/pdf" "contentType": "application/pdf"
}, },
{ {
"id": "5887d7c5e4b00a1088060690", "id": "K6os_TzMGGU3",
"filename": "Chromatic_Study_score.pdf", "filename": "Chromatic_Study_score.pdf",
"contentType": "application/pdf" "contentType": "application/pdf"
}, },
{ {
"id": "588fb6a5e4b00a108806069c", "id": "VOfn9QYd39KI",
"filename": "pedal_triangle_machine_and_perhaps_coda_abstract_score.pdf", "filename": "pedal_triangle_machine_and_perhaps_coda_abstract_score.pdf",
"contentType": "application/pdf" "contentType": "application/pdf"
}, },
{ {
"id": "58efa0c64f82171557aecb4c", "id": "QzkcAWohyA5i",
"filename": "rockfall_score.pdf", "filename": "rockfall_score.pdf",
"contentType": "application/pdf" "contentType": "application/pdf"
}, },
{ {
"id": "591795f54f82171557aecb52", "id": "2okI-QEtG3H4",
"filename": "curved_bow_and_negative_score.pdf", "filename": "curved_bow_and_negative_score.pdf",
"contentType": "application/pdf" "contentType": "application/pdf"
}, },
{ {
"id": "591912704f82171557aecb56", "id": "GJFJS99TcvtA",
"filename": "preliminary_thoughts_score.pdf", "filename": "preliminary_thoughts_score.pdf",
"contentType": "application/pdf" "contentType": "application/pdf"
}, },
{ {
"id": "592b1bac4f82171557aecb5e", "id": "xgZXUGBccoMC",
"filename": "maximum_change_score.pdf", "filename": "maximum_change_score.pdf",
"contentType": "application/pdf" "contentType": "application/pdf"
}, },
{ {
"id": "59c07efd4f82173ab19ada9c", "id": "G1k8sq59v7i5",
"filename": "flight_path_score.pdf", "filename": "flight_path_score.pdf",
"contentType": "application/pdf" "contentType": "application/pdf"
}, },
{ {
"id": "5a4e9be14f82170dbbb3fe80", "id": "Y54BejC2g2jL",
"filename": "ida_for_amy_score.pdf", "filename": "ida_for_amy_score.pdf",
"contentType": "application/pdf" "contentType": "application/pdf"
}, },
{ {
"id": "5a74c5804f82170dbbb3fe83", "id": "cvT8HDgC8C5a",
"filename": "reading_piece_for_library_or_bookstore_score.pdf", "filename": "reading_piece_for_library_or_bookstore_score.pdf",
"contentType": "application/pdf" "contentType": "application/pdf"
}, },
{ {
"id": "5a8cc49d4f82170dbbb3fe86", "id": "pKhw98IUmq-u",
"filename": "mercado_san_juan_score.pdf", "filename": "mercado_san_juan_score.pdf",
"contentType": "application/pdf" "contentType": "application/pdf"
}, },
{ {
"id": "5b7537ec6082b532131ffbb8", "id": "ozpq25Aw25vU",
"filename": "dear_robert_perhaps_all_is_a_type_of_cartography_score.pdf", "filename": "dear_robert_perhaps_all_is_a_type_of_cartography_score.pdf",
"contentType": "application/pdf" "contentType": "application/pdf"
}, },
{ {
"id": "5d87e5c7b0deb577f86dbccb", "id": "DmkbBsIzY-3e",
"filename": "remembering_clive_wearing_score.pdf", "filename": "remembering_clive_wearing_score.pdf",
"contentType": "application/pdf" "contentType": "application/pdf"
}, },
{ {
"id": "5dd72b4030c49e0001961b62", "id": "RJksw6BIUYQ0",
"filename": "fanfare_score.pdf", "filename": "fanfare_score.pdf",
"contentType": "application/pdf" "contentType": "application/pdf"
}, },
{ {
"id": "5dd72f2730c49e0001961b6b", "id": "N37AyHkXCUaT",
"filename": "generator_and_metal_score.pdf", "filename": "generator_and_metal_score.pdf",
"contentType": "application/pdf" "contentType": "application/pdf"
}, },
{ {
"id": "5dd81c3030c49e0001961b74", "id": "H59KZk6GgupY",
"filename": "4_computer_music_studies_score.pdf" "filename": "4_computer_music_studies_score.pdf"
}, },
{ {
"id": "5dd81cca30c49e0001961b77", "id": "G_nKVpTzF5H6",
"filename": "field_and_perfect_circuit_redux_score.pdf" "filename": "field_and_perfect_circuit_redux_score.pdf"
}, },
{ {
"id": "5dd81d8630c49e0001961b7a", "id": "6jvOauVcxbht",
"filename": "south_america_miscellany_score.pdf" "filename": "south_america_miscellany_score.pdf"
}, },
{ {
"id": "5dd81f0130c49e0001961b7d", "id": "d2xJwNk0kBbt",
"filename": "generator_hierarchical_dust_and_necklaces_score.pdf" "filename": "generator_hierarchical_dust_and_necklaces_score.pdf"
}, },
{ {
"id": "5fb7b300b3cb1f0001a435f5", "id": "Gzy_MJ4ArqRw",
"filename": "ostinato_and_interrupt_score.pdf" "filename": "ostinato_and_interrupt_score.pdf"
}, },
{ {
"id": "5fc7d91fdc48810001a0b03d", "id": "PkriMv8EBxT-",
"filename": "a_great_conjunction_score.pdf" "filename": "a_great_conjunction_score.pdf"
}, },
{ {
"id": "60460fe536d1a00001414e78", "id": "tqDMWQFi0INn",
"filename": "counterfeiting_in_colonial_connecticut_score.pdf" "filename": "counterfeiting_in_colonial_connecticut_score.pdf"
}, },
{ {
"id": "605b56e836d1a00001414e82", "id": "uAzaRS5g2zpf",
"filename": "a_lot_of_tiles_trivial_scan_score.pdf" "filename": "a_lot_of_tiles_trivial_scan_score.pdf"
}, },
{ {
"id": "63b42841adbe1d0001aec080", "id": "9WY8Q1-3I6We",
"filename": "varilude_score.pdf" "filename": "varilude_score.pdf"
}, },
{ {
"id": "63b428b1adbe1d0001aec083", "id": "TsEa9DD2NNLa",
"filename": "dawning_redux_score.pdf" "filename": "dawning_redux_score.pdf"
}, },
{ {
"id": "64ce79769acad10629df3e81", "id": "OIyblv4qwMur",
"filename": "to_kill_a_monarch_score.pdf" "filename": "to_kill_a_monarch_score.pdf"
}, },
{ {
"id": "658572513fe9480f1fee5a71", "id": "B1cwahLc0CJU",
"filename": "kari_score.pdf" "filename": "kari_score.pdf"
}, },
{ {
"id": "658573393fe9480f1fee5a76", "id": "GMY9_G2zz7Ra",
"filename": "berger_score.pdf" "filename": "berger_score.pdf"
}, },
{ {
"id": "658573563fe9480f1fee5a7c", "id": "JGt9O_3HtXW6",
"filename": "robinson_score.pdf" "filename": "robinson_score.pdf"
}, },
{ {
"id": "6585737e3fe9480f1fee5a82", "id": "vHsjaVM4-5_V",
"filename": "penrose_score.pdf" "filename": "penrose_score.pdf"
}, },
{ {
"id": "6585739c3fe9480f1fee5a8a", "id": "bamR1GStiiAN",
"filename": "ammann_score.pdf" "filename": "ammann_score.pdf"
}, },
{ {
"id": "658573f33fe9480f1fee5a92", "id": "MwTjifAJKJgo",
"filename": "jaendel_rao_score.pdf" "filename": "jaendel_rao_score.pdf"
}, },
{ {
"id": "658d5d163fe9480f1fee5b25", "id": "chINUIZXIGYB",
"filename": "a_history_of_the_domino_problem_score.pdf" "filename": "a_history_of_the_domino_problem_score.pdf"
}, },
{ {
"id": "65e0edbd754b7b40912d8b36", "id": "tOtc_QYYpP0T",
"filename": "steady_state_score.pdf" "filename": "steady_state_score.pdf"
}, },
{ {
"id": "65efb2f231f0901f0b54c607", "id": "_0ygyYOzOgTx",
"filename": "seeds_and_ledgers_1_to_3_score.pdf" "filename": "seeds_and_ledgers_1_to_3_score.pdf"
}, },
{ {
"id": "670a9dbeaca15f385f331ef5", "id": "gN_NJSI3oQVy",
"filename": "critical_loci_score.pdf" "filename": "critical_loci_score.pdf"
}, },
{ {
"id": "679b64e20535710da6888a12", "id": "kGOOrS17U0t7",
"filename": "compact_sets_1_to_3_score.pdf" "filename": "compact_sets_1_to_3_score.pdf"
}, },
{ {
"id": "684f30ab375c1f1e1fed79d2", "id": "ezTb0xTcBmd_",
"filename": "harmonie_universelle_score.pdf" "filename": "harmonie_universelle_score.pdf"
}, },
{ {
"id": "68cc5d15dd004e124b67ef1e", "id": "wp18-XqUyePK",
"filename": "access_intimacy_score.pdf" "filename": "access_intimacy_score.pdf"
}, },
{ {
"id": "69023da3bb125219c6bf5487", "id": "VgD-pAdovLY3",
"filename": "haros_family_etude_no_1_score.pdf" "filename": "haros_family_etude_no_1_score.pdf"
} }
] ]

View file

@ -1,54 +1,54 @@
[ [
{ {
"id": "5588abde01ef54a5e505f6d7", "id": "rk-isJ-DMAcx",
"location": "Conservatorio de Las Rosas, Morelia", "location": "Conservatorio de Las Rosas, Morelia",
"title": "New music for guitars", "title": "New music for guitars",
"date": "2014-12-01" "date": "2014-12-01"
}, },
{ {
"id": "5588abde01ef54a5e505f6d8", "id": "cwHwpMTiAUyR",
"location": "Universidad de Chile, Santiago", "location": "Universidad de Chile, Santiago",
"title": "Algorithmic Information Theory, Metabiology, Music", "title": "Algorithmic Information Theory, Metabiology, Music",
"date": "2014-08-01" "date": "2014-08-01"
}, },
{ {
"id": "5588abde01ef54a5e505f6d9", "id": "klvsP6fyjQ6v",
"location": "Universidad de Buenos Aires", "location": "Universidad de Buenos Aires",
"title": "Algorithmic Information Theory, Metabiology, Music", "title": "Algorithmic Information Theory, Metabiology, Music",
"date": "2014-08-01" "date": "2014-08-01"
}, },
{ {
"id": "5588abde01ef54a5e505f6da", "id": "xKpuinmWOUel",
"location": "Universidade Federal de Mato Grosso", "location": "Universidade Federal de Mato Grosso",
"title": "Algorithmic Information Theory, Metabiology, Music", "title": "Algorithmic Information Theory, Metabiology, Music",
"date": "2014-07-01" "date": "2014-07-01"
}, },
{ {
"id": "5588abde01ef54a5e505f6db", "id": "j8RfXAIPWn71",
"location": "Universidade de São Paulo", "location": "Universidade de São Paulo",
"title": "Shape and Structure: a few good ideas on form and detail", "title": "Shape and Structure: a few good ideas on form and detail",
"date": "2014-05-15" "date": "2014-05-15"
}, },
{ {
"id": "5588abde01ef54a5e505f6dc", "id": "t8JCz7IpXCD_",
"location": "Escola de Música e Belas Artes do Paraná", "location": "Escola de Música e Belas Artes do Paraná",
"title": "On community and radicality: a personal survey of dangerous artists and art movements", "title": "On community and radicality: a personal survey of dangerous artists and art movements",
"date": "2014-05-01" "date": "2014-05-01"
}, },
{ {
"id": "5588abde01ef54a5e505f6dd", "id": "R9MwYiYPYWer",
"location": "University of California, Santa Cruz", "location": "University of California, Santa Cruz",
"title": "Several extremely simple ideas", "title": "Several extremely simple ideas",
"date": "2014-02-01" "date": "2014-02-01"
}, },
{ {
"id": "5588abde01ef54a5e505f6de", "id": "owKSz5bmyi3c",
"location": "University of California, Santa Barbara", "location": "University of California, Santa Barbara",
"title": "Adapting and applying digital signal processing techniques to high-level music information", "title": "Adapting and applying digital signal processing techniques to high-level music information",
"date": "2014-01-01" "date": "2014-01-01"
}, },
{ {
"id": "5588abde01ef54a5e505f6df", "id": "OXxz0upSYGRs",
"location": "Workshop for Algorithmic Computer Music at University of California, Santa Cruz", "location": "Workshop for Algorithmic Computer Music at University of California, Santa Cruz",
"title": [ "title": [
"A few thoughts on musical structure", "A few thoughts on musical structure",
@ -57,7 +57,7 @@
"date": "2013-07-01" "date": "2013-07-01"
}, },
{ {
"id": "5588abde01ef54a5e505f6e1", "id": "lSCC_MULXAFC",
"location": "Dartmouth College", "location": "Dartmouth College",
"title": [ "title": [
"Where do you get your data from?", "Where do you get your data from?",
@ -66,19 +66,19 @@
"date": "2013-05-01" "date": "2013-05-01"
}, },
{ {
"id": "5588abde01ef54a5e505f6e3", "id": "h-9MJvW0PHip",
"location": "Wesleyan University", "location": "Wesleyan University",
"title": "My software thinks your software is beautiful: a few words about metabiology, beauty and music", "title": "My software thinks your software is beautiful: a few words about metabiology, beauty and music",
"date": "2011-11-01" "date": "2011-11-01"
}, },
{ {
"id": "5588abde01ef54a5e505f6e4", "id": "uyxmioXiS9S3",
"location": "University of California, Santa Cruz", "location": "University of California, Santa Cruz",
"title": "A few words on elegance, creativity and beauty", "title": "A few words on elegance, creativity and beauty",
"date": "2011-10-01" "date": "2011-10-01"
}, },
{ {
"id": "5588abde01ef54a5e505f6e5", "id": "j3ccfJN651Y3",
"location": "Dartmouth College", "location": "Dartmouth College",
"title": [ "title": [
"On James Tenneys Changes for six harps", "On James Tenneys Changes for six harps",
@ -87,91 +87,91 @@
"date": "2011-04-01" "date": "2011-04-01"
}, },
{ {
"id": "5588abde01ef54a5e505f6e7", "id": "HOlDwWDmjH67",
"location": "IRCAM, Paris", "location": "IRCAM, Paris",
"title": "On generalizing graphs and mathematical problems from musical ideas", "title": "On generalizing graphs and mathematical problems from musical ideas",
"date": "2011-01-01" "date": "2011-01-01"
}, },
{ {
"id": "5588abde01ef54a5e505f6e8", "id": "c7ApXHOBUWTx",
"location": "California Institute of the Arts", "location": "California Institute of the Arts",
"title": "Structural metrics", "title": "Structural metrics",
"date": "2009-04-01" "date": "2009-04-01"
}, },
{ {
"id": "5588abde01ef54a5e505f6e9", "id": "0fM9APsN42FK",
"location": "Columbia University", "location": "Columbia University",
"title": "On James Tenneys Arbor Vitae for string quartet", "title": "On James Tenneys Arbor Vitae for string quartet",
"date": "2008-02-01" "date": "2008-02-01"
}, },
{ {
"id": "5588abde01ef54a5e505f6ea", "id": "JEjFx--LUk5S",
"location": "State University of New York, Buffalo", "location": "State University of New York, Buffalo",
"title": "Lecture on the machine and music", "title": "Lecture on the machine and music",
"date": "2006-12-01" "date": "2006-12-01"
}, },
{ {
"id": "5588abde01ef54a5e505f6eb", "id": "k0qBqw9pjGML",
"location": "State University of New York, Binghamton", "location": "State University of New York, Binghamton",
"title": "Lecture on infinity", "title": "Lecture on infinity",
"date": "2005-08-01" "date": "2005-08-01"
}, },
{ {
"id": "56244bb00c228c0d477efb1f", "id": "3r9-FfM11jpT",
"location": "University of Southern California", "location": "University of Southern California",
"title": "On James Tenneys Changes for six harps", "title": "On James Tenneys Changes for six harps",
"date": "2015-10-28" "date": "2015-10-28"
}, },
{ {
"id": "56244bb00c228c0d477efb20", "id": "vVzX8BIsAorv",
"location": "California Institute of the Arts", "location": "California Institute of the Arts",
"title": "A few ways to get from one thing to the next", "title": "A few ways to get from one thing to the next",
"date": "2015-10-15" "date": "2015-10-15"
}, },
{ {
"id": "56244bb00c228c0d477efb21", "id": "2uq3P5C_Tm2f",
"location": "Universidad del Claustro de Sor Juana, Mexico City", "location": "Universidad del Claustro de Sor Juana, Mexico City",
"title": "Noise in the system: reading Claude Shannon", "title": "Noise in the system: reading Claude Shannon",
"date": "2015-10-01" "date": "2015-10-01"
}, },
{ {
"id": "56992f94fdc52469b6c07c47", "id": "9fet5GQ7FBbL",
"location": "University of California Santa Cruz", "location": "University of California Santa Cruz",
"title": "On minimal resources, laziness, and style", "title": "On minimal resources, laziness, and style",
"date": "2016-02-10" "date": "2016-02-10"
}, },
{ {
"id": "5699307afdc52469b6c07c48", "id": "S8GM2txLx-HY",
"location": "Computer Music Hangout at the Public School, Los Angeles", "location": "Computer Music Hangout at the Public School, Los Angeles",
"title": "Graph theory, harmonic space, and combinatorics", "title": "Graph theory, harmonic space, and combinatorics",
"date": "2015-11-04" "date": "2015-11-04"
}, },
{ {
"id": "56d62a0efdc52469b6c07c4d", "id": "lSFKW-Nhpl2i",
"location": "California Institute of the Arts", "location": "California Institute of the Arts",
"title": "On minimal resources, laziness, and style", "title": "On minimal resources, laziness, and style",
"date": "2016-04-18" "date": "2016-04-18"
}, },
{ {
"id": "56e9de82fdc52469b6c07c52", "id": "qfRDhvFrU0m4",
"location": "Conservatorio de las Rosas, Morelia", "location": "Conservatorio de las Rosas, Morelia",
"title": "On minimal resources, laziness, and style", "title": "On minimal resources, laziness, and style",
"date": "2016-05-02" "date": "2016-05-02"
}, },
{ {
"id": "56f2d45afdc52469b6c07c55", "id": "JIr4vyADouwf",
"location": "CENIDIM - Instituto Nacional de Bellas Artes, Mexico City", "location": "CENIDIM - Instituto Nacional de Bellas Artes, Mexico City",
"title": "Over 300 years ago, Leibniz predicted many current trends in music: a lecture / performance", "title": "Over 300 years ago, Leibniz predicted many current trends in music: a lecture / performance",
"date": "2016-04-26" "date": "2016-04-26"
}, },
{ {
"id": "56fcb723fdc52469b6c07c58", "id": "_bmS4sHrfXtu",
"location": "Universidad de Guadalajara", "location": "Universidad de Guadalajara",
"title": " Combinatorial optimization and art: from Leibniz to Beckett and beyond", "title": " Combinatorial optimization and art: from Leibniz to Beckett and beyond",
"date": "2016-04-21" "date": "2016-04-21"
}, },
{ {
"id": "57f5595fec6cea73b9674e72", "id": "cVstKzX3UJsI",
"location": "Bath Spa University", "location": "Bath Spa University",
"title": [ "title": [
"On the domain of an open work: cardinality, intersection, and computability", "On the domain of an open work: cardinality, intersection, and computability",
@ -180,193 +180,193 @@
"date": "2016-10-05" "date": "2016-10-05"
}, },
{ {
"id": "5802175cec6cea73b9674e74", "id": "8fQrYCAz4eQl",
"location": "University of Huddersfield", "location": "University of Huddersfield",
"title": "Over 300 years ago, Leibniz predicted many current trends in music: a lecture / performance", "title": "Over 300 years ago, Leibniz predicted many current trends in music: a lecture / performance",
"date": "2016-10-12" "date": "2016-10-12"
}, },
{ {
"id": "580217cbec6cea73b9674e75", "id": "qweqb7oFprgp",
"location": "University of Leeds", "location": "University of Leeds",
"title": "From Leibniz to Tenney: on computability, structure, and harmony", "title": "From Leibniz to Tenney: on computability, structure, and harmony",
"date": "2016-10-13" "date": "2016-10-13"
}, },
{ {
"id": "581b5936ec6cea73b9674e7d", "id": "sOQTdA3fJeDM",
"location": "Universität der Künste Berlin", "location": "Universität der Künste Berlin",
"title": "From Leibniz to Tenney: on computability, structure, and harmony", "title": "From Leibniz to Tenney: on computability, structure, and harmony",
"date": "2016-10-27" "date": "2016-10-27"
}, },
{ {
"id": "581b59cfec6cea73b9674e7e", "id": "GpU24_loUlE2",
"location": "Università degli Studi di Torino", "location": "Università degli Studi di Torino",
"title": "Over 300 years ago, Leibniz predicted many current trends in music: a lecture / performance", "title": "Over 300 years ago, Leibniz predicted many current trends in music: a lecture / performance",
"date": "2016-11-14" "date": "2016-11-14"
}, },
{ {
"id": "58e79180eb6177f0e7d42af3", "id": "kilJdIYT2384",
"location": "Sono Centro Cultural de Cuenca", "location": "Sono Centro Cultural de Cuenca",
"title": "La Guitarra en la Experimentacion Sonora", "title": "La Guitarra en la Experimentacion Sonora",
"date": "2017-04-10" "date": "2017-04-10"
}, },
{ {
"id": "58f5a5c6eb6177f0e7d42af9", "id": "GE2ES3_Bt9iL",
"location": "Universidad de las Artes de Guayaquil", "location": "Universidad de las Artes de Guayaquil",
"title": "Cuando cosas va diferente: entre el concepto y la realidad", "title": "Cuando cosas va diferente: entre el concepto y la realidad",
"date": "2017-04-20" "date": "2017-04-20"
}, },
{ {
"id": "58f5a604eb6177f0e7d42afa", "id": "eQF-j3OqQP5N",
"location": "Chawpi Laboratorio, Quito", "location": "Chawpi Laboratorio, Quito",
"title": "Minimalismo conceptual y la verdad sobre el ruido", "title": "Minimalismo conceptual y la verdad sobre el ruido",
"date": "2017-04-25" "date": "2017-04-25"
}, },
{ {
"id": "591209beeb6177f0e7d42afd", "id": "rySc_0QCwd0r",
"location": "Universidad de los Andes, Bogota", "location": "Universidad de los Andes, Bogota",
"title": "Shape and Structure: a few good ideas on form and detail", "title": "Shape and Structure: a few good ideas on form and detail",
"date": "2017-05-09" "date": "2017-05-09"
}, },
{ {
"id": "591209edeb6177f0e7d42afe", "id": "rXeJIUekjSEj",
"location": "Fundación Universitaria Bellas Artes Medellín", "location": "Fundación Universitaria Bellas Artes Medellín",
"title": "Un nuevo virtuosidad", "title": "Un nuevo virtuosidad",
"date": "2017-05-11" "date": "2017-05-11"
}, },
{ {
"id": "5916002aeb6177f0e7d42aff", "id": "OWaIrmqyE0jk",
"location": "Universidad de Antioquia, Medellin", "location": "Universidad de Antioquia, Medellin",
"title": "Minimalismo conceptual y la verdad sobre el ruido", "title": "Minimalismo conceptual y la verdad sobre el ruido",
"date": "2017-05-15" "date": "2017-05-15"
}, },
{ {
"id": "59160080eb6177f0e7d42b00", "id": "OSLYGqP6fC5o",
"location": "Institución Universitaria Bellas Artes, Cartagena", "location": "Institución Universitaria Bellas Artes, Cartagena",
"title": "Minimalismo conceptual y la verdad sobre el ruido", "title": "Minimalismo conceptual y la verdad sobre el ruido",
"date": "2017-05-18" "date": "2017-05-18"
}, },
{ {
"id": "59d562560e3b08102d5f1f16", "id": "rLRbtmkqqVgV",
"location": "California Institute of the Arts", "location": "California Institute of the Arts",
"title": "On James Tenneys Changes for six harps", "title": "On James Tenneys Changes for six harps",
"date": "2017-11-10" "date": "2017-11-10"
}, },
{ {
"id": "59ea5ead33804e902f11bce4", "id": "-DUZAunHGyox",
"location": "The Box, Los Angeles", "location": "The Box, Los Angeles",
"title": "On James Tenneys Changes for six harps", "title": "On James Tenneys Changes for six harps",
"date": "2017-11-11" "date": "2017-11-11"
}, },
{ {
"id": "5aca27a41d8aecb20f49f5e4", "id": "OMN-iw0sOPFo",
"location": "Haifa University", "location": "Haifa University",
"title": "On modulations in harmonic space", "title": "On modulations in harmonic space",
"date": "2018-05-09" "date": "2018-05-09"
}, },
{ {
"id": "5c6bdaaa1db8573ad2a74c6b", "id": "qOdNKQfusdF9",
"location": "Engaging with Histories Festival @ Rampe, Stuttgart", "location": "Engaging with Histories Festival @ Rampe, Stuttgart",
"title": "A prehistory of the domino problem (lecture / performance)", "title": "A prehistory of the domino problem (lecture / performance)",
"date": "2019-03-13" "date": "2019-03-13"
}, },
{ {
"id": "5c6be00c1db8573ad2a7627c", "id": "QNOyf5z4Flk_",
"location": "Apotheose Series @ Eckartshaldenweg 7, Stuttgart", "location": "Apotheose Series @ Eckartshaldenweg 7, Stuttgart",
"title": "Artist conversation (with afterparty at Korridor Bar, Stuttgart with DJ Silent Lover)", "title": "Artist conversation (with afterparty at Korridor Bar, Stuttgart with DJ Silent Lover)",
"date": "2019-03-21" "date": "2019-03-21"
}, },
{ {
"id": "5d70dc8d4e193f4a15d3716a", "id": "uGp9kQYjAEip",
"location": "Trinity College, London (with Robert Blatt)", "location": "Trinity College, London (with Robert Blatt)",
"title": "This talk has a high chance of failure: performer, score, environment, and listener as algorithmic systems", "title": "This talk has a high chance of failure: performer, score, environment, and listener as algorithmic systems",
"date": "2019-10-10" "date": "2019-10-10"
}, },
{ {
"id": "5d889d7256fd3b0007993583", "id": "o4IrZgBb9RUq",
"location": "ELAK, course for electroacoustic and experimental music @ the Universität für Musik und darstellende Kunst Wien", "location": "ELAK, course for electroacoustic and experimental music @ the Universität für Musik und darstellende Kunst Wien",
"title": "This is a talk about how things fit together", "title": "This is a talk about how things fit together",
"date": "2019-10-16" "date": "2019-10-16"
}, },
{ {
"id": "5d932fa2a7b48817f102e63c", "id": "pgPy4ejXMWUZ",
"location": "Instituto Internacional en Madrid", "location": "Instituto Internacional en Madrid",
"title": "This is a talk about how things fit together", "title": "This is a talk about how things fit together",
"date": "2019-10-05" "date": "2019-10-05"
}, },
{ {
"id": "5d932fdba7b48817f102e63d", "id": "68LutAJjJ1Lr",
"location": "Guildhall School of Music, London (with Robert Blatt)", "location": "Guildhall School of Music, London (with Robert Blatt)",
"title": "This talk has a high chance of failure: performer, score, environment, and listener as algorithmic systems", "title": "This talk has a high chance of failure: performer, score, environment, and listener as algorithmic systems",
"date": "2019-10-09" "date": "2019-10-09"
}, },
{ {
"id": "5fb7b49941b22500064fe559", "id": "RnP2pcxUZ61T",
"location": "Simpom 6 @ UNIRIO, Rio de Janeiro", "location": "Simpom 6 @ UNIRIO, Rio de Janeiro",
"title": "A few more thoughts about Leibniz: the prediction of harmonic distance in harmonic space", "title": "A few more thoughts about Leibniz: the prediction of harmonic distance in harmonic space",
"date": "2020-11-03" "date": "2020-11-03"
}, },
{ {
"id": "5fb7b51141b22500064fe55a", "id": "6Nb73jB8oKk9",
"location": "University of California, Santa Cruz", "location": "University of California, Santa Cruz",
"title": "A few things I do", "title": "A few things I do",
"date": "2020-11-16" "date": "2020-11-16"
}, },
{ {
"id": "625099bde5292400073015c4", "id": "He4-rRr2xAWf",
"location": "California Institute of the Arts", "location": "California Institute of the Arts",
"title": "Countercoding: a few thoughts about data ethics and music (or... are your algorithms healthy? - part I)", "title": "Countercoding: a few thoughts about data ethics and music (or... are your algorithms healthy? - part I)",
"date": "2022-04-11" "date": "2022-04-11"
}, },
{ {
"id": "62509b6ae5292400073015c5", "id": "2hpYr4qpnz0N",
"location": "Institute of Sonology @ the Royal Conservatory of The Hague", "location": "Institute of Sonology @ the Royal Conservatory of The Hague",
"title": "Countercoding: a few thoughts about data ethics and music (or... are your algorithms healthy? - part II)", "title": "Countercoding: a few thoughts about data ethics and music (or... are your algorithms healthy? - part II)",
"date": "2022-05-06" "date": "2022-05-06"
}, },
{ {
"id": "6346cfb175c2f70008e28541", "id": "4yrSA-ZuOZCT",
"location": "Institut für Mikroelektronik Stuttgart", "location": "Institut für Mikroelektronik Stuttgart",
"title": "Challenges of Analog Visual Cryptography: a history of the domino problem", "title": "Challenges of Analog Visual Cryptography: a history of the domino problem",
"date": "2022-11-17" "date": "2022-11-17"
}, },
{ {
"id": "635169e475c2f70008e28542", "id": "akRF9_UBoBgy",
"location": "B-Circle, Berlin (with Catherine Lamb)", "location": "B-Circle, Berlin (with Catherine Lamb)",
"title": "Total forms and other totalities", "title": "Total forms and other totalities",
"date": "2022-10-22" "date": "2022-10-22"
}, },
{ {
"id": "63f5e4f851367200081ee13c", "id": "x_4jOZgWgXWK",
"location": "Centro Nacional de las Artes, Mexico City (with Alex Bruck)", "location": "Centro Nacional de las Artes, Mexico City (with Alex Bruck)",
"title": "Workshop on Microtonal Practices (5 sessions)", "title": "Workshop on Microtonal Practices (5 sessions)",
"date": "2023-02-13" "date": "2023-02-13"
}, },
{ {
"id": "64a02dab17fb8700075d3213", "id": "gcU7huZ5Bre3",
"location": "B-Circle, Berlin", "location": "B-Circle, Berlin",
"title": "A brief but not necessarily abbreviated history of the domino problem", "title": "A brief but not necessarily abbreviated history of the domino problem",
"date": "2023-06-24" "date": "2023-06-24"
}, },
{ {
"id": "64de3b09cdd55b0007a4d075", "id": "-0Kr818ux3o1",
"location": "MPLab, Liepajā", "location": "MPLab, Liepajā",
"title": "Countercoding: a few thoughts about data ethics and music (or... are your algorithms healthy? - part III)", "title": "Countercoding: a few thoughts about data ethics and music (or... are your algorithms healthy? - part III)",
"date": "2023-09-11" "date": "2023-09-11"
}, },
{ {
"id": "64de3b48cdd55b0007a4d076", "id": "Mm411CEioVWb",
"location": "Jāzeps Vītols Latvian Academy of Music, Rīga", "location": "Jāzeps Vītols Latvian Academy of Music, Rīga",
"title": "A few more thoughts on modulations in harmonic space", "title": "A few more thoughts on modulations in harmonic space",
"date": "2023-09-14" "date": "2023-09-14"
}, },
{ {
"id": "65ba8fe07dcea80007bf3fc1", "id": "bQ9spkvFe3Wt",
"location": "Chintete @ Cantina La Dominica, CDMX", "location": "Chintete @ Cantina La Dominica, CDMX",
"title": "A brief but not necessarily abbreviated history of the domino problem", "title": "A brief but not necessarily abbreviated history of the domino problem",
"date": "2024-01-23" "date": "2024-01-23"
}, },
{ {
"id": "67a25361ec86f90006028679", "id": "PeLARqfBB3th",
"location": "Mozarteum, Salzburg", "location": "Mozarteum, Salzburg",
"title": [ "title": [
"Contextualizing the siren", "Contextualizing the siren",
@ -375,7 +375,7 @@
"date": "2024-09-20" "date": "2024-09-20"
}, },
{ {
"id": "67a25472ec86f9000602867a", "id": "kEl0KKXi0zXF",
"location": "Gustav Mahler Privatuniversität für Musik, Klagenfurt", "location": "Gustav Mahler Privatuniversität für Musik, Klagenfurt",
"title": [ "title": [
"Contextualizing the siren", "Contextualizing the siren",
@ -384,11 +384,27 @@
"date": "2024-09-27" "date": "2024-09-27"
}, },
{ {
"id": "686b89761dac9500068140c0", "id": "2dDD5md6Vlvn",
"location": "IACAP/AISB Conference @ University of Twente, Enchede", "location": "IACAP/AISB Conference @ University of Twente, Enchede",
"title": [ "title": [
"Meta+phenomenology I: a taxonomy of learning experiences" "Meta+phenomenology I: a taxonomy of learning experiences"
], ],
"date": "2025-07-01" "date": "2025-07-01"
},
{
"location": "Gustav Mahler Privatuniversität für Musik, Klagenfurt",
"title": [
"Meta+phenomenology I: a taxonomy of learning experiences"
],
"date": "2025-12-02",
"id": "49zFZPwmjh9v"
},
{
"location": "Orpheus Institute, Ghent",
"title": [
"Complexity, memory, power: on the cultural and societal impact of resonating artistic-research methodologies"
],
"date": "2026-02-03",
"id": "A0Yvqo4pOTK1"
} }
] ]

File diff suppressed because it is too large Load diff