Skip to content

Commit 07c2bcb

Browse files
committed
daybreaker update and some fixes
1 parent ffdabce commit 07c2bcb

12 files changed

Lines changed: 393 additions & 18 deletions

File tree

4.14 MB
Loading
4.79 MB
Loading
3.58 MB
Loading
3.86 MB
Loading

assets/video/keyvon-ivy.mp4

15.8 MB
Binary file not shown.

hetzner/setup-navidrome.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ ENDSSH
2121
echo "Downloading Navidrome..."
2222
ssh $SERVER << 'ENDSSH'
2323
cd /tmp
24-
wget https://github.com/navidrome/navidrome/releases/download/v0.53.3/navidrome_0.53.3_linux_amd64.tar.gz -O Navidrome.tar.gz
24+
wget https://github.com/navidrome/navidrome/releases/download/v0.60.3/navidrome_0.60.3_linux_amd64.tar.gz -O Navidrome.tar.gz
2525
tar -xvzf Navidrome.tar.gz -C /opt/navidrome/
2626
rm Navidrome.tar.gz
2727
ENDSSH

hetzner/upgrade-navidrome.sh

Lines changed: 43 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,43 @@
1+
#!/bin/bash
2+
3+
# Upgrade Navidrome on Hetzner server
4+
# Usage: ./hetzner/upgrade-navidrome.sh [version]
5+
# Example: ./hetzner/upgrade-navidrome.sh v0.60.3
6+
set -e
7+
8+
SERVER="root@37.27.252.86"
9+
VERSION="${1:-v0.60.3}"
10+
VERSION_NUM="${VERSION#v}"
11+
12+
echo "=== Upgrading Navidrome to ${VERSION} ==="
13+
echo ""
14+
15+
# Stop service, download, extract, restart
16+
ssh $SERVER << ENDSSH
17+
set -e
18+
19+
echo "Stopping navidrome..."
20+
systemctl stop navidrome
21+
22+
echo "Downloading Navidrome ${VERSION}..."
23+
cd /tmp
24+
wget https://github.com/navidrome/navidrome/releases/download/${VERSION}/navidrome_${VERSION_NUM}_linux_amd64.tar.gz -O Navidrome.tar.gz
25+
26+
echo "Extracting to /opt/navidrome/..."
27+
tar -xvzf Navidrome.tar.gz -C /opt/navidrome/
28+
rm Navidrome.tar.gz
29+
30+
echo "Setting permissions..."
31+
chown -R navidrome:navidrome /opt/navidrome
32+
33+
echo "Starting navidrome..."
34+
systemctl start navidrome
35+
36+
echo ""
37+
echo "Service status:"
38+
systemctl status navidrome --no-pager
39+
ENDSSH
40+
41+
echo ""
42+
echo "=== Upgrade Complete ==="
43+
echo "Navidrome ${VERSION} should be running at https://music.justsayless.xyz"

index.html

