vault backup: 2026-03-07 09:54:02

This commit is contained in:
Vincent Verbruggen
2026-03-07 09:54:02 +01:00
parent cdf7b8c34d
commit 520c592bbd
9 changed files with 863 additions and 0 deletions

View File

@@ -0,0 +1,61 @@
<!-- W: 2500 + 500 each side -->
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 3500 3600" width="800" height="820"
font-family="monospace" font-size="48">
<!-- Background -->
<rect width="3500" height="3600" fill="#f8f8f8" />
<!-- Title -->
<!-- Room in mm. Visual: A at top, F/E (origin) at bottom-left.
SVG coords = (arch_x, 2600 - arch_y) so Y-up maps to SVG Y-down.
Polygon (SVG): A(0,0) B(2500,0) C(2500,1000) D(1500,1000) E(1500,2600) F(0,2600)
Arch coords: A(0,2600) B(2500,2600) C(2500,1600) D(1500,1600) E(1500,0) F(0,0)
-->
<!-- Make y be upwards increasing and add 500 padding -->
<g transform="translate(500, 3000) scale(1,-1)">
<!-- Fix text orientation -->
<g transform="translate(1250, 2850) scale(1,-1)">
<text text-anchor="middle" font-size="80" font-weight="bold"
fill="#333">Bathroom
Blueprint</text>
</g>
<!-- Room outline -->
<polygon
points="0,0 0,2600 2500,2600 2500,1500 1500,1500 1500,0"
fill=" white" stroke=" #333" stroke-width=" 16" stroke-linejoin=" miter" />
<!-- Default line padding 60 -->
<line x1="0" y1="calc(0 - 60)" x2="1500" y2="calc(0 - 60)" stroke="#555" stroke-width="4" />
<line x1="0" y1="calc(0 - 60 - 25)" x2="0" y2="calc(0 - 60 - 25 + 50)" stroke="#555"
stroke-width="4" />
<line x1="1500" y1="calc(0 - 60 - 25)" x2="1500" y2="calc(0 - 60 - 25 + 50)" stroke="#555"
stroke-width="4" />
<!-- Move in our coordinate then flip for text readable -->
<!-- text half way and on y - 120 -->
<g transform="translate(750, -120) scale(1,-1)">
<text text-anchor="middle" dominant-baseline="central" font-size="48" fill="#555">
1500</text>
</g>
<line x1="0" y1="calc(2600 + 60)" x2="2500" y2="calc(2600 + 60)" stroke="#555" stroke-width="4" />
<line x1="0" y1="calc(2600 + 60 - 25)" x2="0" y2="calc(2600 + 60 - 25 + 50)" stroke="#555"
stroke-width="4" />
<line x1="2500" y1="calc(2600 + 60 - 25)" x2="2500" y2="calc(2600 + 60 - 25 + 50)" stroke="#555"
stroke-width="4" />
<!-- Move in our coordinate then flip for text readable -->
<!-- text half way and on y + 120 -->
<g transform="translate(1250, 2720) scale(1,-1)">
<text text-anchor="middle" dominant-baseline="central" font-size="48" fill="#555">
2500</text>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 2.3 KiB

View File

