Compare commits
2 Commits
b05b31b5ce
...
b1864c83a5
Author | SHA1 | Date | |
---|---|---|---|
b1864c83a5 | |||
9f16ea2e76 |
102
app.py
102
app.py
@ -1,3 +1,4 @@
|
||||
import subprocess
|
||||
import os
|
||||
from pathlib import Path
|
||||
import shutil
|
||||
@ -12,7 +13,6 @@ import pypandoc
|
||||
|
||||
import xml.etree.ElementTree as ET
|
||||
|
||||
|
||||
# TODO make newsletter URL's absolute to klank.school
|
||||
env = Environment(
|
||||
loader=PackageLoader("src"),
|
||||
@ -28,10 +28,7 @@ now = datetime.now()
|
||||
|
||||
# Utils
|
||||
def getParam(params, index):
|
||||
if len(params) > index:
|
||||
return params[index]
|
||||
else:
|
||||
return False
|
||||
return params[index] if len(params) > index else False
|
||||
|
||||
|
||||
# jinja filter that can list documents
|
||||
@ -42,31 +39,11 @@ def listDocuments(params):
|
||||
|
||||
return html
|
||||
|
||||
# jinja filter that can list events
|
||||
def listEvents(params):
|
||||
param = params.split(" ")
|
||||
tag = getParam(param, 1)
|
||||
|
||||
if "events" not in documents:
|
||||
return ""
|
||||
|
||||
events = []
|
||||
if tag:
|
||||
for event in documents["events"]:
|
||||
if tag in event["tags"]:
|
||||
events.append(event)
|
||||
else:
|
||||
events = documents["events"]
|
||||
|
||||
template = env.select_template(["snippets/list-events.jinja"])
|
||||
html = template.render(events=events, filter=param[0], tag=getParam(param, 1))
|
||||
|
||||
return html
|
||||
|
||||
# jinja filter to make a slug out of a stirng
|
||||
def slugify_filter(value):
|
||||
return slugify(value)
|
||||
|
||||
|
||||
# jinja filter for date formatting
|
||||
def prettydate(value, format='%d/%m/%Y'):
|
||||
return datetime.fromtimestamp(int(value)).strftime(format)
|
||||
@ -76,8 +53,7 @@ def prettydate(value, format='%d/%m/%Y'):
|
||||
def shortcode_filter(value):
|
||||
|
||||
shortcode_callbacks = {
|
||||
"show": listDocuments,
|
||||
"events": listEvents
|
||||
"show": listDocuments
|
||||
}
|
||||
|
||||
def shortcode_replacer(match):
|
||||
@ -113,7 +89,7 @@ def render_single_file(page, path, dist, name = False):
|
||||
|
||||
# find a pre-rendered page
|
||||
def get_existing_page(path, slug):
|
||||
stem = Path(path).stem;
|
||||
stem = Path(path).stem
|
||||
folder = os.path.basename(os.path.dirname(path))
|
||||
|
||||
if stem == "index" and folder != "content":
|
||||
@ -140,10 +116,10 @@ def get_slug(path, folder, filename):
|
||||
return slugify(f"{folder}/{filename}")
|
||||
|
||||
# compile markdown into cited HTML
|
||||
def get_page_data(path, isPreload=False):
|
||||
def get_page_data(path):
|
||||
|
||||
filename = Path(path).stem
|
||||
folder = os.path.basename(os.path.dirname(path))
|
||||
folder = Path(path).parent.name
|
||||
slug = get_slug(path, folder, filename)
|
||||
|
||||
prerendered = get_existing_page(path, slug)
|
||||
@ -152,18 +128,17 @@ def get_page_data(path, isPreload=False):
|
||||
return prerendered
|
||||
|
||||
page = frontmatter.load(path)
|
||||
page['slug'] = slug
|
||||
page.filename = filename
|
||||
page.folder = folder
|
||||
|
||||
latex = page.content
|
||||
page["slug"] = slug
|
||||
page["filename"] = filename
|
||||
page["folder"] = folder
|
||||
|
||||
if "start_datetime" in page:
|
||||
page["has_passed"] = datetime.fromtimestamp(page["start_datetime"]) < now
|
||||
|
||||
content = page.content
|
||||
|
||||
if "`include" in page.content:
|
||||
latex = pypandoc.convert_text(
|
||||
content = pypandoc.convert_text(
|
||||
page.content,
|
||||
to='md',
|
||||
format='md',
|
||||
@ -172,7 +147,7 @@ def get_page_data(path, isPreload=False):
|
||||
])
|
||||
|
||||
page.body = pypandoc.convert_text(
|
||||
latex,
|
||||
content,
|
||||
to="html",
|
||||
format="md",
|
||||
extra_args=[
|
||||
@ -193,19 +168,12 @@ def save_circuit_svg(filepath, outpath, name):
|
||||
width_px = float(root.get("width", 0))
|
||||
height_px = float(root.get("height", 0))
|
||||
|
||||
DPI = 300
|
||||
|
||||
# Convert px to mm
|
||||
width_mm = (width_px * 25.4) / DPI > 15
|
||||
height_mm = (height_px * 25.4) / DPI
|
||||
|
||||
# Set new width/height in mm
|
||||
root.set("width", f"{width_px}mm")
|
||||
root.set("height", f"{height_px}mm")
|
||||
|
||||
os.makedirs(outpath, exist_ok = True)
|
||||
|
||||
|
||||
tree.write(f"{outpath}/{name}")
|
||||
|
||||
|
||||
@ -214,17 +182,15 @@ def render_posts(path, output_path=OUTPUT_D):
|
||||
name = Path(path).stem
|
||||
|
||||
for filename in sorted(os.listdir(path)):
|
||||
file_path = os.path.join(path, filename)
|
||||
file_path = Path(path) / filename
|
||||
|
||||
if filename.endswith(".md"):
|
||||
print("is md", filename)
|
||||
page = get_page_data(file_path)
|
||||
render_single_file(page, file_path, f"{output_path}/{name}", name)
|
||||
elif os.path.isdir(file_path):
|
||||
if file_path.suffix == ".md":
|
||||
render_single_file(get_page_data(file_path), file_path, f"{output_path}/{name}")
|
||||
elif file_path.is_dir():
|
||||
render_posts(file_path, f"{output_path}/{name}")
|
||||
elif filename.endswith(".svg"):
|
||||
elif file_path.suffix == ".svg":
|
||||
save_circuit_svg(file_path, f"{output_path}/{name}", filename)
|
||||
elif Path(filename).suffix in [".jpeg", ".mp3", ".jpg", ".png"]:
|
||||
elif file_path.suffix in {".jpeg", ".mp3", ".jpg", ".png"}:
|
||||
os.makedirs(f"{output_path}/{name}", exist_ok = True)
|
||||
shutil.copyfile(file_path, f"{output_path}/{name}/{filename}")
|
||||
else:
|
||||
@ -232,8 +198,12 @@ def render_posts(path, output_path=OUTPUT_D):
|
||||
|
||||
# Pre-load before compiling
|
||||
def preload_documents():
|
||||
print("preload any needed data")
|
||||
documents["meta"] = {"now": now.strftime("%d %B %Y")}
|
||||
global documents
|
||||
|
||||
version = subprocess.check_output(["git", "rev-list", "--count", "HEAD"]).decode("utf-8").strip()
|
||||
|
||||
|
||||
documents["meta"] = {"now": now.strftime("%d %B %Y"), "version": version}
|
||||
|
||||
for subdir in os.listdir(CONTENT_D):
|
||||
path = os.path.join(CONTENT_D, subdir)
|
||||
@ -243,15 +213,14 @@ def preload_documents():
|
||||
documents.setdefault(name, [])
|
||||
|
||||
for filename in sorted(os.listdir(path)):
|
||||
print(filename)
|
||||
cpath = os.path.join(path, filename)
|
||||
if filename.endswith(".md"):
|
||||
documents[name].append(get_page_data(cpath, isPreload=True))
|
||||
documents[name].append(get_page_data(cpath))
|
||||
elif os.path.isdir(cpath):
|
||||
documents[name].append(get_page_data(os.path.join(cpath, "index.md"), isPreload=True))
|
||||
documents[name].append(get_page_data(os.path.join(cpath, "index.md")))
|
||||
|
||||
elif Path(path).suffix == '.md':
|
||||
documents[Path(path).stem] = get_page_data(path, isPreload=True)
|
||||
documents[Path(path).stem] = get_page_data(path)
|
||||
|
||||
|
||||
def copy_assets():
|
||||
@ -262,19 +231,12 @@ def copy_assets():
|
||||
|
||||
|
||||
def get_inventory():
|
||||
global documents
|
||||
|
||||
with open("src/content/component-inventory.csv") as f:
|
||||
documents['inventory'] = []
|
||||
for line in csv.DictReader(
|
||||
f,
|
||||
fieldnames=(
|
||||
'ID',
|
||||
'Amount',
|
||||
'Name',
|
||||
'Value',
|
||||
'type',
|
||||
'Date',
|
||||
'Where',
|
||||
'Mounting type')):
|
||||
|
||||
for line in csv.DictReader(f, fieldnames=('ID', 'Amount', 'Name', 'Value', 'type', 'Date', 'Where','Mounting type')):
|
||||
documents['inventory'].append(line)
|
||||
|
||||
|
||||
|
@ -1,80 +0,0 @@
|
||||
---
|
||||
boost:
|
||||
- https://newsmast.community/users/tvandradio
|
||||
description: <p>Radio WORM presents, live and direct from UBIK, everything you never
|
||||
realised you needed to hear on the radio…for 25 hours straight.</p><p>The 25 Hour
|
||||
Radio Relay is an all-day, all-night mix of radiomakers and sound artists of all
|
||||
descriptions, sharing old and new work, DIY experiments and high-tech performances
|
||||
for your collective listening pleasure.</p><p>Join us in person or listen online
|
||||
from 5pm on Saturday 25 January as we pass the baton from performers to poets to
|
||||
gameshow hosts to improv musicians to font designers to volkskeuken to ???, all
|
||||
the way through to 6pm on Sunday 26 January.</p><p>Free entry, no booking required,
|
||||
camp out with us for as long as you can handle!</p><p>BYOP (bring your own pillow,
|
||||
yoga mat, camping mattress…)</p>
|
||||
end_datetime: 1737910800
|
||||
id: 27
|
||||
image_path: null
|
||||
isAnon: false
|
||||
isMine: false
|
||||
is_visible: true
|
||||
likes: []
|
||||
media:
|
||||
- focalpoint:
|
||||
- 0
|
||||
- 0
|
||||
height: 901
|
||||
name: 25 Hour Radio Relay
|
||||
size: 310303
|
||||
url: e3146e26dbf6a3e77600b885da48ebda.jpg
|
||||
width: 1000
|
||||
multidate: true
|
||||
next: null
|
||||
online_locations: ''
|
||||
parent: null
|
||||
parentId: null
|
||||
place:
|
||||
address: Boomgaardsstraat 71, 3012 XA Rotterdam
|
||||
id: 5
|
||||
latitude: null
|
||||
longitude: null
|
||||
name: Worm
|
||||
plain_description: 'Radio WORM presents, live and direct from UBIK, everything you
|
||||
never realised
|
||||
|
||||
you needed to hear on the radio…for 25 hours straight.
|
||||
|
||||
|
||||
The 25 Hour Radio Relay is an all-day, all-night mix of radiomakers and sound
|
||||
|
||||
artists of all descriptions, sharing old and new work, DIY experiments and
|
||||
|
||||
high-tech performances for your collective listening pleasure.
|
||||
|
||||
|
||||
Join us in person or listen online from 5pm on Saturday 25 January as we pass
|
||||
|
||||
the baton from performers to poets to gameshow hosts to improv musicians to font
|
||||
|
||||
designers to volkskeuken to ???, all the way through to 6pm on Sunday 26
|
||||
|
||||
January.
|
||||
|
||||
|
||||
Free entry, no booking required, camp out with us for as long as you can handle!
|
||||
|
||||
|
||||
BYOP (bring your own pillow, yoga mat, camping mattress…)'
|
||||
prev: 3rd-klankschool-dagandavond
|
||||
recurrent: null
|
||||
resources: []
|
||||
slug: 25-hour-radio-relay
|
||||
start_datetime: 1737820800
|
||||
tags:
|
||||
- performances
|
||||
- radio
|
||||
- relay
|
||||
- worm
|
||||
title: 25 Hour Radio Relay
|
||||
---
|
||||
|
||||
<p>Radio WORM presents, live and direct from UBIK, everything you never realised you needed to hear on the radio…for 25 hours straight.</p><p>The 25 Hour Radio Relay is an all-day, all-night mix of radiomakers and sound artists of all descriptions, sharing old and new work, DIY experiments and high-tech performances for your collective listening pleasure.</p><p>Join us in person or listen online from 5pm on Saturday 25 January as we pass the baton from performers to poets to gameshow hosts to improv musicians to font designers to volkskeuken to ???, all the way through to 6pm on Sunday 26 January.</p><p>Free entry, no booking required, camp out with us for as long as you can handle!</p><p>BYOP (bring your own pillow, yoga mat, camping mattress…)</p>
|
@ -1,46 +0,0 @@
|
||||
---
|
||||
boost: []
|
||||
description: <p>Sound performances by </p><ul><li><p>Ardore</p></li></ul><ul><li><p>Dada
|
||||
Phone & Stephen Kerr & joak & ...</p></li><li><p>TBA!</p></li></ul>
|
||||
end_datetime: 1737666000
|
||||
id: 28
|
||||
image_path: null
|
||||
isAnon: false
|
||||
isMine: false
|
||||
is_visible: true
|
||||
likes: []
|
||||
media:
|
||||
- focalpoint:
|
||||
- 0
|
||||
- 0
|
||||
height: 1698
|
||||
name: 3rd Klankschool Dag&Avond
|
||||
size: 251857
|
||||
url: 79ac9e1617282f521d8027737ed71cbd.jpg
|
||||
width: 1200
|
||||
multidate: false
|
||||
next: 25-hour-radio-relay
|
||||
online_locations: ''
|
||||
parent: null
|
||||
parentId: null
|
||||
place:
|
||||
address: Catullusweg 11
|
||||
id: 1
|
||||
latitude: 51.8766465
|
||||
longitude: 4.5242688
|
||||
name: Catu
|
||||
plain_description: "Sound performances by\n\n * Ardore\n\n * Dada Phone & Stephen\
|
||||
\ Kerr & joak & ...\n\n * TBA!"
|
||||
prev: unrepair-cafe-2
|
||||
recurrent: null
|
||||
resources: []
|
||||
slug: 3rd-klankschool-dagandavond
|
||||
start_datetime: 1737658800
|
||||
tags:
|
||||
- klankschool
|
||||
- noise
|
||||
- performances
|
||||
title: 3rd Klankschool Dag&Avond
|
||||
---
|
||||
|
||||
<p>Sound performances by </p><ul><li><p>Ardore</p></li></ul><ul><li><p>Dada Phone & Stephen Kerr & joak & ...</p></li><li><p>TBA!</p></li></ul>
|
@ -1,138 +0,0 @@
|
||||
---
|
||||
boost: []
|
||||
description: <p><strong>Date:</strong> Friday, 15 November 2024<br><strong>Door:</strong>
|
||||
19:30h CET<br><strong>Start:</strong> 20:00h CET<br><strong>Entrance:</strong> 5
|
||||
euro<br><strong>Location:</strong> Varia (Gouwstraat 3, Rotterdam)</p><p><em>November
|
||||
is home to multiple interventions by </em><a target="_blank" href="https://extratonal.org/"><em>The
|
||||
Platform For Extratonality</em></a><em>. During this intermediate music event we
|
||||
welcome QOA and Primeiro, two artists with a tendency to enthrall through elemental
|
||||
improvisations.</em></p><p><strong>QOA</strong>, is the monikor of Nina Corti, an
|
||||
experimental electroacoustic musician, sound and visual artist from the Argentine
|
||||
and Latin American experimental contemporary music scene. Their sound is characterised
|
||||
by the collage of field recordings in natural environments and their multiple transformations,
|
||||
combined with spoken word, live sampling, drones, synthesis and frequency rhythms,
|
||||
creating an extended listening experience. Qoa is part of <strong>AMPLIFY Digital
|
||||
Arts Initiative</strong> (Amplify D.A.I), international network of artists from
|
||||
Argentina, Canada, Peru and the UK, supported by Mutek and British Council. This
|
||||
year they was one of the 8th Latin American artists selected for Nicolas Jaar's
|
||||
Ladridos project.</p><p><a target="_blank" href="https://qoa.cargo.site/">https://qoa.cargo.site/</a><br><a
|
||||
target="_blank" href="https://qoaqoa.bandcamp.com/album/sauco-2">https://qoaqoa.bandcamp.com/album/sauco-2</a></p><p><strong>Primeiro</strong>
|
||||
blends experimental electronics with samples of acoustic instruments and field recordings
|
||||
made by him, exploring the dynamic relationship between sound and territories. He
|
||||
develops intricate soundscapes with multiple layers that evoke a sense of tranquility
|
||||
and meticulous craft. Additionally, he organizes the <strong>Feed the River</strong>
|
||||
festival, which explores our connection with water bodies as sentient entities requiring
|
||||
our care and nurturing, and the use of sound to foster meaningful transformative
|
||||
dialogues.</p><p><em>This event is made possible with the kind support of Popunie
|
||||
Rotterdam, Stichting Volkskracht, Fonds Podiumkunsten, Gemeente Rotterdam and Stimuleringsfonds
|
||||
Creatieve Industrie</em></p>
|
||||
end_datetime: 1731704400
|
||||
id: 6
|
||||
image_path: null
|
||||
isAnon: false
|
||||
isMine: false
|
||||
is_visible: true
|
||||
likes: []
|
||||
media:
|
||||
- focalpoint:
|
||||
- 1
|
||||
- -0.88
|
||||
height: 986
|
||||
name: 'Extratonal Infrastructure #16: QOA en Primeiro'
|
||||
size: 297245
|
||||
url: 43abdc1e52982aeb9040888e2a1127c6.jpg
|
||||
width: 986
|
||||
multidate: false
|
||||
next: sounds-of-making-xpub1-presents-protocols-for-collective-performance
|
||||
online_locations: ''
|
||||
parent: null
|
||||
parentId: null
|
||||
place:
|
||||
address: Gouwstraat 3, Rotterdam
|
||||
id: 3
|
||||
latitude: null
|
||||
longitude: null
|
||||
name: Vaira
|
||||
plain_description: 'Date: Friday, 15 November 2024
|
||||
|
||||
Door: 19:30h CET
|
||||
|
||||
Start: 20:00h CET
|
||||
|
||||
Entrance: 5 euro
|
||||
|
||||
Location: Varia (Gouwstraat 3, Rotterdam)
|
||||
|
||||
|
||||
November is home to multiple interventions by The Platform For Extratonality
|
||||
|
||||
[https://extratonal.org/]. During this intermediate music event we welcome QOA
|
||||
|
||||
and Primeiro, two artists with a tendency to enthrall through elemental
|
||||
|
||||
improvisations.
|
||||
|
||||
|
||||
QOA, is the monikor of Nina Corti, an experimental electroacoustic musician,
|
||||
|
||||
sound and visual artist from the Argentine and Latin American experimental
|
||||
|
||||
contemporary music scene. Their sound is characterised by the collage of field
|
||||
|
||||
recordings in natural environments and their multiple transformations, combined
|
||||
|
||||
with spoken word, live sampling, drones, synthesis and frequency rhythms,
|
||||
|
||||
creating an extended listening experience. Qoa is part of AMPLIFY Digital Arts
|
||||
|
||||
Initiative (Amplify D.A.I), international network of artists from Argentina,
|
||||
|
||||
Canada, Peru and the UK, supported by Mutek and British Council. This year they
|
||||
|
||||
was one of the 8th Latin American artists selected for Nicolas Jaar''s Ladridos
|
||||
|
||||
project.
|
||||
|
||||
|
||||
https://qoa.cargo.site/ [https://qoa.cargo.site/]
|
||||
|
||||
https://qoaqoa.bandcamp.com/album/sauco-2
|
||||
|
||||
[https://qoaqoa.bandcamp.com/album/sauco-2]
|
||||
|
||||
|
||||
Primeiro blends experimental electronics with samples of acoustic instruments
|
||||
|
||||
and field recordings made by him, exploring the dynamic relationship between
|
||||
|
||||
sound and territories. He develops intricate soundscapes with multiple layers
|
||||
|
||||
that evoke a sense of tranquility and meticulous craft. Additionally, he
|
||||
|
||||
organizes the Feed the River festival, which explores our connection with water
|
||||
|
||||
bodies as sentient entities requiring our care and nurturing, and the use of
|
||||
|
||||
sound to foster meaningful transformative dialogues.
|
||||
|
||||
|
||||
This event is made possible with the kind support of Popunie Rotterdam,
|
||||
|
||||
Stichting Volkskracht, Fonds Podiumkunsten, Gemeente Rotterdam and
|
||||
|
||||
Stimuleringsfonds Creatieve Industrie'
|
||||
prev: lets-unrepair-things-together-2
|
||||
recurrent: null
|
||||
resources: []
|
||||
slug: extratonal-infrastructure-16-qoa-en-primeiro
|
||||
start_datetime: 1731697200
|
||||
tags:
|
||||
- extratonal
|
||||
- performances
|
||||
- primeiro
|
||||
- qoa
|
||||
- varia
|
||||
title: 'Extratonal Infrastructure #16: QOA en Primeiro'
|
||||
---
|
||||
|
||||
<p><strong>Date:</strong> Friday, 15 November 2024<br><strong>Door:</strong> 19:30h CET<br><strong>Start:</strong> 20:00h CET<br><strong>Entrance:</strong> 5 euro<br><strong>Location:</strong> Varia (Gouwstraat 3, Rotterdam)</p><p><em>November is home to multiple interventions by </em><a target="_blank" href="https://extratonal.org/"><em>The Platform For Extratonality</em></a><em>. During this intermediate music event we welcome QOA and Primeiro, two artists with a tendency to enthrall through elemental improvisations.</em></p><p><strong>QOA</strong>, is the monikor of Nina Corti, an experimental electroacoustic musician, sound and visual artist from the Argentine and Latin American experimental contemporary music scene. Their sound is characterised by the collage of field recordings in natural environments and their multiple transformations, combined with spoken word, live sampling, drones, synthesis and frequency rhythms, creating an extended listening experience. Qoa is part of <strong>AMPLIFY Digital Arts Initiative</strong> (Amplify D.A.I), international network of artists from Argentina, Canada, Peru and the UK, supported by Mutek and British Council. This year they was one of the 8th Latin American artists selected for Nicolas Jaar's Ladridos project.</p><p><a target="_blank" href="https://qoa.cargo.site/">https://qoa.cargo.site/</a><br><a target="_blank" href="https://qoaqoa.bandcamp.com/album/sauco-2">https://qoaqoa.bandcamp.com/album/sauco-2</a></p><p><strong>Primeiro</strong> blends experimental electronics with samples of acoustic instruments and field recordings made by him, exploring the dynamic relationship between sound and territories. He develops intricate soundscapes with multiple layers that evoke a sense of tranquility and meticulous craft. Additionally, he organizes the <strong>Feed the River</strong> festival, which explores our connection with water bodies as sentient entities requiring our care and nurturing, and the use of sound to foster meaningful transformative dialogues.</p><p><em>This event is made possible with the kind support of Popunie Rotterdam, Stichting Volkskracht, Fonds Podiumkunsten, Gemeente Rotterdam and Stimuleringsfonds Creatieve Industrie</em></p>
|
@ -1,161 +0,0 @@
|
||||
---
|
||||
boost: []
|
||||
description: '<p>Date: Saturday, 30 November 2024</p><p>Door: 19:30h CET</p><p>Start:
|
||||
20:00h CET</p><p>Entrance: 5 euro</p><p>Location: Varia (Gouwstraat 3, Rotterdam)</p><p>Join
|
||||
us for a new episode in the extratonal infrastructure series - the extra in Rotterdam''s
|
||||
cultural life. Come and watch three acts that will truly push the boundaries of
|
||||
conventions through approaches that create unpredictability and contingencies. Be
|
||||
on time and it is fine!</p><p>Dianaband (Dooho & Wonjung) is an interdisciplinary
|
||||
artist duo based in Seoul. In their sound performance ''Cats and Paper Boxes'' Dooho
|
||||
plays with feedback resonance. Through various objects placed between a contact
|
||||
microphone and mobile speakers, he creates hidden sounds, subtle coincidences, and
|
||||
unpredictable sound events. Wonjung rides on this tidal wave with the Drawing Synthesizer,
|
||||
an instrument where ''drawing'' is ''making sound''. Exploring the infinite possibilities
|
||||
of drawing with paper and pencil, she manages the momentum of the spatial narrative
|
||||
all around the space.</p><p><a target="_blank" href="https://dianaband.info/">https://dianaband.info/</a></p><p>Vegetable
|
||||
Wife is from Seoul. She yearns for noise and noise-making beings that escape from
|
||||
ethics and morality. She tries to strip away the many ideas attached to these sounds,
|
||||
while simultaneously suturing them with different origins. Her sound exists inside
|
||||
a tear-and-paste loop through synthesising, collaging, recording and mixing. With
|
||||
visual artist Jae-hyung Park, this sound is synthesized with video to extend its
|
||||
scape.</p><p><a target="_blank" href="https://meek-as-a-lamb.github.io/imheeju/">https://meek-as-a-lamb.github.io/imheeju/</a></p><p>Lucija
|
||||
Gregov is a cellist, improviser, composer and programmer. She has been developing
|
||||
projects and researching in the fields of classical music, electroacoustic music,
|
||||
improvisation, experimental music, radio and sound art. Through many interdisciplinary
|
||||
collaborations, Lucija seeks to push the boundaries of traditional cello playing,
|
||||
which further extends her interpretation, technique and ideas. Her instrumental
|
||||
cello practice is the starting point of the sonic exploration, through which, over
|
||||
time, she disintegrated traditional techniques in order to discover a more personal
|
||||
and sincere sound aesthetic.</p><p><a target="_blank" href="https://lugregov.com/">https://lugregov.com/</a></p><p>This
|
||||
event is made possible with the kind support of Popunie Rotterdam, Stichting Volkskracht,
|
||||
Fonds Podiumkunsten, Gemeente Rotterdam and Stimuleringsfonds Creatieve Industrie.</p>'
|
||||
end_datetime: 1733004000
|
||||
id: 14
|
||||
image_path: null
|
||||
isAnon: false
|
||||
isMine: false
|
||||
is_visible: true
|
||||
likes: []
|
||||
media:
|
||||
- focalpoint:
|
||||
- 0
|
||||
- 0
|
||||
height: 1200
|
||||
name: 'Extratonal Infrastructure #17: Dianaband, Vegetable Wife with Jae-hyung Park
|
||||
and Lucija Gregov'
|
||||
size: 577770
|
||||
url: c8e7b7851a720187cd4fce798f0405fc.jpg
|
||||
width: 1200
|
||||
multidate: false
|
||||
next: lets-unrepair-things-together-analog-video-edition
|
||||
online_locations: ''
|
||||
parent: null
|
||||
parentId: null
|
||||
place:
|
||||
address: Gouwstraat 3, Rotterdam
|
||||
id: 3
|
||||
latitude: null
|
||||
longitude: null
|
||||
name: Vaira
|
||||
plain_description: 'Date: Saturday, 30 November 2024
|
||||
|
||||
|
||||
Door: 19:30h CET
|
||||
|
||||
|
||||
Start: 20:00h CET
|
||||
|
||||
|
||||
Entrance: 5 euro
|
||||
|
||||
|
||||
Location: Varia (Gouwstraat 3, Rotterdam)
|
||||
|
||||
|
||||
Join us for a new episode in the extratonal infrastructure series - the extra in
|
||||
|
||||
Rotterdam''s cultural life. Come and watch three acts that will truly push the
|
||||
|
||||
boundaries of conventions through approaches that create unpredictability and
|
||||
|
||||
contingencies. Be on time and it is fine!
|
||||
|
||||
|
||||
Dianaband (Dooho & Wonjung) is an interdisciplinary artist duo based in Seoul.
|
||||
|
||||
In their sound performance ''Cats and Paper Boxes'' Dooho plays with feedback
|
||||
|
||||
resonance. Through various objects placed between a contact microphone and
|
||||
|
||||
mobile speakers, he creates hidden sounds, subtle coincidences, and
|
||||
|
||||
unpredictable sound events. Wonjung rides on this tidal wave with the Drawing
|
||||
|
||||
Synthesizer, an instrument where ''drawing'' is ''making sound''. Exploring the
|
||||
|
||||
infinite possibilities of drawing with paper and pencil, she manages the
|
||||
|
||||
momentum of the spatial narrative all around the space.
|
||||
|
||||
|
||||
https://dianaband.info/ [https://dianaband.info/]
|
||||
|
||||
|
||||
Vegetable Wife is from Seoul. She yearns for noise and noise-making beings that
|
||||
|
||||
escape from ethics and morality. She tries to strip away the many ideas attached
|
||||
|
||||
to these sounds, while simultaneously suturing them with different origins. Her
|
||||
|
||||
sound exists inside a tear-and-paste loop through synthesising, collaging,
|
||||
|
||||
recording and mixing. With visual artist Jae-hyung Park, this sound is
|
||||
|
||||
synthesized with video to extend its scape.
|
||||
|
||||
|
||||
https://meek-as-a-lamb.github.io/imheeju/
|
||||
|
||||
[https://meek-as-a-lamb.github.io/imheeju/]
|
||||
|
||||
|
||||
Lucija Gregov is a cellist, improviser, composer and programmer. She has been
|
||||
|
||||
developing projects and researching in the fields of classical music,
|
||||
|
||||
electroacoustic music, improvisation, experimental music, radio and sound art.
|
||||
|
||||
Through many interdisciplinary collaborations, Lucija seeks to push the
|
||||
|
||||
boundaries of traditional cello playing, which further extends her
|
||||
|
||||
interpretation, technique and ideas. Her instrumental cello practice is the
|
||||
|
||||
starting point of the sonic exploration, through which, over time, she
|
||||
|
||||
disintegrated traditional techniques in order to discover a more personal and
|
||||
|
||||
sincere sound aesthetic.
|
||||
|
||||
|
||||
https://lugregov.com/ [https://lugregov.com/]
|
||||
|
||||
|
||||
This event is made possible with the kind support of Popunie Rotterdam,
|
||||
|
||||
Stichting Volkskracht, Fonds Podiumkunsten, Gemeente Rotterdam and
|
||||
|
||||
Stimuleringsfonds Creatieve Industrie.'
|
||||
prev: lets-unrepair-things-together-4
|
||||
recurrent: null
|
||||
resources: []
|
||||
slug: extratonal-infrastructure-17-dianaband-vegetable-wife-with-jae-hyung-park-and-lucija-gregov
|
||||
start_datetime: 1732993200
|
||||
tags:
|
||||
- extratonal
|
||||
- varia
|
||||
title: 'Extratonal Infrastructure #17: Dianaband, Vegetable Wife with Jae-hyung Park
|
||||
and Lucija Gregov'
|
||||
---
|
||||
|
||||
<p>Date: Saturday, 30 November 2024</p><p>Door: 19:30h CET</p><p>Start: 20:00h CET</p><p>Entrance: 5 euro</p><p>Location: Varia (Gouwstraat 3, Rotterdam)</p><p>Join us for a new episode in the extratonal infrastructure series - the extra in Rotterdam's cultural life. Come and watch three acts that will truly push the boundaries of conventions through approaches that create unpredictability and contingencies. Be on time and it is fine!</p><p>Dianaband (Dooho & Wonjung) is an interdisciplinary artist duo based in Seoul. In their sound performance 'Cats and Paper Boxes' Dooho plays with feedback resonance. Through various objects placed between a contact microphone and mobile speakers, he creates hidden sounds, subtle coincidences, and unpredictable sound events. Wonjung rides on this tidal wave with the Drawing Synthesizer, an instrument where 'drawing' is 'making sound'. Exploring the infinite possibilities of drawing with paper and pencil, she manages the momentum of the spatial narrative all around the space.</p><p><a target="_blank" href="https://dianaband.info/">https://dianaband.info/</a></p><p>Vegetable Wife is from Seoul. She yearns for noise and noise-making beings that escape from ethics and morality. She tries to strip away the many ideas attached to these sounds, while simultaneously suturing them with different origins. Her sound exists inside a tear-and-paste loop through synthesising, collaging, recording and mixing. With visual artist Jae-hyung Park, this sound is synthesized with video to extend its scape.</p><p><a target="_blank" href="https://meek-as-a-lamb.github.io/imheeju/">https://meek-as-a-lamb.github.io/imheeju/</a></p><p>Lucija Gregov is a cellist, improviser, composer and programmer. She has been developing projects and researching in the fields of classical music, electroacoustic music, improvisation, experimental music, radio and sound art. Through many interdisciplinary collaborations, Lucija seeks to push the boundaries of traditional cello playing, which further extends her interpretation, technique and ideas. Her instrumental cello practice is the starting point of the sonic exploration, through which, over time, she disintegrated traditional techniques in order to discover a more personal and sincere sound aesthetic.</p><p><a target="_blank" href="https://lugregov.com/">https://lugregov.com/</a></p><p>This event is made possible with the kind support of Popunie Rotterdam, Stichting Volkskracht, Fonds Podiumkunsten, Gemeente Rotterdam and Stimuleringsfonds Creatieve Industrie.</p>
|
@ -1,126 +0,0 @@
|
||||
---
|
||||
boost: []
|
||||
description: '<p>We are moved to invite you to our 3rd <a target="_blank" href="https://extratonal.org/">Extratonal
|
||||
Special</a>: sound is political. For this edition we ask you to be present with
|
||||
your political ears, to feel with us what it means to have a voice that is (not)
|
||||
heard, to notice which voices are not present in the room, to desire together social
|
||||
transformations, to listen to less heard histories, to pinch our autonomous bubbles,
|
||||
to be touched by sound waves and connect with them consciously. This journey is
|
||||
going to be led by our very special line up:</p><p><strong>Luca Soucant</strong>
|
||||
will perform the lecture-performance ''The Resonance of Gender: Thinking through
|
||||
a Feedbacking Scold’s Bridle.''Luca studies the relationship between sound, gender,
|
||||
power, and social structures within the entanglement of the human and non-human.</p><p><a
|
||||
target="_blank" href="https://www.lucasoudant.com/">https://www.lucasoudant.com/</a></p><p><strong>YoKolina</strong>
|
||||
is an interdisciplinary fashion designer whose artistic practice involves stage
|
||||
clothes, performance, and music. For Extratonal, she will bring to life her moth
|
||||
costume, embodying an insect that deals with existence.</p><p><a target="_blank"
|
||||
href="https://yokolina.hotglue.me/">https://yokolina.hotglue.me/</a></p><p><strong>Natalia
|
||||
Roa</strong> is a writer, editor and interdisciplinary artist. Together with Colombian
|
||||
percussionist <strong>Luis Orobio</strong>, she will weave a tapestry of sound,
|
||||
rhythm, and storytelling around the concept of ashé, which are narratives and soundscapes
|
||||
of Abya Yala that offer an alternative present to a growing dismemory. From a sonic
|
||||
legacy, ashé signifies permanence: the constant gaze for and at the instruments,
|
||||
the bodies, and the tunes with which enslaved people declared their emancipation,
|
||||
blending ritual with celebration, we remember.</p><p><a target="_blank" href="https://nataliaroa.co/about">https://nataliaroa.co/about</a></p><p><em>This
|
||||
event is made possible with the kind support of Popunie Rotterdam, Stichting Volkskracht,
|
||||
Fonds Podiumkunsten, Gemeente Rotterdam and Stimuleringsfonds Creatieve Industrie.</em></p>'
|
||||
end_datetime: 1730494800
|
||||
id: 5
|
||||
image_path: null
|
||||
isAnon: false
|
||||
isMine: false
|
||||
is_visible: true
|
||||
likes: []
|
||||
media:
|
||||
- focalpoint:
|
||||
- -0.03
|
||||
- -1
|
||||
height: 600
|
||||
name: 'Extratonal Special #3: Sound Is Political'
|
||||
size: 179457
|
||||
url: f26012d0e6bf0ccb20941a21e69f54f6.jpg
|
||||
width: 600
|
||||
multidate: false
|
||||
next: palestine-cinema-days-around-the-world-naila-and-the-uprising
|
||||
online_locations: ''
|
||||
parent: null
|
||||
parentId: null
|
||||
place:
|
||||
address: Gouwstraat 3, Rotterdam
|
||||
id: 3
|
||||
latitude: null
|
||||
longitude: null
|
||||
name: Vaira
|
||||
plain_description: 'We are moved to invite you to our 3rd Extratonal Special
|
||||
|
||||
[https://extratonal.org/]: sound is political. For this edition we ask you to be
|
||||
|
||||
present with your political ears, to feel with us what it means to have a voice
|
||||
|
||||
that is (not) heard, to notice which voices are not present in the room, to
|
||||
|
||||
desire together social transformations, to listen to less heard histories, to
|
||||
|
||||
pinch our autonomous bubbles, to be touched by sound waves and connect with them
|
||||
|
||||
consciously. This journey is going to be led by our very special line up:
|
||||
|
||||
|
||||
Luca Soucant will perform the lecture-performance ''The Resonance of Gender:
|
||||
|
||||
Thinking through a Feedbacking Scold’s Bridle.''Luca studies the relationship
|
||||
|
||||
between sound, gender, power, and social structures within the entanglement of
|
||||
|
||||
the human and non-human.
|
||||
|
||||
|
||||
https://www.lucasoudant.com/ [https://www.lucasoudant.com/]
|
||||
|
||||
|
||||
YoKolina is an interdisciplinary fashion designer whose artistic practice
|
||||
|
||||
involves stage clothes, performance, and music. For Extratonal, she will bring
|
||||
|
||||
to life her moth costume, embodying an insect that deals with existence.
|
||||
|
||||
|
||||
https://yokolina.hotglue.me/ [https://yokolina.hotglue.me/]
|
||||
|
||||
|
||||
Natalia Roa is a writer, editor and interdisciplinary artist. Together with
|
||||
|
||||
Colombian percussionist Luis Orobio, she will weave a tapestry of sound, rhythm,
|
||||
|
||||
and storytelling around the concept of ashé, which are narratives and
|
||||
|
||||
soundscapes of Abya Yala that offer an alternative present to a growing
|
||||
|
||||
dismemory. From a sonic legacy, ashé signifies permanence: the constant gaze for
|
||||
|
||||
and at the instruments, the bodies, and the tunes with which enslaved people
|
||||
|
||||
declared their emancipation, blending ritual with celebration, we remember.
|
||||
|
||||
|
||||
https://nataliaroa.co/about [https://nataliaroa.co/about]
|
||||
|
||||
|
||||
This event is made possible with the kind support of Popunie Rotterdam,
|
||||
|
||||
Stichting Volkskracht, Fonds Podiumkunsten, Gemeente Rotterdam and
|
||||
|
||||
Stimuleringsfonds Creatieve Industrie.'
|
||||
prev: lets-un-repair-things-together
|
||||
recurrent: null
|
||||
resources: []
|
||||
slug: extratonal-special-3-sound-is-political
|
||||
start_datetime: 1730487600
|
||||
tags:
|
||||
- extratonal
|
||||
- performances
|
||||
- varia
|
||||
title: 'Extratonal Special #3: Sound Is Political'
|
||||
---
|
||||
|
||||
<p>We are moved to invite you to our 3rd <a target="_blank" href="https://extratonal.org/">Extratonal Special</a>: sound is political. For this edition we ask you to be present with your political ears, to feel with us what it means to have a voice that is (not) heard, to notice which voices are not present in the room, to desire together social transformations, to listen to less heard histories, to pinch our autonomous bubbles, to be touched by sound waves and connect with them consciously. This journey is going to be led by our very special line up:</p><p><strong>Luca Soucant</strong> will perform the lecture-performance 'The Resonance of Gender: Thinking through a Feedbacking Scold’s Bridle.'Luca studies the relationship between sound, gender, power, and social structures within the entanglement of the human and non-human.</p><p><a target="_blank" href="https://www.lucasoudant.com/">https://www.lucasoudant.com/</a></p><p><strong>YoKolina</strong> is an interdisciplinary fashion designer whose artistic practice involves stage clothes, performance, and music. For Extratonal, she will bring to life her moth costume, embodying an insect that deals with existence.</p><p><a target="_blank" href="https://yokolina.hotglue.me/">https://yokolina.hotglue.me/</a></p><p><strong>Natalia Roa</strong> is a writer, editor and interdisciplinary artist. Together with Colombian percussionist <strong>Luis Orobio</strong>, she will weave a tapestry of sound, rhythm, and storytelling around the concept of ashé, which are narratives and soundscapes of Abya Yala that offer an alternative present to a growing dismemory. From a sonic legacy, ashé signifies permanence: the constant gaze for and at the instruments, the bodies, and the tunes with which enslaved people declared their emancipation, blending ritual with celebration, we remember.</p><p><a target="_blank" href="https://nataliaroa.co/about">https://nataliaroa.co/about</a></p><p><em>This event is made possible with the kind support of Popunie Rotterdam, Stichting Volkskracht, Fonds Podiumkunsten, Gemeente Rotterdam and Stimuleringsfonds Creatieve Industrie.</em></p>
|
@ -1,78 +0,0 @@
|
||||
---
|
||||
boost: []
|
||||
description: <p>Dear listeners, 👂<br><br>on Saturday the 23rd of November, you are
|
||||
warmly invited to join a workshop about sonic awareness, at <a href="https://www.instagram.com/extrapractice/"
|
||||
target="_blank">extrapractice</a> .<br>Margo is going to guide you somewhere in
|
||||
between free musical improvisation and deep listening. We will sing, and breathe,
|
||||
and move, and make funny noises with funny objects. 🪠<br><br>But most of all, we’re
|
||||
going to tune in to our environment and listen. So put on your most comfy clothes
|
||||
and come make bubbles with friends! 🫧<br><br>It begins at 13.00 and lunch is included
|
||||
(vegan and gluten free). 🥗<br><br>5 euros of participation is asked, with 10 spots
|
||||
available.<br><br>Send a message at marguerite.maire@outlook.fr</p>
|
||||
end_datetime: 1732424400
|
||||
id: 15
|
||||
image_path: null
|
||||
isAnon: false
|
||||
isMine: false
|
||||
is_visible: true
|
||||
likes: []
|
||||
media:
|
||||
- focalpoint:
|
||||
- 0
|
||||
- 0
|
||||
height: 1350
|
||||
name: 🛀🛀🛀It’s sonic bath daaaay! 🛀🛀🛀
|
||||
size: 213008
|
||||
url: 607c905a35e634ef58247939c910df36.jpg
|
||||
width: 1080
|
||||
multidate: false
|
||||
next: lets-unrepair-things-together-4
|
||||
online_locations: ''
|
||||
parent: null
|
||||
parentId: null
|
||||
place:
|
||||
address: Linker Rottekade 5a, Rotterdam
|
||||
id: 6
|
||||
latitude: null
|
||||
longitude: null
|
||||
name: ExtraPractice
|
||||
plain_description: 'Dear listeners, 👂
|
||||
|
||||
|
||||
on Saturday the 23rd of November, you are warmly invited to join a workshop
|
||||
|
||||
about sonic awareness, at @extrapractice
|
||||
|
||||
[https://www.instagram.com/extrapractice/] .
|
||||
|
||||
Margo is going to guide you somewhere in between free musical improvisation and
|
||||
|
||||
deep listening. We will sing, and breathe, and move, and make funny noises with
|
||||
|
||||
funny objects. 🪠
|
||||
|
||||
|
||||
But most of all, we’re going to tune in to our environment and listen. So put on
|
||||
|
||||
your most comfy clothes and come make bubbles with friends! 🫧
|
||||
|
||||
|
||||
It begins at 13.00 and lunch is included (vegan and gluten free). 🥗
|
||||
|
||||
|
||||
5 euros of participation is asked, with 10 spots available.
|
||||
|
||||
|
||||
Send a message at marguerite.maire@outlook.fr'
|
||||
prev: lets-unrepair-things-together-3
|
||||
recurrent: null
|
||||
resources: []
|
||||
slug: its-sonic-bath-daaaay
|
||||
start_datetime: 1732363200
|
||||
tags:
|
||||
- extrapractice
|
||||
- sonic awareness
|
||||
title: 🛀🛀🛀It’s sonic bath daaaay! 🛀🛀🛀
|
||||
---
|
||||
|
||||
<p>Dear listeners, 👂<br><br>on Saturday the 23rd of November, you are warmly invited to join a workshop about sonic awareness, at <a href="https://www.instagram.com/extrapractice/" target="_blank">@extrapractice</a> .<br>Margo is going to guide you somewhere in between free musical improvisation and deep listening. We will sing, and breathe, and move, and make funny noises with funny objects. 🪠<br><br>But most of all, we’re going to tune in to our environment and listen. So put on your most comfy clothes and come make bubbles with friends! 🫧<br><br>It begins at 13.00 and lunch is included (vegan and gluten free). 🥗<br><br>5 euros of participation is asked, with 10 spots available.<br><br>Send a message at marguerite.maire@outlook.fr</p>
|
@ -1,139 +0,0 @@
|
||||
---
|
||||
boost: []
|
||||
description: '<blockquote><h3>when we have performed many thousands,<br>we shall shake
|
||||
them into confusion, in order that we might not know,<br>and in order not to let
|
||||
any evil person envy us,<br>when he knows that there are so many of our kisses.</h3></blockquote><p>Klankschool
|
||||
is back in catullusweg for more performances, workshops and listening.</p><p></p><h2>6pm:
|
||||
Klankserver longtable discussion</h2><p></p><p>Here at klankschool we have our own
|
||||
server, running open source software to provide <a target="_blank" href="https://calendar.klank.school/">this
|
||||
calendar</a>, <a target="_blank" href="https://funk.klank.school/library">an audio
|
||||
sharing platform</a>, <a target="_blank" href="https://klank.school/">the website</a>,
|
||||
<a target="_blank" href="https://live.klank.school">and more to come</a>.</p><p>This
|
||||
evening we will introduce some of these services, show how to use them, and have
|
||||
a longtable discussion about what it means to have an artist run server, what we
|
||||
plan to do with it, and why we want it.</p><p><a target="_blank" href="https://calendar.klank.school/event/server-introduction">For
|
||||
more info on the discussion, see the event.</a></p><p></p><h2>7pm: Delicious Vegan
|
||||
Dinner</h2><p></p><h2>8pm: Performances</h2><p></p><p>... 🥁 🎹 🔌 Lukasz Moroz , Maciej
|
||||
Müller and Tymon Kolubiński</p><p>... 🏠 Ariela Bergman "“the house that inhabits
|
||||
you”</p><p>... 🫥 mitsitron & 🌀 Stephen Kerr</p><p>... 👲🏻 🧑🦽 HOLLOWMIST</p><p>...
|
||||
📱 Dada phone</p><p>... 🪠 Archibald “Harry” Tuttle</p><p>... and more</p><p></p>'
|
||||
end_datetime: 1729368000
|
||||
id: 1
|
||||
image_path: null
|
||||
isAnon: false
|
||||
isMine: false
|
||||
is_visible: true
|
||||
likes: []
|
||||
media:
|
||||
- focalpoint:
|
||||
- 0
|
||||
- 0
|
||||
height: 1920
|
||||
name: 2nd KLANKSCHOOL DAG&AVOND
|
||||
size: 1286409
|
||||
url: a6734cfcec029795d1bfcc853137aafb.jpg
|
||||
width: 1080
|
||||
multidate: false
|
||||
next: server-introduction
|
||||
online_locations: ''
|
||||
parent: null
|
||||
parentId: null
|
||||
place:
|
||||
address: Catullusweg 11
|
||||
id: 1
|
||||
latitude: 51.8766465
|
||||
longitude: 4.5242688
|
||||
name: Catu
|
||||
plain_description: '> WHEN WE HAVE PERFORMED MANY THOUSANDS,
|
||||
|
||||
> WE SHALL SHAKE THEM INTO CONFUSION, IN ORDER THAT WE MIGHT NOT KNOW,
|
||||
|
||||
> AND IN ORDER NOT TO LET ANY EVIL PERSON ENVY US,
|
||||
|
||||
> WHEN HE KNOWS THAT THERE ARE SO MANY OF OUR KISSES.
|
||||
|
||||
|
||||
Klankschool is back in catullusweg for more performances, workshops and
|
||||
|
||||
listening.
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
6PM: KLANKSERVER LONGTABLE DISCUSSION
|
||||
|
||||
|
||||
|
||||
|
||||
Here at klankschool we have our own server, running open source software to
|
||||
|
||||
provide this calendar [https://calendar.klank.school/], an audio sharing
|
||||
|
||||
platform [https://funk.klank.school/library], the website
|
||||
|
||||
[https://klank.school/], and more to come [https://live.klank.school].
|
||||
|
||||
|
||||
This evening we will introduce some of these services, show how to use them, and
|
||||
|
||||
have a longtable discussion about what it means to have an artist run server,
|
||||
|
||||
what we plan to do with it, and why we want it.
|
||||
|
||||
|
||||
For more info on the discussion, see the event.
|
||||
|
||||
[https://calendar.klank.school/event/server-introduction]
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
7PM: DELICIOUS VEGAN DINNER
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
8PM: PERFORMANCES
|
||||
|
||||
|
||||
|
||||
|
||||
... 🥁 🎹 🔌 Lukasz Moroz , Maciej Müller and Tymon Kolubiński
|
||||
|
||||
|
||||
... 🏠 Ariela Bergman "“the house that inhabits you”
|
||||
|
||||
|
||||
... 🫥 mitsitron & 🌀 Stephen Kerr
|
||||
|
||||
|
||||
... 👲🏻 🧑🦽 HOLLOWMIST
|
||||
|
||||
|
||||
... 📱 Dada phone
|
||||
|
||||
|
||||
... 🪠 Archibald “Harry” Tuttle
|
||||
|
||||
|
||||
... and more
|
||||
|
||||
|
||||
'
|
||||
prev: null
|
||||
recurrent: null
|
||||
resources: []
|
||||
slug: klankschool-performances
|
||||
start_datetime: 1729353600
|
||||
tags:
|
||||
- klankschool
|
||||
- live
|
||||
- noise
|
||||
- performance
|
||||
title: 2nd Klankschool Dag&Avond
|
||||
---
|
||||
|
||||
<blockquote><h3>when we have performed many thousands,<br>we shall shake them into confusion, in order that we might not know,<br>and in order not to let any evil person envy us,<br>when he knows that there are so many of our kisses.</h3></blockquote><p>Klankschool is back in catullusweg for more performances, workshops and listening.</p><p></p><h2>6pm: Klankserver longtable discussion</h2><p></p><p>Here at klankschool we have our own server, running open source software to provide <a target="_blank" href="https://calendar.klank.school/">this calendar</a>, <a target="_blank" href="https://funk.klank.school/library">an audio sharing platform</a>, <a target="_blank" href="https://klank.school/">the website</a>, <a target="_blank" href="https://live.klank.school">and more to come</a>.</p><p>This evening we will introduce some of these services, show how to use them, and have a longtable discussion about what it means to have an artist run server, what we plan to do with it, and why we want it.</p><p><a target="_blank" href="https://calendar.klank.school/event/server-introduction">For more info on the discussion, see the event.</a></p><p></p><h2>7pm: Delicious Vegan Dinner</h2><p></p><h2>8pm: Performances</h2><p></p><p>... 🥁 🎹 🔌 Lukasz Moroz , Maciej Müller and Tymon Kolubiński</p><p>... 🏠 Ariela Bergman "“the house that inhabits you”</p><p>... 🫥 mitsitron & 🌀 Stephen Kerr</p><p>... 👲🏻 🧑🦽 HOLLOWMIST</p><p>... 📱 Dada phone</p><p>... 🪠 Archibald “Harry” Tuttle</p><p>... and more</p><p></p>
|
@ -1,35 +0,0 @@
|
||||
---
|
||||
boost: []
|
||||
description: ''
|
||||
end_datetime: 1730415300
|
||||
id: 7
|
||||
image_path: null
|
||||
isAnon: true
|
||||
isMine: false
|
||||
is_visible: true
|
||||
likes: []
|
||||
media: []
|
||||
multidate: false
|
||||
next: extratonal-special-3-sound-is-political
|
||||
online_locations: ''
|
||||
parent: null
|
||||
parentId: null
|
||||
place:
|
||||
address: Catullusweg 11
|
||||
id: 1
|
||||
latitude: 51.8766465
|
||||
longitude: 4.5242688
|
||||
name: Catu
|
||||
plain_description: ''
|
||||
prev: server-introduction
|
||||
has_log: true
|
||||
recurrent: null
|
||||
resources: []
|
||||
slug: lets-un-repair-things-together
|
||||
start_datetime: 1730394000
|
||||
tags: []
|
||||
title: let's (un) repair things together
|
||||
---
|
||||
|
||||
### Logs
|
||||
Repaired an audio amplifier by replacing a switch, a megaphone by cleaning the battery ports, and discovered the fireworks that is blown fuses.
|
@ -1,41 +0,0 @@
|
||||
---
|
||||
boost: []
|
||||
description: <p>Bring your (un)broken devices and sound makers!</p>
|
||||
end_datetime: 1731016800
|
||||
id: 10
|
||||
image_path: null
|
||||
isAnon: false
|
||||
isMine: false
|
||||
is_visible: true
|
||||
likes: []
|
||||
media: []
|
||||
multidate: false
|
||||
next: lets-unrepair-things-together-2
|
||||
online_locations: ''
|
||||
parent:
|
||||
id: 9
|
||||
is_visible: false
|
||||
recurrent:
|
||||
frequency: 1w
|
||||
start_datetime: 1730998800
|
||||
parentId: 9
|
||||
place:
|
||||
address: Catullusweg 11
|
||||
id: 1
|
||||
latitude: 51.8766465
|
||||
longitude: 4.5242688
|
||||
name: Catu
|
||||
plain_description: Bring your (un)broken devices and sound makers!
|
||||
prev: palestine-cinema-days-around-the-world-naila-and-the-uprising
|
||||
recurrent: null
|
||||
resources: []
|
||||
slug: lets-unrepair-things-together-1
|
||||
start_datetime: 1730998800
|
||||
tags:
|
||||
- klankschool
|
||||
- noise
|
||||
- repair
|
||||
title: Let's (un)repair things together!
|
||||
---
|
||||
|
||||
<p>Bring your (un)broken devices and sound makers!</p>
|
@ -1,41 +0,0 @@
|
||||
---
|
||||
boost: []
|
||||
description: <p>Bring your (un)broken devices and sound makers!</p>
|
||||
end_datetime: 1731621600
|
||||
id: 11
|
||||
image_path: null
|
||||
isAnon: false
|
||||
isMine: false
|
||||
is_visible: true
|
||||
likes: []
|
||||
media: []
|
||||
multidate: null
|
||||
next: extratonal-infrastructure-16-qoa-en-primeiro
|
||||
online_locations: []
|
||||
parent:
|
||||
id: 9
|
||||
is_visible: false
|
||||
recurrent:
|
||||
frequency: 1w
|
||||
start_datetime: 1730998800
|
||||
parentId: 9
|
||||
place:
|
||||
address: Catullusweg 11
|
||||
id: 1
|
||||
latitude: 51.8766465
|
||||
longitude: 4.5242688
|
||||
name: Catu
|
||||
plain_description: Bring your (un)broken devices and sound makers!
|
||||
prev: lets-unrepair-things-together-1
|
||||
recurrent: null
|
||||
resources: []
|
||||
slug: lets-unrepair-things-together-2
|
||||
start_datetime: 1731603600
|
||||
tags:
|
||||
- klankschool
|
||||
- noise
|
||||
- repair
|
||||
title: Let's (un)repair things together!
|
||||
---
|
||||
|
||||
<p>Bring your (un)broken devices and sound makers!</p>
|
@ -1,46 +0,0 @@
|
||||
---
|
||||
boost: []
|
||||
description: <p>Bring your (un)broken devices and sound makers!</p>
|
||||
end_datetime: 1732226400
|
||||
id: 12
|
||||
image_path: null
|
||||
isAnon: false
|
||||
isMine: false
|
||||
is_visible: true
|
||||
likes: []
|
||||
media: []
|
||||
multidate: null
|
||||
next: its-sonic-bath-daaaay
|
||||
online_locations: []
|
||||
parent:
|
||||
id: 9
|
||||
is_visible: false
|
||||
recurrent:
|
||||
frequency: 1w
|
||||
start_datetime: 1730998800
|
||||
parentId: 9
|
||||
place:
|
||||
address: Catullusweg 11
|
||||
id: 1
|
||||
latitude: 51.8766465
|
||||
longitude: 4.5242688
|
||||
name: Catu
|
||||
plain_description: Bring your (un)broken devices and sound makers!
|
||||
prev: sounds-of-making-xpub1-presents-protocols-for-collective-performance
|
||||
recurrent: null
|
||||
has_log: true
|
||||
resources: []
|
||||
slug: lets-unrepair-things-together-3
|
||||
start_datetime: 1732208400
|
||||
tags:
|
||||
- klankschool
|
||||
- noise
|
||||
- repair
|
||||
title: Let's (un)repair things together!
|
||||
---
|
||||
|
||||
<p>Bring your (un)broken devices and sound makers!</p>
|
||||
|
||||
### Logs
|
||||
|
||||
Toy keyboards are fun, especially if you apply the card method of infinite drone music.
|
@ -1,48 +0,0 @@
|
||||
---
|
||||
boost: []
|
||||
description: <p>Bring your (un)broken devices and sound makers!</p>
|
||||
end_datetime: 1732831200
|
||||
id: 16
|
||||
image_path: null
|
||||
isAnon: false
|
||||
isMine: false
|
||||
is_visible: true
|
||||
likes: []
|
||||
media: []
|
||||
multidate: null
|
||||
next: extratonal-infrastructure-17-dianaband-vegetable-wife-with-jae-hyung-park-and-lucija-gregov
|
||||
online_locations: []
|
||||
parent:
|
||||
id: 9
|
||||
is_visible: false
|
||||
recurrent:
|
||||
frequency: 1w
|
||||
start_datetime: 1730998800
|
||||
parentId: 9
|
||||
place:
|
||||
address: Catullusweg 11
|
||||
id: 1
|
||||
latitude: 51.8766465
|
||||
longitude: 4.5242688
|
||||
name: Catu
|
||||
plain_description: Bring your (un)broken devices and sound makers!
|
||||
prev: its-sonic-bath-daaaay
|
||||
recurrent: null
|
||||
resources: []
|
||||
has_log: true
|
||||
slug: lets-unrepair-things-together-4
|
||||
start_datetime: 1732813200
|
||||
tags:
|
||||
- klankschool
|
||||
- noise
|
||||
- repair
|
||||
title: Let's (un)repair things together!
|
||||
---
|
||||
|
||||
<p>Bring your (un)broken devices and sound makers!</p>
|
||||
|
||||
### Logs
|
||||
|
||||
There were five of us today
|
||||
|
||||
- The openproject instance now sends email notifications.
|
@ -1,49 +0,0 @@
|
||||
---
|
||||
boost: []
|
||||
description: <p>Bring your (un)broken devices and sound makers!</p>
|
||||
end_datetime: 1732831200
|
||||
id: 16
|
||||
image_path: null
|
||||
isAnon: false
|
||||
isMine: false
|
||||
is_visible: true
|
||||
likes: []
|
||||
media: []
|
||||
multidate: null
|
||||
next: extratonal-infrastructure-17-dianaband-vegetable-wife-with-jae-hyung-park-and-lucija-gregov
|
||||
online_locations: []
|
||||
parent:
|
||||
id: 9
|
||||
is_visible: false
|
||||
recurrent:
|
||||
frequency: 1w
|
||||
start_datetime: 1730998800
|
||||
parentId: 9
|
||||
place:
|
||||
address: Catullusweg 11
|
||||
id: 1
|
||||
latitude: 51.8766465
|
||||
longitude: 4.5242688
|
||||
name: Catu
|
||||
plain_description: Bring your (un)broken devices and sound makers!
|
||||
prev: its-sonic-bath-daaaay
|
||||
recurrent: null
|
||||
resources: []
|
||||
slug: lets-unrepair-things-together-4
|
||||
start_datetime: 1733413200
|
||||
has_log: true
|
||||
tags:
|
||||
- klankschool
|
||||
- noise
|
||||
- repair
|
||||
title: Let's (un)repair things together!
|
||||
---
|
||||
|
||||
<p>Bring your (un)broken devices and sound makers!</p>
|
||||
|
||||
### Logs
|
||||
|
||||
Someone came in with a pokemon camera that could also play audio from a small SD card. However, the camera only had a small speaker, so we added an audio jack!
|
||||
Additionally, we worked on 4 casette players, all of them had issues with the belts. We'll need to order some replacement belts to get them working again. One of the casette players wouldnt turn on, but after a bit of cleaning of the battery holder, this was resolved.
|
||||
|
||||

|
@ -1,41 +0,0 @@
|
||||
---
|
||||
boost: []
|
||||
description: <p>Bring your (un)broken devices and sound makers!</p>
|
||||
end_datetime: 1734040800
|
||||
id: 19
|
||||
image_path: null
|
||||
isAnon: false
|
||||
isMine: false
|
||||
is_visible: true
|
||||
likes: []
|
||||
media: []
|
||||
multidate: null
|
||||
next: lets-unrepair-things-together-7
|
||||
online_locations: []
|
||||
parent:
|
||||
id: 9
|
||||
is_visible: false
|
||||
recurrent:
|
||||
frequency: 1w
|
||||
start_datetime: 1730998800
|
||||
parentId: 9
|
||||
place:
|
||||
address: Catullusweg 11
|
||||
id: 1
|
||||
latitude: 51.8766465
|
||||
longitude: 4.5242688
|
||||
name: Catu
|
||||
plain_description: Bring your (un)broken devices and sound makers!
|
||||
prev: lets-unrepair-things-together-analog-video-edition
|
||||
recurrent: null
|
||||
resources: []
|
||||
slug: lets-unrepair-things-together-6
|
||||
start_datetime: 1734022800
|
||||
tags:
|
||||
- klankschool
|
||||
- noise
|
||||
- repair
|
||||
title: Let's (un)repair things together!
|
||||
---
|
||||
|
||||
<p>Bring your (un)broken devices and sound makers!</p>
|
@ -1,46 +0,0 @@
|
||||
---
|
||||
boost: []
|
||||
description: <p>Bring your (un)broken devices and sound makers!</p>
|
||||
end_datetime: 1734645600
|
||||
id: 20
|
||||
image_path: null
|
||||
isAnon: false
|
||||
isMine: false
|
||||
is_visible: true
|
||||
likes: []
|
||||
media: []
|
||||
multidate: null
|
||||
next: lets-unrepair-things-together-8
|
||||
online_locations: []
|
||||
parent:
|
||||
id: 9
|
||||
is_visible: false
|
||||
recurrent:
|
||||
frequency: 1w
|
||||
start_datetime: 1730998800
|
||||
parentId: 9
|
||||
place:
|
||||
address: Catullusweg 11
|
||||
id: 1
|
||||
latitude: 51.8766465
|
||||
longitude: 4.5242688
|
||||
name: Catu
|
||||
plain_description: Bring your (un)broken devices and sound makers!
|
||||
prev: lets-unrepair-things-together-6
|
||||
recurrent: null
|
||||
resources: []
|
||||
slug: lets-unrepair-things-together-7
|
||||
start_datetime: 1734627600
|
||||
has_log: true
|
||||
tags:
|
||||
- klankschool
|
||||
- noise
|
||||
- repair
|
||||
title: Let's (un)repair things together!
|
||||
---
|
||||
|
||||
<p>Bring your (un)broken devices and sound makers!</p>
|
||||
|
||||
### Logs
|
||||
|
||||
We explored the circuit bending of an analog video mixer, and continued installing Linux on a server from the V2 Winter Market
|
@ -1,41 +0,0 @@
|
||||
---
|
||||
boost: []
|
||||
description: <p>Bring your (un)broken devices and sound makers!</p>
|
||||
end_datetime: 1735250400
|
||||
id: 21
|
||||
image_path: null
|
||||
isAnon: false
|
||||
isMine: false
|
||||
is_visible: true
|
||||
likes: []
|
||||
media: []
|
||||
multidate: null
|
||||
next: unrepair-cafe
|
||||
online_locations: []
|
||||
parent:
|
||||
id: 9
|
||||
is_visible: false
|
||||
recurrent:
|
||||
frequency: 1w
|
||||
start_datetime: 1730998800
|
||||
parentId: 9
|
||||
place:
|
||||
address: Catullusweg 11
|
||||
id: 1
|
||||
latitude: 51.8766465
|
||||
longitude: 4.5242688
|
||||
name: Catu
|
||||
plain_description: Bring your (un)broken devices and sound makers!
|
||||
prev: lets-unrepair-things-together-7
|
||||
recurrent: null
|
||||
resources: []
|
||||
slug: lets-unrepair-things-together-8
|
||||
start_datetime: 1735232400
|
||||
tags:
|
||||
- klankschool
|
||||
- noise
|
||||
- repair
|
||||
title: Let's (un)repair things together!
|
||||
---
|
||||
|
||||
<p>Bring your (un)broken devices and sound makers!</p>
|
@ -1,45 +0,0 @@
|
||||
---
|
||||
boost: []
|
||||
description: <p>Bring your (un)broken devices and sound makers!</p><p>This time, we'll
|
||||
work with video! Analog video mixers, camera's, anything with lights.</p><p>Come
|
||||
by!</p>
|
||||
end_datetime: null
|
||||
id: 18
|
||||
image_path: null
|
||||
isAnon: false
|
||||
isMine: false
|
||||
is_visible: true
|
||||
likes: []
|
||||
media: []
|
||||
multidate: false
|
||||
next: lets-unrepair-things-together-6
|
||||
online_locations: ''
|
||||
parent: null
|
||||
parentId: null
|
||||
place:
|
||||
address: Catullusweg 11
|
||||
id: 1
|
||||
latitude: 51.8766465
|
||||
longitude: 4.5242688
|
||||
name: Catu
|
||||
plain_description: 'Bring your (un)broken devices and sound makers!
|
||||
|
||||
|
||||
This time, we''ll work with video! Analog video mixers, camera''s, anything with
|
||||
|
||||
lights.
|
||||
|
||||
|
||||
Come by!'
|
||||
prev: extratonal-infrastructure-17-dianaband-vegetable-wife-with-jae-hyung-park-and-lucija-gregov
|
||||
recurrent: null
|
||||
resources: []
|
||||
slug: lets-unrepair-things-together-analog-video-edition
|
||||
start_datetime: 1734022800
|
||||
tags:
|
||||
- catu
|
||||
- klankschool
|
||||
title: Let's (un)repair things together! Analog Video edition!
|
||||
---
|
||||
|
||||
<p>Bring your (un)broken devices and sound makers!</p><p>This time, we'll work with video! Analog video mixers, camera's, anything with lights.</p><p>Come by!</p>
|
@ -1,113 +0,0 @@
|
||||
---
|
||||
boost: []
|
||||
description: '<p>In 2023, <strong>Film Lab Palestine</strong> had to postpone their
|
||||
<strong>Palestine Cinema Days</strong> festival. Instead of celebrating cinema in
|
||||
Palestine, they brought Palestine to the world in 86 cities, across 139 venues,
|
||||
spanning 41 countries. November 2nd marks the day the Balfour Declaration was signed,
|
||||
and in an effort to amplify Palestinian voices, we are joining <a target="_blank"
|
||||
href="https://aflamuna.org/calls/palestine-cinema-days-around-the-world-24/"><strong>Palestine
|
||||
Cinema Days Around The World</strong></a> and are screening Naila And The Uprising
|
||||
directed by Julia Bacha.</p><p>Alongside the film screening <a target="_blank"
|
||||
href="https://www.fairtradepalestine.org/"><strong>Fairtrade Palestine</strong></a>
|
||||
will be selling a variety of products from the West Bank, and we will have anti-colonial,
|
||||
liberation and encampment advice zines available via <a target="_blank" href="https://www.rot-shop.com/zine-distro-fundraiser"><strong>rot
|
||||
shop</strong></a> to copy and print your own selection from. There will also be
|
||||
<strong>silkscreen solidarity shirts</strong> from Video for sale. All donations
|
||||
for the zines and shirts will go directly to two families in Gaza, and grassroots
|
||||
mutual aid initiative The Sanabel Team.</p><p><strong>Naila And The Uprising</strong><br>by
|
||||
Julia Bacha</p><p>Documentary, 76 mins.<br>Chronicling the remarkable journey of
|
||||
Naila Ayesh and a fierce community of women at the frontlines, whose stories weave
|
||||
through the most vibrant, nonviolent mobilisation in Palestinian history – the First
|
||||
Intifada in the late 1980s.</p><p>Languages: Arabic, English, Hebrew, French.<br>Subtitles:
|
||||
English.</p>'
|
||||
end_datetime: 1730581200
|
||||
id: 8
|
||||
image_path: null
|
||||
isAnon: true
|
||||
isMine: false
|
||||
is_visible: true
|
||||
likes: []
|
||||
media:
|
||||
- focalpoint:
|
||||
- 0
|
||||
- 0
|
||||
height: 778
|
||||
name: Palestine Cinema Days Around The World - Naila And The Uprising
|
||||
size: 165250
|
||||
url: e79f8e017e8fdb1a603e1ed4d5a4f450.jpg
|
||||
width: 778
|
||||
multidate: false
|
||||
next: lets-unrepair-things-together-1
|
||||
online_locations:
|
||||
- https://varia.zone/en/palestine-cinema-days-naila-and-the-uprising.html
|
||||
parent: null
|
||||
parentId: null
|
||||
place:
|
||||
address: Gouwstraat 3
|
||||
id: 4
|
||||
latitude: null
|
||||
longitude: null
|
||||
name: Varia
|
||||
plain_description: 'In 2023, Film Lab Palestine had to postpone their Palestine Cinema
|
||||
Days
|
||||
|
||||
festival. Instead of celebrating cinema in Palestine, they brought Palestine to
|
||||
|
||||
the world in 86 cities, across 139 venues, spanning 41 countries. November 2nd
|
||||
|
||||
marks the day the Balfour Declaration was signed, and in an effort to amplify
|
||||
|
||||
Palestinian voices, we are joining Palestine Cinema Days Around The World
|
||||
|
||||
[https://aflamuna.org/calls/palestine-cinema-days-around-the-world-24/] and are
|
||||
|
||||
screening Naila And The Uprising directed by Julia Bacha .
|
||||
|
||||
|
||||
Alongside the film screening Fairtrade Palestine
|
||||
|
||||
[https://www.fairtradepalestine.org/] will be selling a variety of products from
|
||||
|
||||
the West Bank, and we will have anti-colonial, liberation and encampment advice
|
||||
|
||||
zines available via rot shop [https://www.rot-shop.com/zine-distro-fundraiser]
|
||||
|
||||
to copy and print your own selection from. There will also be silkscreen
|
||||
|
||||
solidarity shirts from Video for sale. All donations for the zines and shirts
|
||||
|
||||
will go directly to two families in Gaza, and grassroots mutual aid initiative
|
||||
|
||||
The Sanabel Team.
|
||||
|
||||
|
||||
Naila And The Uprising
|
||||
|
||||
by Julia Bacha
|
||||
|
||||
|
||||
Documentary, 76 mins.
|
||||
|
||||
Chronicling the remarkable journey of Naila Ayesh and a fierce community of
|
||||
|
||||
women at the frontlines, whose stories weave through the most vibrant,
|
||||
|
||||
nonviolent mobilisation in Palestinian history – the First Intifada in the late
|
||||
|
||||
1980s.
|
||||
|
||||
|
||||
Languages: Arabic, English, Hebrew, French.
|
||||
|
||||
Subtitles: English.'
|
||||
prev: extratonal-special-3-sound-is-political
|
||||
recurrent: null
|
||||
resources: []
|
||||
slug: palestine-cinema-days-around-the-world-naila-and-the-uprising
|
||||
start_datetime: 1730570400
|
||||
tags:
|
||||
- Palestine Cinema Days
|
||||
title: Palestine Cinema Days Around The World - Naila And The Uprising
|
||||
---
|
||||
|
||||
<p>In 2023, <strong>Film Lab Palestine</strong> had to postpone their <strong>Palestine Cinema Days</strong> festival. Instead of celebrating cinema in Palestine, they brought Palestine to the world in 86 cities, across 139 venues, spanning 41 countries. November 2nd marks the day the Balfour Declaration was signed, and in an effort to amplify Palestinian voices, we are joining <a target="_blank" href="https://aflamuna.org/calls/palestine-cinema-days-around-the-world-24/"><strong>Palestine Cinema Days Around The World</strong></a> and are screening Naila And The Uprising directed by Julia Bacha.</p><p>Alongside the film screening <a target="_blank" href="https://www.fairtradepalestine.org/"><strong>Fairtrade Palestine</strong></a> will be selling a variety of products from the West Bank, and we will have anti-colonial, liberation and encampment advice zines available via <a target="_blank" href="https://www.rot-shop.com/zine-distro-fundraiser"><strong>rot shop</strong></a> to copy and print your own selection from. There will also be <strong>silkscreen solidarity shirts</strong> from Video for sale. All donations for the zines and shirts will go directly to two families in Gaza, and grassroots mutual aid initiative The Sanabel Team.</p><p><strong>Naila And The Uprising</strong><br>by Julia Bacha</p><p>Documentary, 76 mins.<br>Chronicling the remarkable journey of Naila Ayesh and a fierce community of women at the frontlines, whose stories weave through the most vibrant, nonviolent mobilisation in Palestinian history – the First Intifada in the late 1980s.</p><p>Languages: Arabic, English, Hebrew, French.<br>Subtitles: English.</p>
|
@ -1,66 +0,0 @@
|
||||
---
|
||||
boost: []
|
||||
description: <blockquote><p>The Long Table is a format for discussion that uses the
|
||||
setting of a domestic dinner table as a means to generate public conversation. Conceived
|
||||
in 2003 by Lois Weaver in response to the divided nature of conventional panel discussions,
|
||||
the Long Table allows voices to be heard equally, disrupting hierarchical notions
|
||||
of 'expertise'. It was inspired by Maureen Gorris's film <em>Antonia's Line</em>,
|
||||
the central image of which is a dinner table getting longer and longer to accomodate
|
||||
a growing family of outsiders, eccentrics and friends - until finally it has to
|
||||
be moved outside. Since then, the Table has been set at institutions and festivals
|
||||
worldwide, and invited hundreds of people to sit and share their views on myriad
|
||||
topics. The Long Table is an open-source format; you are welcome to use it as a
|
||||
means of generating discussion on any subject you choose.</p><p>--- <a target="_blank"
|
||||
href="https://www.split-britches.com/long-table">https://www.split-britches.com/long-table</a></p></blockquote>
|
||||
end_datetime: 1729357200
|
||||
id: 4
|
||||
image_path: null
|
||||
isAnon: false
|
||||
isMine: false
|
||||
is_visible: true
|
||||
likes: []
|
||||
media:
|
||||
- focalpoint:
|
||||
- 0
|
||||
- 0
|
||||
height: 1063
|
||||
name: 'Server Longtable '
|
||||
size: 159728
|
||||
url: f6c89423d8e4a15114f861ec401a4e41.jpg
|
||||
width: 750
|
||||
multidate: false
|
||||
next: lets-un-repair-things-together
|
||||
online_locations: ''
|
||||
parent: null
|
||||
parentId: null
|
||||
place:
|
||||
address: Catullusweg 11
|
||||
id: 1
|
||||
latitude: 51.8766465
|
||||
longitude: 4.5242688
|
||||
name: Catu
|
||||
plain_description: "> The Long Table is a format for discussion that uses the setting\
|
||||
\ of a domestic\n> dinner table as a means to generate public conversation. Conceived\
|
||||
\ in 2003 by\n> Lois Weaver in response to the divided nature of conventional panel\n\
|
||||
> discussions, the Long Table allows voices to be heard equally, disrupting\n> hierarchical\
|
||||
\ notions of 'expertise'. It was inspired by Maureen Gorris's film\n> Antonia's\
|
||||
\ Line, the central image of which is a dinner table getting longer\n> and longer\
|
||||
\ to accomodate a growing family of outsiders, eccentrics and friends\n> - until\
|
||||
\ finally it has to be moved outside. Since then, the Table has been set\n> at institutions\
|
||||
\ and festivals worldwide, and invited hundreds of people to sit\n> and share their\
|
||||
\ views on myriad topics. The Long Table is an open-source\n> format; you are welcome\
|
||||
\ to use it as a means of generating discussion on any\n> subject you choose.\n\
|
||||
> \n> --- https://www.split-britches.com/long-table\n> [https://www.split-britches.com/long-table]"
|
||||
prev: klankschool-performances
|
||||
recurrent: null
|
||||
resources: []
|
||||
slug: server-introduction
|
||||
start_datetime: 1729353600
|
||||
tags:
|
||||
- klankschool
|
||||
- longtable
|
||||
- server
|
||||
title: 'Server Longtable '
|
||||
---
|
||||
|
||||
<blockquote><p>The Long Table is a format for discussion that uses the setting of a domestic dinner table as a means to generate public conversation. Conceived in 2003 by Lois Weaver in response to the divided nature of conventional panel discussions, the Long Table allows voices to be heard equally, disrupting hierarchical notions of 'expertise'. It was inspired by Maureen Gorris's film <em>Antonia's Line</em>, the central image of which is a dinner table getting longer and longer to accomodate a growing family of outsiders, eccentrics and friends - until finally it has to be moved outside. Since then, the Table has been set at institutions and festivals worldwide, and invited hundreds of people to sit and share their views on myriad topics. The Long Table is an open-source format; you are welcome to use it as a means of generating discussion on any subject you choose.</p><p>--- <a target="_blank" href="https://www.split-britches.com/long-table">https://www.split-britches.com/long-table</a></p></blockquote>
|
@ -1,115 +0,0 @@
|
||||
---
|
||||
boost: []
|
||||
description: '<p>XPUB1 (first-year students of the Piet Zwart Institute’s Experimental
|
||||
Publishing MA) invite you to participate in their first collective public appearance:
|
||||
a moment of making things (public). This event is free!</p><p>They write: “Through
|
||||
a series of experiments at Radio WORM, we’ve been asking ourselves: What is radio?
|
||||
What does it mean to “go live” and perform together? Imagine the thrill—and the
|
||||
nerves—of creating something live, using your voice, thoughts, and experimental
|
||||
sounds that use little to no conventional means of expression.</p><p>“We invite
|
||||
you into a communal space where such moments can be lived together, stretching the
|
||||
boundaries of connections through DIY sounds and self-made protocols. These protocols
|
||||
aren’t just guidelines telling us what to do; they’re creative proposals that open
|
||||
up space for improvisation and re-invention. We see them as tools for collaborative
|
||||
engagement, empowering all of us to create in the moment and transform live sound
|
||||
together.”</p><p>So jump in for recording, transforming and performing sound with
|
||||
XPUB1! This event is for anyone who appreciates the raw, transformative power of
|
||||
sound. Join in shaping a live moment of collective expression, where live sound
|
||||
performance is felt, shared, and re-imagined together.</p><p>The results of these
|
||||
collective audio experiments will be recorded onsite, and possibly used as materials
|
||||
for future episodes of the collective’s weekly radio show, that you can hear every
|
||||
Monday from 10am-12pm until the end of this academic year.</p><p>This event is made
|
||||
possible with the financial support of the Network for Archives of Design and Digital
|
||||
Culture</p>'
|
||||
end_datetime: 1732129200
|
||||
id: 13
|
||||
image_path: null
|
||||
isAnon: false
|
||||
isMine: false
|
||||
is_visible: true
|
||||
likes: []
|
||||
media:
|
||||
- focalpoint:
|
||||
- 0
|
||||
- 0
|
||||
height: 560
|
||||
name: 'Sounds of Making: XPUB1 presents Protocols for Collective Performance'
|
||||
size: 194599
|
||||
url: c52eafad6986d73becef0e37a2462e7c.jpg
|
||||
width: 1000
|
||||
multidate: false
|
||||
next: lets-unrepair-things-together-3
|
||||
online_locations: ''
|
||||
parent: null
|
||||
parentId: null
|
||||
place:
|
||||
address: Boomgaardsstraat 71, 3012 XA Rotterdam
|
||||
id: 5
|
||||
latitude: null
|
||||
longitude: null
|
||||
name: Worm
|
||||
plain_description: 'XPUB1 (first-year students of the Piet Zwart Institute’s Experimental
|
||||
Publishing
|
||||
|
||||
MA) invite you to participate in their first collective public appearance: a
|
||||
|
||||
moment of making things (public). This event is free!
|
||||
|
||||
|
||||
They write: “Through a series of experiments at Radio WORM, we’ve been asking
|
||||
|
||||
ourselves: What is radio? What does it mean to “go live” and perform together?
|
||||
|
||||
Imagine the thrill—and the nerves—of creating something live, using your voice,
|
||||
|
||||
thoughts, and experimental sounds that use little to no conventional means of
|
||||
|
||||
expression.
|
||||
|
||||
|
||||
“We invite you into a communal space where such moments can be lived together,
|
||||
|
||||
stretching the boundaries of connections through DIY sounds and self-made
|
||||
|
||||
protocols. These protocols aren’t just guidelines telling us what to do; they’re
|
||||
|
||||
creative proposals that open up space for improvisation and re-invention. We see
|
||||
|
||||
them as tools for collaborative engagement, empowering all of us to create in
|
||||
|
||||
the moment and transform live sound together.”
|
||||
|
||||
|
||||
So jump in for recording, transforming and performing sound with XPUB1! This
|
||||
|
||||
event is for anyone who appreciates the raw, transformative power of sound. Join
|
||||
|
||||
in shaping a live moment of collective expression, where live sound performance
|
||||
|
||||
is felt, shared, and re-imagined together.
|
||||
|
||||
|
||||
The results of these collective audio experiments will be recorded onsite, and
|
||||
|
||||
possibly used as materials for future episodes of the collective’s weekly radio
|
||||
|
||||
show, that you can hear every Monday from 10am-12pm until the end of this
|
||||
|
||||
academic year.
|
||||
|
||||
|
||||
This event is made possible with the financial support of the Network for
|
||||
|
||||
Archives of Design and Digital Culture'
|
||||
prev: extratonal-infrastructure-16-qoa-en-primeiro
|
||||
recurrent: null
|
||||
resources: []
|
||||
slug: sounds-of-making-xpub1-presents-protocols-for-collective-performance
|
||||
start_datetime: 1732111200
|
||||
tags:
|
||||
- radio
|
||||
- worm
|
||||
title: 'Sounds of Making: XPUB1 presents Protocols for Collective Performance'
|
||||
---
|
||||
|
||||
<p>XPUB1 (first-year students of the Piet Zwart Institute’s Experimental Publishing MA) invite you to participate in their first collective public appearance: a moment of making things (public). This event is free!</p><p>They write: “Through a series of experiments at Radio WORM, we’ve been asking ourselves: What is radio? What does it mean to “go live” and perform together? Imagine the thrill—and the nerves—of creating something live, using your voice, thoughts, and experimental sounds that use little to no conventional means of expression.</p><p>“We invite you into a communal space where such moments can be lived together, stretching the boundaries of connections through DIY sounds and self-made protocols. These protocols aren’t just guidelines telling us what to do; they’re creative proposals that open up space for improvisation and re-invention. We see them as tools for collaborative engagement, empowering all of us to create in the moment and transform live sound together.”</p><p>So jump in for recording, transforming and performing sound with XPUB1! This event is for anyone who appreciates the raw, transformative power of sound. Join in shaping a live moment of collective expression, where live sound performance is felt, shared, and re-imagined together.</p><p>The results of these collective audio experiments will be recorded onsite, and possibly used as materials for future episodes of the collective’s weekly radio show, that you can hear every Monday from 10am-12pm until the end of this academic year.</p><p>This event is made possible with the financial support of the Network for Archives of Design and Digital Culture</p>
|
@ -1,49 +0,0 @@
|
||||
---
|
||||
boost: []
|
||||
description: <p>Come along to a low-key hangout where we sometimes repair stuff</p><p>See
|
||||
<a target="_blank" href="https://unrepair.klank.school/">unrepair.klank.school</a>
|
||||
for more details</p>
|
||||
end_datetime: 1736456400
|
||||
id: 23
|
||||
image_path: null
|
||||
isAnon: false
|
||||
isMine: false
|
||||
is_visible: true
|
||||
likes: []
|
||||
media:
|
||||
- focalpoint:
|
||||
- 0
|
||||
- 0
|
||||
height: 789
|
||||
name: (Un)Repair Cafe
|
||||
size: 284414
|
||||
url: 58b176cdbbf8f949537160d701393ba4.jpg
|
||||
width: 1200
|
||||
multidate: false
|
||||
next: unrepair-cafe-server-tour
|
||||
online_locations: ''
|
||||
parent: null
|
||||
parentId: null
|
||||
place:
|
||||
address: Catullusweg 11
|
||||
id: 1
|
||||
latitude: 51.8766465
|
||||
longitude: 4.5242688
|
||||
name: Catu
|
||||
plain_description: 'Come along to a low-key hangout where we sometimes repair stuff
|
||||
|
||||
|
||||
See unrepair.klank.school [https://unrepair.klank.school/] for more details'
|
||||
prev: unrepair-cafe
|
||||
recurrent: null
|
||||
resources: []
|
||||
slug: unrepair-cafe-1
|
||||
start_datetime: 1736442000
|
||||
tags:
|
||||
- klankschool
|
||||
- noise
|
||||
- repair
|
||||
title: (Un)Repair Cafe
|
||||
---
|
||||
|
||||
<p>Come along to a low-key hangout where we sometimes repair stuff</p><p>See <a target="_blank" href="https://unrepair.klank.school/">unrepair.klank.school</a> for more details</p>
|
@ -1,49 +0,0 @@
|
||||
---
|
||||
boost: []
|
||||
description: <p>Come along to a low-key hangout where we sometimes repair stuff</p><p>See
|
||||
<a target="_blank" href="https://unrepair.klank.school/">unrepair.klank.school</a>
|
||||
for more details</p>
|
||||
end_datetime: 1737666000
|
||||
id: 24
|
||||
image_path: null
|
||||
isAnon: false
|
||||
isMine: false
|
||||
is_visible: true
|
||||
likes: []
|
||||
media:
|
||||
- focalpoint:
|
||||
- 0
|
||||
- 0
|
||||
height: 789
|
||||
name: (Un)Repair Cafe
|
||||
size: 284414
|
||||
url: 4e3461a8b3685c53145c2e2c7d6a056f.jpg
|
||||
width: 1200
|
||||
multidate: false
|
||||
next: null
|
||||
online_locations: ''
|
||||
parent: null
|
||||
parentId: null
|
||||
place:
|
||||
address: Catullusweg 11
|
||||
id: 1
|
||||
latitude: 51.8766465
|
||||
longitude: 4.5242688
|
||||
name: Catu
|
||||
plain_description: 'Come along to a low-key hangout where we sometimes repair stuff
|
||||
|
||||
|
||||
See unrepair.klank.school [https://unrepair.klank.school/] for more details'
|
||||
prev: unrepair-cafe-server-tour
|
||||
recurrent: null
|
||||
resources: []
|
||||
slug: unrepair-cafe-2
|
||||
start_datetime: 1737651600
|
||||
tags:
|
||||
- klankschool
|
||||
- noise
|
||||
- repair
|
||||
title: (Un)Repair Cafe
|
||||
---
|
||||
|
||||
<p>Come along to a low-key hangout where we sometimes repair stuff</p><p>See <a target="_blank" href="https://unrepair.klank.school/">unrepair.klank.school</a> for more details</p>
|
@ -1,48 +0,0 @@
|
||||
---
|
||||
boost: []
|
||||
description: <p>Join us at Catu on January 16th for a tour of the klankschool server.</p><p>Threre
|
||||
will also be some games on the theme of software.</p>
|
||||
end_datetime: 1737061200
|
||||
id: 25
|
||||
image_path: null
|
||||
isAnon: false
|
||||
isMine: false
|
||||
is_visible: true
|
||||
likes: []
|
||||
media:
|
||||
- focalpoint:
|
||||
- 0
|
||||
- 0
|
||||
height: 1600
|
||||
name: '(Un)repair cafe: Server Tour +'
|
||||
size: 480128
|
||||
url: 2998f35d7ebacd633144798ac4b6af74.jpg
|
||||
width: 1200
|
||||
multidate: false
|
||||
next: unrepair-cafe-2
|
||||
online_locations: ''
|
||||
parent: null
|
||||
parentId: null
|
||||
place:
|
||||
address: Catullusweg 11
|
||||
id: 1
|
||||
latitude: 51.8766465
|
||||
longitude: 4.5242688
|
||||
name: Catu
|
||||
plain_description: 'Join us at Catu on January 16th for a tour of the klankschool
|
||||
server.
|
||||
|
||||
|
||||
Threre will also be some games on the theme of software.'
|
||||
prev: unrepair-cafe-1
|
||||
recurrent: null
|
||||
resources: []
|
||||
slug: unrepair-cafe-server-tour
|
||||
start_datetime: 1737046800
|
||||
tags:
|
||||
- klankschool
|
||||
- server
|
||||
title: '(Un)repair cafe: Server Tour + more'
|
||||
---
|
||||
|
||||
<p>Join us at Catu on January 16th for a tour of the klankschool server.</p><p>Threre will also be some games on the theme of software.</p>
|
@ -1,49 +0,0 @@
|
||||
---
|
||||
boost: []
|
||||
description: <p>Come along to a low-key hangout where we sometimes repair stuff</p><p>See
|
||||
<a target="_blank" href="https://unrepair.klank.school">unrepair.klank.school</a>
|
||||
for more details</p>
|
||||
end_datetime: 1735851600
|
||||
id: 22
|
||||
image_path: null
|
||||
isAnon: false
|
||||
isMine: false
|
||||
is_visible: true
|
||||
likes: []
|
||||
media:
|
||||
- focalpoint:
|
||||
- 0
|
||||
- 0
|
||||
height: 789
|
||||
name: (Un)Repair Cafe
|
||||
size: 284364
|
||||
url: 762aca6eda6c23508e3951414fe65167.jpg
|
||||
width: 1200
|
||||
multidate: false
|
||||
next: unrepair-cafe-1
|
||||
online_locations: ''
|
||||
parent: null
|
||||
parentId: null
|
||||
place:
|
||||
address: Catullusweg 11
|
||||
id: 1
|
||||
latitude: 51.8766465
|
||||
longitude: 4.5242688
|
||||
name: Catu
|
||||
plain_description: 'Come along to a low-key hangout where we sometimes repair stuff
|
||||
|
||||
|
||||
See unrepair.klank.school [https://unrepair.klank.school] for more details'
|
||||
prev: lets-unrepair-things-together-8
|
||||
recurrent: null
|
||||
resources: []
|
||||
slug: unrepair-cafe
|
||||
start_datetime: 1735837200
|
||||
tags:
|
||||
- klankschool
|
||||
- noise
|
||||
- repair
|
||||
title: (Un)Repair Cafe
|
||||
---
|
||||
|
||||
<p>Come along to a low-key hangout where we sometimes repair stuff</p><p>See <a target="_blank" href="https://unrepair.klank.school">unrepair.klank.school</a> for more details</p>
|
@ -1,122 +0,0 @@
|
||||
---
|
||||
boost:
|
||||
- https://gts.varia.zone/users/varia
|
||||
description: '<p>Join us at <strong>Varia</strong> for <em>Water of Love</em>, the
|
||||
second phase of Valentina Vella’s long-term project <em>School of Love and Chaos
|
||||
(</em>after <em>Bad at Love</em>, a performance with Luke Deane that took place
|
||||
in March 2024 at Paviljoen aan het water).</p><p><em>School of Love and Chaos </em>weaves
|
||||
together themes of love and ecological threats through autofictional storytelling,
|
||||
science fiction, poetry, and performance, using cities closely linked to water—Rotterdam,
|
||||
New Orleans, Venice, and Rome—as its narrative landscapes. The threat of annihilation
|
||||
(the fear of losing physical and/or emotional control) is its narrative engine.
|
||||
At the core of this project lies a question: is there a significant correspondence
|
||||
between the material infrastructures we live surrounded by, and our intimate lives?
|
||||
How do the ways we, in the West, tend to handle physical survival—particularly in
|
||||
the face of ecological threats like flooding that are exacerbated by climate change—relate
|
||||
to how we manage romantic relationships, friendships, and community bonds? How does
|
||||
that feel in our bodies and in the body of these imaginary and autofictional characters?</p><p><em>Water
|
||||
of Love</em> focuses more specifically on the many ways the Netherlands has tried
|
||||
to keep nature at bay. What does that do to our love life? Does the ocean have any
|
||||
opinions about the Dutch? Why does the Balgstuw Ramspol look like a gigantic condom?</p><p>There
|
||||
will be readings, there will be music, there will be completely improvised moments
|
||||
and there will be time to ask and answer questions!</p><p>Supported by <a target="_blank"
|
||||
href="http://www.cbkrotterdam.nl/"><u>CBK Rotterdam</u></a> (Centre for Visual Arts
|
||||
Rotterdam)</p><p>with Valentina Vella, mitsitron, Stephen Kerr and other Klankschool
|
||||
folks</p><p>with the kind support of Amy Gowen (HumDrumPress) as wrangler</p>'
|
||||
end_datetime: 1737149400
|
||||
id: 26
|
||||
image_path: null
|
||||
isAnon: false
|
||||
isMine: false
|
||||
is_visible: true
|
||||
likes: []
|
||||
media:
|
||||
- focalpoint:
|
||||
- 0
|
||||
- 0
|
||||
height: 604
|
||||
name: Water of Love
|
||||
size: 210847
|
||||
url: d1855a7804a57e27b82723ba9cec94b4.jpg
|
||||
width: 750
|
||||
multidate: false
|
||||
next: unrepair-cafe-2
|
||||
online_locations: ''
|
||||
parent: null
|
||||
parentId: null
|
||||
place:
|
||||
address: Gouwstraat 3
|
||||
id: 4
|
||||
latitude: null
|
||||
longitude: null
|
||||
name: Varia
|
||||
plain_description: 'Join us at Varia for Water of Love, the second phase of Valentina
|
||||
Vella’s
|
||||
|
||||
long-term project School of Love and Chaos (after Bad at Love, a performance
|
||||
|
||||
with Luke Deane that took place in March 2024 at Paviljoen aan het water).
|
||||
|
||||
|
||||
School of Love and Chaos weaves together themes of love and ecological threats
|
||||
|
||||
through autofictional storytelling, science fiction, poetry, and performance,
|
||||
|
||||
using cities closely linked to water—Rotterdam, New Orleans, Venice, and Rome—as
|
||||
|
||||
its narrative landscapes. The threat of annihilation (the fear of losing
|
||||
|
||||
physical and/or emotional control) is its narrative engine. At the core of this
|
||||
|
||||
project lies a question: is there a significant correspondence between the
|
||||
|
||||
material infrastructures we live surrounded by, and our intimate lives? How do
|
||||
|
||||
the ways we, in the West, tend to handle physical survival—particularly in the
|
||||
|
||||
face of ecological threats like flooding that are exacerbated by climate
|
||||
|
||||
change—relate to how we manage romantic relationships, friendships, and
|
||||
|
||||
community bonds? How does that feel in our bodies and in the body of these
|
||||
|
||||
imaginary and autofictional characters?
|
||||
|
||||
|
||||
Water of Love focuses more specifically on the many ways the Netherlands has
|
||||
|
||||
tried to keep nature at bay. What does that do to our love life? Does the ocean
|
||||
|
||||
have any opinions about the Dutch? Why does the Balgstuw Ramspol look like a
|
||||
|
||||
gigantic condom?
|
||||
|
||||
|
||||
There will be readings, there will be music, there will be completely improvised
|
||||
|
||||
moments and there will be time to ask and answer questions!
|
||||
|
||||
|
||||
Supported by CBK Rotterdam [http://www.cbkrotterdam.nl/] (Centre for Visual Arts
|
||||
|
||||
Rotterdam)
|
||||
|
||||
|
||||
with Valentina Vella, mitsitron, Stephen Kerr and other Klankschool folks
|
||||
|
||||
|
||||
with the kind support of Amy Gowen (HumDrumPress) as wrangler'
|
||||
prev: unrepair-cafe-server-tour
|
||||
recurrent: null
|
||||
resources: []
|
||||
slug: water-of-love
|
||||
start_datetime: 1737138600
|
||||
tags:
|
||||
- performance
|
||||
- sound
|
||||
- varia
|
||||
- water
|
||||
title: Water of Love
|
||||
---
|
||||
|
||||
<p>Join us at <strong>Varia</strong> for <em>Water of Love</em>, the second phase of Valentina Vella’s long-term project <em>School of Love and Chaos (</em>after <em>Bad at Love</em>, a performance with Luke Deane that took place in March 2024 at Paviljoen aan het water).</p><p><em>School of Love and Chaos </em>weaves together themes of love and ecological threats through autofictional storytelling, science fiction, poetry, and performance, using cities closely linked to water—Rotterdam, New Orleans, Venice, and Rome—as its narrative landscapes. The threat of annihilation (the fear of losing physical and/or emotional control) is its narrative engine. At the core of this project lies a question: is there a significant correspondence between the material infrastructures we live surrounded by, and our intimate lives? How do the ways we, in the West, tend to handle physical survival—particularly in the face of ecological threats like flooding that are exacerbated by climate change—relate to how we manage romantic relationships, friendships, and community bonds? How does that feel in our bodies and in the body of these imaginary and autofictional characters?</p><p><em>Water of Love</em> focuses more specifically on the many ways the Netherlands has tried to keep nature at bay. What does that do to our love life? Does the ocean have any opinions about the Dutch? Why does the Balgstuw Ramspol look like a gigantic condom?</p><p>There will be readings, there will be music, there will be completely improvised moments and there will be time to ask and answer questions!</p><p>Supported by <a target="_blank" href="http://www.cbkrotterdam.nl/"><u>CBK Rotterdam</u></a> (Centre for Visual Arts Rotterdam)</p><p>with Valentina Vella, mitsitron, Stephen Kerr and other Klankschool folks</p><p>with the kind support of Amy Gowen (HumDrumPress) as wrangler</p>
|
@ -112,7 +112,7 @@
|
||||
</script>
|
||||
{% block title %}
|
||||
{%- if page['title'] -%}
|
||||
<title>{{ page['title'] }}</title>
|
||||
<title>{{ page['title'] }} {{documents['meta']['version']}}</title>
|
||||
{%- else -%}
|
||||
<title>I dont have a title</title>
|
||||
{%- endif -%}
|
||||
|
@ -15,7 +15,7 @@
|
||||
<header>
|
||||
<h2>A field guide to</h2>
|
||||
<h1>Salvaging Sound Devices</h1>
|
||||
<p>Version {{page['version']}}</p>
|
||||
<p>Version {{documents['meta']['version']}}</p>
|
||||
<p>{{documents["meta"]["now"]}}</p>
|
||||
</header>
|
||||
</section>
|
||||
|
Reference in New Issue
Block a user