Update ID generation, CV formatting, and regenerate IDs
This commit is contained in:
parent
241beb396b
commit
a62ea09760
35
pages/cv.vue
35
pages/cv.vue
|
|
@ -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) {
|
||||
if (!dateStr) return 'Present'
|
||||
const date = new Date(dateStr)
|
||||
|
|
@ -123,17 +139,16 @@ useHead({
|
|||
<section v-if="resume?.publications?.length" class="cv-section">
|
||||
<h4>Publications</h4>
|
||||
<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="bib ml-4">
|
||||
<span v-if="pub.entryTags?.author">{{ pub.entryTags.author }}.</span>
|
||||
<span v-if="pub.entryTags?.editor">
|
||||
<span v-if="pub.entryTags?.author">, </span>editors {{ pub.entryTags.editor }}.
|
||||
</span>
|
||||
<span v-if="pub.entryTags?.booktitle"><em>{{ pub.entryTags.booktitle }}.</em></span>
|
||||
<span v-if="pub.entryTags?.journal"><em>{{ pub.entryTags.journal }}</em>,</span>
|
||||
<span v-if="pub.entryTags?.volume">vol. {{ pub.entryTags.volume }}</span>
|
||||
<span v-if="pub.entryTags?.publisher">{{ pub.entryTags.publisher }},</span> {{ pub.entryTags?.year }}.
|
||||
<div class="bib ml-4 text-[#7F7F7F]">
|
||||
{{ pub.entryTags?.author }}
|
||||
<span v-if="pub.entryTags?.booktitle">{{ pub.entryTags?.booktitle }}. </span>
|
||||
<span v-if="pub.entryTags?.journal">{{ pub.entryTags?.journal }}. </span>
|
||||
<span v-if="pub.entryTags?.editor">editors {{ pub.entryTags?.editor }} </span>
|
||||
<span v-if="pub.entryTags?.volume">volume {{ pub.entryTags?.volume }}.</span>
|
||||
<span v-if="pub.entryTags?.publisher">{{ pub.entryTags?.publisher }}.</span>
|
||||
{{ pub.entryTags?.year }}.
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
|
|
|||
|
|
@ -134,7 +134,17 @@
|
|||
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))
|
||||
})
|
||||
}
|
||||
})
|
||||
|
||||
|
|
|
|||
|
|
@ -1,5 +1,6 @@
|
|||
import { readFileSync, writeFileSync, existsSync } from 'node:fs'
|
||||
import { join } from 'node:path'
|
||||
import { nanoid } from 'nanoid'
|
||||
|
||||
const dataDir = './server/data'
|
||||
|
||||
|
|
@ -15,7 +16,7 @@ function getFilePath(collection) {
|
|||
}
|
||||
|
||||
function generateId() {
|
||||
return Math.random().toString(36).substring(2, 15)
|
||||
return nanoid(12)
|
||||
}
|
||||
|
||||
export default defineEventHandler(async (event) => {
|
||||
|
|
|
|||
|
|
@ -1,50 +1,50 @@
|
|||
[
|
||||
{
|
||||
"id": "563ee6f1e4b0ce38bd2f9a89",
|
||||
"id": "cHmyjWQ9aMp2",
|
||||
"filename": "Ostrava_cover.jpg",
|
||||
"contentType": "image/jpeg"
|
||||
},
|
||||
{
|
||||
"id": "563fcc41e4b0ce38bd2f9aa1",
|
||||
"id": "IyxbqsKnKKu-",
|
||||
"filename": "west_coast_soundings_cover.jpg",
|
||||
"contentType": "image/jpeg"
|
||||
},
|
||||
{
|
||||
"id": "56426516e4b0ce38bd2f9aa6",
|
||||
"id": "gTqFuVPe4Z8H",
|
||||
"filename": "DIY_Canons_cover.jpg",
|
||||
"contentType": "image/jpeg"
|
||||
},
|
||||
{
|
||||
"id": "56483e15e4b0ce38bd2f9b65",
|
||||
"id": "XF-6oGsoAg_H",
|
||||
"filename": "Rounds_cover.jpg",
|
||||
"contentType": "image/jpeg"
|
||||
},
|
||||
{
|
||||
"id": "5a493efe4f82170dbbb3fe72",
|
||||
"id": "LlzjEhgRg_-z",
|
||||
"filename": "approximating_omega_cover.jpg",
|
||||
"contentType": "image/jpeg"
|
||||
},
|
||||
{
|
||||
"id": "5a49617e4f82170dbbb3fe79",
|
||||
"id": "X7ReTVSm4Gw1",
|
||||
"filename": "lower_limit_cover.jpg",
|
||||
"contentType": "image/jpeg"
|
||||
},
|
||||
{
|
||||
"id": "5b4601a96082b5226d429b99",
|
||||
"id": "J4GMOD2qGvBd",
|
||||
"filename": "preliminary_thoughts_TR.jpg",
|
||||
"contentType": "image/jpeg"
|
||||
},
|
||||
{
|
||||
"id": "5b4601ee6082b5226d429ba5",
|
||||
"id": "c_HEs-35do6e",
|
||||
"filename": "preliminary_thoughts_BMV.jpg",
|
||||
"contentType": "image/jpeg"
|
||||
},
|
||||
{
|
||||
"id": "6016ca5e2ab79c0001885a4d",
|
||||
"id": "gttkTOzN5mGT",
|
||||
"filename": "single_track_cover.jpg"
|
||||
},
|
||||
{
|
||||
"id": "61f7793cb9d8210001e771e8",
|
||||
"id": "MmfXswlHr7rp",
|
||||
"filename": "CiCC_cover.jpg"
|
||||
}
|
||||
]
|
||||
]
|
||||
File diff suppressed because it is too large
Load diff
|
|
@ -1,90 +1,90 @@
|
|||
[
|
||||
{
|
||||
"id": "564d2906e4b0ce38bd2f9b6b",
|
||||
"id": "FjOGUYPKIE_3",
|
||||
"filename": "waterline_la_river_1.jpg",
|
||||
"contentType": "image/jpeg"
|
||||
},
|
||||
{
|
||||
"id": "564d2949e4b0ce38bd2f9b78",
|
||||
"id": "9jfLZP23itD6",
|
||||
"filename": "waterline_la_river_2.jpg",
|
||||
"contentType": "image/jpeg"
|
||||
},
|
||||
{
|
||||
"id": "564e9bade4b0ce38bd2f9b88",
|
||||
"id": "3u2LVd_kg-8W",
|
||||
"filename": "mbw_ostrava_1.jpg",
|
||||
"contentType": "image/jpeg"
|
||||
},
|
||||
{
|
||||
"id": "5653a9c2e4b0ce38bd2f9bf5",
|
||||
"id": "PfXH1oYwnsqY",
|
||||
"filename": "quieting_rooms_image_1.jpg",
|
||||
"contentType": "image/jpeg"
|
||||
},
|
||||
{
|
||||
"id": "5653a9dae4b0ce38bd2f9c12",
|
||||
"id": "WW2nhTChBPaD",
|
||||
"filename": "quieting_rooms_image_2.jpg",
|
||||
"contentType": "image/jpeg"
|
||||
},
|
||||
{
|
||||
"id": "5653a9e9e4b0ce38bd2f9c26",
|
||||
"id": "DT_nyxIXXp4S",
|
||||
"filename": "quieting_rooms_image_3.jpg",
|
||||
"contentType": "image/jpeg"
|
||||
},
|
||||
{
|
||||
"id": "5653a9eee4b0ce38bd2f9c3a",
|
||||
"id": "hbeagS52q_MB",
|
||||
"filename": "quieting_rooms_image_4.jpg",
|
||||
"contentType": "image/jpeg"
|
||||
},
|
||||
{
|
||||
"id": "5653bd2fe4b0ce38bd2f9c4a",
|
||||
"id": "EYvzs489mE2o",
|
||||
"filename": "waterline_ostrava.jpg",
|
||||
"contentType": "image/jpeg"
|
||||
},
|
||||
{
|
||||
"id": "5653be13e4b0ce38bd2f9c60",
|
||||
"id": "gT3E5rMNLcxJ",
|
||||
"filename": "minor_third_abstract.jpg",
|
||||
"contentType": "image/jpeg"
|
||||
},
|
||||
{
|
||||
"id": "5653be2ce4b0ce38bd2f9c6c",
|
||||
"id": "Ayei6Mhmke-d",
|
||||
"filename": "for_gregory_chaitin.jpg",
|
||||
"contentType": "image/jpeg"
|
||||
},
|
||||
{
|
||||
"id": "5808bcabe4b04741c902e45e",
|
||||
"id": "Yo6GUlmbZ-6K",
|
||||
"filename": "mbw_hundred_years_1.jpg",
|
||||
"contentType": "image/jpeg"
|
||||
},
|
||||
{
|
||||
"id": "5808bd3fe4b04741c902e46e",
|
||||
"id": "Mjxnz9V-Dicy",
|
||||
"filename": "mbw_hundred_years_2.jpg",
|
||||
"contentType": "image/jpeg"
|
||||
},
|
||||
{
|
||||
"id": "5808bdbbe4b04741c902e480",
|
||||
"id": "OFQcFOUS_tNd",
|
||||
"filename": "mbw_oaxaca_1.jpg",
|
||||
"contentType": "image/jpeg"
|
||||
},
|
||||
{
|
||||
"id": "5808bdf1e4b04741c902e48a",
|
||||
"id": "kV_W-qhMHwoj",
|
||||
"filename": "mbw_oaxaca_2.jpg",
|
||||
"contentType": "image/jpeg"
|
||||
},
|
||||
{
|
||||
"id": "5808be13e4b04741c902e494",
|
||||
"id": "wOj61VitPhhQ",
|
||||
"filename": "mbw_oaxaca_3.jpg",
|
||||
"contentType": "image/jpeg"
|
||||
},
|
||||
{
|
||||
"id": "58ebee414f82171557aecb3c",
|
||||
"id": "L8Pj5Tbyj3SD",
|
||||
"filename": "rockfall.jpg",
|
||||
"contentType": "image/jpeg"
|
||||
},
|
||||
{
|
||||
"id": "6016e5232ab79c0001885a52",
|
||||
"id": "uid0iZ44ApBB",
|
||||
"filename": "mbw_plants_foto.jpg"
|
||||
},
|
||||
{
|
||||
"id": "6016e64c2ab79c0001885a62",
|
||||
"id": "_s4kavHdvab_",
|
||||
"filename": "mbw_domino_perf.jpg"
|
||||
}
|
||||
]
|
||||
]
|
||||
|
|
@ -1,48 +1,48 @@
|
|||
[
|
||||
{
|
||||
"id": "56f75398fdc52469b6c07c56",
|
||||
"id": "bnCJ0qGvYMOt",
|
||||
"image": "mbw_hundred_years_2.jpg",
|
||||
"credit": "Anton Lukoszevieze",
|
||||
"priority": 200
|
||||
},
|
||||
{
|
||||
"id": "5808be40ec6cea73b9674e76",
|
||||
"id": "K430nNlBthu2",
|
||||
"image": "mbw_oaxaca_1.jpg",
|
||||
"credit": "Bradford Bailey",
|
||||
"priority": 300
|
||||
},
|
||||
{
|
||||
"id": "5808be4fec6cea73b9674e77",
|
||||
"id": "9LbO0bV10LEl",
|
||||
"image": "mbw_oaxaca_2.jpg",
|
||||
"credit": "Bradford Bailey",
|
||||
"priority": 400
|
||||
},
|
||||
{
|
||||
"id": "5808be60ec6cea73b9674e78",
|
||||
"id": "wjUhdVp1tK2l",
|
||||
"image": "mbw_oaxaca_3.jpg",
|
||||
"credit": "Bradford Bailey",
|
||||
"priority": 500
|
||||
},
|
||||
{
|
||||
"id": "5808ce03ec6cea73b9674e7a",
|
||||
"id": "sHzL5JrYZoX7",
|
||||
"image": "mbw_hundred_years_1.jpg",
|
||||
"credit": "Anton Lukoszevieze",
|
||||
"priority": 100
|
||||
},
|
||||
{
|
||||
"id": "5808d232ec6cea73b9674e7c",
|
||||
"id": "g5L0bQMaSCPi",
|
||||
"image": "mbw_ostrava_1.jpg",
|
||||
"credit": "ONMD",
|
||||
"priority": 600
|
||||
},
|
||||
{
|
||||
"id": "6016e58a2276b60007751e83",
|
||||
"id": "NC2DYWEW4b3Q",
|
||||
"image": "mbw_plants_foto.jpg",
|
||||
"credit": "Irasema Fernández",
|
||||
"priority": 50
|
||||
},
|
||||
{
|
||||
"id": "6016e6cc2276b60007751e84",
|
||||
"id": "I7ES3Qs_4-iB",
|
||||
"image": "mbw_domino_perf.jpg",
|
||||
"credit": "Anna-Lena Reulein",
|
||||
"priority": 60
|
||||
|
|
|
|||
|
|
@ -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",
|
||||
"entryType": "article",
|
||||
"entryTags": {
|
||||
"author": "Michael Winter",
|
||||
"author": "",
|
||||
"title": "Tom Johnson and a Rational Theory of Harmony",
|
||||
"journal": "Journal of Mathematics and Music",
|
||||
"year": "2026",
|
||||
"pages": "1--17",
|
||||
"pages": "1–17",
|
||||
"volume": "1",
|
||||
"publisher": "Taylor & Francis",
|
||||
"doi": "10.1080/17459737.2025.2591899",
|
||||
"url": "https://doi.org/10.1080/17459737.2025.2591899"
|
||||
}
|
||||
},
|
||||
{
|
||||
"id": "68e6c3abeaa478002aaf6604",
|
||||
"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",
|
||||
"id": "-ypiNO6zuH5M",
|
||||
"citationKey": "Winter24a",
|
||||
"entryType": "incollection",
|
||||
"entryTags": {
|
||||
|
|
@ -38,7 +39,7 @@
|
|||
}
|
||||
},
|
||||
{
|
||||
"id": "68e6c3abeaa478002aaf6606",
|
||||
"id": "AxPrV72Iz5Q-",
|
||||
"citationKey": "Winter23",
|
||||
"entryType": "article",
|
||||
"entryTags": {
|
||||
|
|
@ -50,7 +51,7 @@
|
|||
}
|
||||
},
|
||||
{
|
||||
"id": "68e6c3abeaa478002aaf6607",
|
||||
"id": "8R_y4w_PX9Ey",
|
||||
"citationKey": "Winter20c",
|
||||
"entryType": "article",
|
||||
"entryTags": {
|
||||
|
|
@ -62,7 +63,7 @@
|
|||
}
|
||||
},
|
||||
{
|
||||
"id": "68e6c3abeaa478002aaf6608",
|
||||
"id": "ir_mPsMnICaY",
|
||||
"citationKey": "Winter20b",
|
||||
"entryType": "incollection",
|
||||
"entryTags": {
|
||||
|
|
@ -76,7 +77,7 @@
|
|||
}
|
||||
},
|
||||
{
|
||||
"id": "68e6c3abeaa478002aaf6609",
|
||||
"id": "BWZsIYM7QuSI",
|
||||
"citationKey": "Winter20a",
|
||||
"entryType": "misc",
|
||||
"entryTags": {
|
||||
|
|
@ -88,7 +89,7 @@
|
|||
}
|
||||
},
|
||||
{
|
||||
"id": "68e6c3abeaa478002aaf660a",
|
||||
"id": "Eov-ZdnhB8VN",
|
||||
"citationKey": "Winter19c",
|
||||
"entryType": "incollection",
|
||||
"entryTags": {
|
||||
|
|
@ -103,7 +104,7 @@
|
|||
}
|
||||
},
|
||||
{
|
||||
"id": "68e6c3abeaa478002aaf660b",
|
||||
"id": "9fTMObVTq6bK",
|
||||
"citationKey": "Winter19b",
|
||||
"entryType": "incollection",
|
||||
"entryTags": {
|
||||
|
|
@ -117,7 +118,7 @@
|
|||
}
|
||||
},
|
||||
{
|
||||
"id": "68e6c3abeaa478002aaf660c",
|
||||
"id": "-EMgMdcmcVwG",
|
||||
"citationKey": "Winter19a",
|
||||
"entryType": "misc",
|
||||
"entryTags": {
|
||||
|
|
@ -129,7 +130,7 @@
|
|||
}
|
||||
},
|
||||
{
|
||||
"id": "68e6c3abeaa478002aaf660d",
|
||||
"id": "7MZV46hLmp0U",
|
||||
"citationKey": "Winter17a",
|
||||
"entryType": "incollection",
|
||||
"entryTags": {
|
||||
|
|
@ -143,7 +144,7 @@
|
|||
}
|
||||
},
|
||||
{
|
||||
"id": "68e6c3abeaa478002aaf660e",
|
||||
"id": "rHw-6j9K9oPH",
|
||||
"citationKey": "Winter16a",
|
||||
"entryType": "misc",
|
||||
"entryTags": {
|
||||
|
|
@ -155,7 +156,7 @@
|
|||
}
|
||||
},
|
||||
{
|
||||
"id": "68e6c3abeaa478002aaf660f",
|
||||
"id": "-ZafAhCZsda1",
|
||||
"citationKey": "Winter15a",
|
||||
"entryType": "Book",
|
||||
"entryTags": {
|
||||
|
|
@ -168,7 +169,7 @@
|
|||
}
|
||||
},
|
||||
{
|
||||
"id": "68e6c3abeaa478002aaf6610",
|
||||
"id": "eLlkfz2XIvX4",
|
||||
"citationKey": "Winter14b",
|
||||
"entryType": "misc",
|
||||
"entryTags": {
|
||||
|
|
@ -181,7 +182,7 @@
|
|||
}
|
||||
},
|
||||
{
|
||||
"id": "68e6c3abeaa478002aaf6611",
|
||||
"id": "9aQaRawHso4_",
|
||||
"citationKey": "Winter14a",
|
||||
"entryType": "article",
|
||||
"entryTags": {
|
||||
|
|
@ -196,7 +197,7 @@
|
|||
}
|
||||
},
|
||||
{
|
||||
"id": "68e6c3abeaa478002aaf6612",
|
||||
"id": "ONer_k62eJM3",
|
||||
"citationKey": "Winter12a",
|
||||
"entryType": "incollection",
|
||||
"entryTags": {
|
||||
|
|
@ -210,7 +211,7 @@
|
|||
}
|
||||
},
|
||||
{
|
||||
"id": "68e6c3abeaa478002aaf6613",
|
||||
"id": "_eRFSbL5XUKe",
|
||||
"citationKey": "Winter11a",
|
||||
"entryType": "article",
|
||||
"entryTags": {
|
||||
|
|
@ -225,7 +226,7 @@
|
|||
}
|
||||
},
|
||||
{
|
||||
"id": "68e6c3abeaa478002aaf6614",
|
||||
"id": "iHTZzQNJ88MQ",
|
||||
"citationKey": "Winter10d",
|
||||
"entryType": "misc",
|
||||
"entryTags": {
|
||||
|
|
@ -238,7 +239,7 @@
|
|||
}
|
||||
},
|
||||
{
|
||||
"id": "68e6c3abeaa478002aaf6615",
|
||||
"id": "RzJxs_pCt8fD",
|
||||
"citationKey": "Winter10c",
|
||||
"entryType": "article",
|
||||
"entryTags": {
|
||||
|
|
@ -253,7 +254,7 @@
|
|||
}
|
||||
},
|
||||
{
|
||||
"id": "68e6c3abeaa478002aaf6616",
|
||||
"id": "Kbar50Nq3v6J",
|
||||
"citationKey": "Winter10b",
|
||||
"entryType": "phdthesis",
|
||||
"entryTags": {
|
||||
|
|
@ -267,7 +268,7 @@
|
|||
}
|
||||
},
|
||||
{
|
||||
"id": "68e6c3abeaa478002aaf6617",
|
||||
"id": "yNNa6PGHvo0Z",
|
||||
"citationKey": "Winter10a",
|
||||
"entryType": "article",
|
||||
"entryTags": {
|
||||
|
|
@ -282,7 +283,7 @@
|
|||
}
|
||||
},
|
||||
{
|
||||
"id": "68e6c3abeaa478002aaf6618",
|
||||
"id": "N1uPKzRxTwQD",
|
||||
"citationKey": "Winter09a",
|
||||
"entryType": "misc",
|
||||
"entryTags": {
|
||||
|
|
@ -294,7 +295,7 @@
|
|||
}
|
||||
},
|
||||
{
|
||||
"id": "68e6c3abeaa478002aaf6619",
|
||||
"id": "-LOPcqph3L5K",
|
||||
"citationKey": "Winter08a",
|
||||
"entryType": "article",
|
||||
"entryTags": {
|
||||
|
|
@ -309,7 +310,7 @@
|
|||
}
|
||||
},
|
||||
{
|
||||
"id": "68e6c3abeaa478002aaf661a",
|
||||
"id": "9GF-AexkMXNW",
|
||||
"citationKey": "Winter07b",
|
||||
"entryType": "article",
|
||||
"entryTags": {
|
||||
|
|
@ -323,7 +324,7 @@
|
|||
}
|
||||
},
|
||||
{
|
||||
"id": "68e6c3abeaa478002aaf661b",
|
||||
"id": "ncG2WZ7EU3Yo",
|
||||
"citationKey": "Winter07a",
|
||||
"entryType": "inproceedings",
|
||||
"entryTags": {
|
||||
|
|
@ -337,5 +338,15 @@
|
|||
"address": "New York, NY, USA",
|
||||
"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"
|
||||
}
|
||||
]
|
||||
|
|
@ -1,93 +1,93 @@
|
|||
[
|
||||
{
|
||||
"id": "5643a187e4b0ce38bd2f9ab1",
|
||||
"id": "2y-6XNLXQ3Kv",
|
||||
"filename": "Dissonant_counterpoint_and_statistical_feedback.pdf",
|
||||
"contentType": "application/pdf"
|
||||
},
|
||||
{
|
||||
"id": "56454db7e4b0ce38bd2f9ab8",
|
||||
"id": "49bh0wsPDpzA",
|
||||
"filename": "Chordal_and_timbral_morphologies_using_Hamiltonian_cycles.pdf",
|
||||
"contentType": "application/pdf"
|
||||
},
|
||||
{
|
||||
"id": "56454e40e4b0ce38bd2f9ad5",
|
||||
"id": "U2AfhImsaEFX",
|
||||
"filename": "Livescore.pdf",
|
||||
"contentType": "application/pdf"
|
||||
},
|
||||
{
|
||||
"id": "56454e92e4b0ce38bd2f9adb",
|
||||
"id": "6tTu0iOYtY8K",
|
||||
"filename": "Structural_Metrics.pdf",
|
||||
"contentType": "application/pdf"
|
||||
},
|
||||
{
|
||||
"id": "56454fe7e4b0ce38bd2f9af3",
|
||||
"id": "te6YrmfCk63U",
|
||||
"filename": "On_Arbor_Vitae.pdf",
|
||||
"contentType": "application/pdf"
|
||||
},
|
||||
{
|
||||
"id": "56455116e4b0ce38bd2f9b01",
|
||||
"id": "s0C9tfMACnls",
|
||||
"filename": "Automatic_notation_generators.pdf",
|
||||
"contentType": "application/pdf"
|
||||
},
|
||||
{
|
||||
"id": "57e93ca6e4b04741c902e446",
|
||||
"id": "m1t1rgZWnVrM",
|
||||
"filename": "On_minimal_change_musical_morphologies.pdf",
|
||||
"contentType": "application/pdf"
|
||||
},
|
||||
{
|
||||
"id": "5895474d4f82171557aecb0c",
|
||||
"id": "Iir5aas-fPPF",
|
||||
"filename": "polansky_piano_liner_notes.pdf"
|
||||
},
|
||||
{
|
||||
"id": "5d1a4e686082b53a9fd05d37",
|
||||
"id": "X76BEAB5wCTW",
|
||||
"filename": "A_few_more_thoughts_about_Leibniz.pdf"
|
||||
},
|
||||
{
|
||||
"id": "5d1a4f6c6082b53a9fd05d47",
|
||||
"id": "7A7RlR6unb1g",
|
||||
"filename": "tenney_changes_liner_notes.pdf"
|
||||
},
|
||||
{
|
||||
"id": "5f41b67830c49e00011f3c22",
|
||||
"id": "Frjy7y0Mrhlt",
|
||||
"filename": "metaphenomenology_primer.pdf"
|
||||
},
|
||||
{
|
||||
"id": "5fb7bc05b3cb1f0001a435fc",
|
||||
"id": "f0ZC2Y5hy4nm",
|
||||
"filename": "krieger_yggdrasil_soli_liner_notes.pdf"
|
||||
},
|
||||
{
|
||||
"id": "5fd5f5484d27fc0001f8273a",
|
||||
"id": "Qppt7LdoqM1s",
|
||||
"filename": "reflections_on_the_quarantine_seminars.pdf"
|
||||
},
|
||||
{
|
||||
"id": "623d6e8da7b11b000184f463",
|
||||
"id": "1OeCdeZNsUTI",
|
||||
"filename": "metaphenomenology_proposal.pdf"
|
||||
},
|
||||
{
|
||||
"id": "64f0d0a756991947b7dacbf1",
|
||||
"id": "PpmFnuNEmYDf",
|
||||
"filename": "barlow_hidden_gems.pdf"
|
||||
},
|
||||
{
|
||||
"id": "652e6cbb5f08170e024432e0",
|
||||
"id": "LsbxPxPJ_mcX",
|
||||
"filename": "hdp_poster.pdf"
|
||||
},
|
||||
{
|
||||
"id": "6551fbff85cc5850833c9f45",
|
||||
"id": "IWVbBVgDpzar",
|
||||
"filename": "a_few_thoughts_exhibition_poster.pdf"
|
||||
},
|
||||
{
|
||||
"id": "65e6219f2c04433ddf02c143",
|
||||
"id": "W6YnbIyqcNwb",
|
||||
"filename": "selected_work_samples.pdf"
|
||||
},
|
||||
{
|
||||
"id": "668d27e5ec71714cfe60e33e",
|
||||
"id": "dWqHoUmShNIA",
|
||||
"filename": "compact_sets_description.pdf"
|
||||
},
|
||||
{
|
||||
"id": "67c96a0e1499351cfea1757c",
|
||||
"id": "vtzBsSAinrnu",
|
||||
"filename": "teaching_statement.pdf"
|
||||
},
|
||||
{
|
||||
"id": "67c96a6e1499351cfea17580",
|
||||
"id": "4Jjf5-go8POP",
|
||||
"filename": "research_statement.pdf"
|
||||
}
|
||||
]
|
||||
|
|
@ -1,6 +1,6 @@
|
|||
[
|
||||
{
|
||||
"id": "563eb5a4dbb260acfadc4c35",
|
||||
"id": "RJSQqLlVV_0N",
|
||||
"title": "west coast soundings",
|
||||
"label": "Edition Wandelweiser Records",
|
||||
"date": "2014",
|
||||
|
|
@ -50,7 +50,7 @@
|
|||
]
|
||||
},
|
||||
{
|
||||
"id": "563eb670dbb260acfadc4c36",
|
||||
"id": "L7lhY7GTL4Uf",
|
||||
"title": "DIY Canons",
|
||||
"label": "Pogus Records",
|
||||
"date": "2005",
|
||||
|
|
@ -67,7 +67,7 @@
|
|||
]
|
||||
},
|
||||
{
|
||||
"id": "563eb762dbb260acfadc4c37",
|
||||
"id": "aw4oak5-sylL",
|
||||
"title": "Music of Ostrava Days 2009 Live",
|
||||
"label": "Ostrava Center for New Music",
|
||||
"date": "2009",
|
||||
|
|
@ -85,7 +85,7 @@
|
|||
]
|
||||
},
|
||||
{
|
||||
"id": "563eb819dbb260acfadc4c38",
|
||||
"id": "m82-1eI1RP7j",
|
||||
"title": "rounds",
|
||||
"label": "the wulf. records",
|
||||
"date": "2013",
|
||||
|
|
@ -101,7 +101,7 @@
|
|||
]
|
||||
},
|
||||
{
|
||||
"id": "5a4940b705a681a2659a0efe",
|
||||
"id": "yfcxLmzKf-D5",
|
||||
"title": "approximating omega",
|
||||
"label": "Edition Wandelweiser Records",
|
||||
"date": "2017",
|
||||
|
|
@ -121,7 +121,7 @@
|
|||
]
|
||||
},
|
||||
{
|
||||
"id": "5a49621905a681a2659a0eff",
|
||||
"id": "_o2w2fvMqWQA",
|
||||
"title": "lower limit",
|
||||
"label": "New World Records",
|
||||
"date": "2018",
|
||||
|
|
@ -147,7 +147,7 @@
|
|||
]
|
||||
},
|
||||
{
|
||||
"id": "5b46022cd66afc4a413f148c",
|
||||
"id": "xPfN8qA4Ddho",
|
||||
"title": "preliminary thoughts",
|
||||
"label": "Bahn Mi Verlag",
|
||||
"date": "2018",
|
||||
|
|
@ -164,7 +164,7 @@
|
|||
]
|
||||
},
|
||||
{
|
||||
"id": "5b460243d66afc4a413f1495",
|
||||
"id": "TFqI3_v6d1JF",
|
||||
"title": "preliminary thoughts",
|
||||
"label": "Tsonami Records",
|
||||
"date": "2018",
|
||||
|
|
@ -181,7 +181,7 @@
|
|||
]
|
||||
},
|
||||
{
|
||||
"id": "6016c9742276b60007751e82",
|
||||
"id": "FjBp3OfziW3w",
|
||||
"title": "single track",
|
||||
"label": "Another Timbre",
|
||||
"date": "2021",
|
||||
|
|
@ -198,7 +198,7 @@
|
|||
]
|
||||
},
|
||||
{
|
||||
"id": "61f777b0dc86b900073f369d",
|
||||
"id": "2PivtC6zdgXN",
|
||||
"title": "Counterfeiting in Colonial Connecticut",
|
||||
"label": "XI Records",
|
||||
"date": "2022",
|
||||
|
|
|
|||
|
|
@ -1,732 +1,732 @@
|
|||
[
|
||||
{
|
||||
"id": "563c8608e4b0ce38bd2f97ba",
|
||||
"id": "m158ldbXuile",
|
||||
"filename": "to_hum_and_walk_score.pdf",
|
||||
"contentType": "application/pdf",
|
||||
"legacy_filename": "to_hum_and_walk_total.pdf"
|
||||
},
|
||||
{
|
||||
"id": "563c8609e4b0ce38bd2f97c2",
|
||||
"id": "-Q58yZzoM2O9",
|
||||
"filename": "a_conversation_score.pdf",
|
||||
"contentType": "application/pdf",
|
||||
"legacy_filename": "a_conversation.pdf"
|
||||
},
|
||||
{
|
||||
"id": "563c860ae4b0ce38bd2f97c6",
|
||||
"id": "eOHGLt2gY_JY",
|
||||
"filename": "necklaces_score.pdf",
|
||||
"contentType": "application/pdf",
|
||||
"legacy_filename": "necklaces_total.pdf"
|
||||
},
|
||||
{
|
||||
"id": "563c860ae4b0ce38bd2f97cc",
|
||||
"id": "-MhggzY2EbF8",
|
||||
"filename": "partition_and_gate_score.pdf",
|
||||
"contentType": "application/pdf",
|
||||
"legacy_filename": "partition_and_gate_total.pdf"
|
||||
},
|
||||
{
|
||||
"id": "563c860ce4b0ce38bd2f97d9",
|
||||
"id": "z4zV9kBApMVf",
|
||||
"filename": "order_matters_score.pdf",
|
||||
"contentType": "application/pdf",
|
||||
"legacy_filename": "order_matters.pdf"
|
||||
},
|
||||
{
|
||||
"id": "563c860de4b0ce38bd2f97dd",
|
||||
"id": "JaVHJ79AjRHc",
|
||||
"filename": "to_converge_abstract_score.pdf",
|
||||
"contentType": "application/pdf",
|
||||
"legacy_filename": "to_converge_abstract.pdf"
|
||||
},
|
||||
{
|
||||
"id": "563c8611e4b0ce38bd2f97e1",
|
||||
"id": "eI1YfrE4YJhI",
|
||||
"filename": "material_for_james_klopfleisch_score.pdf",
|
||||
"contentType": "application/pdf",
|
||||
"legacy_filename": "material.pdf"
|
||||
},
|
||||
{
|
||||
"id": "563c8612e4b0ce38bd2f9801",
|
||||
"id": "XgR0i5R009n0",
|
||||
"filename": "lv_score.pdf",
|
||||
"contentType": "application/pdf",
|
||||
"legacy_filename": "lv.pdf"
|
||||
},
|
||||
{
|
||||
"id": "563c8613e4b0ce38bd2f9807",
|
||||
"id": "WhKFBj136LkU",
|
||||
"filename": "glass_economies_score.pdf",
|
||||
"contentType": "application/pdf",
|
||||
"legacy_filename": "glass economies_2013_03_09.pdf"
|
||||
},
|
||||
{
|
||||
"id": "563c8616e4b0ce38bd2f980c",
|
||||
"id": "6rWsneWcrbrj",
|
||||
"filename": "economy_study_in_one_dimension_score.pdf",
|
||||
"contentType": "application/pdf",
|
||||
"legacy_filename": "economy_study.pdf"
|
||||
},
|
||||
{
|
||||
"id": "563c8616e4b0ce38bd2f9814",
|
||||
"id": "9aVhYfaCT64D",
|
||||
"filename": "copyedit_score.pdf",
|
||||
"contentType": "application/pdf",
|
||||
"legacy_filename": "copyedit.pdf"
|
||||
},
|
||||
{
|
||||
"id": "563c8616e4b0ce38bd2f9818",
|
||||
"id": "Q4w0RGiUPW1J",
|
||||
"filename": "quieting_rooms_score.pdf",
|
||||
"contentType": "application/pdf",
|
||||
"legacy_filename": "quieting_rooms_score_final.pdf"
|
||||
},
|
||||
{
|
||||
"id": "563c861be4b0ce38bd2f981c",
|
||||
"id": "dTNvWwaxb85d",
|
||||
"filename": "half_normal_score.pdf",
|
||||
"contentType": "application/pdf",
|
||||
"legacy_filename": "half_normal_draft.pdf"
|
||||
},
|
||||
{
|
||||
"id": "563c861be4b0ce38bd2f982d",
|
||||
"id": "OgGiSvyYylfL",
|
||||
"filename": "project_reflect_refract_score.pdf",
|
||||
"contentType": "application/pdf",
|
||||
"legacy_filename": "project_reflect_refract.pdf"
|
||||
},
|
||||
{
|
||||
"id": "563c861be4b0ce38bd2f9831",
|
||||
"id": "etgSIK-Hn_1G",
|
||||
"filename": "minor_third_score.pdf",
|
||||
"contentType": "application/pdf",
|
||||
"legacy_filename": "minor_third.pdf"
|
||||
},
|
||||
{
|
||||
"id": "563c861de4b0ce38bd2f9835",
|
||||
"id": "5XEWCcwAGsee",
|
||||
"filename": "mass_and_band_score.pdf",
|
||||
"contentType": "application/pdf",
|
||||
"legacy_filename": "mass_and_band.pdf"
|
||||
},
|
||||
{
|
||||
"id": "563c861de4b0ce38bd2f983c",
|
||||
"id": "VeONcrUL8AFv",
|
||||
"filename": "minor_third_abstract_score.pdf",
|
||||
"contentType": "application/pdf",
|
||||
"legacy_filename": "minor_third_abstract.pdf"
|
||||
},
|
||||
{
|
||||
"id": "563c8623e4b0ce38bd2f9840",
|
||||
"id": "u9gf61OoXs_7",
|
||||
"filename": "slip_and_stitch_score.pdf",
|
||||
"contentType": "application/pdf",
|
||||
"legacy_filename": "slip_and_stitch.pdf"
|
||||
},
|
||||
{
|
||||
"id": "563c8629e4b0ce38bd2f9846",
|
||||
"id": "Wz1UlVca9RKb",
|
||||
"filename": "lower_limit_score.pdf",
|
||||
"contentType": "application/pdf",
|
||||
"legacy_filename": "lowerlimittotalrev.pdf"
|
||||
},
|
||||
{
|
||||
"id": "563c862ae4b0ce38bd2f986d",
|
||||
"id": "DUa2ujvrvl9e",
|
||||
"filename": "line_and_cipher_score.pdf",
|
||||
"contentType": "application/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",
|
||||
"contentType": "application/pdf",
|
||||
"legacy_filename": "partition_conjugate_prime.pdf"
|
||||
},
|
||||
{
|
||||
"id": "563c862ce4b0ce38bd2f987b",
|
||||
"id": "GykePt-W4KGm",
|
||||
"filename": "subset_canon_score.pdf",
|
||||
"contentType": "application/pdf",
|
||||
"legacy_filename": "subset_canon.pdf"
|
||||
},
|
||||
{
|
||||
"id": "563c862ce4b0ce38bd2f9880",
|
||||
"id": "H5gbpJxLq-uE",
|
||||
"filename": "scene_plus_plus_score.pdf",
|
||||
"contentType": "application/pdf",
|
||||
"legacy_filename": "scene++.pdf"
|
||||
},
|
||||
{
|
||||
"id": "563c862de4b0ce38bd2f9884",
|
||||
"id": "MRyKE1l31cON",
|
||||
"filename": "before_you_cure_the_beast_score.pdf",
|
||||
"contentType": "application/pdf",
|
||||
"legacy_filename": "before_you_cure_the_beast.pdf"
|
||||
},
|
||||
{
|
||||
"id": "563c862de4b0ce38bd2f9888",
|
||||
"id": "7EdNegCuQXl4",
|
||||
"filename": "just_above_and_or_below_the_waterline_score.pdf",
|
||||
"contentType": "application/pdf",
|
||||
"legacy_filename": "waterline.pdf"
|
||||
},
|
||||
{
|
||||
"id": "563c862de4b0ce38bd2f988c",
|
||||
"id": "xFz_OZVBpk5i",
|
||||
"filename": "pedal_triangle_machine_and_perhaps_coda_score.pdf",
|
||||
"contentType": "application/pdf",
|
||||
"legacy_filename": "pedal_triangle_machine_and_coda.pdf"
|
||||
},
|
||||
{
|
||||
"id": "563c862ee4b0ce38bd2f9891",
|
||||
"id": "ROVS6ThZd5ZU",
|
||||
"filename": "after_eons_score.pdf",
|
||||
"contentType": "application/pdf",
|
||||
"legacy_filename": "after_eons.pdf"
|
||||
},
|
||||
{
|
||||
"id": "563c862fe4b0ce38bd2f9895",
|
||||
"id": "LKDSO-yQ6z6N",
|
||||
"filename": "Approximating_Omega_score.pdf",
|
||||
"contentType": "application/pdf",
|
||||
"legacy_filename": "Approximating_Omega.pdf"
|
||||
},
|
||||
{
|
||||
"id": "563c862fe4b0ce38bd2f989b",
|
||||
"id": "867-uJB2zzp4",
|
||||
"filename": "piano_machine_score.pdf",
|
||||
"contentType": "application/pdf",
|
||||
"legacy_filename": "piano_machine.pdf"
|
||||
},
|
||||
{
|
||||
"id": "563c8630e4b0ce38bd2f989f",
|
||||
"id": "FcY4VkwQEEH1",
|
||||
"filename": "recitation_code_and_perhaps_round_score.pdf",
|
||||
"contentType": "application/pdf",
|
||||
"legacy_filename": "recitation_code_and_round.pdf"
|
||||
},
|
||||
{
|
||||
"id": "563c8630e4b0ce38bd2f98a5",
|
||||
"id": "lRBMgqx-LOOG",
|
||||
"filename": "field_and_perfect_circuit_score.pdf",
|
||||
"contentType": "application/pdf",
|
||||
"legacy_filename": "field_and_perfect_circuit.pdf"
|
||||
},
|
||||
{
|
||||
"id": "563c8631e4b0ce38bd2f98aa",
|
||||
"id": "Kel8VGF0P-wK",
|
||||
"filename": "for_gregory_chaitin_score.pdf",
|
||||
"contentType": "application/pdf",
|
||||
"legacy_filename": "for_gregory_chaitin.pdf"
|
||||
},
|
||||
{
|
||||
"id": "563c8631e4b0ce38bd2f98ae",
|
||||
"id": "uXKEb4Tkg3BV",
|
||||
"filename": "for_Sol_LeWitt_score.pdf",
|
||||
"contentType": "application/pdf",
|
||||
"legacy_filename": "for_Sol_LeWitt.pdf"
|
||||
},
|
||||
{
|
||||
"id": "563c8633e4b0ce38bd2f98b2",
|
||||
"id": "8q1vjrG2-EzG",
|
||||
"filename": "gray_codes_score.pdf",
|
||||
"contentType": "application/pdf",
|
||||
"legacy_filename": "gray_codes.pdf"
|
||||
},
|
||||
{
|
||||
"id": "563c8639e4b0ce38bd2f98bf",
|
||||
"id": "gywvVWZ3lWo1",
|
||||
"filename": "towards_completeness_score.pdf",
|
||||
"contentType": "application/pdf",
|
||||
"legacy_filename": "towards_completeness.pdf"
|
||||
},
|
||||
{
|
||||
"id": "563c863ae4b0ce38bd2f98ea",
|
||||
"id": "sIRto8UcCH6t",
|
||||
"filename": "small_world_score.pdf",
|
||||
"contentType": "application/pdf",
|
||||
"legacy_filename": "small_world.pdf"
|
||||
},
|
||||
{
|
||||
"id": "563c863be4b0ce38bd2f98f0",
|
||||
"id": "hHrVBlMb9nlk",
|
||||
"filename": "dissection_and_field_score.pdf",
|
||||
"contentType": "application/pdf",
|
||||
"legacy_filename": "dissection_and_field.pdf"
|
||||
},
|
||||
{
|
||||
"id": "563c863ce4b0ce38bd2f98f7",
|
||||
"id": "OSjG5a8LCdZL",
|
||||
"filename": "20_arrows_9_dashes_score.pdf",
|
||||
"contentType": "application/pdf",
|
||||
"legacy_filename": "arrows_and_dashes.pdf"
|
||||
},
|
||||
{
|
||||
"id": "563c863ce4b0ce38bd2f98fb",
|
||||
"id": "GPI_RqaTChHq",
|
||||
"filename": "for_orin_hildestad_score.pdf",
|
||||
"contentType": "application/pdf",
|
||||
"legacy_filename": "for_orin_hildestad.pdf"
|
||||
},
|
||||
{
|
||||
"id": "563c863ce4b0ce38bd2f98ff",
|
||||
"id": "U-Oraqfi7lEe",
|
||||
"filename": "room_and_seams_score.pdf",
|
||||
"contentType": "application/pdf",
|
||||
"legacy_filename": "room_and_seams.pdf"
|
||||
},
|
||||
{
|
||||
"id": "563c863de4b0ce38bd2f9903",
|
||||
"id": "rDBCF2ZYOhI2",
|
||||
"filename": "seams_score.pdf",
|
||||
"contentType": "application/pdf",
|
||||
"legacy_filename": "seams.pdf"
|
||||
},
|
||||
{
|
||||
"id": "563c863de4b0ce38bd2f9908",
|
||||
"id": "pqidSLvqeKBe",
|
||||
"filename": "resonance_i_score.pdf",
|
||||
"contentType": "application/pdf",
|
||||
"legacy_filename": "resonance_i.pdf"
|
||||
},
|
||||
{
|
||||
"id": "563c863ee4b0ce38bd2f9911",
|
||||
"id": "lsgdXB9nP9ec",
|
||||
"filename": "after_a_koan_score.pdf",
|
||||
"contentType": "application/pdf",
|
||||
"legacy_filename": "after_a_koan.pdf"
|
||||
},
|
||||
{
|
||||
"id": "563c863ee4b0ce38bd2f9915",
|
||||
"id": "sdftGKu3Ouq5",
|
||||
"filename": "sound_sound_score.pdf",
|
||||
"contentType": "application/pdf",
|
||||
"legacy_filename": "sound_dot_sound.pdf"
|
||||
},
|
||||
{
|
||||
"id": "563c863fe4b0ce38bd2f9919",
|
||||
"id": "Kmb0dFG53trH",
|
||||
"filename": "many_many_score.pdf",
|
||||
"contentType": "application/pdf",
|
||||
"legacy_filename": "many_many.pdf"
|
||||
},
|
||||
{
|
||||
"id": "563c863fe4b0ce38bd2f991d",
|
||||
"id": "Y9Jzpjh_pxiQ",
|
||||
"filename": "4_James_Orsher_score.pdf",
|
||||
"contentType": "application/pdf",
|
||||
"legacy_filename": "4_james_orsher.pdf"
|
||||
},
|
||||
{
|
||||
"id": "563c8640e4b0ce38bd2f9921",
|
||||
"id": "2Ay2fqEtRtYK",
|
||||
"filename": "Entropic_Canon_score.pdf",
|
||||
"contentType": "application/pdf",
|
||||
"legacy_filename": "Entropic_Canon.pdf"
|
||||
},
|
||||
{
|
||||
"id": "563c8640e4b0ce38bd2f9926",
|
||||
"id": "w9X4KPWl_vlx",
|
||||
"filename": "Three_score.pdf",
|
||||
"contentType": "application/pdf",
|
||||
"legacy_filename": "Three.pdf"
|
||||
},
|
||||
{
|
||||
"id": "563c8640e4b0ce38bd2f992a",
|
||||
"id": "Ze2Ux2O4bqub",
|
||||
"filename": "Transplanting_06_11_07_06_16_07_or_Transcription_USA_score.pdf",
|
||||
"contentType": "application/pdf",
|
||||
"legacy_filename": "USA.pdf"
|
||||
},
|
||||
{
|
||||
"id": "563c8641e4b0ce38bd2f992e",
|
||||
"id": "H0AIBgtnVHx6",
|
||||
"filename": "a_chance_happening_score.pdf",
|
||||
"contentType": "application/pdf",
|
||||
"legacy_filename": "a_chance_happening.pdf"
|
||||
},
|
||||
{
|
||||
"id": "563c8641e4b0ce38bd2f9933",
|
||||
"id": "Jt1dFglegV1j",
|
||||
"filename": "cactus_for_james_orsher_score.pdf",
|
||||
"contentType": "application/pdf",
|
||||
"legacy_filename": "cactus.pdf"
|
||||
},
|
||||
{
|
||||
"id": "563c8641e4b0ce38bd2f9937",
|
||||
"id": "vE7KG8FJlbeB",
|
||||
"filename": "1_sample_x_performers_y_seconds_score.pdf",
|
||||
"contentType": "application/pdf",
|
||||
"legacy_filename": "1sample_xperformers_yseconds.pdf"
|
||||
},
|
||||
{
|
||||
"id": "563c8645e4b0ce38bd2f993b",
|
||||
"id": "w8UezkjG3avW",
|
||||
"filename": "4_Ascents_for_James_Tenney_score.pdf",
|
||||
"contentType": "application/pdf",
|
||||
"legacy_filename": "4_Ascents_for_James_Tenney.pdf"
|
||||
},
|
||||
{
|
||||
"id": "563c8646e4b0ce38bd2f9955",
|
||||
"id": "InW8eR8fg_hl",
|
||||
"filename": "Trajectories_score.pdf",
|
||||
"contentType": "application/pdf",
|
||||
"legacy_filename": "Trajectories.pdf"
|
||||
},
|
||||
{
|
||||
"id": "563c864be4b0ce38bd2f995a",
|
||||
"id": "ObtNHYU9n6Fa",
|
||||
"filename": "Prime_Decomposition_score.pdf",
|
||||
"contentType": "application/pdf",
|
||||
"legacy_filename": "Prime_Decomposition.pdf"
|
||||
},
|
||||
{
|
||||
"id": "563c864de4b0ce38bd2f997e",
|
||||
"id": "ZWbZlVsbrmFJ",
|
||||
"filename": "Intersections_I_score.pdf",
|
||||
"contentType": "application/pdf",
|
||||
"legacy_filename": "Intersections_I.pdf"
|
||||
},
|
||||
{
|
||||
"id": "563c8652e4b0ce38bd2f9988",
|
||||
"id": "6rVxJKQ24xsp",
|
||||
"filename": "Streams_I_score.pdf",
|
||||
"contentType": "application/pdf",
|
||||
"legacy_filename": "Streams_I.pdf"
|
||||
},
|
||||
{
|
||||
"id": "563c8653e4b0ce38bd2f99a3",
|
||||
"id": "OnPdRCnQh8MQ",
|
||||
"filename": "diy_for_larry_polansky_score.pdf",
|
||||
"contentType": "application/pdf",
|
||||
"legacy_filename": "diy_for_larry_polansky.pdf"
|
||||
},
|
||||
{
|
||||
"id": "563c8653e4b0ce38bd2f99a7",
|
||||
"id": "Oy4DRlEqznd-",
|
||||
"filename": "three_books_and_a_dissertation_score.pdf",
|
||||
"contentType": "application/pdf",
|
||||
"legacy_filename": "three_books_and_a_dissertation_rev.pdf"
|
||||
},
|
||||
{
|
||||
"id": "563c8653e4b0ce38bd2f99ab",
|
||||
"id": "qsICSyW_pbvO",
|
||||
"filename": "in_tone_score.pdf",
|
||||
"contentType": "application/pdf",
|
||||
"legacy_filename": "in_tone.pdf"
|
||||
},
|
||||
{
|
||||
"id": "563c8653e4b0ce38bd2f99af",
|
||||
"id": "M-w0eGHg5byi",
|
||||
"filename": "random_I_score.pdf",
|
||||
"contentType": "application/pdf",
|
||||
"legacy_filename": "random_I.pdf"
|
||||
},
|
||||
{
|
||||
"id": "563c8654e4b0ce38bd2f99b3",
|
||||
"id": "X5bdn2KmwEhq",
|
||||
"filename": "almost_every_piece_score.pdf",
|
||||
"contentType": "application/pdf",
|
||||
"legacy_filename": "almost_every_piece.pdf"
|
||||
},
|
||||
{
|
||||
"id": "563c8654e4b0ce38bd2f99b7",
|
||||
"id": "CeasV2B6EkgA",
|
||||
"filename": "for_cassia_streb_score.pdf",
|
||||
"contentType": "application/pdf",
|
||||
"legacy_filename": "for_cassia_streb.pdf"
|
||||
},
|
||||
{
|
||||
"id": "563c8655e4b0ce38bd2f99bb",
|
||||
"id": "1UjyRF913-p-",
|
||||
"filename": "for_michael_pisaro_score.pdf",
|
||||
"contentType": "application/pdf",
|
||||
"legacy_filename": "for_michael_pisaro.pdf"
|
||||
},
|
||||
{
|
||||
"id": "563c8656e4b0ce38bd2f99bf",
|
||||
"id": "QtVsFTXzlc1V",
|
||||
"filename": "sort_I_score.pdf",
|
||||
"contentType": "application/pdf",
|
||||
"legacy_filename": "sort_I.pdf"
|
||||
},
|
||||
{
|
||||
"id": "563c865ee4b0ce38bd2f99c8",
|
||||
"id": "Hkh_h9iB3KWY",
|
||||
"filename": "nothingI_score.pdf",
|
||||
"contentType": "application/pdf",
|
||||
"legacy_filename": "nothing_I.pdf"
|
||||
},
|
||||
{
|
||||
"id": "563c865fe4b0ce38bd2f9a01",
|
||||
"id": "BiOmtLZZkZRv",
|
||||
"filename": "A_Gaussian_Canon_score.pdf",
|
||||
"contentType": "application/pdf",
|
||||
"legacy_filename": "A_Gaussian_Canon.pdf"
|
||||
},
|
||||
{
|
||||
"id": "563c8660e4b0ce38bd2f9a06",
|
||||
"id": "mD56ubIpwQ7M",
|
||||
"filename": "Infinity_III_score.pdf",
|
||||
"contentType": "application/pdf",
|
||||
"legacy_filename": "Infinity_III.pdf"
|
||||
},
|
||||
{
|
||||
"id": "563c8660e4b0ce38bd2f9a0b",
|
||||
"id": "nOc_aOBSPnJ3",
|
||||
"filename": "Lecture_on_Infinity_score.pdf",
|
||||
"contentType": "application/pdf",
|
||||
"legacy_filename": "Lecture_on_Infinity_Realization.pdf"
|
||||
},
|
||||
{
|
||||
"id": "563c8661e4b0ce38bd2f9a0f",
|
||||
"id": "mO66hAlbeeVA",
|
||||
"filename": "A_Flourish_score.pdf",
|
||||
"contentType": "application/pdf",
|
||||
"legacy_filename": "A_Flourish.pdf"
|
||||
},
|
||||
{
|
||||
"id": "563c8661e4b0ce38bd2f9a14",
|
||||
"id": "EHJY4xynBAV2",
|
||||
"filename": "Infinity_2_score.pdf",
|
||||
"contentType": "application/pdf",
|
||||
"legacy_filename": "Infinity_2.pdf"
|
||||
},
|
||||
{
|
||||
"id": "563c8661e4b0ce38bd2f9a18",
|
||||
"id": "Aoq0Nhhtab35",
|
||||
"filename": "Perspectives_I_score.pdf",
|
||||
"contentType": "application/pdf",
|
||||
"legacy_filename": "Perspectives_I_revised.pdf"
|
||||
},
|
||||
{
|
||||
"id": "563c8663e4b0ce38bd2f9a1c",
|
||||
"id": "IRVRKl9a2otK",
|
||||
"filename": "Commas_score.pdf",
|
||||
"contentType": "application/pdf",
|
||||
"legacy_filename": "Commas.pdf"
|
||||
},
|
||||
{
|
||||
"id": "563c8663e4b0ce38bd2f9a23",
|
||||
"id": "TcXmij_c8dp1",
|
||||
"filename": "a_set_of_pieces_with_one_note_score.pdf",
|
||||
"contentType": "application/pdf",
|
||||
"legacy_filename": "a_set_of_pieces_with_one_note.pdf"
|
||||
},
|
||||
{
|
||||
"id": "563c8663e4b0ce38bd2f9a27",
|
||||
"id": "nvYSv_DhaorZ",
|
||||
"filename": "Infinity_1_score.pdf",
|
||||
"contentType": "application/pdf",
|
||||
"legacy_filename": "Infinity_1.pdf"
|
||||
},
|
||||
{
|
||||
"id": "563c8667e4b0ce38bd2f9a2b",
|
||||
"id": "zQikLxxl4VoY",
|
||||
"filename": "Filter_IVP_I_X_LStudy_No1_score.pdf",
|
||||
"contentType": "application/pdf",
|
||||
"legacy_filename": "Filter_IV.pdf"
|
||||
},
|
||||
{
|
||||
"id": "563c866ae4b0ce38bd2f9a44",
|
||||
"id": "XcDpAm9fBQEf",
|
||||
"filename": "Filter_IIITransformation_Filter_score.pdf",
|
||||
"contentType": "application/pdf",
|
||||
"legacy_filename": "Filter_III.pdf"
|
||||
},
|
||||
{
|
||||
"id": "563c866be4b0ce38bd2f9a5b",
|
||||
"id": "kGxr5kHuJICm",
|
||||
"filename": "Difference_score.pdf",
|
||||
"contentType": "application/pdf",
|
||||
"legacy_filename": "Difference.pdf"
|
||||
},
|
||||
{
|
||||
"id": "563c866ce4b0ce38bd2f9a60",
|
||||
"id": "djdHNtzpKAzI",
|
||||
"filename": "2_Filters_score.pdf",
|
||||
"contentType": "application/pdf",
|
||||
"legacy_filename": "2_Filters.pdf"
|
||||
},
|
||||
{
|
||||
"id": "563c866ce4b0ce38bd2f9a64",
|
||||
"id": "6p0lXLdP3EpF",
|
||||
"filename": "Flux_score.pdf",
|
||||
"contentType": "application/pdf",
|
||||
"legacy_filename": "Flux.pdf"
|
||||
},
|
||||
{
|
||||
"id": "563c866ee4b0ce38bd2f9a68",
|
||||
"id": "-z4dWgEGaDnS",
|
||||
"filename": "Fission_score.pdf",
|
||||
"contentType": "application/pdf",
|
||||
"legacy_filename": "Fission.pdf"
|
||||
},
|
||||
{
|
||||
"id": "563c866fe4b0ce38bd2f9a71",
|
||||
"id": "n9AqOo-8G7mD",
|
||||
"filename": "Coincidental_Canon_score.pdf",
|
||||
"contentType": "application/pdf",
|
||||
"legacy_filename": "Coincidental_Canon.pdf"
|
||||
},
|
||||
{
|
||||
"id": "563c866fe4b0ce38bd2f9a76",
|
||||
"id": "tBnzQFfM8SiT",
|
||||
"filename": "A_Meditation_for_Solo_Piano_score.pdf",
|
||||
"contentType": "application/pdf",
|
||||
"legacy_filename": "A_Meditation_for_Solo_Piano_With_Correction.pdf"
|
||||
},
|
||||
{
|
||||
"id": "563c866fe4b0ce38bd2f9a7a",
|
||||
"id": "9sAylc_wGAKw",
|
||||
"filename": "Beat_Canon_score.pdf",
|
||||
"contentType": "application/pdf",
|
||||
"legacy_filename": "Beat_Canon.pdf"
|
||||
},
|
||||
{
|
||||
"id": "5652d28ce4b0ce38bd2f9b8c",
|
||||
"id": "eFu20sAA1GrU",
|
||||
"filename": "welcome_round_for_larry_score.pdf",
|
||||
"contentType": "application/pdf"
|
||||
},
|
||||
{
|
||||
"id": "5652d32be4b0ce38bd2f9b90",
|
||||
"id": "p42ntM0-WKTE",
|
||||
"filename": "to_walk_and_ponder_abstract_score.pdf",
|
||||
"contentType": "application/pdf"
|
||||
},
|
||||
{
|
||||
"id": "5665e6d8e4b09ed7b5997f5e",
|
||||
"id": "onvhnUSHIEGq",
|
||||
"filename": "to_walk_and_ponder_score.pdf",
|
||||
"contentType": "application/pdf"
|
||||
},
|
||||
{
|
||||
"id": "5696d8fde4b024208f68fb4b",
|
||||
"id": "Y0WuNckhDika",
|
||||
"filename": "Approximating_Omega_redux_score.pdf",
|
||||
"contentType": "application/pdf",
|
||||
"legacy_filename": "Approximating_Omega_redux.pdf"
|
||||
},
|
||||
{
|
||||
"id": "56f70ad1e4b024208f68fb5c",
|
||||
"id": "Myjb2Pg7_WMA",
|
||||
"filename": "single_track_score.pdf",
|
||||
"contentType": "application/pdf"
|
||||
},
|
||||
{
|
||||
"id": "57b9e35ae4b04741c902e408",
|
||||
"id": "bP-v9NQ0Ncbx",
|
||||
"filename": "essay_on_the_art_of_combinations_score.pdf",
|
||||
"contentType": "application/pdf"
|
||||
},
|
||||
{
|
||||
"id": "57fcf5f2e4b04741c902e455",
|
||||
"id": "MpwtpWe0Hq0a",
|
||||
"filename": "chorale_and_finely_tuned_resonators_score.pdf",
|
||||
"contentType": "application/pdf"
|
||||
},
|
||||
{
|
||||
"id": "5825aaa4e4b04741c902e4aa",
|
||||
"id": "2axk0Q1mH8mR",
|
||||
"filename": "tergiversate_score.pdf",
|
||||
"contentType": "application/pdf"
|
||||
},
|
||||
{
|
||||
"id": "5887d3b0e4b00a1088060677",
|
||||
"id": "Uq5rrOfsWRr6",
|
||||
"filename": "scaffold_and_map_score.pdf",
|
||||
"contentType": "application/pdf"
|
||||
},
|
||||
{
|
||||
"id": "5887d57fe4b00a108806067d",
|
||||
"id": "5JpoLb1feVNk",
|
||||
"filename": "Vein_Transcription_score.pdf",
|
||||
"contentType": "application/pdf"
|
||||
},
|
||||
{
|
||||
"id": "5887d614e4b00a1088060686",
|
||||
"id": "3culbWusOCOy",
|
||||
"filename": "a_tone_for_Eric_KM_Clark_score.pdf",
|
||||
"contentType": "application/pdf"
|
||||
},
|
||||
{
|
||||
"id": "5887d7c5e4b00a1088060690",
|
||||
"id": "K6os_TzMGGU3",
|
||||
"filename": "Chromatic_Study_score.pdf",
|
||||
"contentType": "application/pdf"
|
||||
},
|
||||
{
|
||||
"id": "588fb6a5e4b00a108806069c",
|
||||
"id": "VOfn9QYd39KI",
|
||||
"filename": "pedal_triangle_machine_and_perhaps_coda_abstract_score.pdf",
|
||||
"contentType": "application/pdf"
|
||||
},
|
||||
{
|
||||
"id": "58efa0c64f82171557aecb4c",
|
||||
"id": "QzkcAWohyA5i",
|
||||
"filename": "rockfall_score.pdf",
|
||||
"contentType": "application/pdf"
|
||||
},
|
||||
{
|
||||
"id": "591795f54f82171557aecb52",
|
||||
"id": "2okI-QEtG3H4",
|
||||
"filename": "curved_bow_and_negative_score.pdf",
|
||||
"contentType": "application/pdf"
|
||||
},
|
||||
{
|
||||
"id": "591912704f82171557aecb56",
|
||||
"id": "GJFJS99TcvtA",
|
||||
"filename": "preliminary_thoughts_score.pdf",
|
||||
"contentType": "application/pdf"
|
||||
},
|
||||
{
|
||||
"id": "592b1bac4f82171557aecb5e",
|
||||
"id": "xgZXUGBccoMC",
|
||||
"filename": "maximum_change_score.pdf",
|
||||
"contentType": "application/pdf"
|
||||
},
|
||||
{
|
||||
"id": "59c07efd4f82173ab19ada9c",
|
||||
"id": "G1k8sq59v7i5",
|
||||
"filename": "flight_path_score.pdf",
|
||||
"contentType": "application/pdf"
|
||||
},
|
||||
{
|
||||
"id": "5a4e9be14f82170dbbb3fe80",
|
||||
"id": "Y54BejC2g2jL",
|
||||
"filename": "ida_for_amy_score.pdf",
|
||||
"contentType": "application/pdf"
|
||||
},
|
||||
{
|
||||
"id": "5a74c5804f82170dbbb3fe83",
|
||||
"id": "cvT8HDgC8C5a",
|
||||
"filename": "reading_piece_for_library_or_bookstore_score.pdf",
|
||||
"contentType": "application/pdf"
|
||||
},
|
||||
{
|
||||
"id": "5a8cc49d4f82170dbbb3fe86",
|
||||
"id": "pKhw98IUmq-u",
|
||||
"filename": "mercado_san_juan_score.pdf",
|
||||
"contentType": "application/pdf"
|
||||
},
|
||||
{
|
||||
"id": "5b7537ec6082b532131ffbb8",
|
||||
"id": "ozpq25Aw25vU",
|
||||
"filename": "dear_robert_perhaps_all_is_a_type_of_cartography_score.pdf",
|
||||
"contentType": "application/pdf"
|
||||
},
|
||||
{
|
||||
"id": "5d87e5c7b0deb577f86dbccb",
|
||||
"id": "DmkbBsIzY-3e",
|
||||
"filename": "remembering_clive_wearing_score.pdf",
|
||||
"contentType": "application/pdf"
|
||||
},
|
||||
{
|
||||
"id": "5dd72b4030c49e0001961b62",
|
||||
"id": "RJksw6BIUYQ0",
|
||||
"filename": "fanfare_score.pdf",
|
||||
"contentType": "application/pdf"
|
||||
},
|
||||
{
|
||||
"id": "5dd72f2730c49e0001961b6b",
|
||||
"id": "N37AyHkXCUaT",
|
||||
"filename": "generator_and_metal_score.pdf",
|
||||
"contentType": "application/pdf"
|
||||
},
|
||||
{
|
||||
"id": "5dd81c3030c49e0001961b74",
|
||||
"id": "H59KZk6GgupY",
|
||||
"filename": "4_computer_music_studies_score.pdf"
|
||||
},
|
||||
{
|
||||
"id": "5dd81cca30c49e0001961b77",
|
||||
"id": "G_nKVpTzF5H6",
|
||||
"filename": "field_and_perfect_circuit_redux_score.pdf"
|
||||
},
|
||||
{
|
||||
"id": "5dd81d8630c49e0001961b7a",
|
||||
"id": "6jvOauVcxbht",
|
||||
"filename": "south_america_miscellany_score.pdf"
|
||||
},
|
||||
{
|
||||
"id": "5dd81f0130c49e0001961b7d",
|
||||
"id": "d2xJwNk0kBbt",
|
||||
"filename": "generator_hierarchical_dust_and_necklaces_score.pdf"
|
||||
},
|
||||
{
|
||||
"id": "5fb7b300b3cb1f0001a435f5",
|
||||
"id": "Gzy_MJ4ArqRw",
|
||||
"filename": "ostinato_and_interrupt_score.pdf"
|
||||
},
|
||||
{
|
||||
"id": "5fc7d91fdc48810001a0b03d",
|
||||
"id": "PkriMv8EBxT-",
|
||||
"filename": "a_great_conjunction_score.pdf"
|
||||
},
|
||||
{
|
||||
"id": "60460fe536d1a00001414e78",
|
||||
"id": "tqDMWQFi0INn",
|
||||
"filename": "counterfeiting_in_colonial_connecticut_score.pdf"
|
||||
},
|
||||
{
|
||||
"id": "605b56e836d1a00001414e82",
|
||||
"id": "uAzaRS5g2zpf",
|
||||
"filename": "a_lot_of_tiles_trivial_scan_score.pdf"
|
||||
},
|
||||
{
|
||||
"id": "63b42841adbe1d0001aec080",
|
||||
"id": "9WY8Q1-3I6We",
|
||||
"filename": "varilude_score.pdf"
|
||||
},
|
||||
{
|
||||
"id": "63b428b1adbe1d0001aec083",
|
||||
"id": "TsEa9DD2NNLa",
|
||||
"filename": "dawning_redux_score.pdf"
|
||||
},
|
||||
{
|
||||
"id": "64ce79769acad10629df3e81",
|
||||
"id": "OIyblv4qwMur",
|
||||
"filename": "to_kill_a_monarch_score.pdf"
|
||||
},
|
||||
{
|
||||
"id": "658572513fe9480f1fee5a71",
|
||||
"id": "B1cwahLc0CJU",
|
||||
"filename": "kari_score.pdf"
|
||||
},
|
||||
{
|
||||
"id": "658573393fe9480f1fee5a76",
|
||||
"id": "GMY9_G2zz7Ra",
|
||||
"filename": "berger_score.pdf"
|
||||
},
|
||||
{
|
||||
"id": "658573563fe9480f1fee5a7c",
|
||||
"id": "JGt9O_3HtXW6",
|
||||
"filename": "robinson_score.pdf"
|
||||
},
|
||||
{
|
||||
"id": "6585737e3fe9480f1fee5a82",
|
||||
"id": "vHsjaVM4-5_V",
|
||||
"filename": "penrose_score.pdf"
|
||||
},
|
||||
{
|
||||
"id": "6585739c3fe9480f1fee5a8a",
|
||||
"id": "bamR1GStiiAN",
|
||||
"filename": "ammann_score.pdf"
|
||||
},
|
||||
{
|
||||
"id": "658573f33fe9480f1fee5a92",
|
||||
"id": "MwTjifAJKJgo",
|
||||
"filename": "jaendel_rao_score.pdf"
|
||||
},
|
||||
{
|
||||
"id": "658d5d163fe9480f1fee5b25",
|
||||
"id": "chINUIZXIGYB",
|
||||
"filename": "a_history_of_the_domino_problem_score.pdf"
|
||||
},
|
||||
{
|
||||
"id": "65e0edbd754b7b40912d8b36",
|
||||
"id": "tOtc_QYYpP0T",
|
||||
"filename": "steady_state_score.pdf"
|
||||
},
|
||||
{
|
||||
"id": "65efb2f231f0901f0b54c607",
|
||||
"id": "_0ygyYOzOgTx",
|
||||
"filename": "seeds_and_ledgers_1_to_3_score.pdf"
|
||||
},
|
||||
{
|
||||
"id": "670a9dbeaca15f385f331ef5",
|
||||
"id": "gN_NJSI3oQVy",
|
||||
"filename": "critical_loci_score.pdf"
|
||||
},
|
||||
{
|
||||
"id": "679b64e20535710da6888a12",
|
||||
"id": "kGOOrS17U0t7",
|
||||
"filename": "compact_sets_1_to_3_score.pdf"
|
||||
},
|
||||
{
|
||||
"id": "684f30ab375c1f1e1fed79d2",
|
||||
"id": "ezTb0xTcBmd_",
|
||||
"filename": "harmonie_universelle_score.pdf"
|
||||
},
|
||||
{
|
||||
"id": "68cc5d15dd004e124b67ef1e",
|
||||
"id": "wp18-XqUyePK",
|
||||
"filename": "access_intimacy_score.pdf"
|
||||
},
|
||||
{
|
||||
"id": "69023da3bb125219c6bf5487",
|
||||
"id": "VgD-pAdovLY3",
|
||||
"filename": "haros_family_etude_no_1_score.pdf"
|
||||
}
|
||||
]
|
||||
|
|
@ -1,54 +1,54 @@
|
|||
[
|
||||
{
|
||||
"id": "5588abde01ef54a5e505f6d7",
|
||||
"id": "rk-isJ-DMAcx",
|
||||
"location": "Conservatorio de Las Rosas, Morelia",
|
||||
"title": "New music for guitars",
|
||||
"date": "2014-12-01"
|
||||
},
|
||||
{
|
||||
"id": "5588abde01ef54a5e505f6d8",
|
||||
"id": "cwHwpMTiAUyR",
|
||||
"location": "Universidad de Chile, Santiago",
|
||||
"title": "Algorithmic Information Theory, Metabiology, Music",
|
||||
"date": "2014-08-01"
|
||||
},
|
||||
{
|
||||
"id": "5588abde01ef54a5e505f6d9",
|
||||
"id": "klvsP6fyjQ6v",
|
||||
"location": "Universidad de Buenos Aires",
|
||||
"title": "Algorithmic Information Theory, Metabiology, Music",
|
||||
"date": "2014-08-01"
|
||||
},
|
||||
{
|
||||
"id": "5588abde01ef54a5e505f6da",
|
||||
"id": "xKpuinmWOUel",
|
||||
"location": "Universidade Federal de Mato Grosso",
|
||||
"title": "Algorithmic Information Theory, Metabiology, Music",
|
||||
"date": "2014-07-01"
|
||||
},
|
||||
{
|
||||
"id": "5588abde01ef54a5e505f6db",
|
||||
"id": "j8RfXAIPWn71",
|
||||
"location": "Universidade de São Paulo",
|
||||
"title": "Shape and Structure: a few good ideas on form and detail",
|
||||
"date": "2014-05-15"
|
||||
},
|
||||
{
|
||||
"id": "5588abde01ef54a5e505f6dc",
|
||||
"id": "t8JCz7IpXCD_",
|
||||
"location": "Escola de Música e Belas Artes do Paraná",
|
||||
"title": "On community and radicality: a personal survey of dangerous artists and art movements",
|
||||
"date": "2014-05-01"
|
||||
},
|
||||
{
|
||||
"id": "5588abde01ef54a5e505f6dd",
|
||||
"id": "R9MwYiYPYWer",
|
||||
"location": "University of California, Santa Cruz",
|
||||
"title": "Several extremely simple ideas",
|
||||
"date": "2014-02-01"
|
||||
},
|
||||
{
|
||||
"id": "5588abde01ef54a5e505f6de",
|
||||
"id": "owKSz5bmyi3c",
|
||||
"location": "University of California, Santa Barbara",
|
||||
"title": "Adapting and applying digital signal processing techniques to high-level music information",
|
||||
"date": "2014-01-01"
|
||||
},
|
||||
{
|
||||
"id": "5588abde01ef54a5e505f6df",
|
||||
"id": "OXxz0upSYGRs",
|
||||
"location": "Workshop for Algorithmic Computer Music at University of California, Santa Cruz",
|
||||
"title": [
|
||||
"A few thoughts on musical structure",
|
||||
|
|
@ -57,7 +57,7 @@
|
|||
"date": "2013-07-01"
|
||||
},
|
||||
{
|
||||
"id": "5588abde01ef54a5e505f6e1",
|
||||
"id": "lSCC_MULXAFC",
|
||||
"location": "Dartmouth College",
|
||||
"title": [
|
||||
"Where do you get your data from?",
|
||||
|
|
@ -66,19 +66,19 @@
|
|||
"date": "2013-05-01"
|
||||
},
|
||||
{
|
||||
"id": "5588abde01ef54a5e505f6e3",
|
||||
"id": "h-9MJvW0PHip",
|
||||
"location": "Wesleyan University",
|
||||
"title": "My software thinks your software is beautiful: a few words about metabiology, beauty and music",
|
||||
"date": "2011-11-01"
|
||||
},
|
||||
{
|
||||
"id": "5588abde01ef54a5e505f6e4",
|
||||
"id": "uyxmioXiS9S3",
|
||||
"location": "University of California, Santa Cruz",
|
||||
"title": "A few words on elegance, creativity and beauty",
|
||||
"date": "2011-10-01"
|
||||
},
|
||||
{
|
||||
"id": "5588abde01ef54a5e505f6e5",
|
||||
"id": "j3ccfJN651Y3",
|
||||
"location": "Dartmouth College",
|
||||
"title": [
|
||||
"On James Tenney’s Changes for six harps",
|
||||
|
|
@ -87,91 +87,91 @@
|
|||
"date": "2011-04-01"
|
||||
},
|
||||
{
|
||||
"id": "5588abde01ef54a5e505f6e7",
|
||||
"id": "HOlDwWDmjH67",
|
||||
"location": "IRCAM, Paris",
|
||||
"title": "On generalizing graphs and mathematical problems from musical ideas",
|
||||
"date": "2011-01-01"
|
||||
},
|
||||
{
|
||||
"id": "5588abde01ef54a5e505f6e8",
|
||||
"id": "c7ApXHOBUWTx",
|
||||
"location": "California Institute of the Arts",
|
||||
"title": "Structural metrics",
|
||||
"date": "2009-04-01"
|
||||
},
|
||||
{
|
||||
"id": "5588abde01ef54a5e505f6e9",
|
||||
"id": "0fM9APsN42FK",
|
||||
"location": "Columbia University",
|
||||
"title": "On James Tenney’s Arbor Vitae for string quartet",
|
||||
"date": "2008-02-01"
|
||||
},
|
||||
{
|
||||
"id": "5588abde01ef54a5e505f6ea",
|
||||
"id": "JEjFx--LUk5S",
|
||||
"location": "State University of New York, Buffalo",
|
||||
"title": "Lecture on the machine and music",
|
||||
"date": "2006-12-01"
|
||||
},
|
||||
{
|
||||
"id": "5588abde01ef54a5e505f6eb",
|
||||
"id": "k0qBqw9pjGML",
|
||||
"location": "State University of New York, Binghamton",
|
||||
"title": "Lecture on infinity",
|
||||
"date": "2005-08-01"
|
||||
},
|
||||
{
|
||||
"id": "56244bb00c228c0d477efb1f",
|
||||
"id": "3r9-FfM11jpT",
|
||||
"location": "University of Southern California",
|
||||
"title": "On James Tenney’s Changes for six harps",
|
||||
"date": "2015-10-28"
|
||||
},
|
||||
{
|
||||
"id": "56244bb00c228c0d477efb20",
|
||||
"id": "vVzX8BIsAorv",
|
||||
"location": "California Institute of the Arts",
|
||||
"title": "A few ways to get from one thing to the next",
|
||||
"date": "2015-10-15"
|
||||
},
|
||||
{
|
||||
"id": "56244bb00c228c0d477efb21",
|
||||
"id": "2uq3P5C_Tm2f",
|
||||
"location": "Universidad del Claustro de Sor Juana, Mexico City",
|
||||
"title": "Noise in the system: reading Claude Shannon",
|
||||
"date": "2015-10-01"
|
||||
},
|
||||
{
|
||||
"id": "56992f94fdc52469b6c07c47",
|
||||
"id": "9fet5GQ7FBbL",
|
||||
"location": "University of California Santa Cruz",
|
||||
"title": "On minimal resources, laziness, and style",
|
||||
"date": "2016-02-10"
|
||||
},
|
||||
{
|
||||
"id": "5699307afdc52469b6c07c48",
|
||||
"id": "S8GM2txLx-HY",
|
||||
"location": "Computer Music Hangout at the Public School, Los Angeles",
|
||||
"title": "Graph theory, harmonic space, and combinatorics",
|
||||
"date": "2015-11-04"
|
||||
},
|
||||
{
|
||||
"id": "56d62a0efdc52469b6c07c4d",
|
||||
"id": "lSFKW-Nhpl2i",
|
||||
"location": "California Institute of the Arts",
|
||||
"title": "On minimal resources, laziness, and style",
|
||||
"date": "2016-04-18"
|
||||
},
|
||||
{
|
||||
"id": "56e9de82fdc52469b6c07c52",
|
||||
"id": "qfRDhvFrU0m4",
|
||||
"location": "Conservatorio de las Rosas, Morelia",
|
||||
"title": "On minimal resources, laziness, and style",
|
||||
"date": "2016-05-02"
|
||||
},
|
||||
{
|
||||
"id": "56f2d45afdc52469b6c07c55",
|
||||
"id": "JIr4vyADouwf",
|
||||
"location": "CENIDIM - Instituto Nacional de Bellas Artes, Mexico City",
|
||||
"title": "Over 300 years ago, Leibniz predicted many current trends in music: a lecture / performance",
|
||||
"date": "2016-04-26"
|
||||
},
|
||||
{
|
||||
"id": "56fcb723fdc52469b6c07c58",
|
||||
"id": "_bmS4sHrfXtu",
|
||||
"location": "Universidad de Guadalajara",
|
||||
"title": " Combinatorial optimization and art: from Leibniz to Beckett and beyond",
|
||||
"date": "2016-04-21"
|
||||
},
|
||||
{
|
||||
"id": "57f5595fec6cea73b9674e72",
|
||||
"id": "cVstKzX3UJsI",
|
||||
"location": "Bath Spa University",
|
||||
"title": [
|
||||
"On the domain of an open work: cardinality, intersection, and computability",
|
||||
|
|
@ -180,193 +180,193 @@
|
|||
"date": "2016-10-05"
|
||||
},
|
||||
{
|
||||
"id": "5802175cec6cea73b9674e74",
|
||||
"id": "8fQrYCAz4eQl",
|
||||
"location": "University of Huddersfield",
|
||||
"title": "Over 300 years ago, Leibniz predicted many current trends in music: a lecture / performance",
|
||||
"date": "2016-10-12"
|
||||
},
|
||||
{
|
||||
"id": "580217cbec6cea73b9674e75",
|
||||
"id": "qweqb7oFprgp",
|
||||
"location": "University of Leeds",
|
||||
"title": "From Leibniz to Tenney: on computability, structure, and harmony",
|
||||
"date": "2016-10-13"
|
||||
},
|
||||
{
|
||||
"id": "581b5936ec6cea73b9674e7d",
|
||||
"id": "sOQTdA3fJeDM",
|
||||
"location": "Universität der Künste Berlin",
|
||||
"title": "From Leibniz to Tenney: on computability, structure, and harmony",
|
||||
"date": "2016-10-27"
|
||||
},
|
||||
{
|
||||
"id": "581b59cfec6cea73b9674e7e",
|
||||
"id": "GpU24_loUlE2",
|
||||
"location": "Università degli Studi di Torino",
|
||||
"title": "Over 300 years ago, Leibniz predicted many current trends in music: a lecture / performance",
|
||||
"date": "2016-11-14"
|
||||
},
|
||||
{
|
||||
"id": "58e79180eb6177f0e7d42af3",
|
||||
"id": "kilJdIYT2384",
|
||||
"location": "Sono Centro Cultural de Cuenca",
|
||||
"title": "La Guitarra en la Experimentacion Sonora",
|
||||
"date": "2017-04-10"
|
||||
},
|
||||
{
|
||||
"id": "58f5a5c6eb6177f0e7d42af9",
|
||||
"id": "GE2ES3_Bt9iL",
|
||||
"location": "Universidad de las Artes de Guayaquil",
|
||||
"title": "Cuando cosas va diferente: entre el concepto y la realidad",
|
||||
"date": "2017-04-20"
|
||||
},
|
||||
{
|
||||
"id": "58f5a604eb6177f0e7d42afa",
|
||||
"id": "eQF-j3OqQP5N",
|
||||
"location": "Chawpi Laboratorio, Quito",
|
||||
"title": "Minimalismo conceptual y la verdad sobre el ruido",
|
||||
"date": "2017-04-25"
|
||||
},
|
||||
{
|
||||
"id": "591209beeb6177f0e7d42afd",
|
||||
"id": "rySc_0QCwd0r",
|
||||
"location": "Universidad de los Andes, Bogota",
|
||||
"title": "Shape and Structure: a few good ideas on form and detail",
|
||||
"date": "2017-05-09"
|
||||
},
|
||||
{
|
||||
"id": "591209edeb6177f0e7d42afe",
|
||||
"id": "rXeJIUekjSEj",
|
||||
"location": "Fundación Universitaria Bellas Artes Medellín",
|
||||
"title": "Un nuevo virtuosidad",
|
||||
"date": "2017-05-11"
|
||||
},
|
||||
{
|
||||
"id": "5916002aeb6177f0e7d42aff",
|
||||
"id": "OWaIrmqyE0jk",
|
||||
"location": "Universidad de Antioquia, Medellin",
|
||||
"title": "Minimalismo conceptual y la verdad sobre el ruido",
|
||||
"date": "2017-05-15"
|
||||
},
|
||||
{
|
||||
"id": "59160080eb6177f0e7d42b00",
|
||||
"id": "OSLYGqP6fC5o",
|
||||
"location": "Institución Universitaria Bellas Artes, Cartagena",
|
||||
"title": "Minimalismo conceptual y la verdad sobre el ruido",
|
||||
"date": "2017-05-18"
|
||||
},
|
||||
{
|
||||
"id": "59d562560e3b08102d5f1f16",
|
||||
"id": "rLRbtmkqqVgV",
|
||||
"location": "California Institute of the Arts",
|
||||
"title": "On James Tenney’s Changes for six harps",
|
||||
"date": "2017-11-10"
|
||||
},
|
||||
{
|
||||
"id": "59ea5ead33804e902f11bce4",
|
||||
"id": "-DUZAunHGyox",
|
||||
"location": "The Box, Los Angeles",
|
||||
"title": "On James Tenney’s Changes for six harps",
|
||||
"date": "2017-11-11"
|
||||
},
|
||||
{
|
||||
"id": "5aca27a41d8aecb20f49f5e4",
|
||||
"id": "OMN-iw0sOPFo",
|
||||
"location": "Haifa University",
|
||||
"title": "On modulations in harmonic space",
|
||||
"date": "2018-05-09"
|
||||
},
|
||||
{
|
||||
"id": "5c6bdaaa1db8573ad2a74c6b",
|
||||
"id": "qOdNKQfusdF9",
|
||||
"location": "Engaging with Histories Festival @ Rampe, Stuttgart",
|
||||
"title": "A prehistory of the domino problem (lecture / performance)",
|
||||
"date": "2019-03-13"
|
||||
},
|
||||
{
|
||||
"id": "5c6be00c1db8573ad2a7627c",
|
||||
"id": "QNOyf5z4Flk_",
|
||||
"location": "Apotheose Series @ Eckartshaldenweg 7, Stuttgart",
|
||||
"title": "Artist conversation (with afterparty at Korridor Bar, Stuttgart with DJ Silent Lover)",
|
||||
"date": "2019-03-21"
|
||||
},
|
||||
{
|
||||
"id": "5d70dc8d4e193f4a15d3716a",
|
||||
"id": "uGp9kQYjAEip",
|
||||
"location": "Trinity College, London (with Robert Blatt)",
|
||||
"title": "This talk has a high chance of failure: performer, score, environment, and listener as algorithmic systems",
|
||||
"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",
|
||||
"title": "This is a talk about how things fit together",
|
||||
"date": "2019-10-16"
|
||||
},
|
||||
{
|
||||
"id": "5d932fa2a7b48817f102e63c",
|
||||
"id": "pgPy4ejXMWUZ",
|
||||
"location": "Instituto Internacional en Madrid",
|
||||
"title": "This is a talk about how things fit together",
|
||||
"date": "2019-10-05"
|
||||
},
|
||||
{
|
||||
"id": "5d932fdba7b48817f102e63d",
|
||||
"id": "68LutAJjJ1Lr",
|
||||
"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",
|
||||
"date": "2019-10-09"
|
||||
},
|
||||
{
|
||||
"id": "5fb7b49941b22500064fe559",
|
||||
"id": "RnP2pcxUZ61T",
|
||||
"location": "Simpom 6 @ UNIRIO, Rio de Janeiro",
|
||||
"title": "A few more thoughts about Leibniz: the prediction of harmonic distance in harmonic space",
|
||||
"date": "2020-11-03"
|
||||
},
|
||||
{
|
||||
"id": "5fb7b51141b22500064fe55a",
|
||||
"id": "6Nb73jB8oKk9",
|
||||
"location": "University of California, Santa Cruz",
|
||||
"title": "A few things I do",
|
||||
"date": "2020-11-16"
|
||||
},
|
||||
{
|
||||
"id": "625099bde5292400073015c4",
|
||||
"id": "He4-rRr2xAWf",
|
||||
"location": "California Institute of the Arts",
|
||||
"title": "Countercoding: a few thoughts about data ethics and music (or... are your algorithms healthy? - part I)",
|
||||
"date": "2022-04-11"
|
||||
},
|
||||
{
|
||||
"id": "62509b6ae5292400073015c5",
|
||||
"id": "2hpYr4qpnz0N",
|
||||
"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)",
|
||||
"date": "2022-05-06"
|
||||
},
|
||||
{
|
||||
"id": "6346cfb175c2f70008e28541",
|
||||
"id": "4yrSA-ZuOZCT",
|
||||
"location": "Institut für Mikroelektronik Stuttgart",
|
||||
"title": "Challenges of Analog Visual Cryptography: a history of the domino problem",
|
||||
"date": "2022-11-17"
|
||||
},
|
||||
{
|
||||
"id": "635169e475c2f70008e28542",
|
||||
"id": "akRF9_UBoBgy",
|
||||
"location": "B-Circle, Berlin (with Catherine Lamb)",
|
||||
"title": "Total forms and other totalities",
|
||||
"date": "2022-10-22"
|
||||
},
|
||||
{
|
||||
"id": "63f5e4f851367200081ee13c",
|
||||
"id": "x_4jOZgWgXWK",
|
||||
"location": "Centro Nacional de las Artes, Mexico City (with Alex Bruck)",
|
||||
"title": "Workshop on Microtonal Practices (5 sessions)",
|
||||
"date": "2023-02-13"
|
||||
},
|
||||
{
|
||||
"id": "64a02dab17fb8700075d3213",
|
||||
"id": "gcU7huZ5Bre3",
|
||||
"location": "B-Circle, Berlin",
|
||||
"title": "A brief but not necessarily abbreviated history of the domino problem",
|
||||
"date": "2023-06-24"
|
||||
},
|
||||
{
|
||||
"id": "64de3b09cdd55b0007a4d075",
|
||||
"id": "-0Kr818ux3o1",
|
||||
"location": "MPLab, Liepajā",
|
||||
"title": "Countercoding: a few thoughts about data ethics and music (or... are your algorithms healthy? - part III)",
|
||||
"date": "2023-09-11"
|
||||
},
|
||||
{
|
||||
"id": "64de3b48cdd55b0007a4d076",
|
||||
"id": "Mm411CEioVWb",
|
||||
"location": "Jāzeps Vītols Latvian Academy of Music, Rīga",
|
||||
"title": "A few more thoughts on modulations in harmonic space",
|
||||
"date": "2023-09-14"
|
||||
},
|
||||
{
|
||||
"id": "65ba8fe07dcea80007bf3fc1",
|
||||
"id": "bQ9spkvFe3Wt",
|
||||
"location": "Chintete @ Cantina La Dominica, CDMX",
|
||||
"title": "A brief but not necessarily abbreviated history of the domino problem",
|
||||
"date": "2024-01-23"
|
||||
},
|
||||
{
|
||||
"id": "67a25361ec86f90006028679",
|
||||
"id": "PeLARqfBB3th",
|
||||
"location": "Mozarteum, Salzburg",
|
||||
"title": [
|
||||
"Contextualizing the siren",
|
||||
|
|
@ -375,7 +375,7 @@
|
|||
"date": "2024-09-20"
|
||||
},
|
||||
{
|
||||
"id": "67a25472ec86f9000602867a",
|
||||
"id": "kEl0KKXi0zXF",
|
||||
"location": "Gustav Mahler Privatuniversität für Musik, Klagenfurt",
|
||||
"title": [
|
||||
"Contextualizing the siren",
|
||||
|
|
@ -384,11 +384,27 @@
|
|||
"date": "2024-09-27"
|
||||
},
|
||||
{
|
||||
"id": "686b89761dac9500068140c0",
|
||||
"id": "2dDD5md6Vlvn",
|
||||
"location": "IACAP/AISB Conference @ University of Twente, Enchede",
|
||||
"title": [
|
||||
"Meta+phenomenology I: a taxonomy of learning experiences"
|
||||
],
|
||||
"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
Loading…
Reference in a new issue