@@ -0,0 +1,160 @@
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 3700 3800" width="800" height="820" font-family="monospace" font-size="48">
<!-- Background -->
<rect width="3700" height="3800" fill="#f8f8f8"/>
<!-- Title -->
<text x="1850" y="80" text-anchor="middle" font-size="80" font-weight="bold" fill="#333">Bathroom Blueprint (DRAFT)</text>
<text x="1850" y="140" text-anchor="middle" font-size="42" fill="#888">Coordinates in mm — F/E corner = (0,0) — Y increases upward</text>
<!-- Room in mm. Visual: A at top, F/E (origin) at bottom-left.
SVG coords = (arch_x, 2600 - arch_y) so Y-up maps to SVG Y-down.
Polygon (SVG): A(0,0) B(2500,0) C(2500,1000) D(1500,1000) E(1500,2600) F(0,2600)
Arch coords: A(0,2600) B(2500,2600) C(2500,1600) D(1500,1600) E(1500,0) F(0,0)
-->
<g transform="translate(400, 350)">
<!-- Room outline -->
<polygon points="0,0 2500,0 2500,1000 1500,1000 1500,2600 0,2600"
fill="white" stroke="#333" stroke-width="16" stroke-linejoin="miter"/>
<!-- === EDGE LABELS === -->
<!-- Wall A: top (arch y=2600) -->
<rect x="1210" y="-200" width="80" height="65" rx="10" fill="#e8e8e8" stroke="#999" stroke-width="3"/>
<text x="1250" y="-150" text-anchor="middle" font-size="48" font-weight="bold" fill="#333">A</text>
<!-- Wall B: right upper (arch x=2500) -->
<rect x="2560" y="460" width="80" height="65" rx="10" fill="#e8e8e8" stroke="#999" stroke-width="3"/>
<text x="2600" y="510" text-anchor="middle" font-size="48" font-weight="bold" fill="#333">B</text>
<!-- Wall C: step horizontal (arch y=1600) -->
<rect x="1960" y="1040" width="80" height="65" rx="10" fill="#e8e8e8" stroke="#999" stroke-width="3"/>
<text x="2000" y="1090" text-anchor="middle" font-size="48" font-weight="bold" fill="#333">C</text>
<!-- Wall D: right lower (arch x=1500) -->
<rect x="1560" y="1760" width="80" height="65" rx="10" fill="#e8e8e8" stroke="#999" stroke-width="3"/>
<text x="1600" y="1810" text-anchor="middle" font-size="48" font-weight="bold" fill="#333">D</text>
<!-- Wall E: bottom / door (arch y=0) -->
<rect x="710" y="2640" width="80" height="65" rx="10" fill="#e8e8e8" stroke="#999" stroke-width="3"/>
<text x="750" y="2690" text-anchor="middle" font-size="48" font-weight="bold" fill="#333">E</text>
<!-- Wall F: left (arch x=0) -->
<rect x="-200" y="1260" width="80" height="65" rx="10" fill="#e8e8e8" stroke="#999" stroke-width="3"/>
<text x="-160" y="1310" text-anchor="middle" font-size="48" font-weight="bold" fill="#333">F</text>
<!-- === DIMENSIONS === -->
<!-- Wall A: 2500mm (top) -->
<line x1="0" y1="-60" x2="2500" y2="-60" stroke="#555" stroke-width="4"/>
<line x1="0" y1="-85" x2="0" y2="-35" stroke="#555" stroke-width="4"/>
<line x1="2500" y1="-85" x2="2500" y2="-35" stroke="#555" stroke-width="4"/>
<text x="600" y="-90" text-anchor="middle" font-size="48" fill="#555">2500</text>
<!-- Wall F: 2600mm (left) -->
<line x1="-60" y1="0" x2="-60" y2="2600" stroke="#555" stroke-width="4"/>
<line x1="-85" y1="0" x2="-35" y2="0" stroke="#555" stroke-width="4"/>
<line x1="-85" y1="2600" x2="-35" y2="2600" stroke="#555" stroke-width="4"/>
<text x="-100" y="700" text-anchor="middle" font-size="48" fill="#555" transform="rotate(-90, -100, 700)">2600</text>
<!-- Wall E: 1500mm (bottom) -->
<line x1="0" y1="2720" x2="1500" y2="2720" stroke="#555" stroke-width="4"/>
<line x1="0" y1="2695" x2="0" y2="2745" stroke="#555" stroke-width="4"/>
<line x1="1500" y1="2695" x2="1500" y2="2745" stroke="#555" stroke-width="4"/>
<text x="350" y="2800" text-anchor="middle" font-size="48" fill="#555">1500</text>
<!-- Wall B: 1000mm (right upper) -->
<line x1="2660" y1="0" x2="2660" y2="1000" stroke="#555" stroke-width="4"/>
<line x1="2635" y1="0" x2="2685" y2="0" stroke="#555" stroke-width="4"/>
<line x1="2635" y1="1000" x2="2685" y2="1000" stroke="#555" stroke-width="4"/>
<text x="2750" y="520" text-anchor="middle" font-size="48" fill="#555" transform="rotate(90, 2750, 520)">1000</text>
<!-- Wall C: 1000mm (step) -->
<line x1="1500" y1="1120" x2="2500" y2="1120" stroke="#555" stroke-width="4"/>
<line x1="1500" y1="1095" x2="1500" y2="1145" stroke="#555" stroke-width="4"/>
<line x1="2500" y1="1095" x2="2500" y2="1145" stroke="#555" stroke-width="4"/>
<text x="2000" y="1190" text-anchor="middle" font-size="48" fill="#555">1000</text>
<!-- Wall D: 1600mm (right lower) -->
<line x1="1660" y1="1000" x2="1660" y2="2600" stroke="#555" stroke-width="4"/>
<line x1="1635" y1="1000" x2="1685" y2="1000" stroke="#555" stroke-width="4"/>
<line x1="1635" y1="2600" x2="1685" y2="2600" stroke="#555" stroke-width="4"/>
<text x="1750" y="1500" text-anchor="middle" font-size="48" fill="#555" transform="rotate(90, 1750, 1500)">1600</text>
<!-- === BATH (top-left corner, 1850x850, long side along wall F) === -->
<!-- SVG: (25, 25) to (875, 1875) -->
<g>
<rect x="25" y="25" width="850" height="1850" rx="60" fill="none" stroke="#333" stroke-width="10"/>
<rect x="75" y="75" width="750" height="1750" rx="50" fill="#d4e8f7" fill-opacity="0.3" stroke="#999" stroke-width="5"/>
<!-- Faucet (middle of bath, wall F side) -->
<circle cx="40" cy="950" r="30" fill="none" stroke="#4a90d9" stroke-width="7"/>
<circle cx="40" cy="950" r="10" fill="#4a90d9"/>
<!-- Drain -->
<circle cx="425" cy="1700" r="25" fill="none" stroke="#999" stroke-width="5"/>
<text x="425" y="930" text-anchor="middle" font-size="45" fill="#666">Bath</text>
<text x="425" y="990" text-anchor="middle" font-size="38" fill="#666">1850x850</text>
</g>
<!-- === SHOWER (top-right nook, ~1000x1000) === -->
<rect x="1500" y="0" width="1000" height="1000" fill="#d4e8f7" fill-opacity="0.4"
stroke="#333" stroke-width="10" stroke-dasharray="30,15"/>
<!-- Shower head (middle of wall B) -->
<circle cx="2475" cy="500" r="60" fill="none" stroke="#4a90d9" stroke-width="7"/>
<circle cx="2475" cy="500" r="20" fill="#4a90d9"/>
<!-- Drain -->
<circle cx="2000" cy="500" r="35" fill="none" stroke="#999" stroke-width="5"/>
<line x1="1980" y1="500" x2="2020" y2="500" stroke="#999" stroke-width="5"/>
<line x1="2000" y1="480" x2="2000" y2="520" stroke="#999" stroke-width="5"/>
<text x="2000" y="600" text-anchor="middle" font-size="45" fill="#4a90d9">Shower</text>
<text x="2000" y="660" text-anchor="middle" font-size="38" fill="#4a90d9">(~1000x1000)</text>
<!-- === SINK / VANITY (wall F, between bath and bottom/door edge) === -->
<!-- SVG: (25, 2025) to (525, 2475) -->
<g>
<rect x="25" y="2025" width="500" height="450" rx="15" fill="none" stroke="#333" stroke-width="10"/>
<ellipse cx="275" cy="2210" rx="90" ry="130" fill="none" stroke="#333" stroke-width="7"/>
<!-- Faucet -->
<circle cx="100" cy="2210" r="18" fill="none" stroke="#4a90d9" stroke-width="7"/>
<circle cx="100" cy="2210" r="6" fill="#4a90d9"/>
<text x="275" y="2550" text-anchor="middle" font-size="45" fill="#666">Sink</text>
</g>
<!-- === RADIATOR (wall D, 600mm, 600mm from door) === -->
<!-- SVG: x=1425, y=1400 to y=2000, width=75 -->
<rect x="1425" y="1400" width="75" height="600" fill="#e85d3a" fill-opacity="0.4" stroke="#e85d3a" stroke-width="7"/>
<!-- Dimension: 600mm gap between radiator and door on wall D -->
<line x1="1580" y1="2000" x2="1580" y2="2600" stroke="#555" stroke-width="4"/>
<line x1="1555" y1="2000" x2="1605" y2="2000" stroke="#555" stroke-width="4"/>
<line x1="1555" y1="2600" x2="1605" y2="2600" stroke="#555" stroke-width="4"/>
<text x="1620" y="2310" text-anchor="middle" font-size="42" fill="#555" transform="rotate(90, 1620, 2310)">600</text>
<!-- === DOOR (wall E, right side, dotted line) === -->
<!-- 550mm wall from F corner, then door opening -->
<line x1="550" y1="2600" x2="1500" y2="2600" stroke="#333" stroke-width="14" stroke-dasharray="40,25"/>
<!-- Dimension: 550mm wall left of door -->
<line x1="0" y1="2850" x2="550" y2="2850" stroke="#555" stroke-width="4"/>
<line x1="0" y1="2825" x2="0" y2="2875" stroke="#555" stroke-width="4"/>
<line x1="550" y1="2825" x2="550" y2="2875" stroke="#555" stroke-width="4"/>
<text x="275" y="2940" text-anchor="middle" font-size="42" fill="#555">550</text>
<!-- Scale bar (bottom right) -->
<g transform="translate(1700, 2850)">
<line x1="0" y1="0" x2="1000" y2="0" stroke="#333" stroke-width="8"/>
<line x1="0" y1="-25" x2="0" y2="25" stroke="#333" stroke-width="8"/>
<line x1="500" y1="-15" x2="500" y2="15" stroke="#333" stroke-width="5"/>
<line x1="1000" y1="-25" x2="1000" y2="25" stroke="#333" stroke-width="8"/>
<text x="0" y="65" text-anchor="middle" font-size="38" fill="#333">0</text>
<text x="500" y="65" text-anchor="middle" font-size="38" fill="#333">500</text>
<text x="1000" y="65" text-anchor="middle" font-size="38" fill="#333">1000mm</text>
</g>
</g>
<!-- Legend -->
<g transform="translate(3250, 400)">
<text x="0" y="0" font-size="50" font-weight="bold" fill="#333">Legend</text>
<line x1="0" y1="60" x2="80" y2="60" stroke="#333" stroke-width="14"/>
<text x="100" y="75" font-size="40" fill="#555">Wall</text>
<line x1="0" y1="120" x2="80" y2="120" stroke="#333" stroke-width="8" stroke-dasharray="20,10"/>
<text x="100" y="135" font-size="40" fill="#555">Shower</text>
<circle cx="40" cy="180" r="18" fill="#4a90d9"/>
<text x="100" y="195" font-size="40" fill="#555">Water</text>
<rect x="0" y="225" width="80" height="40" fill="#e85d3a" fill-opacity="0.4" stroke="#e85d3a" stroke-width="4"/>
<text x="100" y="255" font-size="40" fill="#555">Radiator</text>
<line x1="0" y1="300" x2="80" y2="300" stroke="#333" stroke-width="14" stroke-dasharray="20,12"/>
<text x="100" y="315" font-size="40" fill="#555">Door</text>
</g>
</svg>

