1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
|
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Rose Garden</title>
<link rel="stylesheet" href="./style.css">
<link rel="icon" href="./favicon.ico" type="image/x-icon">
</head>
<body>
<div class="workspace">
<input class="radio" type="radio" id="close" name="windows_box" value="">
<input class="radio" type="radio" id="home" name="windows_box" value="" checked>
<input class="radio" type="radio" id="projects" name="windows_box" value="">
<input class="radio" type="radio" id="home-info" name="home_menu" checked>
<input class="radio" type="radio" id="home-contact" name="home_menu">
<input class="radio" type="radio" id="home-services" name="home_menu">
<input class="radio" type="radio" id="projects-personal" name="projects_menu" checked>
<input class="radio" type="radio" id="projects-shards" name="projects_menu">
<input class="radio" type="radio" id="projects-crystal" name="projects_menu">
<input class="radio" type="radio" id="projects-vanillaos" name="projects_menu">
<ul id="home-menu" class="menu left">
<li><label>Home</label></li>
<li>
<label for="home-info" class="menu-button">Info
</label>
</li>
<li>
<label for="home-contact" class="menu-button">Contact
</label>
</li>
<li>
<label for="home-services" class="menu-button">Services
</label>
</li>
</ul>
<ul id="projects-menu" class="menu left">
<li><label>Projects</label></li>
<li>
<label for="projects-personal" class="menu-button">Personal</label>
</li>
<li>
<label for="projects-shards" class="menu-button">Project Shards</label>
</li>
<li>
<label for="projects-crystal" class="menu-button">Crystal Linux</label>
</li>
<li>
<label for="projects-vanillaos" class="menu-button">Vanilla OS</label>
</li>
</ul>
<div class="dock">
<div class="dockelement">
<label for="home" title="About me"> <img src="avatar.png" alt="Home">
</label>
</div>
<div class="dockelement">
<label for="projects" title="Projects"><img src="projects.png" alt="Projects">
</label>
</div>
<div class="dockelement">
<div class="clock">
<p id="time" class="time">
12:00
</p>
<div class="cal">
<p id="day" class="day">
MON
</p>
<p id="date" class="date">
6
</p>
<p id="month" class="month">
JUL
</p>
</div>
</div>
</div>
<a class="dockelement" href="https://www.youtube.com/watch?v=duPJqfKiA78" title="Triple Baka!!">
<img src="./kasane-teto.gif" alt="kasane teto dancing">
<div class="embedded"></div>
</a>
<a class="dockelement" href="https://www.freebsd.org" title="Powered by FreeBSD">
<img class="square" src="https://www.freebsd.org/gifs/daemon-phk.png" alt="freebsd beastie">
<div class="embedded"></div>
</a>
<a class="dockelement" title="Milk outside a bag of milk outside a bag of milk" href="https://nikita-kryukov.itch.io/milk-outside-a-bag-of-milk-outside-a-bag-of-milk">
<img class="square" src="./milkoutsideabagofmilk.png" alt="milk chan looking up, surrounded by the text 'milk outside a bag of milk'">
<div class="embedded"></div>
</a>
</div>
<div id="home-window" class="window">
<div class="title-bar">
<span>ABOUT.rtf — /home/lain</span>
<div class="controls">
<label>
<button id="copyUrl" data-radio="home" title="Copy url to this window">
<img src="./copy.svg" width="18" height="18" style="padding-left: 1px;" alt="copy">
</button>
</label>
<label for="close">
<img src="./close.svg" width="18" height="18" alt="close">
</label>
</div>
</div>
<div class="content" id="home-content-info">
<div>
<p>Hi!! I'm <b>Rose</b> (or Xenia or axtlos). I'm an 18 year old programmer specialising in osdev and systems programming.</p>
<br>
<p>I mostly use C for my projects, but also have experience with Rust, Go, Fortran and Python (see the projects window for more info).</p>
<br>
<p>I am currently studying computer science and work at Nokia as a software developer.</p>
</div>
<div style="justify-content: center; align-items: center; text-align: center;">
<img src="./firefly.png" alt="a firefly resting on a finger">
</div>
<div>
<hr style="justify-content: center; border-top:2px solid #A0A0A0; width: 100%">
<p>Click the buttons in the left menu to view extra information or the deskapps in the right to open different windows! The windows can also be moved around.</p>
</div>
</div>
<div class="content" id="home-content-contact">
<div>
<p>I can be contacted through these platforms</p>
<p>Note that I will ignore messages that simply say "hello!" or something similar, please include a tiny introduction</p>
<br>
<h2>XMPP</h2>
<p>My goto for instant messaging, where I'll be available the most</p>
<p><b>rose@chat.pinkro.se</b></p>
<hr style="border-top:2px solid #A0A0A0; width: 100%">
<br>
<h2>IRC</h2>
<p>I have a bouncer running, so I should see most messages even when I am not online.</p>
<p><b>axtlos</b> on <b>libera.chat</b></p>
<hr style="border-top:2px solid #A0A0A0; width: 100%">
<br>
<h2>EMAIL</h2>
<p>Ol' Reliable</p>
<p>Recommended if it's an urgent topic</p>
<p><b><a href="mailto:rose@pinkro.se">rose@pinkro.se</a></b></p>
</div>
</div>
<div class="content" id="home-content-services">
<div>
<p>I host some services on pinkro.se</p>
<br>
<h2>dn42</h2>
<p>AS4242421007; Message me over xmpp or email if you wish to peer!</p>
<hr style="border-top:2px solid #A0A0A0; width: 100%">
<br>
<h2>CGit</h2>
<p>My own git host, hosts personal projects and forks of projects</p>
<p><b><a href="https://git.pinkro.se">git.pinkro.se</a></b></p>
<hr style="border-top:2px solid #A0A0A0; width: 100%">
</div>
</div>
</div>
<div id="projects-window" class="window">
<div class="title-bar">
<span>PROJECTS.rtf — /home/lain</span>
<div class="controls">
<label>
<button id="copyUrl" data-radio="home" title="Copy url to this window">
<img src="./copy.svg" width="18" height="18" style="padding-left: 1px;" alt="copy">
</button>
</label>
<label for="close">
<img src="./close.svg" width="18" height="18" alt="close">
</label>
</div>
</div>
<div class="content" id="projects-content-personal">
<div>
<h1 style="text-align:center">Personal Projects</h1>
<p style="text-align:center">Personal Projects that aren't part of any bigger organization/project</p>
<p style="text-align:center">This is only a small list of the work I find most noteworthy. I have much more at <a href="https://git.pinkro.se">https://git.pinkro.se</a></p>
<br>
<h2>runc</h2>
<a href="https://git.pinkro.se/runc.git/about/">https://git.pinkro.se/runc.git</a>
<p>Easily execute source files like shell scripts based on a static configuration</p>
<br>
<h2>extlib</h2>
<a href="https://git.pinkro.se/extlib.git/about/">https://git.pinkro.se/extlib.git</a>
<p>C library that adds some handy functions</p>
<br>
<h2>FsVerify</h2>
<a href="https://git.pinkro.se/fsverify.git/about/">https://git.pinkro.se/fsverify.git/</a>
<p>Block based filesystem verification for immutable linux distributions written in golang and C</p>
<br>
<h2>BVG - Basic Vector Graphics</h2>
<a href="https://git.pinkro.se/fsverify.git/tree/fbwarn">https://git.pinkro.se/fsverify.git/tree/fbwarn</a>
<p>Custom made vector graphics format for use with FsVerify, the parser (fbwarn) is written in C using raylib</p>
<br>
<h2>FsGuard</h2>
<a href="https://github.com/linux-immutability-tools/fsguard">https://github.com/linux-immutability-tools/fsguard</a>
<p>File tree based filesysetm integrity verification, fully written in go and in use by Vanilla OS through fswarn</p>
<br>
<h2>JshipIT</h2>
<a href="https://git.pinkro.se/jshipit.git/about/">https://git.pinkro.se/jshipit.git</a>
<p>OCI client written in Java similar to podman/docker with a focus on using containers as a form of isolated environments, similar to Distrobox and Toolbox</p>
</div>
</div>
<div class="content" id="projects-content-shards">
<div>
<h1 style="text-align:center">Project Shards</h1>
<p style="text-align:center">Immutable linux distribution using systemd-sysupdate to manage atomic updates</p>
<br>
<br>
<h2>shards-build-definitions</h2>
<a href="https://git.projectshards.eu/ProjectShards/shards-build-definitions">https://git.projectshards.eu/ProjectShards/shards-build-definitions</a>
<p>The apache buildstream project for building Project Shards images.</p>
<br>
<h2>Shards Installer</h2>
<a href="https://git.projectshards.eu/ProjectShards/shards-installer">https://git.projectshards.eu/ProjectShards/shards-installer</a>
<p>The Project Shards installer. Written in libadwaita with C</p>
</div>
</div>
<div class="content" id="projects-content-crystal">
<div>
<h1 style="text-align:center">Crystal Linux</h1>
<p style="text-align:center">An Arch Linux based Linux Distribution</p>
<p style="text-align:center">Note that Crystal Linux is a completed Project. While we still support it all work is being put into Project Shards now.</p>
<br>
<h2>Jade</h2>
<a href="https://gitlab.com/crystal-linux/software/jade">https://gitlab.com/crystal-linux/software/jade</a>
<p>Installer backend for Crystal Linux, written in rust</p>
<br>
<h2>Jade-GUI</h2>
<a href="https://github.com/crystal-linux/software/jade-gui">https://gitlab.com/crystal-linux/software/jade-gui</a>
<p>Graphical frontend for Jade, written in python using gtk4 and libadwaita</p>
</div>
</div>
<div class="content" id="projects-content-vanillaos">
<div>
<h1 style="text-align:center">Vanilla OS</h1>
<p style="text-align:center">Immutable linux distribution based on Debian sid</p>
<p style="text-align:center">Note that I no longer am part of Vanilla OS and do not recommend it for further use. Feel free to get in touch for an explanation of why it is not recommended and/or to discuss potential alternatives/</p>
<br>
<h2>VIB</h2>
<a href="https://vib.vanillaos.org">https://vib.vanillaos.org</a>
<p>Buildsystem to create oci images out of yaml files, written in go</p>
<h2>Vanilla System Operator</h2>
<a href="https://github.com/vanilla-os/vanilla-system-operator">https://github.com/vanilla-os/vanilla-system-operator</a>
<p>Tool to manage Vanilla OS installations, including waydroid app management</p>
</div>
</div>
</div>
<div class="bottom-bar-wrapper">
<div class="bottom-bar">
<a href="https://pinkro.se" target="_blank" rel="noopener noreferrer" title="rose garden">
<img src="rose_88x31.png" alt="button that says 'rose', a rose grows out of the o, on the left the character milk chan is visible, a very pale girl with shoulder length brown hair wearing a black hoodie">
</a>
<a href="https://chronovore.dev" target="_blank" rel="noopener noreferrer" title="legiayayana's orbit">
<img src="https://chronovore.dev/button/chronovore.png" alt="button that says 'ada', text is overlayed a photograph of neptune, which in this image is a blue gas giant">
</a>
<a href="https://schmool.cool" target="_blank" rel="noopener noreferer" title="schmoolcool">
<img src="https://schmool.cool/88x31/butterfly.gif" alt="schmoolcool">
</a>
<a href="https://mchal.lol" target="_blank" rel="noopener noreferer" title="michal">
<img src="michal.gif" alt="michal">
</a>
<a href="https://arimelody.me" target="_blank" rel="noopener noreferer" title="ari melody">
<img src="https://arimelody.space/img/buttons/ari%20melody.gif" alt="ari melody web button">
</a>
<a href="https://naonexe.straw.page" target="_blank" rel="noopener noreferer" title="naonexe">
<img src="https://files.strawcdn.com/straw/lfZburKfWezYAoKtuHlF.gif" alt="two nuclear hazard and a biohazard sign next to each other jumping around">
</a>
<a href="https://nyaa.si/view/964646" target="_blank" rel="noopener noreferrer" title="watch lain now!!">
<img src="lain.gif" alt="lain" width="88" height="31">
</a>
<a href="https://validator.w3.org/nu/?doc=https%3A%2F%2Fpinkro.se" target="_blank" rel="noopener noreferrer" title="valid html5">
<img src="w3cvalid.png" alt="valid html 5" width="88" height="31">
</a>
<a><img src="copland88x31.png" alt="copland os now!" width="88" height="31"></a>
<a><img src="transrights.png" alt="trans rights now!" width="88" height="31"></a>
<a><img src="xeniatransnow.png" alt="use linux now!" width="88" height="31"></a>
</div>
</div>
</div>
<script>
document.querySelectorAll('.window').forEach(windowEl => {
const titleBar = windowEl.querySelector('.title-bar');
let offsetX = 0, offsetY = 0, isDragging = false;
titleBar.addEventListener('mousedown', (e) => {
isDragging = true;
offsetX = e.clientX - windowEl.offsetLeft;
offsetY = e.clientY - windowEl.offsetTop;
windowEl.style.zIndex = 1000;
});
document.addEventListener('mousemove', (e) => {
if (isDragging) {
windowEl.style.left = `${e.clientX - offsetX}px`;
windowEl.style.top = `${e.clientY - offsetY}px`;
}
});
document.addEventListener('mouseup', () => {
isDragging = false;
});
});
</script>
<script>
let link = document.querySelectorAll(".menu-button");
link.forEach(function(elem) {
elem.addEventListener("mousedown", () => {
elem.classList.add("ripple-effect");
setTimeout(() => {
elem.classList.remove("ripple-effect");
}, 1000);
})
});
</script>
<script>
let colonVisible = true;
function updateClockAndCalendar() {
const now = new Date();
const hours = now.getHours();
const minutes = now.getMinutes();
const displayHours = hours < 10 ? `0${hours}` : hours;
const displayMinutes = minutes < 10 ? `0${minutes}` : minutes;
const colon = colonVisible ? ':' : ' ';
document.getElementById('time').textContent = `${displayHours}${colon}${displayMinutes}`;
colonVisible = !colonVisible;
const days = ['SUN', 'MON', 'TUE', 'WED', 'THU', 'FRI', 'SAT'];
const months = ['JAN', 'FEB', 'MAR', 'APR', 'MAY', 'JUN', 'JUL', 'AUG', 'SEP', 'OCT', 'NOV', 'DEC'];
document.getElementById('day').textContent = days[now.getDay()];
document.getElementById('date').textContent = now.getDate();
document.getElementById('month').textContent = months[now.getMonth()];
}
updateClockAndCalendar();
setInterval(updateClockAndCalendar, 1000);
</script>
<script>
window.addEventListener('DOMContentLoaded', () => {
const params = new URLSearchParams(window.location.search);
const appId = params.get('app');
const contentId = params.get('content');
if (appId) {
const radio = document.getElementById(appId);
if (radio) {
radio.checked = true;
if (contentId) {
const contentRadio = document.getElementById(appId+"-"+contentId);
if (contentRadio) {
contentRadio.checked = true;
}
}
}
}
});
</script>
<script>
document.addEventListener('DOMContentLoaded', () => {
document.querySelectorAll('#copyUrl').forEach(button => {
console.log("found button");
button.addEventListener('click', () => {
const radioId = button.dataset.radio;
const radio = document.getElementById(radioId);
console.log(`Button clicked for: ${radioId}`);
console.log(`Radio element:`, radio);
if (radio && radio.checked) {
let url = `${location.origin}${location.pathname}?app=${radioId}`;
const contentRadios = document.querySelectorAll('input[name="'+radioId+'_menu"]');
for (const contentRadio of contentRadios) {
if (contentRadio.checked) {
const contentRadioId = contentRadio.id.replace(radioId+"-", "");
url = url+`&content=${contentRadioId}`
}
}
navigator.clipboard.writeText(url)
.then(() => {
const originalText = button.innerHTML;
button.innerHTML = '<img src="./confirm.svg" width="18" height="18" style="padding-left: 1px;" alt="copy">';
button.disabled = true;
setTimeout(() => {
button.innerHTML = originalText;
button.disabled = false;
}, 500);
})
.catch(err => console.log('Failed to copy URL: ' + err));
} else {
alert('This window is not currently active.');
}
});
});
});
</script>
</body>
</html>
|