This commit is contained in:
Iru Sensei 2025-04-21 18:07:51 +02:00
parent c50626ebb1
commit 7a5c46d9ee

View file

@ -1,46 +1,118 @@
<!DOCTYPE html> <!DOCTYPE html>
<html> <html>
<head> <head>
<title>despera.space</title> <title>despera.space</title>
<style> <style>
body { html, body {
background-color: #002b36; /* Base03 - Background */ margin: 0;
color: #839496; /* Base0 - Foreground */ padding: 0;
} height: 100%;
}
a { body {
color: #268bd2; /* Blue - Link */ background-color: #002b36; /* Base03 - Background */
} color: #839496; /* Base0 - Foreground */
}
a:hover { a {
color: #2aa198; /* Cyan - Link Hover */ color: #268bd2; /* Blue - Link */
} }
h1 { a:hover {
color: #b58900; /* Yellow - Header */ color: #2aa198; /* Cyan - Link Hover */
} }
ul { h1 {
list-style-type: none; color: #b58900; /* Yellow - Header */
padding: 0; }
}
li { ul {
margin-bottom: 10px; list-style-type: none;
padding: 0;
}
li {
margin-bottom: 10px;
}
/* Scanline overlay effect */
.scanlines {
overflow: hidden;
position: relative;
min-height: 100vh;
}
.scanlines:before {
content: "";
position: fixed;
top: 0;
left: 0;
width: 100vw;
height: 2px;
z-index: 2147483649;
background: rgba(0, 0, 0, 0.3);
opacity: 0.75;
pointer-events: none;
animation: scanline 2s linear infinite;
}
.scanlines:after {
content: "";
position: fixed;
top: 0;
left: 0;
width: 100vw;
height: 100vh;
z-index: 2147483648;
pointer-events: none;
background: linear-gradient(
to bottom,
transparent 50%,
rgba(0, 0, 0, 0.3) 51%
);
background-size: 100% 4px;
animation: scanlines 1s steps(60) infinite;
}
@keyframes scanline {
0% {
transform: translateY(-2px);
} }
</style> 100% {
</head> transform: translateY(100vh);
<body> }
<h1>IDs</h1> }
<li>NPUB: npub1nmk2399jazpsup0vsm6dzxw7gydzm5atedj4yhdkn3yx7jh7tzpq842975</li>
<li>NIP06: iru@ this domain</li> @keyframes scanlines {
<li>LNURL: iru@ this domain</li> 0% {
<li>GPG: 0DE8AAA9F5DA9CCB3F3F3B8E14566DCEC81EF576</li> background-position: 0 50%;
<li>Github: irusensei</li> }
<h1>Long form notes</h1> }
<li>Running popular AI software on Linux and AMD GPUs: <a href="https://habla.news/a/naddr1qqxnzd3ex56rwvfexvurxwfjqgsfam9gjjew3qcwqhkgdax3r80yzx3d6w4uke2jtkmfcjr0ftl93qsrqsqqqa28vfwv5f">note</a>, <a href="https://code.despera.space/iru/htdocs/src/branch/main/notes/AMD-AGI.md">local</a></li> </style>
<li>How I put NixOS on my UDM (trashcan model) router: <a href="https://habla.news/a/naddr1qvzqqqr4gupzp8hv4z2t96yrpcz7eph56yvausg69hf6hjm92fwmd8zgda90ukyzqqxnzde3xccnyd3sxver2dfk5j9lzf">note</a>, <a href="https://code.despera.space/iru/htdocs/src/branch/main/notes/UDM-NIXOS.md">local</a> </head>
<h1>Other stuff</h1> <body class="scanlines">
<li><a href="https://code.ide-roach.ts.net/mirrors">I keep mirrors of repos I use or feel like having preserved</a>.</li> <h1>IDs</h1>
</body> <li>NPUB: npub1nmk2399jazpsup0vsm6dzxw7gydzm5atedj4yhdkn3yx7jh7tzpq842975</li>
<li>NIP06: iru@ this domain</li>
<li>LNURL: iru@ this domain</li>
<li>GPG: 0DE8AAA9F5DA9CCB3F3F3B8E14566DCEC81EF576</li>
<li>Github: irusensei</li>
<h1>Long form notes</h1>
<li>
Running popular AI software on Linux and AMD GPUs:
<a href="https://habla.news/a/naddr1qqxnzd3ex56rwvfexvurxwfjqgsfam9gjjew3qcwqhkgdax3r80yzx3d6w4uke2jtkmfcjr0ftl93qsrqsqqqa28vfwv5f">note</a>,
<a href="https://code.despera.space/iru/htdocs/src/branch/main/notes/AMD-AGI.md">local</a>
</li>
<li>
How I put NixOS on my UDM (trashcan model) router:
<a href="https://habla.news/a/naddr1qvzqqqr4gupzp8hv4z2t96yrpcz7eph56yvausg69hf6hjm92fwmd8zgda90ukyzqqxnzde3xccnyd3sxver2dfk5j9lzf">note</a>,
<a href="https://code.despera.space/iru/htdocs/src/branch/main/notes/UDM-NIXOS.md">local</a>
</li>
<h1>Other stuff</h1>
<li>
<a href="https://code.ide-roach.ts.net/mirrors">I keep mirrors of repos I use or feel like having preserved</a>.
</li>
</body>
</html> </html>