After

Width:  |  Height:  |  Size: 9.9 KiB

View File

@@ -0,0 +1,109 @@
# Bathroom Renovation
> **Started:** 2026-03-07
> **Status:** Planning
---
## Current State
Describe what the bathroom looks like now: dimensions, fixtures, materials, condition.
- **Dimensions:** _TODO (L x W in cm/m)_
- **Ceiling height:** _TODO_
- **Current flooring:** _TODO_
- **Current wall finish:** _TODO_
- **Fixtures:**
- Toilet: _TODO (type, condition)_
- Sink/vanity: _TODO_
- Shower / bathtub: _TODO_
- Mirror/cabinet: _TODO_
- **Plumbing location:** _TODO (which wall carries the supply/drain lines)_
- **Ventilation:** _TODO (extractor fan?)_
- **Electrical:** _TODO (outlets, lighting, heated floor)_
---
## Goals / Requirements
What should the new bathroom achieve?
- [ ] _TODO — e.g., walk-in shower instead of bathtub_
- [ ] _TODO — e.g., double sink_
- [ ] _TODO — e.g., heated floor_
- [ ] _TODO — e.g., specific style/aesthetic_
---
## Blueprint
![[Bathroom Blueprint.svg]]
---
## Materials & Finishes
| Element | Choice | Supplier / Link | Price |
|---------|--------|-----------------|-------|
| Floor tiles | | | |
| Wall tiles | | | |
| Shower screen | | | |
| Toilet | | | |
| Sink / vanity | | | |
| Faucets | | | |
| Mirror / cabinet | | | |
| Lighting | | | |
| Paint / other | | | |
---
## Budget
| Category | Estimated | Actual |
|----------|-----------|--------|
| Materials | | |
| Labour | | |
| Plumbing | | |
| Electrical | | |
| Unexpected / contingency (15%) | | |
| **Total** | | |
---
## Contractor / DIY Plan
- **DIY:** _list tasks you handle yourself_
- **Professional:** _list tasks that need a contractor_
- **Contacts:**
- Plumber: _name, phone_
- Electrician: _name, phone_
- Tiler: _name, phone_
---
## Timeline
| Phase | Target Date | Done |
|-------|-------------|------|
| Planning & design | | |
| Demolition | | |
| Plumbing rough-in | | |
| Electrical rough-in | | |
| Waterproofing | | |
| Tiling | | |
| Fixture installation | | |
| Finishing touches | | |
---
## Notes
-
---
## Reference / Inspiration
Links, photos, or ideas collected.
-

