Compare commits
48 Commits
Author | SHA1 | Date | |
---|---|---|---|
ebccea5984 | |||
be5ec73c8b | |||
128a33a7e3 | |||
4996d0faa9 | |||
1e942fed10 | |||
1270fffba9 | |||
fdb649a842 | |||
8ab74a15e2 | |||
a861bfaf88 | |||
06cb291c9b | |||
bd25614fcb | |||
8258bb97ef | |||
26c50d60b5 | |||
29c178031e | |||
6b074946f7 | |||
88444f13c7 | |||
24e7a1f9f4 | |||
628252f010 | |||
115e18ebba | |||
8a2d916127 | |||
167bf8bd48 | |||
b69717f4d2 | |||
6f7dc06d13 | |||
3246d01f69 | |||
c0fb6290ae | |||
3fce9e0193 | |||
5b20f1b549 | |||
6f966158c3 | |||
2509f435f1 | |||
3cdb01897e | |||
6e634a56bd | |||
501ad33abc | |||
4932e07b28 | |||
01f9cc382e | |||
bbd494ab50 | |||
665b625152 | |||
a154b883eb | |||
a273f6fa5f | |||
cf5e26ac3c | |||
7535649f56 | |||
4c0af48a68 | |||
f8ed10db8f | |||
eaeffbcbcb | |||
ad7a3990d2 | |||
57f139dea0 | |||
7800b3c074 | |||
085923b640 | |||
f4eb64d2fb |
6
.gitmodules
vendored
6
.gitmodules
vendored
@ -1,6 +0,0 @@
|
|||||||
[submodule "plugins-custom"]
|
|
||||||
path = plugins-custom
|
|
||||||
url = https://git.vvvvvvaria.org/varia/plugins-custom
|
|
||||||
[submodule "pelican-plugins"]
|
|
||||||
path = pelican-plugins
|
|
||||||
url = https://github.com/getpelican/pelican-plugins
|
|
0
.gitignore → 3colplus/.gitignore
vendored
0
.gitignore → 3colplus/.gitignore
vendored
6
3colplus/.gitmodules
vendored
Normal file
6
3colplus/.gitmodules
vendored
Normal file
@ -0,0 +1,6 @@
|
|||||||
|
[submodule "plugins-custom"]
|
||||||
|
path = plugins-custom
|
||||||
|
url = https://git.vvvvvvaria.org/varia/plugins-custom
|
||||||
|
[submodule "pelican-plugins"]
|
||||||
|
path = pelican-plugins
|
||||||
|
url = https://github.com/getpelican/pelican-plugins
|
@ -96,8 +96,10 @@ stopserver:
|
|||||||
$(BASEDIR)/develop_server.sh stop
|
$(BASEDIR)/develop_server.sh stop
|
||||||
@echo 'Stopped Pelican and SimpleHTTPServer processes running in background.'
|
@echo 'Stopped Pelican and SimpleHTTPServer processes running in background.'
|
||||||
|
|
||||||
|
# Note: sorry ...
|
||||||
|
MAGIC = $$(basename $$PWD)
|
||||||
publish:
|
publish:
|
||||||
$(PELICAN) $(INPUTDIR) -o /var/www/html/ -s $(PUBLISHCONF) $(PELICANOPTS)
|
$(PELICAN) $(INPUTDIR) -o "/var/www/manymanymany-varia-websites/$(MAGIC)" -s $(PUBLISHCONF) $(PELICANOPTS)
|
||||||
|
|
||||||
ssh_upload: publish
|
ssh_upload: publish
|
||||||
scp -P $(SSH_PORT) -r $(OUTPUTDIR)/* $(SSH_USER)@$(SSH_HOST):$(SSH_TARGET_DIR)
|
scp -P $(SSH_PORT) -r $(OUTPUTDIR)/* $(SSH_USER)@$(SSH_HOST):$(SSH_TARGET_DIR)
|
82
3colplus/README.md
Normal file
82
3colplus/README.md
Normal file
@ -0,0 +1,82 @@
|
|||||||
|
# Varia website
|
||||||
|
|
||||||
|
> https://varia.zone/
|
||||||
|
|
||||||
|
## Pelican
|
||||||
|
|
||||||
|
The Varia website is made with Pelican, a static site generator written in
|
||||||
|
Python. This means that the website is first generated on a computer (using
|
||||||
|
Python, Jinja and Pelican) into a set of html pages, files and images. This set
|
||||||
|
of documents is then uploaded to the server.
|
||||||
|
|
||||||
|
One of the things that Pelican uses is *plugins*. They are used to add extra
|
||||||
|
features to the generation process of the website.
|
||||||
|
|
||||||
|
In this repository there is a folder called 'plugins' and another one called
|
||||||
|
'plugins-custom'.
|
||||||
|
|
||||||
|
The first one, 'plugins', is linked to the offical collection of plugins from
|
||||||
|
the Pelican project '[pelican-plugins](https://github.com/getpelican/pelican-plugins/)'.
|
||||||
|
|
||||||
|
The other one, 'plugins-custom', consists of plugins that we wrote ourself.
|
||||||
|
|
||||||
|
## Clone
|
||||||
|
|
||||||
|
To clone both the varia.website and pelican-plugins repository, add the --recurse-submodules option in your git clone command:
|
||||||
|
|
||||||
|
`$ git clone https://git.vvvvvvaria.org/varia/varia.website.git --recurse-submodules`
|
||||||
|
|
||||||
|
If you forgot to clone with the submodile argument, you can still do it with the following command:
|
||||||
|
|
||||||
|
`$ git submodule update --init --recursive`
|
||||||
|
|
||||||
|
## Install
|
||||||
|
|
||||||
|
$ pip3 install -r requirements.txt
|
||||||
|
|
||||||
|
## Start
|
||||||
|
|
||||||
|
You can make use of the makefile, for example by running the following command to start a python server:
|
||||||
|
|
||||||
|
`$ make devserver`
|
||||||
|
|
||||||
|
Visit the website at localhost:8000
|
||||||
|
|
||||||
|
To see what is in the makefile, try:
|
||||||
|
|
||||||
|
`$ make help`
|
||||||
|
|
||||||
|
## Update submodules
|
||||||
|
|
||||||
|
We are currently using two submodules:
|
||||||
|
|
||||||
|
* pelican-plugins ([https://github.com/getpelican/pelican-plugins](https://github.com/getpelican/pelican-plugins))
|
||||||
|
* plugins-custom ([https://git.vvvvvvaria.org/varia/plugins-custom](https://git.vvvvvvaria.org/varia/plugins-custom))
|
||||||
|
|
||||||
|
To update these submodules within your (already) cloned repository, first init the submodule, and then update it:
|
||||||
|
|
||||||
|
`cd /path/to/submodule`
|
||||||
|
|
||||||
|
`git submodule init`
|
||||||
|
|
||||||
|
`git submodule update`
|
||||||
|
|
||||||
|
## Posting Content
|
||||||
|
|
||||||
|
We're using Pelican to generate a static website. The main way to add content
|
||||||
|
to the website is by making 'posts' in the folder `content`. This can be done
|
||||||
|
either locally or via the gitlab interface by creating a new file. Make sure
|
||||||
|
that each article contains at least the following at the top of the document:
|
||||||
|
|
||||||
|
Title: een nieuw initiatief
|
||||||
|
Date: 2017-07-07 18:32
|
||||||
|
Category: news
|
||||||
|
Tags: event, workshop
|
||||||
|
slug: the-name-of-the-html-page
|
||||||
|
lang: nl OR en
|
||||||
|
|
||||||
|
Articles are written in a markup language called markdown.
|
||||||
|
|
||||||
|
[Here](https://daringfireball.net/projects/markdown/syntax) is an overview of the syntax.
|
||||||
|
|
||||||
|
You can also use the online editor in gitlab to help you.
|
@ -5,7 +5,7 @@ slug: 21-Crystals-War
|
|||||||
lang: nl
|
lang: nl
|
||||||
Event_start: 2019-08-24 20:30
|
Event_start: 2019-08-24 20:30
|
||||||
event_duration: 3h
|
event_duration: 3h
|
||||||
featured_image: /images/Crystals_goes_to_war_poster.jpeg
|
featured_image: images/Crystals_goes_to_war_poster.jpeg
|
||||||
tags: crystals, war, 21st century
|
tags: crystals, war, 21st century
|
||||||
|
|
||||||
Century 21 Calling is terug! Wederom tonen we de industriële archieffilms, bedrijfsinformercials, tv reportages en historische documentaires die de verbeelding van morgen hebben gevormd en houden deze tegen het licht van vandaag.
|
Century 21 Calling is terug! Wederom tonen we de industriële archieffilms, bedrijfsinformercials, tv reportages en historische documentaires die de verbeelding van morgen hebben gevormd en houden deze tegen het licht van vandaag.
|
@ -5,7 +5,7 @@ slug: 21-Camp-Century
|
|||||||
lang: en
|
lang: en
|
||||||
Event_start: 2019-11-09 20:30
|
Event_start: 2019-11-09 20:30
|
||||||
event_duration: 3h
|
event_duration: 3h
|
||||||
featured_image: /images/Camp%20Century.jpeg
|
featured_image: images/Camp%20Century.jpeg
|
||||||
tags: camp, century, 21, calling
|
tags: camp, century, 21, calling
|
||||||
|
|
||||||
With Donald Trump's eagerness to buy Greenland, a new spotlight have been put on this island. However, it is not something new for Greenland to be in the centre of international geopolitics. With the melting of the ice sheets, new trade routes opening and a huge amount of mineral, oil and gas deposits, a new rush for the artic has started.
|
With Donald Trump's eagerness to buy Greenland, a new spotlight have been put on this island. However, it is not something new for Greenland to be in the centre of international geopolitics. With the melting of the ice sheets, new trade routes opening and a huge amount of mineral, oil and gas deposits, a new rush for the artic has started.
|
@ -5,7 +5,7 @@ slug: 21-Camp-Century
|
|||||||
lang: nl
|
lang: nl
|
||||||
Event_start: 2019-11-09 20:30
|
Event_start: 2019-11-09 20:30
|
||||||
event_duration: 3h
|
event_duration: 3h
|
||||||
featured_image: /images/Camp%20Century.jpeg
|
featured_image: images/Camp%20Century.jpeg
|
||||||
tags: camp, century, 21, calling
|
tags: camp, century, 21, calling
|
||||||
|
|
||||||
Mede dankzij de gretigheid waarmee Donald Trump Groenland wou kopen, staat dit eiland opnieuw in de schijnwerpers. Het is echter niets nieuws voor Groenland om onder de aandacht van de internationale geopolitiek te komen. Met het smelten van de ijskappen, het openen van nieuwe handelsroutes en een enorme hoeveelheid minerale, olie- en gasafzettingen, is een nieuwe stormloop op het poolgebied een feit.
|
Mede dankzij de gretigheid waarmee Donald Trump Groenland wou kopen, staat dit eiland opnieuw in de schijnwerpers. Het is echter niets nieuws voor Groenland om onder de aandacht van de internationale geopolitiek te komen. Met het smelten van de ijskappen, het openen van nieuwe handelsroutes en een enorme hoeveelheid minerale, olie- en gasafzettingen, is een nieuwe stormloop op het poolgebied een feit.
|
@ -5,7 +5,7 @@ slug: 21-Crystals-War
|
|||||||
lang: en
|
lang: en
|
||||||
Event_start: 2019-08-24 20:30
|
Event_start: 2019-08-24 20:30
|
||||||
event_duration: 3h
|
event_duration: 3h
|
||||||
featured_image: /images/Crystals_goes_to_war_poster.jpeg
|
featured_image: images/Crystals_goes_to_war_poster.jpeg
|
||||||
tags: crystals, war, 21st century
|
tags: crystals, war, 21st century
|
||||||
|
|
||||||
|
|
@ -5,7 +5,7 @@ slug: CLM-and-Violenza
|
|||||||
lang: en
|
lang: en
|
||||||
Event_start: 2018-04-17 20:30
|
Event_start: 2018-04-17 20:30
|
||||||
event_duration: 3h
|
event_duration: 3h
|
||||||
featured_image: /images/CLM2.jpg
|
featured_image: images/CLM2.jpg
|
||||||
|
|
||||||
Varia presents two concerts by three incredible musicians from Italy.
|
Varia presents two concerts by three incredible musicians from Italy.
|
||||||
|
|
@ -5,7 +5,7 @@ slug: CLM-and-Violenza
|
|||||||
lang: nl
|
lang: nl
|
||||||
Event_start: 2018-04-17 20:30
|
Event_start: 2018-04-17 20:30
|
||||||
event_duration: 3h
|
event_duration: 3h
|
||||||
featured_image: /images/CLM2.jpg
|
featured_image: images/CLM2.jpg
|
||||||
|
|
||||||
Varia presenteert twee concerten van drie ongelooflijke muzikanten uit Italië.
|
Varia presenteert twee concerten van drie ongelooflijke muzikanten uit Italië.
|
||||||
|
|
@ -5,7 +5,7 @@ slug: Entrepecariat-Book-Launch
|
|||||||
lang: en
|
lang: en
|
||||||
Event_start: 2019-11-09 18:00
|
Event_start: 2019-11-09 18:00
|
||||||
event_duration: 1h
|
event_duration: 1h
|
||||||
featured_image: /images/Entrepecariat%20Book%20Launch.jpeg
|
featured_image: images/Entrepecariat%20Book%20Launch.jpeg
|
||||||
tags: entrepecariat, book, launch
|
tags: entrepecariat, book, launch
|
||||||
|
|
||||||
Join us for an image roulette session: together with Lìdia Pereira, Silvio Lorusso will randomly dig into his research directories to exhume entreprecarious memes, illustrations, screenshots, artworks, etc.
|
Join us for an image roulette session: together with Lìdia Pereira, Silvio Lorusso will randomly dig into his research directories to exhume entreprecarious memes, illustrations, screenshots, artworks, etc.
|
@ -5,7 +5,7 @@ slug: Entrepecariat-Book-Launch
|
|||||||
lang: nl
|
lang: nl
|
||||||
Event_start: 2019-11-09 18:00
|
Event_start: 2019-11-09 18:00
|
||||||
event_duration: 1h
|
event_duration: 1h
|
||||||
featured_image: /images/Entrepecariat%20Book%20Launch.jpeg
|
featured_image: images/Entrepecariat%20Book%20Launch.jpeg
|
||||||
tags: entrepecariat, book, launch
|
tags: entrepecariat, book, launch
|
||||||
|
|
||||||
Ondernemer of precaire arbeider? Dit zijn de termen voor een cognitieve dissonantie die het leven van iedereen verandert in een wankel project dat verkeert in een eeuwige startup-fase. [Silvio Lorusso](https://silviolorusso.com/) gidst ons door het entreprecariat, een wereld waar verandering natuurlijk en gezond is, wat het ook met zich meebrengt. Een wereld die bevolkt wordt door motiverende posters, productiviteitstools, mobiele kantoren en zelfhulptechnieken. Een wereld waarin een mengeling van ondernemersideologie en wijdverbreide precariteit de professionele sociale media, online marktplaatsen voor zelfstandig ondernemerschap en crowdfundingplatforms voor persoonlijke behoeften reguleert. Het resultaat? Een leven in permanente bèta, met soms tragische implicaties.
|
Ondernemer of precaire arbeider? Dit zijn de termen voor een cognitieve dissonantie die het leven van iedereen verandert in een wankel project dat verkeert in een eeuwige startup-fase. [Silvio Lorusso](https://silviolorusso.com/) gidst ons door het entreprecariat, een wereld waar verandering natuurlijk en gezond is, wat het ook met zich meebrengt. Een wereld die bevolkt wordt door motiverende posters, productiviteitstools, mobiele kantoren en zelfhulptechnieken. Een wereld waarin een mengeling van ondernemersideologie en wijdverbreide precariteit de professionele sociale media, online marktplaatsen voor zelfstandig ondernemerschap en crowdfundingplatforms voor persoonlijke behoeften reguleert. Het resultaat? Een leven in permanente bèta, met soms tragische implicaties.
|
@ -5,7 +5,7 @@ Slug: extratonaliteit
|
|||||||
lang: nl
|
lang: nl
|
||||||
event_start: 2018-02-16 20:00
|
event_start: 2018-02-16 20:00
|
||||||
event_duration: 3h
|
event_duration: 3h
|
||||||
featured_image: /images/Extra.jpg
|
featured_image: images/Extra.jpg
|
||||||
|
|
||||||
Oplossingen en problemen in Extratonality 4<br>
|
Oplossingen en problemen in Extratonality 4<br>
|
||||||
"Extratonaliteit - Het openen van deuren is niet genoeg"
|
"Extratonaliteit - Het openen van deuren is niet genoeg"
|
@ -5,7 +5,7 @@ Slug: extratonaliteit
|
|||||||
lang: en
|
lang: en
|
||||||
event_start: 2018-02-16 20:00
|
event_start: 2018-02-16 20:00
|
||||||
event_duration: 3h
|
event_duration: 3h
|
||||||
featured_image: /images/Extra.jpg
|
featured_image: images/Extra.jpg
|
||||||
|
|
||||||
Solutions and problems in Extratonality 4<br>
|
Solutions and problems in Extratonality 4<br>
|
||||||
“Extratonality - Opening Doors Is Not Enough”
|
“Extratonality - Opening Doors Is Not Enough”
|
@ -5,7 +5,7 @@ slug: floppy-totaal-DD
|
|||||||
lang: nl
|
lang: nl
|
||||||
Event_start: 2019-10-19 14:00
|
Event_start: 2019-10-19 14:00
|
||||||
event_duration: 10h
|
event_duration: 10h
|
||||||
featured_image: /images/FloppyTotaa_HIGHDESNITY_A2_NEW_web-(2).jpg
|
featured_image: images/FloppyTotaa_HIGHDESNITY_A2_NEW_web-(2).jpg
|
||||||
tags: floppy, totaal, event
|
tags: floppy, totaal, event
|
||||||
|
|
||||||
Floppy Totaal bezoekt Varia voor een tweede programma gewijd aan hedendaagse diskette cultuur. Bij "Floppy Totaal: Double Density" kun je 's middags tijdens een workshop samen met de leden van het muzieklabel Floppy Kick een nieuwe floppy release opnemen en publiceren. Het daaropvolgende avondprogramma is tot de nok toe gevuld met optredens van Kisszántó en Eoforwine, presentaties en gesprekken met Joak en Jason Scott en een bijdrage op lange afstand van Michael Ridge.
|
Floppy Totaal bezoekt Varia voor een tweede programma gewijd aan hedendaagse diskette cultuur. Bij "Floppy Totaal: Double Density" kun je 's middags tijdens een workshop samen met de leden van het muzieklabel Floppy Kick een nieuwe floppy release opnemen en publiceren. Het daaropvolgende avondprogramma is tot de nok toe gevuld met optredens van Kisszántó en Eoforwine, presentaties en gesprekken met Joak en Jason Scott en een bijdrage op lange afstand van Michael Ridge.
|
@ -5,7 +5,7 @@ slug: 21-High-Rise
|
|||||||
lang: nl
|
lang: nl
|
||||||
Event_start: 2018-05-26 20:00
|
Event_start: 2018-05-26 20:00
|
||||||
event_duration: 3h
|
event_duration: 3h
|
||||||
featured_image: /images/c21c-02_web_final.jpg
|
featured_image: images/c21c-02_web_final.jpg
|
||||||
tags: industriële propaganda, kantoren, 21ste eeuw
|
tags: industriële propaganda, kantoren, 21ste eeuw
|
||||||
|
|
||||||
Tijdens de tweede screening van Century 21 Calling zullen we een kijkje nemen naar de ontwikkeling van werkplekken. Hoe zat het ook al weer mat dat beloofde papierloze kantoor? Welke technologie heeft invloed gehad op waar en hoe wij werken? Zijn de situaties van vandaag nieuw of zijn zij slechts een herhaling van het verleden? Wat is er met de telefooncentrale gebeurd toen we die verbinding verbraken? Wat gebeurt er op kantoor na het werk? En hoe reageer je op klanten als ze klagen over je product? Dit alles en meer zal worden beantwoord tijdens de volgende editie van Century 21 Calling.
|
Tijdens de tweede screening van Century 21 Calling zullen we een kijkje nemen naar de ontwikkeling van werkplekken. Hoe zat het ook al weer mat dat beloofde papierloze kantoor? Welke technologie heeft invloed gehad op waar en hoe wij werken? Zijn de situaties van vandaag nieuw of zijn zij slechts een herhaling van het verleden? Wat is er met de telefooncentrale gebeurd toen we die verbinding verbraken? Wat gebeurt er op kantoor na het werk? En hoe reageer je op klanten als ze klagen over je product? Dit alles en meer zal worden beantwoord tijdens de volgende editie van Century 21 Calling.
|
@ -5,7 +5,7 @@ slug: 21-High-Rise
|
|||||||
lang: en
|
lang: en
|
||||||
Event_start: 2018-05-26 20:00
|
Event_start: 2018-05-26 20:00
|
||||||
event_duration: 3h
|
event_duration: 3h
|
||||||
featured_image: /images/c21c-02_web_final.jpg
|
featured_image: images/c21c-02_web_final.jpg
|
||||||
tags: industrial propaganda, offices, 21st century
|
tags: industrial propaganda, offices, 21st century
|
||||||
|
|
||||||
During our second screening of Century 21 Calling we will take a look at the development of the workplace. What happened to the paperless office? And how did the development of technology impact where and how we work? Is today's situation new or is it just a repetition of the past? Where is the paperless office? What happened to the phone exchange when we cut the cord? What takes place at the office after work? And how do you react to customers when they complain about your product? All of this and more will the answered at the next edition of Century 21 Calling.
|
During our second screening of Century 21 Calling we will take a look at the development of the workplace. What happened to the paperless office? And how did the development of technology impact where and how we work? Is today's situation new or is it just a repetition of the past? Where is the paperless office? What happened to the phone exchange when we cut the cord? What takes place at the office after work? And how do you react to customers when they complain about your product? All of this and more will the answered at the next edition of Century 21 Calling.
|
@ -5,7 +5,7 @@ slug: Infinite-Outwardness
|
|||||||
lang: en
|
lang: en
|
||||||
Event_start: 2018-05-18 20:00
|
Event_start: 2018-05-18 20:00
|
||||||
event_duration: 4h
|
event_duration: 4h
|
||||||
featured_image: /images/Infinite.jpg
|
featured_image: images/Infinite.jpg
|
||||||
tags: space, time, music
|
tags: space, time, music
|
||||||
|
|
||||||
Since the beginning of time, space has captured the imagination of artists around the world. On the 18th of May varia is proud to present ‘Infinite Outwardness’; a music event based on the bounties of space, where several artists will present their idiosyncratic view on space exploration. Ranging from playable space junk to cosmic toilets, this will be an evening to remember!
|
Since the beginning of time, space has captured the imagination of artists around the world. On the 18th of May varia is proud to present ‘Infinite Outwardness’; a music event based on the bounties of space, where several artists will present their idiosyncratic view on space exploration. Ranging from playable space junk to cosmic toilets, this will be an evening to remember!
|
@ -5,7 +5,7 @@ slug: Infinite-Outwardness
|
|||||||
lang: nl
|
lang: nl
|
||||||
Event_start: 2018-05-18 20:00
|
Event_start: 2018-05-18 20:00
|
||||||
event_duration: 4h
|
event_duration: 4h
|
||||||
featured_image: /images/Infinite.jpg
|
featured_image: images/Infinite.jpg
|
||||||
tags: ruimte, tijd, muziek
|
tags: ruimte, tijd, muziek
|
||||||
|
|
||||||
Sinds het begin der tijden heeft de ruimte de verbeelding van kunstenaars over de gehele wereld veroverd. Op 18 mei presenteert varia met trots 'Infinite Outwardness'; een muziekevenement gebaseerd op de giften van de ruimte, waar verschillende kunstenaars hun idiosyncratische kijk op ruimteverkenning zullen presenteren. Variërend van bespeelbaar ruimteafval tot kosmische toiletten, wordt dit een avond om niet snel te vergeten!
|
Sinds het begin der tijden heeft de ruimte de verbeelding van kunstenaars over de gehele wereld veroverd. Op 18 mei presenteert varia met trots 'Infinite Outwardness'; een muziekevenement gebaseerd op de giften van de ruimte, waar verschillende kunstenaars hun idiosyncratische kijk op ruimteverkenning zullen presenteren. Variërend van bespeelbaar ruimteafval tot kosmische toiletten, wordt dit een avond om niet snel te vergeten!
|
@ -5,7 +5,7 @@ slug: monument
|
|||||||
lang: en
|
lang: en
|
||||||
Event_start: 2018-06-02 13:00
|
Event_start: 2018-06-02 13:00
|
||||||
event_duration: 5h
|
event_duration: 5h
|
||||||
featured_image: /images/wieisdezefontein.jpg
|
featured_image: images/wieisdezefontein.jpg
|
||||||
tags: fountain, architecture, presentation
|
tags: fountain, architecture, presentation
|
||||||
|
|
||||||
Long before there were people in Charlois, there was already water. Water is always on the move and always finds a way. Historically, fountains were gathering places that occupied a central place in village- and city life. Often they were installed to commemorate a great battle, a plague epidemic or some other historical event, donated by the municipality or a patron. Unfortunately, Charlois currently has no working fountain. Niek Hilkmann and Anne Kolbe want to remedy this shortcoming and temporarily give Charlois a mobile fountain that is not tied to a single place or interpretation. After an opening ceremony, held on the 2nd June around 13:00, next to Varia, the fountain can be seen during the weekends of the Charlois Speciaal festival, in search of new meaning and appreciation.
|
Long before there were people in Charlois, there was already water. Water is always on the move and always finds a way. Historically, fountains were gathering places that occupied a central place in village- and city life. Often they were installed to commemorate a great battle, a plague epidemic or some other historical event, donated by the municipality or a patron. Unfortunately, Charlois currently has no working fountain. Niek Hilkmann and Anne Kolbe want to remedy this shortcoming and temporarily give Charlois a mobile fountain that is not tied to a single place or interpretation. After an opening ceremony, held on the 2nd June around 13:00, next to Varia, the fountain can be seen during the weekends of the Charlois Speciaal festival, in search of new meaning and appreciation.
|
@ -5,7 +5,7 @@ slug: monument
|
|||||||
lang: nl
|
lang: nl
|
||||||
Event_start: 2018-06-02 13:00
|
Event_start: 2018-06-02 13:00
|
||||||
event_duration: 5h
|
event_duration: 5h
|
||||||
featured_image: /images/wieisdezefontein.jpg
|
featured_image: images/wieisdezefontein.jpg
|
||||||
tags: fountain, architecture, presentation
|
tags: fountain, architecture, presentation
|
||||||
|
|
||||||
Lang voordat er mensen in Charlois waren, was er al water. Water is altijd in beweging en vindt altijd een weg. Historisch gezien nemen fonteinen als verzamelplaats van water en mensen een centrale plaats in binnen het stads- en dorpsleven. Vaak werden zij geplaatst ter herdenking van een grote veldslag, pestepidemie of andere historische gebeurtenis, geschonken door een veldheer of mecenas. Helaas bezit Charlois momenteel geen werkende fontein. Niek Hilkmann en Anne Kolbe willen dit gebrek verhelpen door Charlois tijdelijk een mobiele fontein te geven die niet gebonden is aan een vaste plek of duiding. Deze fontein zal op 2 juni om 13:00 bij Varia gepresenteerd worden en is vervolgens tijdens de weekenden van Charlois Speciaal te zien, op zoek naar nieuwe betekenis en waardering.
|
Lang voordat er mensen in Charlois waren, was er al water. Water is altijd in beweging en vindt altijd een weg. Historisch gezien nemen fonteinen als verzamelplaats van water en mensen een centrale plaats in binnen het stads- en dorpsleven. Vaak werden zij geplaatst ter herdenking van een grote veldslag, pestepidemie of andere historische gebeurtenis, geschonken door een veldheer of mecenas. Helaas bezit Charlois momenteel geen werkende fontein. Niek Hilkmann en Anne Kolbe willen dit gebrek verhelpen door Charlois tijdelijk een mobiele fontein te geven die niet gebonden is aan een vaste plek of duiding. Deze fontein zal op 2 juni om 13:00 bij Varia gepresenteerd worden en is vervolgens tijdens de weekenden van Charlois Speciaal te zien, op zoek naar nieuwe betekenis en waardering.
|
@ -5,7 +5,7 @@ Slug: nieuwjaarsborrel
|
|||||||
lang: en
|
lang: en
|
||||||
event_start: 2018-01-19 18:00
|
event_start: 2018-01-19 18:00
|
||||||
event_duration: 5h
|
event_duration: 5h
|
||||||
featured_image: /images/nieuwjaarsborrel.jpg
|
featured_image: images/nieuwjaarsborrel.jpg
|
||||||
|
|
||||||
Varia has big plans for 2018! We would like to share these with you during a special New Year’s reception as part of the season opening of the galleries and projectspaces in Oud Charlois. Besides drinks and salty snacks, there will be a special robomop-performance.
|
Varia has big plans for 2018! We would like to share these with you during a special New Year’s reception as part of the season opening of the galleries and projectspaces in Oud Charlois. Besides drinks and salty snacks, there will be a special robomop-performance.
|
||||||
|
|
@ -5,7 +5,7 @@ Slug: nieuwjaarsborrel
|
|||||||
lang: nl
|
lang: nl
|
||||||
event_start: 2018-01-19 18:00
|
event_start: 2018-01-19 18:00
|
||||||
event_duration: 5h
|
event_duration: 5h
|
||||||
featured_image: /images/nieuwjaarsborrel.jpg
|
featured_image: images/nieuwjaarsborrel.jpg
|
||||||
|
|
||||||
Varia heeft grootse plannen voor 2018! We willen deze graag delen tijdens een speciale nieuwjaarsborrel als onderdeel van de collectieve seizoensopening met andere galeries en projectruimtes in Oud Charlois. Naast drankjes en zoutjes, zal er een heuse robomop-performance te zien zijn.
|
Varia heeft grootse plannen voor 2018! We willen deze graag delen tijdens een speciale nieuwjaarsborrel als onderdeel van de collectieve seizoensopening met andere galeries en projectruimtes in Oud Charlois. Naast drankjes en zoutjes, zal er een heuse robomop-performance te zien zijn.
|
||||||
|
|
@ -5,7 +5,7 @@ slug: sensible-soccer
|
|||||||
lang: en
|
lang: en
|
||||||
Event_start: 2020-03-21 12:00
|
Event_start: 2020-03-21 12:00
|
||||||
event_duration: 9h
|
event_duration: 9h
|
||||||
featured_image: /images//SWOS - varia 2020.jpg
|
featured_image: images//SWOS - varia 2020.jpg
|
||||||
tags: sensible, soccer, event, gaming
|
tags: sensible, soccer, event, gaming
|
||||||
summary: Become a goal scoring superstar hero at the Sensible World of Soccer Varia Cup 2020! It's time to bring the classic football game to the south of Rotterdam. Varia will be host to both an amateur cup as well as a pro cup - anyone can play!
|
summary: Become a goal scoring superstar hero at the Sensible World of Soccer Varia Cup 2020! It's time to bring the classic football game to the south of Rotterdam. Varia will be host to both an amateur cup as well as a pro cup - anyone can play!
|
||||||
|
|
||||||
@ -16,7 +16,7 @@ Become a goal scoring superstar hero at the **Sensible World of Soccer Varia Cup
|
|||||||
**SWOS2020**
|
**SWOS2020**
|
||||||
A strong community (check out [www.sensiblesoccer.de](http://www.sensiblesoccer.de)) made sure the ball kept on rolling, with ways to play against each other online, rankings, as well as hosting the annual Sensible Days: the World Cup where players decide who's best. The highlight of this year though is the launch of **Sensible World of Soccer 2020**! Not only does it provide an up-to-date database with around 1,500 teams from all over the world (from The Netherlands to El Salvador; a huge community effort), it is also the first time that the game can be played on modern operating systems without using DOS- or Amiga-emulators. This time you can run the game straight from your Windows-desktop (of course, the database has also been released for the original Amiga version). You can even switch live between DOS and Amiga-gameplay, and choose for a beautiful wide screen mode on UltraHD resolutions. The game is available for free through below link (you do need to own the original version of the game though, but online search machines will help, or check out [www.gog.com ](http://www.gog.com )for a legal way to buy the game).
|
A strong community (check out [www.sensiblesoccer.de](http://www.sensiblesoccer.de)) made sure the ball kept on rolling, with ways to play against each other online, rankings, as well as hosting the annual Sensible Days: the World Cup where players decide who's best. The highlight of this year though is the launch of **Sensible World of Soccer 2020**! Not only does it provide an up-to-date database with around 1,500 teams from all over the world (from The Netherlands to El Salvador; a huge community effort), it is also the first time that the game can be played on modern operating systems without using DOS- or Amiga-emulators. This time you can run the game straight from your Windows-desktop (of course, the database has also been released for the original Amiga version). You can even switch live between DOS and Amiga-gameplay, and choose for a beautiful wide screen mode on UltraHD resolutions. The game is available for free through below link (you do need to own the original version of the game though, but online search machines will help, or check out [www.gog.com ](http://www.gog.com )for a legal way to buy the game).
|
||||||
|
|
||||||
![](https://git.vvvvvvaria.org/varia/varia.website/raw/branch/master/content/images/extra%20image%203.jpg)
|
![](https://git.vvvvvvaria.org/varia/varia.website/raw/branch/master/contentimages/extra%20image%203.jpg)
|
||||||
|
|
||||||
**VARIA CUP**
|
**VARIA CUP**
|
||||||
We will play the cup in SWOS2020, which means you can play with your favourite team of the moment! Both experienced and unexperienced players are welcome. After a first qualifying round, the top half of the field will go and compete in the Pro Cup, the bottom half in the Amateur Cup; both cup winners will win a prize.
|
We will play the cup in SWOS2020, which means you can play with your favourite team of the moment! Both experienced and unexperienced players are welcome. After a first qualifying round, the top half of the field will go and compete in the Pro Cup, the bottom half in the Amateur Cup; both cup winners will win a prize.
|
@ -5,7 +5,7 @@ slug: sensible-soccer
|
|||||||
lang: nl
|
lang: nl
|
||||||
Event_start: 2020-03-21 12:00
|
Event_start: 2020-03-21 12:00
|
||||||
event_duration: 9h
|
event_duration: 9h
|
||||||
featured_image: /images//SWOS - varia 2020.jpg
|
featured_image: images//SWOS - varia 2020.jpg
|
||||||
tags: sensible, soccer, event, gaming
|
tags: sensible, soccer, event, gaming
|
||||||
summary: Wordt een 'goal scoring superstar hero' tijdens de Sensible World of Soccer Varia Cup 2020! De tijd is aangebroken om dit klassieke voetbalspel naar Rotterdam-Zuid te brengen. Bij Varia organiseren we zowel een amateur- als een pro-cup; iedereen kan meedoen!
|
summary: Wordt een 'goal scoring superstar hero' tijdens de Sensible World of Soccer Varia Cup 2020! De tijd is aangebroken om dit klassieke voetbalspel naar Rotterdam-Zuid te brengen. Bij Varia organiseren we zowel een amateur- als een pro-cup; iedereen kan meedoen!
|
||||||
|
|
||||||
@ -16,7 +16,7 @@ Wordt een 'goal scoring superstar hero' tijdens de **Sensible World of Soccer Va
|
|||||||
**SWOS2020**
|
**SWOS2020**
|
||||||
Het komt mede door een sterke community (zie ook [www.sensiblesoccer.de](http://www.sensiblesoccer.de)) dat de bal bleef rollen. Denk aan mogelijkheden om online tegen elkaar te spelen, ranglijsten, en de jaarlijkse Sensible Days: het WK waar uitgemaakt wordt wie de beste speler is. Het hoogtepunt van dit jaar is de release van Sensible World of Soccer 2020! Deze nieuwe versie biedt niet alleen een geupdate database met +/- 1.500 teams (van Nederland tot El Salvador!), het is ook de eerste keer dat het spel op huidige besturingssystemen gespeeld kan worden zonder gebruik te maken van DOS- of Amiga-emulatoren. Deze editie kan rechstreeks vanaf je Windows-desktop opgestart worden (natuurlijk is er ook een database voor de originele Amiga-versie beschikbaar voor de die-hards). Het is zelfs mogelijk te switchen tussen DOS en Amiga-gameplay en om te kiezen voor een fraaie breedbeeld-modus in UltraHD-resolutie. Het spel is als freeware te downloaden via onderstaande link (wel is het nodig het originele spel in bezit te hebben; online zoekmachines bieden uitkomt, of ga naar [www.gog.com ](http://www.gog.com )waar het spel verkocht wordt).
|
Het komt mede door een sterke community (zie ook [www.sensiblesoccer.de](http://www.sensiblesoccer.de)) dat de bal bleef rollen. Denk aan mogelijkheden om online tegen elkaar te spelen, ranglijsten, en de jaarlijkse Sensible Days: het WK waar uitgemaakt wordt wie de beste speler is. Het hoogtepunt van dit jaar is de release van Sensible World of Soccer 2020! Deze nieuwe versie biedt niet alleen een geupdate database met +/- 1.500 teams (van Nederland tot El Salvador!), het is ook de eerste keer dat het spel op huidige besturingssystemen gespeeld kan worden zonder gebruik te maken van DOS- of Amiga-emulatoren. Deze editie kan rechstreeks vanaf je Windows-desktop opgestart worden (natuurlijk is er ook een database voor de originele Amiga-versie beschikbaar voor de die-hards). Het is zelfs mogelijk te switchen tussen DOS en Amiga-gameplay en om te kiezen voor een fraaie breedbeeld-modus in UltraHD-resolutie. Het spel is als freeware te downloaden via onderstaande link (wel is het nodig het originele spel in bezit te hebben; online zoekmachines bieden uitkomt, of ga naar [www.gog.com ](http://www.gog.com )waar het spel verkocht wordt).
|
||||||
|
|
||||||
![](https://git.vvvvvvaria.org/varia/varia.website/raw/branch/master/content/images/extra%20image%203.jpg)
|
![](https://git.vvvvvvaria.org/varia/varia.website/raw/branch/master/contentimages/extra%20image%203.jpg)
|
||||||
|
|
||||||
**VARIA CUP**
|
**VARIA CUP**
|
||||||
Het toernooi wordt gespeeld in SWOS2020, wat betekent dat je met de favoriete club van dit moment kan spelen. Zowel ervaren als onervaren spelers zijn welkom. Na een selectieronde gaan de beste spelers strijden om de pro-cup, terwijl de andere helft strijdt om de amateurcup. Voor beide toernooien zijn er prijzen!
|
Het toernooi wordt gespeeld in SWOS2020, wat betekent dat je met de favoriete club van dit moment kan spelen. Zowel ervaren als onervaren spelers zijn welkom. Na een selectieronde gaan de beste spelers strijden om de pro-cup, terwijl de andere helft strijdt om de amateurcup. Voor beide toernooien zijn er prijzen!
|
@ -5,7 +5,7 @@ slug: Silva-and-Krantz
|
|||||||
lang: en
|
lang: en
|
||||||
Event_start: 2018-08-17 21:00
|
Event_start: 2018-08-17 21:00
|
||||||
event_duration: 3h
|
event_duration: 3h
|
||||||
featured_image: /images/Krantz.jpg
|
featured_image: images/Krantz.jpg
|
||||||
|
|
||||||
Theo Krantz is an American artist currently based in New Mexico. He plays guitar and sings in the sentimental grunge band Dog Park and contributes to a variety of collaborative projects under his indie label Cry Like Donna. He recently released his most experimental solo album yet, Wednesday Two, which blends ambient synthesizer work with tape sounds and the human voice.
|
Theo Krantz is an American artist currently based in New Mexico. He plays guitar and sings in the sentimental grunge band Dog Park and contributes to a variety of collaborative projects under his indie label Cry Like Donna. He recently released his most experimental solo album yet, Wednesday Two, which blends ambient synthesizer work with tape sounds and the human voice.
|
||||||
|
|
@ -5,7 +5,7 @@ slug: Silva-and-Krantz
|
|||||||
lang: nl
|
lang: nl
|
||||||
Event_start: 2018-08-17 21:00
|
Event_start: 2018-08-17 21:00
|
||||||
event_duration: 3h
|
event_duration: 3h
|
||||||
featured_image: /images/Krantz.jpg
|
featured_image: images/Krantz.jpg
|
||||||
|
|
||||||
Theo Krantz is een Amerikaanse kunstenaar die momenteel in New Mexico woont. Hij speelt gitaar en zingt in de sentimentele grunge-band Dog Park en levert een bijdrage aan verschillende samenwerkingsprojecten via zijn indie-label Cry Like Donna. Onlangs bracht hij zijn meest experimentele soloalbum uit, Wednesday Two, dat ambient-synthesizerwerk combineert met tape-geluiden en de menselijke stem.
|
Theo Krantz is een Amerikaanse kunstenaar die momenteel in New Mexico woont. Hij speelt gitaar en zingt in de sentimentele grunge-band Dog Park en levert een bijdrage aan verschillende samenwerkingsprojecten via zijn indie-label Cry Like Donna. Onlangs bracht hij zijn meest experimentele soloalbum uit, Wednesday Two, dat ambient-synthesizerwerk combineert met tape-geluiden en de menselijke stem.
|
||||||
|
|
@ -5,7 +5,7 @@ slug: Space-Junk-Workshop
|
|||||||
lang: nl
|
lang: nl
|
||||||
Event_start: 2018-05-18 10:00
|
Event_start: 2018-05-18 10:00
|
||||||
event_duration: 8h
|
event_duration: 8h
|
||||||
featured_image: /images/Spacejunk.jpg
|
featured_image: images/Spacejunk.jpg
|
||||||
tags: synthezisers, afval
|
tags: synthezisers, afval
|
||||||
|
|
||||||
Wojtek Szustak is een elektronische intermedialist uit Krakau gespecialiseerd in muziek en ruimteafval. Ter voorbereiding op 'Infinite Outwardness' zal hij een synthesizer-vuilnisworkshop leiden in Varia, waarbij nieuwe elektronische instrumenten worden gemaakt van oude rommel die in de straten van Charlois is te vinden. De resultaten worden 's avonds gepresenteerd.
|
Wojtek Szustak is een elektronische intermedialist uit Krakau gespecialiseerd in muziek en ruimteafval. Ter voorbereiding op 'Infinite Outwardness' zal hij een synthesizer-vuilnisworkshop leiden in Varia, waarbij nieuwe elektronische instrumenten worden gemaakt van oude rommel die in de straten van Charlois is te vinden. De resultaten worden 's avonds gepresenteerd.
|
@ -5,7 +5,7 @@ slug: Space-Junk-Workshop
|
|||||||
lang: en
|
lang: en
|
||||||
Event_start: 2018-05-18 10:00
|
Event_start: 2018-05-18 10:00
|
||||||
event_duration: 8h
|
event_duration: 8h
|
||||||
featured_image: /images/Spacejunk.jpg
|
featured_image: images/Spacejunk.jpg
|
||||||
tags: ewaste, synths
|
tags: ewaste, synths
|
||||||
|
|
||||||
Wojtek Szustak is an electronic intermedialist from Krakow who works with and around music and space junk. In preparation of 'Infinite Outwardness' he will conduct a synthesizer junk workshop at Varia where we will make new electronic instruments from old rubbish we find on the streets of Charlois. The results will be presented during the evening.
|
Wojtek Szustak is an electronic intermedialist from Krakow who works with and around music and space junk. In preparation of 'Infinite Outwardness' he will conduct a synthesizer junk workshop at Varia where we will make new electronic instruments from old rubbish we find on the streets of Charlois. The results will be presented during the evening.
|
@ -5,7 +5,7 @@ slug: christmas
|
|||||||
lang: en
|
lang: en
|
||||||
Event_start: 2018-12-22 20:30
|
Event_start: 2018-12-22 20:30
|
||||||
event_duration: 4h
|
event_duration: 4h
|
||||||
featured_image: /images/tuch.jpg
|
featured_image: images/tuch.jpg
|
||||||
|
|
||||||
A cold wind is blowing through Charlois; leaves are falling from of trees, birds fly to the south and people start waxing their ice skates. The end of 2018 is neigh! What can we do about this? Celebrate the holidays at Varia of course! Come and dance to some holiday themed music, warm your heart up with a hot cup of glühwein and discuss your new years resolutions like there is no tomorrow! There will be performances by:
|
A cold wind is blowing through Charlois; leaves are falling from of trees, birds fly to the south and people start waxing their ice skates. The end of 2018 is neigh! What can we do about this? Celebrate the holidays at Varia of course! Come and dance to some holiday themed music, warm your heart up with a hot cup of glühwein and discuss your new years resolutions like there is no tomorrow! There will be performances by:
|
||||||
|
|
||||||
@ -14,7 +14,7 @@ A cold wind is blowing through Charlois; leaves are falling from of trees, birds
|
|||||||
[adammmmmmmmmmmm on Bandcamp](https://adammmmmmmmmmmm.bandcamp.com)<br>
|
[adammmmmmmmmmmm on Bandcamp](https://adammmmmmmmmmmm.bandcamp.com)<br>
|
||||||
[Website of media_rins](http://mediarins.xyz/)
|
[Website of media_rins](http://mediarins.xyz/)
|
||||||
|
|
||||||
![Adam Tuch](https://git.vvvvvvaria.org/varia/varia.website/raw/branch/master/content/images/tuch2.jpg)
|
![Adam Tuch](https://git.vvvvvvaria.org/varia/varia.website/raw/branch/master/contentimages/tuch2.jpg)
|
||||||
|
|
||||||
**Logosamphia** is a project of Sadra Hemati. With one foot in the French underground party scene, and another in Netherlands’ avant-garde noise performance & arts world, he represents one of the few Iranian musicians active in non-mainstream electronic music. Hemati has a penchant for combining influences from both traditional & modern techniques in unique and catchy arrangements.
|
**Logosamphia** is a project of Sadra Hemati. With one foot in the French underground party scene, and another in Netherlands’ avant-garde noise performance & arts world, he represents one of the few Iranian musicians active in non-mainstream electronic music. Hemati has a penchant for combining influences from both traditional & modern techniques in unique and catchy arrangements.
|
||||||
|
|
||||||
@ -24,7 +24,7 @@ A cold wind is blowing through Charlois; leaves are falling from of trees, birds
|
|||||||
|
|
||||||
**DJ The Sound of C** brings you a dirt cheap Christmas extravaganza selected at your local thrift store. Records will be wrapped and gifts will get scratched. Everything is for free, after it’s being played. Santa comes early this year. Warm hearts only!
|
**DJ The Sound of C** brings you a dirt cheap Christmas extravaganza selected at your local thrift store. Records will be wrapped and gifts will get scratched. Everything is for free, after it’s being played. Santa comes early this year. Warm hearts only!
|
||||||
|
|
||||||
![DJ The Sound of C](https://git.vvvvvvaria.org/varia/varia.website/raw/branch/master/content/images/Santas.jpg)
|
![DJ The Sound of C](https://git.vvvvvvaria.org/varia/varia.website/raw/branch/master/contentimages/Santas.jpg)
|
||||||
|
|
||||||
See you at Varia!
|
See you at Varia!
|
||||||
|
|
@ -5,7 +5,7 @@ slug: christmas
|
|||||||
lang: nl
|
lang: nl
|
||||||
Event_start: 2018-12-22 20:30
|
Event_start: 2018-12-22 20:30
|
||||||
event_duration: 4h
|
event_duration: 4h
|
||||||
featured_image: /images/tuch.jpg
|
featured_image: images/tuch.jpg
|
||||||
|
|
||||||
Er waait een koude wind door Charlois; bladeren vallen van de bomen, vogels vliegen naar het zuiden en mensen beginnen hun schaatsen in te vetten. Het einde van 2018 is nabij! Wat kunnen we nog doen? De feestdagen bij Varia vieren natuurlijk! Kom dansen op muziek met een winters tintje, warm je hart op met een kop glühwein en bespreek al je goede voornemens zolang ze nog goed zijn! Er zullen optredens zijn van:
|
Er waait een koude wind door Charlois; bladeren vallen van de bomen, vogels vliegen naar het zuiden en mensen beginnen hun schaatsen in te vetten. Het einde van 2018 is nabij! Wat kunnen we nog doen? De feestdagen bij Varia vieren natuurlijk! Kom dansen op muziek met een winters tintje, warm je hart op met een kop glühwein en bespreek al je goede voornemens zolang ze nog goed zijn! Er zullen optredens zijn van:
|
||||||
|
|
||||||
@ -14,7 +14,7 @@ Er waait een koude wind door Charlois; bladeren vallen van de bomen, vogels vlie
|
|||||||
[Adam Tuch op Bandcamp](https://adammmmmmmmmmmm.bandcamp.com)<br>
|
[Adam Tuch op Bandcamp](https://adammmmmmmmmmmm.bandcamp.com)<br>
|
||||||
[Website van media_rins](http://mediarins.xyz/)
|
[Website van media_rins](http://mediarins.xyz/)
|
||||||
|
|
||||||
![Adam Tuch](https://git.vvvvvvaria.org/varia/varia.website/raw/branch/master/content/images/tuch2.jpg)
|
![Adam Tuch](https://git.vvvvvvaria.org/varia/varia.website/raw/branch/master/contentimages/tuch2.jpg)
|
||||||
|
|
||||||
** Logosamphia ** is een project van Sadra Hemati. Met een voet in de Franse underground party scene, en een andere in de Nederlandse avant-garde noise performance & kunstwereld, vertegenwoordigt hij een van de weinige Iraanse muzikanten die actief is in niet-mainstream elektronische muziek. Hemati heeft een voorliefde voor het combineren van invloeden uit zowel traditionele als moderne technieken in unieke en pakkende arrangementen.
|
** Logosamphia ** is een project van Sadra Hemati. Met een voet in de Franse underground party scene, en een andere in de Nederlandse avant-garde noise performance & kunstwereld, vertegenwoordigt hij een van de weinige Iraanse muzikanten die actief is in niet-mainstream elektronische muziek. Hemati heeft een voorliefde voor het combineren van invloeden uit zowel traditionele als moderne technieken in unieke en pakkende arrangementen.
|
||||||
|
|
||||||
@ -24,7 +24,7 @@ Er waait een koude wind door Charlois; bladeren vallen van de bomen, vogels vlie
|
|||||||
|
|
||||||
** DJ The Sound of C ** brengt je een spotgoedkoop kerst extravaganza, geselecteerd bij je lokale kringloopwinkel. Platen worden ingepakt en cadeaus brkrast. Alles is gratis nadat het is afgespeeld. De kerstman komt vroeg dit jaar!
|
** DJ The Sound of C ** brengt je een spotgoedkoop kerst extravaganza, geselecteerd bij je lokale kringloopwinkel. Platen worden ingepakt en cadeaus brkrast. Alles is gratis nadat het is afgespeeld. De kerstman komt vroeg dit jaar!
|
||||||
|
|
||||||
![DJ The Sound of C](https://git.vvvvvvaria.org/varia/varia.website/raw/branch/master/content/images/Santas.jpg)
|
![DJ The Sound of C](https://git.vvvvvvaria.org/varia/varia.website/raw/branch/master/contentimages/Santas.jpg)
|
||||||
|
|
||||||
Tot in Varia!
|
Tot in Varia!
|
||||||
|
|
@ -5,7 +5,7 @@ slug: music-able-noise
|
|||||||
lang: en
|
lang: en
|
||||||
Event_start: 2019-09-14 20:30
|
Event_start: 2019-09-14 20:30
|
||||||
event_duration: 3h
|
event_duration: 3h
|
||||||
featured_image: /images/able-noise-3.jpg
|
featured_image: images/able-noise-3.jpg
|
||||||
tags: able, noise, concert
|
tags: able, noise, concert
|
||||||
|
|
||||||
A new season has arrived; time for some fresh concerts at Varia! Kicking of the second half of 2019, we organize an event where three stirring acts will show their craft.
|
A new season has arrived; time for some fresh concerts at Varia! Kicking of the second half of 2019, we organize an event where three stirring acts will show their craft.
|
@ -5,7 +5,7 @@ slug: music-able-noise
|
|||||||
lang: nl
|
lang: nl
|
||||||
Event_start: 2019-09-14 20:30
|
Event_start: 2019-09-14 20:30
|
||||||
event_duration: 3h
|
event_duration: 3h
|
||||||
featured_image: /images/able-noise-3.jpg
|
featured_image: images/able-noise-3.jpg
|
||||||
tags: able, noise, concert
|
tags: able, noise, concert
|
||||||
|
|
||||||
Een nieuw seizoen is aangebroken; tijd voor een nieuwe concertreeks bij Varia! De tweede helft van 2019 begint meteen goed; met drie opwindende acts die allen hun kunsten bij ons zullen tonen:
|
Een nieuw seizoen is aangebroken; tijd voor een nieuwe concertreeks bij Varia! De tweede helft van 2019 begint meteen goed; met drie opwindende acts die allen hun kunsten bij ons zullen tonen:
|
@ -5,7 +5,7 @@ Slug: algologs
|
|||||||
lang: en
|
lang: en
|
||||||
event_start: 2018-03-16 19:00
|
event_start: 2018-03-16 19:00
|
||||||
event_duration: 3h
|
event_duration: 3h
|
||||||
featured_image: /images/algologs.png
|
featured_image: images/algologs.png
|
||||||
summary: Algologs = a 1 + 1 day dialog with algorithmic practices. This two-day event is an extention of Algolit, a workgroup where text-based practices and algorithms meet.
|
summary: Algologs = a 1 + 1 day dialog with algorithmic practices. This two-day event is an extention of Algolit, a workgroup where text-based practices and algorithms meet.
|
||||||
tags: worksession, algorithms, logging
|
tags: worksession, algorithms, logging
|
||||||
|
|
||||||
@ -73,7 +73,7 @@ Varia - Gouwstraat 3, Rotterdam<br>
|
|||||||
|
|
||||||
----
|
----
|
||||||
|
|
||||||
The research project of Cristina Cochior is kindly supported by ![cbk rotterdam](/images/cbkrotterdam.png).
|
The research project of Cristina Cochior is kindly supported by ![cbk rotterdam](images/cbkrotterdam.png).
|
||||||
|
|
||||||
|
|
||||||
|
|
@ -5,7 +5,7 @@ Slug: algologs
|
|||||||
lang: nl
|
lang: nl
|
||||||
event_start: 2018-03-16 19:00
|
event_start: 2018-03-16 19:00
|
||||||
event_duration: 23h
|
event_duration: 23h
|
||||||
featured_image: /images/algologs.png
|
featured_image: images/algologs.png
|
||||||
summary: Algologs = een 1 dag + 1 dag dialoog rondom algoritmische werkwijzen. Dit evenement is een verlenging van Algolit, een werkgroep waar taal en algoritmes elkaar ontmoeten.
|
summary: Algologs = een 1 dag + 1 dag dialoog rondom algoritmische werkwijzen. Dit evenement is een verlenging van Algolit, een werkgroep waar taal en algoritmes elkaar ontmoeten.
|
||||||
tags: worksession, algorithms, logging
|
tags: worksession, algorithms, logging
|
||||||
|
|
||||||
@ -73,7 +73,7 @@ Varia - Gouwstraat 3, Rotterdam <br>
|
|||||||
|
|
||||||
----
|
----
|
||||||
|
|
||||||
Het onderzoeksproject van Cristina Cochior is mede mogelijk gemaakt met een financiële bijdrage van CBK Rotterdam ![cbk rotterdam](/images/cbkrotterdam.png).
|
Het onderzoeksproject van Cristina Cochior is mede mogelijk gemaakt met een financiële bijdrage van CBK Rotterdam ![cbk rotterdam](images/cbkrotterdam.png).
|
||||||
|
|
||||||
|
|
||||||
|
|
@ -5,7 +5,7 @@ slug: anniversary
|
|||||||
lang: en
|
lang: en
|
||||||
Event_start: 2018-11-09 20:00
|
Event_start: 2018-11-09 20:00
|
||||||
event_duration: 4h
|
event_duration: 4h
|
||||||
featured_image: /images/colours.gif
|
featured_image: images/colours.gif
|
||||||
|
|
||||||
It is a rule of life that everything that moves forward, must also one day also look back. Varia is no exception to this truism and that is why we are going to celebrate the first anniversary of our residence at the Gouwstraat.
|
It is a rule of life that everything that moves forward, must also one day also look back. Varia is no exception to this truism and that is why we are going to celebrate the first anniversary of our residence at the Gouwstraat.
|
||||||
|
|
@ -5,7 +5,7 @@ slug: anniversary
|
|||||||
lang: nl
|
lang: nl
|
||||||
Event_start: 2018-11-09 20:00
|
Event_start: 2018-11-09 20:00
|
||||||
event_duration: 4h
|
event_duration: 4h
|
||||||
featured_image: /images/colours.gif
|
featured_image: images/colours.gif
|
||||||
|
|
||||||
Het is algemeen bekend dat alles wat vooruit gaat, op een dag ook weer achterom moet kijken. Varia is zich terdege bewust van deze waarheid als een koe. Daarom vieren we volgende week gezamelijk de eerste verjaardag van ons verblijf aan de Gouwstraat.
|
Het is algemeen bekend dat alles wat vooruit gaat, op een dag ook weer achterom moet kijken. Varia is zich terdege bewust van deze waarheid als een koe. Daarom vieren we volgende week gezamelijk de eerste verjaardag van ons verblijf aan de Gouwstraat.
|
||||||
|
|
@ -6,7 +6,7 @@ slug: borrel2019
|
|||||||
lang: en
|
lang: en
|
||||||
Event_start: 2019-01-11 19:30
|
Event_start: 2019-01-11 19:30
|
||||||
event_duration: 4h
|
event_duration: 4h
|
||||||
featured_image: /images/20195.jpg
|
featured_image: images/20195.jpg
|
||||||
|
|
||||||
It's a new year! Dennis (de Bel) is back, the window is broken and l'intolerant #18 is out. Enough reasons to come together and have a drink.
|
It's a new year! Dennis (de Bel) is back, the window is broken and l'intolerant #18 is out. Enough reasons to come together and have a drink.
|
||||||
|
|
@ -6,7 +6,7 @@ Tags: event
|
|||||||
lang: nl
|
lang: nl
|
||||||
Event_start: 2019-01-11 19:30
|
Event_start: 2019-01-11 19:30
|
||||||
event_duration: 4h
|
event_duration: 4h
|
||||||
featured_image: /images/20195.jpg
|
featured_image: images/20195.jpg
|
||||||
|
|
||||||
Varia's Nieuwjaarsborrel
|
Varia's Nieuwjaarsborrel
|
||||||
|
|
@ -5,7 +5,7 @@ slug: bpw-consultation-introduction
|
|||||||
lang: en
|
lang: en
|
||||||
Event_start: 2019-05-06 17:00
|
Event_start: 2019-05-06 17:00
|
||||||
event_duration: 3h
|
event_duration: 3h
|
||||||
featured_image: /images/bpwlogo.jpg
|
featured_image: images/bpwlogo.jpg
|
||||||
summary: Please feel welcome to join us for a day of discussion, co-learning and reflection on the housing situation in Rotterdam, our rights as tenants and how we can support each other to work towards solutions for more safe, secure and affordable housing.
|
summary: Please feel welcome to join us for a day of discussion, co-learning and reflection on the housing situation in Rotterdam, our rights as tenants and how we can support each other to work towards solutions for more safe, secure and affordable housing.
|
||||||
|
|
||||||
Dear all,
|
Dear all,
|
@ -5,7 +5,7 @@ slug: bpw-consultation-introduction
|
|||||||
lang: nl
|
lang: nl
|
||||||
Event_start: 2019-05-06 17:00
|
Event_start: 2019-05-06 17:00
|
||||||
event_duration: 3h
|
event_duration: 3h
|
||||||
featured_image: /images/bpwlogo.jpg
|
featured_image: images/bpwlogo.jpg
|
||||||
summary: Iedereen is van harte welkom om deel te nemen aan discussies, of om samen te reflecteren op de huisvestingsituatie in Rotterdam, onze huurrechten en hoe we elkaar kunnen steunen in het zoeken naar oplossingen voor veilige, zekere en betaalbare wonen.
|
summary: Iedereen is van harte welkom om deel te nemen aan discussies, of om samen te reflecteren op de huisvestingsituatie in Rotterdam, onze huurrechten en hoe we elkaar kunnen steunen in het zoeken naar oplossingen voor veilige, zekere en betaalbare wonen.
|
||||||
|
|
||||||
Beste allemaal,
|
Beste allemaal,
|
@ -5,7 +5,7 @@ slug: bpw-consultation-plus-meet-and-greet-nov-2019
|
|||||||
lang: en
|
lang: en
|
||||||
Event_start: 2019-11-25 15:00
|
Event_start: 2019-11-25 15:00
|
||||||
event_duration: 6h
|
event_duration: 6h
|
||||||
featured_image: /images/bpwlogo.jpg
|
featured_image: images/bpwlogo.jpg
|
||||||
summary: Bond Precaire Woonvormen (BPW) organizes another round of their *tenant consultation* plus *meet and greet* at Varia on Monday the 25th of November. You are welcome to join us for an afternoon and evening of discussion, co-learning, reflection on the housing situation in Rotterdam, our rights as tenants and how we can support each other to work towards solutions for more safe, secure and affordable housing.
|
summary: Bond Precaire Woonvormen (BPW) organizes another round of their *tenant consultation* plus *meet and greet* at Varia on Monday the 25th of November. You are welcome to join us for an afternoon and evening of discussion, co-learning, reflection on the housing situation in Rotterdam, our rights as tenants and how we can support each other to work towards solutions for more safe, secure and affordable housing.
|
||||||
|
|
||||||
Dear all,
|
Dear all,
|
@ -5,7 +5,7 @@ slug: bpw-consultation-plus-meet-and-greet-nov-2019
|
|||||||
lang: nl
|
lang: nl
|
||||||
Event_start: 2019-11-25 15:00
|
Event_start: 2019-11-25 15:00
|
||||||
event_duration: 6h
|
event_duration: 6h
|
||||||
featured_image: /images/bpwlogo.jpg
|
featured_image: images/bpwlogo.jpg
|
||||||
summary: Op maandag 25 november ben je van harte welkom om deel te nemen aan discussies, of om samen te reflecteren op de huisvestingsituatie in Rotterdam, onze huurrechten en hoe we elkaar kunnen steunen in het zoeken naar oplossingen voor veilige, zekere en betaalbare wonen.
|
summary: Op maandag 25 november ben je van harte welkom om deel te nemen aan discussies, of om samen te reflecteren op de huisvestingsituatie in Rotterdam, onze huurrechten en hoe we elkaar kunnen steunen in het zoeken naar oplossingen voor veilige, zekere en betaalbare wonen.
|
||||||
|
|
||||||
Beste allemaal,
|
Beste allemaal,
|
@ -5,7 +5,7 @@ slug: bpw-consultation-plus-meet-and-greet
|
|||||||
lang: en
|
lang: en
|
||||||
Event_start: 2019-09-23 15:00
|
Event_start: 2019-09-23 15:00
|
||||||
event_duration: 6h
|
event_duration: 6h
|
||||||
featured_image: /images/bpwlogo.jpg
|
featured_image: images/bpwlogo.jpg
|
||||||
summary: Join us on Monday the 23rd of September for an afternoon or evening of discussion, co-learning and reflection on the housing situation in Rotterdam, our rights as tenants and how we can support each other to work towards solutions for more safe, secure and affordable housing.
|
summary: Join us on Monday the 23rd of September for an afternoon or evening of discussion, co-learning and reflection on the housing situation in Rotterdam, our rights as tenants and how we can support each other to work towards solutions for more safe, secure and affordable housing.
|
||||||
|
|
||||||
Dear all,
|
Dear all,
|
@ -5,7 +5,7 @@ slug: bpw-consultation-plus-meet-and-greet
|
|||||||
lang: nl
|
lang: nl
|
||||||
Event_start: 2019-09-23 15:00
|
Event_start: 2019-09-23 15:00
|
||||||
event_duration: 6h
|
event_duration: 6h
|
||||||
featured_image: /images/bpwlogo.jpg
|
featured_image: images/bpwlogo.jpg
|
||||||
summary: Op maandag 23 september ben je van harte welkom om deel te nemen aan discussies, of om samen te reflecteren op de huisvestingsituatie in Rotterdam, onze huurrechten en hoe we elkaar kunnen steunen in het zoeken naar oplossingen voor veilige, zekere en betaalbare wonen.
|
summary: Op maandag 23 september ben je van harte welkom om deel te nemen aan discussies, of om samen te reflecteren op de huisvestingsituatie in Rotterdam, onze huurrechten en hoe we elkaar kunnen steunen in het zoeken naar oplossingen voor veilige, zekere en betaalbare wonen.
|
||||||
|
|
||||||
Beste allemaal,
|
Beste allemaal,
|
@ -5,7 +5,7 @@ slug: alles-flex-call-me-intern-city-dragon
|
|||||||
lang: nl
|
lang: nl
|
||||||
Event_start: 2020-02-08 17:30
|
Event_start: 2020-02-08 17:30
|
||||||
event_duration: 3h
|
event_duration: 3h
|
||||||
featured_image: /images/allesflex.png
|
featured_image: images/allesflex.png
|
||||||
summary: Een vertoning van de documentaires "Alles Flex?" en "Call me Intern", die beide een blik werpen op de gevolgen van de toenemende flexibilisering van huisvesting en werk. Daarnaast zal Sam Kreuk zijn muzikale solo-project City Dragon presenteren. Een avond vol documentaires, muziek en goede gesprekken!
|
summary: Een vertoning van de documentaires "Alles Flex?" en "Call me Intern", die beide een blik werpen op de gevolgen van de toenemende flexibilisering van huisvesting en werk. Daarnaast zal Sam Kreuk zijn muzikale solo-project City Dragon presenteren. Een avond vol documentaires, muziek en goede gesprekken!
|
||||||
|
|
||||||
Varia nodigt je uit voor een avond vol documentaires, muziek en goede gesprekken!
|
Varia nodigt je uit voor een avond vol documentaires, muziek en goede gesprekken!
|
@ -5,7 +5,7 @@ slug: alles-flex-call-me-intern-city-dragon
|
|||||||
lang: en
|
lang: en
|
||||||
Event_start: 2020-02-08 17:30
|
Event_start: 2020-02-08 17:30
|
||||||
event_duration: 3h
|
event_duration: 3h
|
||||||
featured_image: /images/allesflex.png
|
featured_image: images/allesflex.png
|
||||||
summary: A screening of the documentaries "Everything Flex?" and "Call me Intern", both of which look at the consequences of the ongoing flexibilization of both housing and work. In addition, Sam Kreuk will present his musical solo project City Dragon. An evening full of documentaries, debate and a music!
|
summary: A screening of the documentaries "Everything Flex?" and "Call me Intern", both of which look at the consequences of the ongoing flexibilization of both housing and work. In addition, Sam Kreuk will present his musical solo project City Dragon. An evening full of documentaries, debate and a music!
|
||||||
|
|
||||||
Varia would like to invite you to an evening of documentary watching, thoughtful debate and a musical performance!
|
Varia would like to invite you to an evening of documentary watching, thoughtful debate and a musical performance!
|
@ -5,7 +5,7 @@ Slug: ccc-screening
|
|||||||
lang: en
|
lang: en
|
||||||
event_start: 2017-12-27 11:00
|
event_start: 2017-12-27 11:00
|
||||||
event_end: 2017-12-30 18:15
|
event_end: 2017-12-30 18:15
|
||||||
featured_image: /images/ccc-2017.jpg
|
featured_image: images/ccc-2017.jpg
|
||||||
|
|
||||||
For those that didn't make it to Leipzig this year we're gathering to watch the 34c3 livestream in Varia:
|
For those that didn't make it to Leipzig this year we're gathering to watch the 34c3 livestream in Varia:
|
||||||
|
|
@ -5,7 +5,7 @@ Slug: ccc-screening
|
|||||||
lang: nl
|
lang: nl
|
||||||
event_start: 2017-12-27 11:00
|
event_start: 2017-12-27 11:00
|
||||||
event_end: 2017-12-30 18:15
|
event_end: 2017-12-30 18:15
|
||||||
featured_image: /images/ccc-2017.jpg
|
featured_image: images/ccc-2017.jpg
|
||||||
|
|
||||||
Voor hen die de tocht naar Leipzig dit jaar niet gaan maken organiseren we een 34c3 screening Varia:
|
Voor hen die de tocht naar Leipzig dit jaar niet gaan maken organiseren we een 34c3 screening Varia:
|
||||||
|
|
@ -5,7 +5,7 @@ lang: en
|
|||||||
Slug: id-buy-that-for-a-dollar
|
Slug: id-buy-that-for-a-dollar
|
||||||
Event_start: 2018-12-15 20:00
|
Event_start: 2018-12-15 20:00
|
||||||
event_duration: 4h
|
event_duration: 4h
|
||||||
featured_image: /images/C212_shopping.jpg
|
featured_image: images/C212_shopping.jpg
|
||||||
|
|
||||||
During our fourth and final screening of Century 21 Calling this year, we will honour the holiday season by taking a look at the development of ‘the shopping experience’. During this 'Christmas special' we'll take a walk through the shopping center and focus our attention on amazon.com, creditcards and refund instruction video’s. This will surely get you in the shopping mood!
|
During our fourth and final screening of Century 21 Calling this year, we will honour the holiday season by taking a look at the development of ‘the shopping experience’. During this 'Christmas special' we'll take a walk through the shopping center and focus our attention on amazon.com, creditcards and refund instruction video’s. This will surely get you in the shopping mood!
|
||||||
|
|
@ -5,7 +5,7 @@ lang: nl
|
|||||||
Slug: id-buy-that-for-a-dollar
|
Slug: id-buy-that-for-a-dollar
|
||||||
Event_start: 2018-12-15 20:00
|
Event_start: 2018-12-15 20:00
|
||||||
event_duration: 4h
|
event_duration: 4h
|
||||||
featured_image: /images/C212_shopping.jpg
|
featured_image: images/C212_shopping.jpg
|
||||||
|
|
||||||
Tijdens onze vierde en laatste screening van Century 21 Calling dit jaar, zullen we de feestdagen eren door een blik te werpen op de ontwikkeling van 'de winkelervaring'. Gedurende deze "kerstspecial" maken we een wandeling door het winkelcentrum en vertonen materiaal met betrekking tot amazon.com, creditcards en het terugbrengen van je spelcomputer naar de winkel.
|
Tijdens onze vierde en laatste screening van Century 21 Calling dit jaar, zullen we de feestdagen eren door een blik te werpen op de ontwikkeling van 'de winkelervaring'. Gedurende deze "kerstspecial" maken we een wandeling door het winkelcentrum en vertonen materiaal met betrekking tot amazon.com, creditcards en het terugbrengen van je spelcomputer naar de winkel.
|
||||||
|
|
@ -5,7 +5,7 @@ slug: century-21-calling
|
|||||||
lang: en
|
lang: en
|
||||||
Event_start: 2018-04-14 19:30
|
Event_start: 2018-04-14 19:30
|
||||||
event_duration: 3h
|
event_duration: 3h
|
||||||
featured_image: /images/century21.jpg
|
featured_image: images/century21.jpg
|
||||||
summary: Once we were all promised a better tomorrow with robots, atomic powered cars and inflatable plastic homes. After the second world war the promises of technology made it seem like everything was possible. However, it seems like much of this optimism might have been a bit premature. Where is the dream of tomorrow now? Do we still dare to dream of the future?
|
summary: Once we were all promised a better tomorrow with robots, atomic powered cars and inflatable plastic homes. After the second world war the promises of technology made it seem like everything was possible. However, it seems like much of this optimism might have been a bit premature. Where is the dream of tomorrow now? Do we still dare to dream of the future?
|
||||||
|
|
||||||
|
|
@ -5,7 +5,7 @@ slug: century-21-calling
|
|||||||
lang: nl
|
lang: nl
|
||||||
Event_start: 2018-04-14 19:30
|
Event_start: 2018-04-14 19:30
|
||||||
event_duration: 3h
|
event_duration: 3h
|
||||||
featured_image: /images/century21.jpg
|
featured_image: images/century21.jpg
|
||||||
summary: Eens werd ons allemaal een betere toekomst beloofd met robots, nucleair gedreven auto's en opblaasbare plastic huizen. Dankzij de beloftes van technologie die ontstonden na de Tweede Wereldoorlog leek het alsof alles mogelijk was. Maar het lijkt er daarentegen op dat veel van dit optimisme een beetje voorbarig is geweest. Waar is de droom van morgen nu? Durven we nog te dromen van de toekomst?
|
summary: Eens werd ons allemaal een betere toekomst beloofd met robots, nucleair gedreven auto's en opblaasbare plastic huizen. Dankzij de beloftes van technologie die ontstonden na de Tweede Wereldoorlog leek het alsof alles mogelijk was. Maar het lijkt er daarentegen op dat veel van dit optimisme een beetje voorbarig is geweest. Waar is de droom van morgen nu? Durven we nog te dromen van de toekomst?
|
||||||
|
|
||||||
|
|
@ -5,7 +5,7 @@ slug: C21C
|
|||||||
lang: en
|
lang: en
|
||||||
Event_start: 2019-04-20 20:00
|
Event_start: 2019-04-20 20:00
|
||||||
event_duration: 3h
|
event_duration: 3h
|
||||||
featured_image: /images/C212_05_safey.jpg
|
featured_image: images/C212_05_safey.jpg
|
||||||
tags: health, safety, 21st century
|
tags: health, safety, 21st century
|
||||||
|
|
||||||
During the fifth screening of our Century 21 Calling series we will take a look at how to stay safe in an insecure world. Rules change over the decades; What was once seen as a completely safe thing to do, is now extremely deadly. How do you stay safe in the traffic? What are the dangers around the office? Where can your children play safely? These questions and many more will be addressed during this informative evening.
|
During the fifth screening of our Century 21 Calling series we will take a look at how to stay safe in an insecure world. Rules change over the decades; What was once seen as a completely safe thing to do, is now extremely deadly. How do you stay safe in the traffic? What are the dangers around the office? Where can your children play safely? These questions and many more will be addressed during this informative evening.
|
@ -5,7 +5,7 @@ slug: C21C
|
|||||||
lang: nl
|
lang: nl
|
||||||
Event_start: 2019-04-20 20:00
|
Event_start: 2019-04-20 20:00
|
||||||
event_duration: 3h
|
event_duration: 3h
|
||||||
featured_image: /images/C212_05_safey.jpg
|
featured_image: images/C212_05_safey.jpg
|
||||||
tags: health, safety, 21st century
|
tags: health, safety, 21st century
|
||||||
|
|
||||||
Tijdens de vijfde vertoning van onze Century 21 Calling-serie leren we hoe we veilig kunnen blijven in een onzekere wereld. Regels veranderen in de loop van de decennia; Wat ooit als volkomen veilig werd gezien, is nu simpelweg dodelijk. Hoe blijf je veilig in het verkeer? Wat zijn de gevaren op kantoor? Waar kunnen je kinderen veilig spelen? Deze vragen en vele andere komen tijdens deze informatieve avond aan bod.
|
Tijdens de vijfde vertoning van onze Century 21 Calling-serie leren we hoe we veilig kunnen blijven in een onzekere wereld. Regels veranderen in de loop van de decennia; Wat ooit als volkomen veilig werd gezien, is nu simpelweg dodelijk. Hoe blijf je veilig in het verkeer? Wat zijn de gevaren op kantoor? Waar kunnen je kinderen veilig spelen? Deze vragen en vele andere komen tijdens deze informatieve avond aan bod.
|
@ -5,7 +5,7 @@ slug: the-big-bounce_century-21-calling
|
|||||||
lang: en
|
lang: en
|
||||||
Event_start: 2018-10-20 20:00
|
Event_start: 2018-10-20 20:00
|
||||||
event_duration: 3h
|
event_duration: 3h
|
||||||
featured_image: /images/century21_the-big-bounce.jpg
|
featured_image: images/century21_the-big-bounce.jpg
|
||||||
summary: During our third screening of Century 21 Calling, we will be taking a look at the development of satellite communications. From the shiny orbs of the 1950s to our present day SATCOM systems.
|
summary: During our third screening of Century 21 Calling, we will be taking a look at the development of satellite communications. From the shiny orbs of the 1950s to our present day SATCOM systems.
|
||||||
|
|
||||||
|
|
@ -5,7 +5,7 @@ slug: the-big-bounce_century-21-calling
|
|||||||
lang: nl
|
lang: nl
|
||||||
Event_start: 2018-10-20 20:00
|
Event_start: 2018-10-20 20:00
|
||||||
event_duration: 3h
|
event_duration: 3h
|
||||||
featured_image: /images/century21_the-big-bounce.jpg
|
featured_image: images/century21_the-big-bounce.jpg
|
||||||
summary: De derde editie van Century 21 Calling is gewijd aan de ontwikkeling van satellietcommunicatie. Van de spiegelende kogels in de jaren 50 tot hedendaagse SATCOM systemen.
|
summary: De derde editie van Century 21 Calling is gewijd aan de ontwikkeling van satellietcommunicatie. Van de spiegelende kogels in de jaren 50 tot hedendaagse SATCOM systemen.
|
||||||
|
|
||||||
|
|
@ -5,7 +5,7 @@ Slug: choreographic
|
|||||||
lang: en
|
lang: en
|
||||||
event_start: 2018-11-15 19:00
|
event_start: 2018-11-15 19:00
|
||||||
event_duration: 2h
|
event_duration: 2h
|
||||||
featured_image: /images/choreo_joanachicau.gif
|
featured_image: images/choreo_joanachicau.gif
|
||||||
|
|
||||||
|
|
||||||
< body > < script >
|
< body > < script >
|
||||||
@ -58,7 +58,7 @@ She is a member of Varia! <http://joanachicau.com>
|
|||||||
|
|
||||||
---
|
---
|
||||||
|
|
||||||
![joanachicau.com](/images/pub.gif)
|
![joanachicau.com](images/pub.gif)
|
||||||
<small>Choreo-Graphic-Hypothesis gif preview.</small>
|
<small>Choreo-Graphic-Hypothesis gif preview.</small>
|
||||||
|
|
||||||
---
|
---
|
@ -5,7 +5,7 @@ Slug: choreographic
|
|||||||
lang: nl
|
lang: nl
|
||||||
event_start: 2018-11-15 19:00
|
event_start: 2018-11-15 19:00
|
||||||
event_duration: 2h
|
event_duration: 2h
|
||||||
featured_image: /images/choreo_joanachicau.gif
|
featured_image: images/choreo_joanachicau.gif
|
||||||
|
|
||||||
< body > < script >
|
< body > < script >
|
||||||
|
|
||||||
@ -59,7 +59,7 @@ Ze is ook lid van Varia! <http://joanachicau.com>
|
|||||||
|
|
||||||
---
|
---
|
||||||
|
|
||||||
![joanachicau.com](/images/pub.gif)
|
![joanachicau.com](images/pub.gif)
|
||||||
<small>Choreo-Graphic-Hypothesis gif preview.</small>
|
<small>Choreo-Graphic-Hypothesis gif preview.</small>
|
||||||
|
|
||||||
---
|
---
|
@ -5,7 +5,7 @@ Slug:conversas-february
|
|||||||
lang: en
|
lang: en
|
||||||
event_start: 2019-02-06 19:30
|
event_start: 2019-02-06 19:30
|
||||||
event_duration: 2h
|
event_duration: 2h
|
||||||
featured_image: /images/ConversasEvento137-02.png
|
featured_image: images/ConversasEvento137-02.png
|
||||||
summary: In February, Varia has the pleasure to host one of the nomadic Conversas evenings. Conversas is a series of bi-weekly informal meetings made so that we can get to know each other, share projects, stories or interests.
|
summary: In February, Varia has the pleasure to host one of the nomadic Conversas evenings. Conversas is a series of bi-weekly informal meetings made so that we can get to know each other, share projects, stories or interests.
|
||||||
tags: Conversas, informal, meetings
|
tags: Conversas, informal, meetings
|
||||||
|
|
@ -5,7 +5,7 @@ Slug:conversas-february
|
|||||||
lang: nl
|
lang: nl
|
||||||
event_start: 2019-02-06 19:30
|
event_start: 2019-02-06 19:30
|
||||||
event_duration: 2h
|
event_duration: 2h
|
||||||
featured_image: /images/ConversasEvento137-02.png
|
featured_image: images/ConversasEvento137-02.png
|
||||||
summary: In februari heeft Varia het genoegen een van de nomadische Conversas-avonden te ontvangen. Conversas is een serie van tweewekelijkse informele ontmoetingen, zodat we elkaar kunnen leren kennen, projecten, verhalen of interesses kunnen delen.
|
summary: In februari heeft Varia het genoegen een van de nomadische Conversas-avonden te ontvangen. Conversas is een serie van tweewekelijkse informele ontmoetingen, zodat we elkaar kunnen leren kennen, projecten, verhalen of interesses kunnen delen.
|
||||||
tags: Conversas, informeel, ontmoetingen
|
tags: Conversas, informeel, ontmoetingen
|
||||||
|
|
@ -5,7 +5,7 @@ slug: crimson
|
|||||||
lang: en
|
lang: en
|
||||||
Event_start: 2018-09-14 20:00
|
Event_start: 2018-09-14 20:00
|
||||||
event_duration: 4h
|
event_duration: 4h
|
||||||
featured_image: /images/Evamuss1.jpg
|
featured_image: images/Evamuss1.jpg
|
||||||
|
|
||||||
**Crimson Butterfly (Russia)** is a cosmoenergetic alliance of two cats with synths and laptop. Physical bodies of the band are located in Nizhniy Novgorod, Russia, the sounds have been created for more than ten years. For this period different genres had been tried: coldwave with mysterious autist singer, then synthpop with two lead singers, and currently the band returned to what it had started with: improvisational abstract electronic. The band makes very intense and hypnotic music with dance and ambient elements, improvisational by nature. People often call it "experimental". Crimson Butterfly love to give concerts and play at any venues from vaults to museums in any cities from Balashikha to Barcelona. Their faces are so beautiful that they hide them behind the masks and all their unforgettable shows are always accompanied by hipnotic visual sequences.
|
**Crimson Butterfly (Russia)** is a cosmoenergetic alliance of two cats with synths and laptop. Physical bodies of the band are located in Nizhniy Novgorod, Russia, the sounds have been created for more than ten years. For this period different genres had been tried: coldwave with mysterious autist singer, then synthpop with two lead singers, and currently the band returned to what it had started with: improvisational abstract electronic. The band makes very intense and hypnotic music with dance and ambient elements, improvisational by nature. People often call it "experimental". Crimson Butterfly love to give concerts and play at any venues from vaults to museums in any cities from Balashikha to Barcelona. Their faces are so beautiful that they hide them behind the masks and all their unforgettable shows are always accompanied by hipnotic visual sequences.
|
||||||
|
|
@ -5,7 +5,7 @@ slug: crimson
|
|||||||
lang: nl
|
lang: nl
|
||||||
Event_start: 2018-09-14 20:00
|
Event_start: 2018-09-14 20:00
|
||||||
event_duration: 4h
|
event_duration: 4h
|
||||||
featured_image: /images/Evamuss1.jpg
|
featured_image: images/Evamuss1.jpg
|
||||||
|
|
||||||
** Crimson Butterfly (Rusland) ** is een kosmoenergetische alliantie van twee katten met synths en laptop. De fysieke lichamen van de band bevinden zich in Nizhniy Novgorod, Rusland, maar de geluiden zijn al meer dan tien jaar geleden gemaakt. Voor deze periode hadden zij al verschillende genres geprobeerd: coldwave met een mysterieuze autistische zangeres, vervolgens synthpop met twee leadzangers, om daarna terug te keren naar waar alles mee begonnen was: improvisatie en abstracte elektronica. De band maakt zeer intense en hypnotiserende muziek met dans en ambient elementen, improviserend van aard. Mensen noemen het vaak 'experimenteel'. Crimson Butterfly houdt ervan om concerten te geven en te spelen op locaties zoals kluizen van musea, ergens tussen Balashikha en Barcelona. Hun gezichten zijn zo mooi dat ze zich achter maskers verbergen en al hun onvergetelijke shows worden vergezeld door heupnotische visuele sequenties.
|
** Crimson Butterfly (Rusland) ** is een kosmoenergetische alliantie van twee katten met synths en laptop. De fysieke lichamen van de band bevinden zich in Nizhniy Novgorod, Rusland, maar de geluiden zijn al meer dan tien jaar geleden gemaakt. Voor deze periode hadden zij al verschillende genres geprobeerd: coldwave met een mysterieuze autistische zangeres, vervolgens synthpop met twee leadzangers, om daarna terug te keren naar waar alles mee begonnen was: improvisatie en abstracte elektronica. De band maakt zeer intense en hypnotiserende muziek met dans en ambient elementen, improviserend van aard. Mensen noemen het vaak 'experimenteel'. Crimson Butterfly houdt ervan om concerten te geven en te spelen op locaties zoals kluizen van musea, ergens tussen Balashikha en Barcelona. Hun gezichten zijn zo mooi dat ze zich achter maskers verbergen en al hun onvergetelijke shows worden vergezeld door heupnotische visuele sequenties.
|
||||||
|
|
@ -5,7 +5,7 @@ slug: ctrl-alt-save-first
|
|||||||
lang: en
|
lang: en
|
||||||
Event_start: 2020-02-21 11:00
|
Event_start: 2020-02-21 11:00
|
||||||
event_duration: 5h
|
event_duration: 5h
|
||||||
featured_image: /images/infinitehd.jpg
|
featured_image: images/infinitehd.jpg
|
||||||
tags: ctrl-alt-save, data, storage
|
tags: ctrl-alt-save, data, storage
|
||||||
|
|
||||||
Ever had a hard-drive crash? lost data? cloud back did
|
Ever had a hard-drive crash? lost data? cloud back did
|
@ -5,7 +5,7 @@ slug: ctrl-alt-save-first
|
|||||||
lang: nl
|
lang: nl
|
||||||
Event_start: 2020-02-21 11:00
|
Event_start: 2020-02-21 11:00
|
||||||
event_duration: 5h
|
event_duration: 5h
|
||||||
featured_image: /images/infinitehd.jpg
|
featured_image: images/infinitehd.jpg
|
||||||
tags: ctrl-alt-save, data, storage
|
tags: ctrl-alt-save, data, storage
|
||||||
|
|
||||||
Ooit een harde schijf gehad? gegevens verloren? cloud
|
Ooit een harde schijf gehad? gegevens verloren? cloud
|
@ -6,7 +6,7 @@ slug: recycle-reduce-reuse
|
|||||||
lang: en
|
lang: en
|
||||||
Event_start: 2018-11-22 10:00
|
Event_start: 2018-11-22 10:00
|
||||||
event_duration: 8h
|
event_duration: 8h
|
||||||
featured_image: /images/Repair.jpg
|
featured_image: images/Repair.jpg
|
||||||
|
|
||||||
Over the last couple of centuries rapid changes in technology, economic fluctuation, technological replacement and planned obsolescence have resulted in a fast-growing surplus of (electronic) waste around the globe. An equally growing demand has risen for the re-purposing, repair, disposal and salvaging of this material, generating different methods that each have their own impact on the economy and environment. Among others, some relevant questions arise from this matter:
|
Over the last couple of centuries rapid changes in technology, economic fluctuation, technological replacement and planned obsolescence have resulted in a fast-growing surplus of (electronic) waste around the globe. An equally growing demand has risen for the re-purposing, repair, disposal and salvaging of this material, generating different methods that each have their own impact on the economy and environment. Among others, some relevant questions arise from this matter:
|
||||||
|
|
@ -6,7 +6,7 @@ slug: recycle-reduce-reuse
|
|||||||
lang: nl
|
lang: nl
|
||||||
Event_start: 2018-11-22 10:00
|
Event_start: 2018-11-22 10:00
|
||||||
event_duration: 8h
|
event_duration: 8h
|
||||||
featured_image: /images/Repair.jpg
|
featured_image: images/Repair.jpg
|
||||||
|
|
||||||
In de afgelopen paar eeuwen hebben snelle veranderingen in technologie, economische fluctuatie, technologische vervanging en geplande veroudering geleid tot een snelgroeiend overschot aan (elektronisch) afval over de hele wereld. Er is een eveneens groeiende vraag ontstaan voor het opnieuw gebruiken, repareren, verwijderen en bergen van dit materiaal, waarbij verschillende methoden worden toegepast die elk hun eigen impact hebben op de economie en het milieu. Hieruit vloeien enkele relevante vragen:
|
In de afgelopen paar eeuwen hebben snelle veranderingen in technologie, economische fluctuatie, technologische vervanging en geplande veroudering geleid tot een snelgroeiend overschot aan (elektronisch) afval over de hele wereld. Er is een eveneens groeiende vraag ontstaan voor het opnieuw gebruiken, repareren, verwijderen en bergen van dit materiaal, waarbij verschillende methoden worden toegepast die elk hun eigen impact hebben op de economie en het milieu. Hieruit vloeien enkele relevante vragen:
|
||||||
|
|
@ -6,7 +6,7 @@ slug: curriculum-bibliotecha
|
|||||||
lang: en
|
lang: en
|
||||||
Event_start: 2019-07-06 10:00
|
Event_start: 2019-07-06 10:00
|
||||||
event_duration: 5h
|
event_duration: 5h
|
||||||
featured_image: /images/bibliotecha_01.png
|
featured_image: images/bibliotecha_01.png
|
||||||
status: published
|
status: published
|
||||||
|
|
||||||
## Building and maintaining an off-line digital library
|
## Building and maintaining an off-line digital library
|
@ -6,7 +6,7 @@ slug: curriculum-bibliotecha
|
|||||||
lang: nl
|
lang: nl
|
||||||
Event_start: 2019-07-06 10:00
|
Event_start: 2019-07-06 10:00
|
||||||
event_duration: 5h
|
event_duration: 5h
|
||||||
featured_image: /images/bibliotecha_01.png
|
featured_image: images/bibliotecha_01.png
|
||||||
status: published
|
status: published
|
||||||
|
|
||||||
## Maak en onderhoud een off-line digitale gemeenschapsbibliotheek
|
## Maak en onderhoud een off-line digitale gemeenschapsbibliotheek
|
@ -6,7 +6,7 @@ slug: curriculum-command-lines
|
|||||||
lang: en
|
lang: en
|
||||||
Event_start: 2018-10-18 10:00
|
Event_start: 2018-10-18 10:00
|
||||||
event_duration: 8h
|
event_duration: 8h
|
||||||
featured_image: /images/curriculum.command-lines.png
|
featured_image: images/curriculum.command-lines.png
|
||||||
|
|
||||||
## On text, encodings and command lines.
|
## On text, encodings and command lines.
|
||||||
|
|
@ -6,7 +6,7 @@ slug: curriculum-command-lines
|
|||||||
lang: nl
|
lang: nl
|
||||||
Event_start: 2018-10-18 10:00
|
Event_start: 2018-10-18 10:00
|
||||||
event_duration: 8h
|
event_duration: 8h
|
||||||
featured_image: /images/curriculum.command-lines.png
|
featured_image: images/curriculum.command-lines.png
|
||||||
|
|
||||||
## Over tekst, encoderen en command lines.
|
## Over tekst, encoderen en command lines.
|
||||||
|
|
@ -6,7 +6,7 @@ slug: considerate-cake
|
|||||||
lang: en
|
lang: en
|
||||||
Event_start: 2018-10-11 10:00
|
Event_start: 2018-10-11 10:00
|
||||||
event_duration: 8h
|
event_duration: 8h
|
||||||
featured_image: /images/Cake.jpg
|
featured_image: images/Cake.jpg
|
||||||
|
|
||||||
In our understanding, food as a commodity finds its most revealing expression in the form of the cake. In this workshop we investigate the history of culinary hegemony by collectively baking a specific sweet recipe that showcases the way we perceive and partake in food today. Not only will we be analysing the origins of specific ingredients and recipes, we will also focus on the political economy and class dynamics that engender taste and ingredient accessibility. The actual confection of this cake will provide us with an opportunity to hack into the requirments involved in such practices and turn the table around.
|
In our understanding, food as a commodity finds its most revealing expression in the form of the cake. In this workshop we investigate the history of culinary hegemony by collectively baking a specific sweet recipe that showcases the way we perceive and partake in food today. Not only will we be analysing the origins of specific ingredients and recipes, we will also focus on the political economy and class dynamics that engender taste and ingredient accessibility. The actual confection of this cake will provide us with an opportunity to hack into the requirments involved in such practices and turn the table around.
|
||||||
|
|
@ -6,7 +6,7 @@ slug: considerate-cake
|
|||||||
lang: nl
|
lang: nl
|
||||||
Event_start: 2018-10-11 10:00
|
Event_start: 2018-10-11 10:00
|
||||||
event_duration: 8h
|
event_duration: 8h
|
||||||
featured_image: /images/Cake.jpg
|
featured_image: images/Cake.jpg
|
||||||
|
|
||||||
Voedsel als handelswaar vindt wellicht zijn meest onthullende expressie in de vorm van de taart. In deze workshop onderzoeken we de geschiedenis van culinaire hegemonie door gezamenlijk een specifiek zoet recept te bakken dat de wijze laat zien waarop we voedsel vandaag waarnemen en consumeren. Niet alleen zullen we de oorsprong van specifieke ingrediënten en recepten analyseren, we zullen ons ook richten op de politieke economie en klassendynamiek die toegankelijkheid van deze smaken en ingrediënten teweegbrengen. De daadwerkelijke confectie van een taart biedt ons de mogelijkheid om de voorwaarden van dergelijke praktijken ter discussie te stellen.
|
Voedsel als handelswaar vindt wellicht zijn meest onthullende expressie in de vorm van de taart. In deze workshop onderzoeken we de geschiedenis van culinaire hegemonie door gezamenlijk een specifiek zoet recept te bakken dat de wijze laat zien waarop we voedsel vandaag waarnemen en consumeren. Niet alleen zullen we de oorsprong van specifieke ingrediënten en recepten analyseren, we zullen ons ook richten op de politieke economie en klassendynamiek die toegankelijkheid van deze smaken en ingrediënten teweegbrengen. De daadwerkelijke confectie van een taart biedt ons de mogelijkheid om de voorwaarden van dergelijke praktijken ter discussie te stellen.
|
||||||
|
|
@ -6,7 +6,7 @@ slug: curriculum-homebrewserverclub
|
|||||||
lang: en
|
lang: en
|
||||||
Event_start: 2019-06-27 10:00
|
Event_start: 2019-06-27 10:00
|
||||||
event_duration: 5h
|
event_duration: 5h
|
||||||
featured_image: /images/homebrewserverclub.png
|
featured_image: images/homebrewserverclub.png
|
||||||
status: draft
|
status: draft
|
||||||
|
|
||||||
## Homebrew server fundamentals
|
## Homebrew server fundamentals
|
@ -6,7 +6,7 @@ slug: curriculum-homebrewserverclub
|
|||||||
lang: nl
|
lang: nl
|
||||||
Event_start: 2019-06-27 10:00
|
Event_start: 2019-06-27 10:00
|
||||||
event_duration: 5h
|
event_duration: 5h
|
||||||
featured_image: /images/homebrewserverclub.png
|
featured_image: images/homebrewserverclub.png
|
||||||
status: draft
|
status: draft
|
||||||
|
|
||||||
## XXX-TODO-XXX
|
## XXX-TODO-XXX
|
@ -6,7 +6,7 @@ slug: curriculum-ipfs
|
|||||||
lang: en
|
lang: en
|
||||||
Event_start: 2018-11-01 10:00
|
Event_start: 2018-11-01 10:00
|
||||||
event_duration: 8h
|
event_duration: 8h
|
||||||
featured_image: /images/networktopology.jpeg
|
featured_image: images/networktopology.jpeg
|
||||||
|
|
||||||
## Off the centralitarian HTTP path.
|
## Off the centralitarian HTTP path.
|
||||||
|
|
@ -6,7 +6,7 @@ slug: curriculum-ipfs
|
|||||||
lang: nl
|
lang: nl
|
||||||
Event_start: 2018-11-01 10:00
|
Event_start: 2018-11-01 10:00
|
||||||
event_duration: 8h
|
event_duration: 8h
|
||||||
featured_image: /images/networktopology.jpeg
|
featured_image: images/networktopology.jpeg
|
||||||
|
|
||||||
## Van het gecentraliseerde HTTP pad af
|
## Van het gecentraliseerde HTTP pad af
|
||||||
|
|
@ -5,7 +5,7 @@ lang: en
|
|||||||
Slug: druk-cantos-bohman-evening
|
Slug: druk-cantos-bohman-evening
|
||||||
Event_start: 2018-11-24 20:00
|
Event_start: 2018-11-24 20:00
|
||||||
event_duration: 3h
|
event_duration: 3h
|
||||||
featured_image: /images/druk-concert.jpg
|
featured_image: images/druk-concert.jpg
|
||||||
Tags: music, fluxus, improv, revival
|
Tags: music, fluxus, improv, revival
|
||||||
Summary: Because we can't always keep the pressure on, we've added a musical intermezzo during [Woodstone Kugelblitz: Druk In Varia]({filename}/home/r/varia.website/content/woodstonekugelblitz-druk.en.md).
|
Summary: Because we can't always keep the pressure on, we've added a musical intermezzo during [Woodstone Kugelblitz: Druk In Varia]({filename}/home/r/varia.website/content/woodstonekugelblitz-druk.en.md).
|
||||||
|
|
@ -5,7 +5,7 @@ lang: nl
|
|||||||
Slug: druk-cantos-bohman-evening
|
Slug: druk-cantos-bohman-evening
|
||||||
Event_start: 2018-11-24 20:00
|
Event_start: 2018-11-24 20:00
|
||||||
event_duration: 3h
|
event_duration: 3h
|
||||||
featured_image: /images/druk-concert.jpg
|
featured_image: images/druk-concert.jpg
|
||||||
Tags: music, fluxus, improv, revival
|
Tags: music, fluxus, improv, revival
|
||||||
Summary:Omdat de boog niet altijd gespannen kan staan, lassen we tijdens het evenement [Woodstone Kugelblitz: Druk In Varia]({filename}/home/r/varia.website/content/woodstonekugelblitz-druk.nl.md) een muzikale pauze in.
|
Summary:Omdat de boog niet altijd gespannen kan staan, lassen we tijdens het evenement [Woodstone Kugelblitz: Druk In Varia]({filename}/home/r/varia.website/content/woodstonekugelblitz-druk.nl.md) een muzikale pauze in.
|
||||||
|
|
@ -5,7 +5,7 @@ Slug: feminist-hack-meetings-feb-servers
|
|||||||
lang: en
|
lang: en
|
||||||
event_start: 2020-02-29 15:00
|
event_start: 2020-02-29 15:00
|
||||||
event_duration: 3h
|
event_duration: 3h
|
||||||
featured_image: /images/feminist-servers.jpg
|
featured_image: images/feminist-servers.jpg
|
||||||
summary: The Feminist Hack Meetings are a series of informal research meetings and workshops that aim to explore the suggestions, urgencies and potentials of feminist hack & tech initiatives.
|
summary: The Feminist Hack Meetings are a series of informal research meetings and workshops that aim to explore the suggestions, urgencies and potentials of feminist hack & tech initiatives.
|
||||||
|
|
||||||
Artemis and Angeliki invite you to join the Feminist Hack Meetings.
|
Artemis and Angeliki invite you to join the Feminist Hack Meetings.
|
@ -5,7 +5,7 @@ Slug: feminist-hack-meetings-feb-servers
|
|||||||
lang: nl
|
lang: nl
|
||||||
event_start: 2020-02-29 15:00
|
event_start: 2020-02-29 15:00
|
||||||
event_duration: 3h
|
event_duration: 3h
|
||||||
featured_image: /images/feminist-servers.jpg
|
featured_image: images/feminist-servers.jpg
|
||||||
summary: De Feministische Hack Bijeenkomsten zijn een reeks informele onderzoeksbijeenkomsten en workshops die gericht zijn op het verkennen van de suggesties, urgenties en mogelijkheden van feministische hack & tech-initiatieven.
|
summary: De Feministische Hack Bijeenkomsten zijn een reeks informele onderzoeksbijeenkomsten en workshops die gericht zijn op het verkennen van de suggesties, urgenties en mogelijkheden van feministische hack & tech-initiatieven.
|
||||||
|
|
||||||
Artemis en Angeliki nodigen u graag uit om deel te nemen aan de Feministische Hack Meetings.
|
Artemis en Angeliki nodigen u graag uit om deel te nemen aan de Feministische Hack Meetings.
|
@ -5,7 +5,7 @@ Slug:feminist-hack-meetings-jan
|
|||||||
lang: en
|
lang: en
|
||||||
event_start: 2020-01-25 17:00
|
event_start: 2020-01-25 17:00
|
||||||
event_duration: 2h
|
event_duration: 2h
|
||||||
featured_image: /images/varia_image_1stmeeting.jpg
|
featured_image: images/varia_image_1stmeeting.jpg
|
||||||
summary: The Feminist Hack Meetings are a series of informal research meetings and workshops that aim to explore the suggestions, urgencies and potentials of feminist hack & tech initiatives.
|
summary: The Feminist Hack Meetings are a series of informal research meetings and workshops that aim to explore the suggestions, urgencies and potentials of feminist hack & tech initiatives.
|
||||||
|
|
||||||
Artemis and Angeliki invite you to join the Feminist Hack Meetings.
|
Artemis and Angeliki invite you to join the Feminist Hack Meetings.
|
@ -5,7 +5,7 @@ Slug:feminist-hack-meetings-jan
|
|||||||
lang: nl
|
lang: nl
|
||||||
event_start: 2020-01-25 17:00
|
event_start: 2020-01-25 17:00
|
||||||
event_duration: 2h
|
event_duration: 2h
|
||||||
featured_image: /images/varia_image_1stmeeting.jpg
|
featured_image: images/varia_image_1stmeeting.jpg
|
||||||
summary: De Feministische Hack Bijeenkomsten zijn een reeks informele onderzoeksbijeenkomsten en workshops die gericht zijn op het verkennen van de suggesties, urgenties en mogelijkheden van feministische hack & tech-initiatieven.
|
summary: De Feministische Hack Bijeenkomsten zijn een reeks informele onderzoeksbijeenkomsten en workshops die gericht zijn op het verkennen van de suggesties, urgenties en mogelijkheden van feministische hack & tech-initiatieven.
|
||||||
|
|
||||||
Artemis en Angeliki nodigen u graag uit om deel te nemen aan de Feministische Hack Meetings.
|
Artemis en Angeliki nodigen u graag uit om deel te nemen aan de Feministische Hack Meetings.
|
@ -5,7 +5,7 @@ slug: floppy-totaal-DD
|
|||||||
lang: en
|
lang: en
|
||||||
Event_start: 2019-10-19 14:00
|
Event_start: 2019-10-19 14:00
|
||||||
event_duration: 10h
|
event_duration: 10h
|
||||||
featured_image: /images/FloppyTotaa_HIGHDESNITY_A2_NEW_web-(2).jpg
|
featured_image: images/FloppyTotaa_HIGHDESNITY_A2_NEW_web-(2).jpg
|
||||||
tags: floppy, totaal, event
|
tags: floppy, totaal, event
|
||||||
|
|
||||||
Floppy Totaal visits Varia for another round of dual-layered action. At "Floppy Totaal: Double Density" you can join members of the Floppy Kick music label during a live recording and publishing workshop in the afternoon. The subsequent evening program is filled to the brim with performances by Kisszántó and Eoforwine, presentations and conversations with Joak and Jason Scott and a long distance contribution by Michael Ridge.
|
Floppy Totaal visits Varia for another round of dual-layered action. At "Floppy Totaal: Double Density" you can join members of the Floppy Kick music label during a live recording and publishing workshop in the afternoon. The subsequent evening program is filled to the brim with performances by Kisszántó and Eoforwine, presentations and conversations with Joak and Jason Scott and a long distance contribution by Michael Ridge.
|
@ -5,7 +5,7 @@ Slug: hbsc-cal-1-en
|
|||||||
lang: en
|
lang: en
|
||||||
event_start: 2017-11-16 19:00
|
event_start: 2017-11-16 19:00
|
||||||
event_duration: 3h
|
event_duration: 3h
|
||||||
featured_image: /images/cal.png
|
featured_image: images/cal.png
|
||||||
|
|
||||||
A first gathering around self-hosted calendars.
|
A first gathering around self-hosted calendars.
|
||||||
|
|
@ -5,6 +5,6 @@ Slug: hbsc-cal-1-nl
|
|||||||
lang: nl
|
lang: nl
|
||||||
event_start: 2017-11-16 19:00
|
event_start: 2017-11-16 19:00
|
||||||
event_duration: 3h
|
event_duration: 3h
|
||||||
featured_image: /images/cal.png
|
featured_image: images/cal.png
|
||||||
|
|
||||||
Een eerste ontmoeting rondom zelf-gehoste kalenders.
|
Een eerste ontmoeting rondom zelf-gehoste kalenders.
|
@ -5,7 +5,7 @@ Slug: hbsc-cal-2-en
|
|||||||
lang: en
|
lang: en
|
||||||
event_start: 2017-11-30 19:00
|
event_start: 2017-11-30 19:00
|
||||||
event_duration: 3h
|
event_duration: 3h
|
||||||
featured_image: /images/cal2.png
|
featured_image: images/cal2.png
|
||||||
|
|
||||||
A second gathering around self-hosted calendars.
|
A second gathering around self-hosted calendars.
|
||||||
|
|
@ -5,7 +5,7 @@ Slug: hbsc-cal-2-nl
|
|||||||
lang: nl
|
lang: nl
|
||||||
event_start: 2017-11-30 19:00
|
event_start: 2017-11-30 19:00
|
||||||
event_duration: 3h
|
event_duration: 3h
|
||||||
featured_image: /images/cal2.png
|
featured_image: images/cal2.png
|
||||||
|
|
||||||
De tweede ontmoeting rondom zelf-gehoste kalenders.
|
De tweede ontmoeting rondom zelf-gehoste kalenders.
|
||||||
|
|
@ -5,7 +5,7 @@ slug: heath-bunting-apocalypse
|
|||||||
lang: en
|
lang: en
|
||||||
Event_start: 2020-02-17 14:00
|
Event_start: 2020-02-17 14:00
|
||||||
event_duration: 6h
|
event_duration: 6h
|
||||||
featured_image: /images//bristol_avon_street_heath_bunting_barbed_wire_fence_climbing01.jpg
|
featured_image: images//bristol_avon_street_heath_bunting_barbed_wire_fence_climbing01.jpg
|
||||||
tags: heath, bunting, apocalypse, workshop
|
tags: heath, bunting, apocalypse, workshop
|
||||||
summary: Heath Bunting visits Varia to share his past and present projects against control systems, in conversation with Florian Cramer and the Voluntary Fire Brigade of the Apocalypse.
|
summary: Heath Bunting visits Varia to share his past and present projects against control systems, in conversation with Florian Cramer and the Voluntary Fire Brigade of the Apocalypse.
|
||||||
|
|
@ -5,7 +5,7 @@ slug: heath-bunting-apocalypse
|
|||||||
lang: nl
|
lang: nl
|
||||||
Event_start: 2020-02-17 14:00
|
Event_start: 2020-02-17 14:00
|
||||||
event_duration: 6h
|
event_duration: 6h
|
||||||
featured_image: /images//bristol_avon_street_heath_bunting_barbed_wire_fence_climbing01.jpg
|
featured_image: images//bristol_avon_street_heath_bunting_barbed_wire_fence_climbing01.jpg
|
||||||
tags: heath, bunting, apocalypse, workshop
|
tags: heath, bunting, apocalypse, workshop
|
||||||
summary: Heath Bunting gaat bij Varia in gesprek met Florian Cramer en the Voluntary Fire Brigade of the Apocalypse. Hierbij gaat hij in op projecten uit het heden en verleden en zijn voortdurende strijd tegen controlesystemen.
|
summary: Heath Bunting gaat bij Varia in gesprek met Florian Cramer en the Voluntary Fire Brigade of the Apocalypse. Hierbij gaat hij in op projecten uit het heden en verleden en zijn voortdurende strijd tegen controlesystemen.
|
||||||
|
|
@ -5,7 +5,7 @@ Slug: inox-kapell
|
|||||||
lang: en
|
lang: en
|
||||||
event_start: 2017-12-16 19:00
|
event_start: 2017-12-16 19:00
|
||||||
event_duration:4h
|
event_duration:4h
|
||||||
featured_image: /images/insekt.jpg
|
featured_image: images/insekt.jpg
|
||||||
|
|
||||||
Varia gets a visit; from Inox Kapell, the insect man from Wespbaden. On December 16 he will give a short lecture about everything that concerns him. In addition, we serve some soup.
|
Varia gets a visit; from Inox Kapell, the insect man from Wespbaden. On December 16 he will give a short lecture about everything that concerns him. In addition, we serve some soup.
|
||||||
|
|
@ -5,7 +5,7 @@ Slug: inox-kapell
|
|||||||
lang: nl
|
lang: nl
|
||||||
event_start: 2017-12-16 19:00
|
event_start: 2017-12-16 19:00
|
||||||
event_duration:4h
|
event_duration:4h
|
||||||
featured_image: /images/insekt.jpg
|
featured_image: images/insekt.jpg
|
||||||
|
|
||||||
Varia krijgt bezoek; van Inox Kapell, de insectenman uit Wespbaden. Op 16 december geeft hij een korte lezing over alles wat hem zoal bezig houdt. Daarbij serveren we een soep.
|
Varia krijgt bezoek; van Inox Kapell, de insectenman uit Wespbaden. Op 16 december geeft hij een korte lezing over alles wat hem zoal bezig houdt. Daarbij serveren we een soep.
|
||||||
|
|
@ -5,7 +5,7 @@ Slug: itisasif
|
|||||||
lang: en
|
lang: en
|
||||||
event_start: 2018-03-10 18:45
|
event_start: 2018-03-10 18:45
|
||||||
event_duration: 4h
|
event_duration: 4h
|
||||||
featured_image: /images/pluz.jpg
|
featured_image: images/pluz.jpg
|
||||||
|
|
||||||
A few months have passed since the 11th issue of the [Pervasive Labour Union zine](http://ilu.servus.at/) was launched, but the topics that were touched upon are yet to be digested. Focused on the "entreprecariat", the issue is an exploration of the multiple ways in which entrepreneurial ideas, models and approaches relate to the perception of precarity. To expand on the reflections that emerged from this informal publication, Varia is hosting some of its contributors. After an introduction of the Pervasive Labour Union zine project, there will be a conversation between Alina Lupu, Gui Machiavelli and Lídia Pereira moderated by Silvio Lorusso. The guests will discuss their contribution to the zine, as well as the relationship between their practice, emerging work standards, and the current state of education. Furthermore, there will be an open gaming session of two (or maybe more!) videogames which were reviewed in the zine, such as ["It Is As If You Were Doing Work"](https://www.pippinbarr.com/games/2017/07/03/it-is-as-if-you-were-doing-work.html) by Pippin Barr and ["The Founder"](http://thefounder.biz/) by Francis Tseng.
|
A few months have passed since the 11th issue of the [Pervasive Labour Union zine](http://ilu.servus.at/) was launched, but the topics that were touched upon are yet to be digested. Focused on the "entreprecariat", the issue is an exploration of the multiple ways in which entrepreneurial ideas, models and approaches relate to the perception of precarity. To expand on the reflections that emerged from this informal publication, Varia is hosting some of its contributors. After an introduction of the Pervasive Labour Union zine project, there will be a conversation between Alina Lupu, Gui Machiavelli and Lídia Pereira moderated by Silvio Lorusso. The guests will discuss their contribution to the zine, as well as the relationship between their practice, emerging work standards, and the current state of education. Furthermore, there will be an open gaming session of two (or maybe more!) videogames which were reviewed in the zine, such as ["It Is As If You Were Doing Work"](https://www.pippinbarr.com/games/2017/07/03/it-is-as-if-you-were-doing-work.html) by Pippin Barr and ["The Founder"](http://thefounder.biz/) by Francis Tseng.
|
||||||
|
|
@ -5,7 +5,7 @@ Slug: itisasif
|
|||||||
lang: nl
|
lang: nl
|
||||||
event_start: 2018-03-10 18:45
|
event_start: 2018-03-10 18:45
|
||||||
event_duration: 4h
|
event_duration: 4h
|
||||||
featured_image: /images/pluz.jpg
|
featured_image: images/pluz.jpg
|
||||||
|
|
||||||
Het is al een tijdje terug dat de 11de editie van de [Pervasive Labour Union zine](http://ilu.servus.at/) is verschenen, maar de discussie over onderwerpen van die uitgave aansneed is echter nog niet uitgewoed. Centraal in die uitgave stond het idee van het ['entreprecariat'](http://networkcultures.org/entreprecariat/) en de verschillende bijdragen boden allen verschillende inzichten over hoe om te gaan met de samenkomst van ondernemersideologie en precariteit. Om verder in te gaan op de bijdragen in van de zine organiseert Varia een avond met enkele van de auteurs.
|
Het is al een tijdje terug dat de 11de editie van de [Pervasive Labour Union zine](http://ilu.servus.at/) is verschenen, maar de discussie over onderwerpen van die uitgave aansneed is echter nog niet uitgewoed. Centraal in die uitgave stond het idee van het ['entreprecariat'](http://networkcultures.org/entreprecariat/) en de verschillende bijdragen boden allen verschillende inzichten over hoe om te gaan met de samenkomst van ondernemersideologie en precariteit. Om verder in te gaan op de bijdragen in van de zine organiseert Varia een avond met enkele van de auteurs.
|
||||||
|
|
@ -6,7 +6,7 @@ Tags: event
|
|||||||
lang: nl
|
lang: nl
|
||||||
Event_start: 2019-03-15 20:00
|
Event_start: 2019-03-15 20:00
|
||||||
event_duration: 4h
|
event_duration: 4h
|
||||||
featured_image: /images/kettle4-web-xs.jpg
|
featured_image: images/kettle4-web-xs.jpg
|
||||||
|
|
||||||
Er is meer tussen hemel en aarde dan de mens! Op 15 maart besteden we daarom aandacht aan “levenloze” object in ons midden. Op de stenen vloer van Varia zullen een vijftal artiesten te zien zijn die een intieme relatie met hun naaimachines, broodroosters, ventilatoren, waterkokers en opgeviste werkhandschoenen durven aan te gaan. Dit alles onder het mom van ‘The Call Of The Kettle’; de eerste object georienteerde muziekavond bij Varia! Tijdens dit evenement zullen er optredens te zien zijn van de volgende artiesten:
|
Er is meer tussen hemel en aarde dan de mens! Op 15 maart besteden we daarom aandacht aan “levenloze” object in ons midden. Op de stenen vloer van Varia zullen een vijftal artiesten te zien zijn die een intieme relatie met hun naaimachines, broodroosters, ventilatoren, waterkokers en opgeviste werkhandschoenen durven aan te gaan. Dit alles onder het mom van ‘The Call Of The Kettle’; de eerste object georienteerde muziekavond bij Varia! Tijdens dit evenement zullen er optredens te zien zijn van de volgende artiesten:
|
||||||
|
|
@ -6,7 +6,7 @@ Tags: event
|
|||||||
lang: en
|
lang: en
|
||||||
Event_start: 2019-03-15 20:00
|
Event_start: 2019-03-15 20:00
|
||||||
event_duration: 4h
|
event_duration: 4h
|
||||||
featured_image: /images/kettle4-web-xs.jpg
|
featured_image: images/kettle4-web-xs.jpg
|
||||||
|
|
||||||
There is more between heaven and earth than humankind! Therefore, we would like to direct your attention to your fellow "inanimate" object on the 15th of March. On this day five special acts will showcase their intimate relationship with their sewing machines, toasters, fans and working gloves. All this under the guise of 'The Call Of The Kettle'; the first object oriented music evening at Varia! During this event there will be performances by the following artists:
|
There is more between heaven and earth than humankind! Therefore, we would like to direct your attention to your fellow "inanimate" object on the 15th of March. On this day five special acts will showcase their intimate relationship with their sewing machines, toasters, fans and working gloves. All this under the guise of 'The Call Of The Kettle'; the first object oriented music evening at Varia! During this event there will be performances by the following artists:
|
||||||
|
|
Some files were not shown because too many files have changed in this diff Show More
Loading…
Reference in New Issue
Block a user