Lines changed: 27 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -645,9 +645,25 @@ <h1>SAYLESS</h1>
645645
<section id="shows" class="section">
646646
<h2 class="section-header">UPCOMING</h2>
647647
<div class="shows-grid upcoming">
648-
<a href="flyers/2026-03-14/main.html" class="show-card">
648+
<p
649+
style="
650+
font-family: &quot;StencilGothic&quot;, sans-serif;
651+
letter-spacing: 2px;
652+
color: #666;
653+
font-size: 1.1rem;
654+
text-align: center;
655+
padding: 40px 20px;
656+
"
657+
>
658+
STAY TUNED...
659+
</p>
660+
</div>
661+
662+
<h2 class="section-header past-header">PAST SHOWS</h2>
663+
<div id="past-shows" class="shows-grid">
664+
<a href="shows/2026-03-14/" class="show-card">
649665
<img
650-
src="flyers/2026-03-14/flyer-og.png"
666+
src="assets/photos/daybreaker-cover-crowd.jpeg"
651667
alt="Daybreaker ATX"
652668
loading="lazy"
653669
/>
@@ -658,10 +674,6 @@ <h2 class="section-header">UPCOMING</h2>
658674
</div>
659675
</div>
660676
</a>
661-
</div>
662-
663-
<h2 class="section-header past-header">PAST SHOWS</h2>
664-
<div id="past-shows" class="shows-grid">
665677
<a href="shows/2026-03-07/" class="show-card">
666678
<img
667679
src="assets/photos/stardust-everyone-behind-decks-2.jpg"
@@ -750,8 +762,8 @@ <h2 class="section-header">
750762
loading="lazy"
751763
/>
752764
<img
753-
src="assets/photos/stardust-djing-point.jpg"
754-
alt="SAYLESS DJing"
765+
src="assets/photos/daybreaker-iso-crowd.jpeg"
766+
alt="Daybreaker ATX crowd"
755767
loading="lazy"
756768
/>
757769
<img
@@ -760,26 +772,25 @@ <h2 class="section-header">
760772
loading="lazy"
761773
/>
762774
<img
763-
src="assets/photos/stardust-everyone-behind-decks.jpg"
764-
alt="Behind the decks at Stardust"
775+
src="assets/photos/stardust-djing-point.jpg"
776+
alt="SAYLESS DJing"
765777
loading="lazy"
766778
/>
767779
<img
768-
src="assets/photos/behind-the-decks-chaotic.jpg"
769-
alt="Behind the decks"
780+
src="assets/photos/stardust-everyone-behind-decks.jpg"
781+
alt="Behind the decks at Stardust"
770782
loading="lazy"
771-
style="transform: rotate(-90deg)"
772783
/>
773784
<img
774785
src="assets/photos/stardust-chris-and-nico.jpg"
775786
alt="SAYLESS and Nico"
776787
loading="lazy"
777788
/>
778789
<img
779-
src="assets/photos/stardust-portrait-green.jpg"
780-
alt="SAYLESS portrait"
790+
src="assets/photos/behind-the-decks-chaotic.jpg"
791+
alt="Behind the decks"
781792
loading="lazy"
782-
style="object-position: top"
793+
style="transform: rotate(-90deg)"
783794
/>
784795
</div>
785796
</section>

shows/2025-06-love-again/index.html

Lines changed: 51 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -147,6 +147,40 @@
147147
border-color: white;
148148
}
149149