View File

@@ -0,0 +1,194 @@
# Das Festival 2026
**Date:** Saturday, May 23, 2026, 12:00 - 23:00
**Location:** Tuinen van West, Amsterdam
**Organizer:** [Komm Schon Alter](https://www.kommschonalter.de/events/komm-schon-alter---das-festival-2026)
---
## Line-up
### Andhim
German duo (Simon Haehnel & Tobias Muller) known for their self-coined "super house" sound -- melodic yet deep, blending house and techno. Over 60 releases since 2010 and 100+ shows per year.
- [SoundCloud](https://soundcloud.com/andhim)
- [Mixcloud](https://www.mixcloud.com/discover/andhim/)
- [Resident Advisor](https://ra.co/dj/andhim)
**Recommended listens:**
- [Exclusive Mix for Time Warp](https://soundcloud.com/timewarp_official/andhim-exclusive-mix-for-time-warp)
- [True Underground ONE-65](https://soundcloud.com/trueundergroundone/andhim-tu65)
---
### De Sluwe Vos
Dutch DJ, producer, and label owner who combines house, techno, and hiphop with high-energy beats, driving basslines, and intricate percussion. Often incorporates old-school rave elements.
- [SoundCloud](https://soundcloud.com/desluwevos)
- [Resident Advisor](https://ra.co/dj/desluwevos)
- [Bandcamp](https://desluwevos.bandcamp.com/album/now-i-understand)
**Recommended listens:**
- [DJ Sets Playlist (SoundCloud)](https://soundcloud.com/desluwevos/sets/dj-sets)
- [The Boom Room 550](https://soundcloud.com/theboomroomofficial/550-the-boom-room-de-sluwe-vos)
- [The Boom Room 470](https://soundcloud.com/theboomroomofficial/470-the-boom-room-de-sluwe-vos)
- [Live @ Shelter 07.10.22](https://soundcloud.com/desluwevos/de-sluwe-vos-shelter-071022)
---
### Eelke Kleijn (live)
Dutch DJ and producer from Rotterdam. Blends progressive house, techno, and melodic electronic music with ambient and breakbeat elements. Runs the "DAYS like NIGHTS" radio show. Performing a live set at Das Festival.
- [SoundCloud](https://soundcloud.com/eelke-kleijn)
- [Mixcloud (DAYS like NIGHTS)](https://www.mixcloud.com/eelkekleijn/)
- [Resident Advisor](https://ra.co/dj/eelkekleijn)
**Recommended listens:**
- [Live at Mont Saint-Michel for Cercle](https://soundcloud.com/cerclelive/eelke-keijn-mont-saint-michel)
- [Live from Balance Croatia 2025](https://soundcloud.com/balance-series/eelke-kleijn-live-from-balance-croatia-2025)
- [The Boom Room 512 (3hrs)](https://soundcloud.com/theboomroomofficial/512-the-boom-room-eelke-kleijn)
---
### Einmusik
Berlin-based producer (Samuel Kindermann) specializing in melodic techno and deep house. Atmospheric, soulful sound with progressive influences. Runs his own label Einmusika.
- [SoundCloud](https://soundcloud.com/einmusik)
- [Mixcloud](https://www.mixcloud.com/EINMUSIK/)
- [DJ Mixes & Livesets Playlist](https://soundcloud.com/einmusik/sets/einmusik-mixes)
**Recommended listens:**
- [Mixes Playlist (SoundCloud)](https://soundcloud.com/einmusik/sets/einmusik-mixes)
- [Live DJ Set - Fusion Festival 2018](https://www.mixcloud.com/alfredo-raya/einmusik-live-dj-set-fusion-festival-2018-germany-27-06-2018/)
---
### Huminal
Dutch duo (Paul Deetman & Jelle Jansen) from Amsterdam. Progressive house, techno, and electronica with rich soundscapes, organic elements, and cinematic sound design. Blends analogue textures with crisp rhythmic forms.
- [SoundCloud](https://soundcloud.com/huminalmusic)
- [Spotify](https://open.spotify.com/artist/0ifJHiwqO4YcVAd3vy8CEQ)
- [Resident Advisor](https://ra.co/dj/huminal)
**Recommended listens:**
- [Flow Sessions 115 - Huminal (3.5hrs)](https://soundcloud.com/flowsessions/flow-sessions-115-huminal)
---
### Mees Salome
Dutch producer and DJ known for melodic electronic music blending emotive melodies with powerful grooves. Released on Filth on Acid, This Never Happened, and Armada. Founder of the Distant platform.
- [SoundCloud](https://soundcloud.com/mees-salome)
- [Website](https://meessalome.com/)
- [Resident Advisor](https://ra.co/dj/meessalome)
**Recommended listens:**
- [The Boom Room 439 (Resident Mix)](https://soundcloud.com/theboomroomofficial/439-the-boom-room-mees-salome)
- [The Boom Room 223 (Mixcloud)](https://www.mixcloud.com/theboomroom/223-the-boom-room-mees-salom%C3%A9/)
---
### Miss Melera
Amsterdam-based DJ and producer (Kim de Lange). Deep and progressive techno twisted into melodic, fresh compositions. Hosts a monthly podcast called "Colourizon."
- [SoundCloud](https://soundcloud.com/missmelera)
- [Website](https://www.missmelera.com/)
- [Resident Advisor](https://ra.co/dj/missmelera)
**Recommended listens:**
- [The Boom Room 138 (Mixcloud)](https://www.mixcloud.com/theboomroom/138-the-boom-room-miss-melera/)
- [1001Tracklists Overview](https://www.1001tracklists.com/dj/missmelera/index.html)
---
### Nicky Elisabeth
Dutch-Belgian DJ and producer. Romantic, eclectic deep house and progressive/melodic house with an energy-lifting aesthetic.
- [SoundCloud](https://soundcloud.com/nicky-elisabeth)
- [Resident Advisor](https://ra.co/dj/nickyelisabeth)
**Recommended listens:**
- [DHA FM Mix #463 (Deep House Amsterdam)](https://soundcloud.com/deep-house-amsterdam/nicky-elisabeth-dha-fm-mix-463)
- [DGTL Digital 2020 Set](https://soundcloud.com/dgtl-festival/nickyelisabeth-digital-dgtl-2020-1)
---
### NTO (live)
French producer (Anthony Favier) specializing in melodic and minimal techno. Atmospheric soundscapes with deep, purposeful beats. Often incorporates guitar and keyboards. Performing a live set at Das Festival.
- [SoundCloud](https://soundcloud.com/anthony-favier-970568294)
- [WatchTheDJ (live sets)](https://watchthedj.com/djs/nto)
- [Instagram](https://www.instagram.com/ntomusic/)
**Recommended listens:**
- [Lac de Soi - Cercle Stories (live in Swiss Alps)](https://soundcloud.com/cerclelive/ntolacdesoicerclestories)
---
### Olivier Weiter
Dutch DJ/producer deeply rooted in Amsterdam's underground scene. Known for marathon sets blending obscure house and techno. Founded the WEITER label and hosts monthly "WEITER Radio."
- [SoundCloud](https://soundcloud.com/olivier-weiter)
- [Resident Advisor](https://ra.co/dj/olivierweiter)
**Recommended listens:**
- [Yearmix 2023](https://soundcloud.com/olivier-weiter/olivier-weiter-yearmix-2023)
- [Yearmix 2022](https://soundcloud.com/olivier-weiter/olivier-weiter-yearmix-2022)
---
### Rose Ringed
Amsterdam-based DJ and producer. Melodic, emotive house and techno with warm, dreamy atmospheres and strong chord progressions. Founder of Closed Eyes Recordings. Collaborates regularly with Joris Voorn.
- [SoundCloud](https://soundcloud.com/rose-ringed)
- [Resident Advisor](https://ra.co/dj/roseringed)
**Recommended listens:**
- [Solomun Open Air Brussels 2023](https://soundcloud.com/rose-ringed/rose-ringed-dj-set-solomun-open-air-cinquantenaire-brussel)
- [De Zon Festival 2023 (Sunset Set)](https://soundcloud.com/rose-ringed/rose-ringed-dj-set-live-at-de-zon-festival-2023)
- [Diynamic OFF Sonar Barcelona 2023](https://soundcloud.com/rose-ringed/rose-ringed-dj-set-diynamic-off-sonar-barcelona-2023-monasterio)
---
### Sandrien
Amsterdam-based DJ and producer. Versatile techno ranging from deep and atmospheric to high-energy breaks and acid. Founded "Imprint," a monthly underground techno night. Regular at Dekmantel, Awakenings, and Loveland.
- [SoundCloud](https://soundcloud.com/sandrien)
- [DJ Sets Playlist](https://soundcloud.com/sandrien/sets/dj-sets)
- [Website](https://www.dj-sandrien.nl/)
- [Resident Advisor](https://ra.co/dj/sandrien)
**Recommended listens:**
- [DJ Sets Playlist (SoundCloud)](https://soundcloud.com/sandrien/sets/dj-sets)
- [Boiler Room Amsterdam](https://boilerroom.tv/recording/sandrien/)
---
### Stephan Bodzin (live)
German producer and classically-trained pianist. Melodic and minimal techno with deep, emotionally-driven soundscapes. One of the biggest names in melodic techno. Performing a live set at Das Festival.
- [SoundCloud](https://soundcloud.com/stephanbodzin)
- [SoundCloud (Official)](https://soundcloud.com/stephanbodzinofficial)
**Recommended listens:**
- [Live at Piz Gloria (Swiss Alps) for Cercle](https://soundcloud.com/cerclelive/stephan-bodzin-piz-gloria-for-cercle)
- [Piz Gloria on Mixcloud](https://www.mixcloud.com/Cercle_interlinked/stephan-bodzin-piz-gloria-for-cercle/)
---
### Teyana
*Could not find a verified SoundCloud profile or detailed online presence for this artist. They may be an emerging or local talent in the Amsterdam scene. Check the [Komm Schon Alter website](https://www.kommschonalter.de/events/komm-schon-alter---das-festival-2026) closer to the festival for updated artist info.*

View File

@@ -29,6 +29,10 @@ When creating a Breeze profile, users provide:
- Photos (minimum 2 required)
- Personal bio
- At least one Q&A prompt answer
## Potenial changes
- Need more photos exspecially ones dressed nicly or in a suit.
- I need to show that i am looking for a bit of chaos, i am to good add buiulding routine.
## Q&A Prompts List