150+
.sc-set-link {
151+
display: inline-flex;
152+
align-items: center;
153+
gap: 4px;
154+
color: white;
155+
text-decoration: none;
156+
border-bottom: 1px solid #333;
157+
padding-bottom: 1px;
158+
transition: border-color 0.2s;
159+
font-size: 14px;
160+
letter-spacing: 2px;
161+
}
162+
163+
.sc-set-link:hover {
164+
border-color: white;
165+
}
166+
167+
.sc-set-link svg {
168+
width: 16px;
169+
height: 16px;
170+
vertical-align: middle;
171+
}
172+
173+
.set-section {
174+
margin-bottom: 48px;
175+
}
176+
177+
.set-section h2 {
178+
font-size: 1rem;
179+
letter-spacing: 4px;
180+
color: #999;
181+
margin-bottom: 16px;
182+
}
183+
150184
@media (max-width: 480px) {
151185
.show-header h1 {
152186
font-size: 1.8rem;
@@ -156,6 +190,11 @@
156190
</style>
157191
</head>
158192
<body>
193+
<svg xmlns="http://www.w3.org/2000/svg" style="display:none">
194+
<symbol id="sc-icon" viewBox="166 1125 145 65">
195+
<path d="M308.984235,1169.99251 C308.382505,1180.70295 299.444837,1189.03525 288.718543,1188.88554 L240.008437,1188.88554 C237.777524,1188.86472 235.977065,1187.05577 235.966737,1184.82478 L235.966737,1132.37801 C235.894282,1130.53582 236.962478,1128.83883 238.654849,1128.10753 C238.654849,1128.10753 243.135035,1124.99996 252.572022,1124.99996 C258.337036,1124.99309 263.996267,1126.54789 268.948531,1129.49925 C276.76341,1134.09703 282.29495,1141.75821 284.200228,1150.62285 C285.880958,1150.14737 287.620063,1149.90993 289.36674,1149.91746 C294.659738,1149.88414 299.738952,1152.0036 303.438351,1155.78928 C307.13775,1159.57496 309.139562,1164.70168 308.984235,1169.99251 Z M229.885123,1135.69525 C231.353099,1153.48254 232.420718,1169.70654 229.885123,1187.43663 C229.796699,1188.23857 229.119091,1188.84557 228.312292,1188.84557 C227.505494,1188.84557 226.827885,1188.23857 226.739461,1187.43663 C224.375448,1169.85905 225.404938,1153.33003 226.739461,1135.69525 C226.672943,1135.09199 226.957336,1134.50383 227.471487,1134.18133 C227.985639,1133.85884 228.638946,1133.85884 229.153097,1134.18133 C229.667248,1134.50383 229.951641,1135.09199 229.885123,1135.69525 Z M220.028715,1187.4557 C219.904865,1188.26549 219.208361,1188.86356 218.389157,1188.86356 C217.569953,1188.86356 216.87345,1188.26549 216.7496,1187.4557 C214.986145,1172.28686 214.986145,1156.96477 216.7496,1141.79593 C216.840309,1140.9535 217.551388,1140.31488 218.398689,1140.31488 C219.245991,1140.31488 219.95707,1140.9535 220.047779,1141.79593 C222.005153,1156.95333 221.998746,1172.29994 220.028715,1187.4557 Z M210.153241,1140.2517 C211.754669,1156.55195 212.479125,1171.15545 210.134176,1187.41757 C210.134176,1188.29148 209.425728,1188.99993 208.551813,1188.99993 C207.677898,1188.99993 206.969449,1188.29148 206.969449,1187.41757 C204.70076,1171.36516 205.463344,1156.34224 206.969449,1140.2517 C207.05845,1139.43964 207.744425,1138.82474 208.561345,1138.82474 C209.378266,1138.82474 210.06424,1139.43964 210.153241,1140.2517 Z M200.258703,1187.47476 C200.169129,1188.29694 199.474788,1188.91975 198.647742,1188.91975 C197.820697,1188.91975 197.126356,1188.29694 197.036782,1187.47476 C195.216051,1173.32359 195.216051,1158.99744 197.036782,1144.84627 C197.036782,1143.94077 197.770837,1143.20671 198.676339,1143.20671 C199.581842,1143.20671 200.315897,1143.94077 200.315897,1144.84627 C202.251054,1158.99121 202.231809,1173.33507 200.258703,1187.47476 Z M190.383229,1155.50339 C192.880695,1166.56087 191.755882,1176.32196 190.287906,1187.58915 C190.168936,1188.33924 189.522207,1188.89148 188.762737,1188.89148 C188.003266,1188.89148 187.356537,1188.33924 187.237567,1187.58915 C185.903044,1176.47448 184.797296,1166.48462 187.142244,1155.50339 C187.142244,1154.60842 187.867763,1153.8829 188.762737,1153.8829 C189.65771,1153.8829 190.383229,1154.60842 190.383229,1155.50339 Z M180.526821,1153.82571 C182.814575,1165.15009 182.071055,1174.7396 180.469627,1186.10211 C180.27898,1187.7798 177.400223,1187.79886 177.247706,1186.10211 C175.798795,1174.91118 175.112468,1165.0357 177.190512,1153.82571 C177.281785,1152.97315 178.001234,1152.32661 178.858666,1152.32661 C179.716099,1152.32661 180.435548,1152.97315 180.526821,1153.82571 Z M170.575089,1159.31632 C172.977231,1166.82778 172.157452,1172.92846 170.479765,1180.63056 C170.391921,1181.42239 169.722678,1182.02149 168.925999,1182.02149 C168.12932,1182.02149 167.460077,1181.42239 167.372232,1180.63056 C165.923321,1173.08097 165.332318,1166.84684 167.23878,1159.31632 C167.330053,1158.46376 168.049502,1157.81722 168.906934,1157.81722 C169.764367,1157.81722 170.483816,1158.46376 170.575089,1159.31632 Z"/>
196+
</symbol>
197+
</svg>
159198
<div class="show-page">
160199
<a href="/" class="back-link">&larr; BACK</a>
161200

@@ -193,6 +232,14 @@ <h1>THE LOVE AGAIN SET</h1>
193232
<p class="highlight">It all started here.</p>
194233
</div>
195234

235+
<div class="set-section">
236+
<h2>SET</h2>
237+
<a class="sc-set-link"
238+
href="https://on.soundcloud.com/Ec1uxYKm49YM5aLmsY"
239+
target="_blank"
240+
><svg fill="currentColor"><use href="#sc-icon"/></svg> LISTEN ON SOUNDCLOUD</a>
241+
</div>
242+
196243
<div class="what-came-next">
197244
<h2>WHAT CAME NEXT</h2>
198245
<ul>
@@ -212,7 +259,10 @@ <h2>WHAT CAME NEXT</h2>
212259
<a href="../2026-03-07/">SAYLESS @ STARDUST GARAGE</a>
213260
&mdash; MAR 7, 2026
214261
</li>
215-
<li>DAYBREAKER ATX @ SXSW &mdash; MAR 14, 2026</li>
262+
<li>
263+
<a href="../2026-03-14/">DAYBREAKER ATX @ TWINS ROOM ROOFTOP</a>
264+
&mdash; MAR 14, 2026
265+
</li>
216266
</ul>
217267
</div>
218268
</div>

shows/2025-10-halloween/index.html

Lines changed: 47 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -126,6 +126,40 @@
126126
letter-spacing: 3px;
127127
}
128128

129+
.sc-set-link {
130+
display: inline-flex;
131+
align-items: center;
132+
gap: 4px;
133+
color: white;
134+
text-decoration: none;
135+
border-bottom: 1px solid #333;
136+
padding-bottom: 1px;
137+
transition: border-color 0.2s;
138+
font-size: 14px;
139+
letter-spacing: 2px;
140+
}
141+
142+
.sc-set-link:hover {
143+
border-color: white;
144+
}
145+
146+
.sc-set-link svg {
147+
width: 16px;
148+
height: 16px;
149+
vertical-align: middle;
150+
}
151+
152+
.set-section {
153+
margin-bottom: 48px;
154+
}
155+
156+
.set-section h2 {
157+
font-size: 1rem;
158+
letter-spacing: 4px;
159+
color: #999;
160+
margin-bottom: 16px;
161+
}
162+
129163
@media (max-width: 480px) {
130164
.show-header h1 {
131165
font-size: 1.8rem;
@@ -139,6 +173,11 @@
139173
</style>
140174
</head>
141175
<body>
176+
<svg xmlns="http://www.w3.org/2000/svg" style="display:none">
177+
<symbol id="sc-icon" viewBox="166 1125 145 65">
178+
<path d="M308.984235,1169.99251 C308.382505,1180.70295 299.444837,1189.03525 288.718543,1188.88554 L240.008437,1188.88554 C237.777524,1188.86472 235.977065,1187.05577 235.966737,1184.82478 L235.966737,1132.37801 C235.894282,1130.53582 236.962478,1128.83883 238.654849,1128.10753 C238.654849,1128.10753 243.135035,1124.99996 252.572022,1124.99996 C258.337036,1124.99309 263.996267,1126.54789 268.948531,1129.49925 C276.76341,1134.09703 282.29495,1141.75821 284.200228,1150.62285 C285.880958,1150.14737 287.620063,1149.90993 289.36674,1149.91746 C294.659738,1149.88414 299.738952,1152.0036 303.438351,1155.78928 C307.13775,1159.57496 309.139562,1164.70168 308.984235,1169.99251 Z M229.885123,1135.69525 C231.353099,1153.48254 232.420718,1169.70654 229.885123,1187.43663 C229.796699,1188.23857 229.119091,1188.84557 228.312292,1188.84557 C227.505494,1188.84557 226.827885,1188.23857 226.739461,1187.43663 C224.375448,1169.85905 225.404938,1153.33003 226.739461,1135.69525 C226.672943,1135.09199 226.957336,1134.50383 227.471487,1134.18133 C227.985639,1133.85884 228.638946,1133.85884 229.153097,1134.18133 C229.667248,1134.50383 229.951641,1135.09199 229.885123,1135.69525 Z M220.028715,1187.4557 C219.904865,1188.26549 219.208361,1188.86356 218.389157,1188.86356 C217.569953,1188.86356 216.87345,1188.26549 216.7496,1187.4557 C214.986145,1172.28686 214.986145,1156.96477 216.7496,1141.79593 C216.840309,1140.9535 217.551388,1140.31488 218.398689,1140.31488 C219.245991,1140.31488 219.95707,1140.9535 220.047779,1141.79593 C222.005153,1156.95333 221.998746,1172.29994 220.028715,1187.4557 Z M210.153241,1140.2517 C211.754669,1156.55195 212.479125,1171.15545 210.134176,1187.41757 C210.134176,1188.29148 209.425728,1188.99993 208.551813,1188.99993 C207.677898,1188.99993 206.969449,1188.29148 206.969449,1187.41757 C204.70076,1171.36516 205.463344,1156.34224 206.969449,1140.2517 C207.05845,1139.43964 207.744425,1138.82474 208.561345,1138.82474 C209.378266,1138.82474 210.06424,1139.43964 210.153241,1140.2517 Z M200.258703,1187.47476 C200.169129,1188.29694 199.474788,1188.91975 198.647742,1188.91975 C197.820697,1188.91975 197.126356,1188.29694 197.036782,1187.47476 C195.216051,1173.32359 195.216051,1158.99744 197.036782,1144.84627 C197.036782,1143.94077 197.770837,1143.20671 198.676339,1143.20671 C199.581842,1143.20671 200.315897,1143.94077 200.315897,1144.84627 C202.251054,1158.99121 202.231809,1173.33507 200.258703,1187.47476 Z M190.383229,1155.50339 C192.880695,1166.56087 191.755882,1176.32196 190.287906,1187.58915 C190.168936,1188.33924 189.522207,1188.89148 188.762737,1188.89148 C188.003266,1188.89148 187.356537,1188.33924 187.237567,1187.58915 C185.903044,1176.47448 184.797296,1166.48462 187.142244,1155.50339 C187.142244,1154.60842 187.867763,1153.8829 188.762737,1153.8829 C189.65771,1153.8829 190.383229,1154.60842 190.383229,1155.50339 Z M180.526821,1153.82571 C182.814575,1165.15009 182.071055,1174.7396 180.469627,1186.10211 C180.27898,1187.7798 177.400223,1187.79886 177.247706,1186.10211 C175.798795,1174.91118 175.112468,1165.0357 177.190512,1153.82571 C177.281785,1152.97315 178.001234,1152.32661 178.858666,1152.32661 C179.716099,1152.32661 180.435548,1152.97315 180.526821,1153.82571 Z M170.575089,1159.31632 C172.977231,1166.82778 172.157452,1172.92846 170.479765,1180.63056 C170.391921,1181.42239 169.722678,1182.02149 168.925999,1182.02149 C168.12932,1182.02149 167.460077,1181.42239 167.372232,1180.63056 C165.923321,1173.08097 165.332318,1166.84684 167.23878,1159.31632 C167.330053,1158.46376 168.049502,1157.81722 168.906934,1157.81722 C169.764367,1157.81722 170.483816,1158.46376 170.575089,1159.31632 Z"/>
179+
</symbol>
180+
</svg>
142181
<div class="show-page">
143182
<a href="/" class="back-link">&larr; BACK</a>
144183

@@ -155,6 +194,14 @@ <h2>DETAILS</h2>
155194
</p>
156195
</div>
157196

197+
<div class="set-section">
198+
<h2>SET</h2>
199+
<a class="sc-set-link"
200+
href="https://on.soundcloud.com/YIUIS9oVsol8H21gf2"
201+
target="_blank"
202+
><svg fill="currentColor"><use href="#sc-icon"/></svg> LISTEN ON SOUNDCLOUD</a>
203+
</div>
204+
158205
<div class="show-video">
159206
<h2>VIDEO</h2>
160207
<video

0 commit comments

Comments
 (0)