Compare commits
2 commits
7292d2e481
...
11a930b44b
Author | SHA1 | Date | |
---|---|---|---|
|
11a930b44b | ||
|
02f387af96 |
120
index.html
120
index.html
|
@ -10,31 +10,65 @@
|
||||||
}
|
}
|
||||||
|
|
||||||
body {
|
body {
|
||||||
background-color: #002b36; /* Base03 - Background */
|
background-color: #000000; /* Black background */
|
||||||
color: #839496; /* Base0 - Foreground */
|
color: #39ff14; /* Phosphor green text */
|
||||||
|
font-family: monospace;
|
||||||
}
|
}
|
||||||
|
|
||||||
a {
|
a {
|
||||||
color: #268bd2; /* Blue - Link */
|
color: #39ff14; /* Match phosphor green */
|
||||||
|
text-decoration: none;
|
||||||
}
|
}
|
||||||
|
|
||||||
a:hover {
|
a:hover {
|
||||||
color: #2aa198; /* Cyan - Link Hover */
|
color: #80ff80; /* Slightly lighter green on hover */
|
||||||
|
text-decoration: underline;
|
||||||
}
|
}
|
||||||
|
|
||||||
h1 {
|
h1 {
|
||||||
color: #b58900; /* Yellow - Header */
|
color: #39ff14;
|
||||||
|
margin-top: 30px;
|
||||||
|
font-size: 1.5em;
|
||||||
|
border-bottom: 1px solid #39ff14;
|
||||||
|
padding-bottom: 5px;
|
||||||
}
|
}
|
||||||
|
|
||||||
ul {
|
ul {
|
||||||
list-style-type: none;
|
list-style-type: none;
|
||||||
padding: 0;
|
padding-left: 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
li {
|
li {
|
||||||
margin-bottom: 10px;
|
margin-bottom: 10px;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/* Navigation Bar */
|
||||||
|
nav {
|
||||||
|
background-color: #000000;
|
||||||
|
border-bottom: 1px solid #39ff14;
|
||||||
|
padding: 10px;
|
||||||
|
display: flex;
|
||||||
|
justify-content: center;
|
||||||
|
gap: 20px;
|
||||||
|
position: sticky;
|
||||||
|
top: 0;
|
||||||
|
z-index: 9999;
|
||||||
|
}
|
||||||
|
|
||||||
|
nav a {
|
||||||
|
color: #39ff14;
|
||||||
|
font-weight: bold;
|
||||||
|
padding: 5px 10px;
|
||||||
|
border: 1px solid #39ff14;
|
||||||
|
border-radius: 2px;
|
||||||
|
transition: background 0.3s, color 0.3s;
|
||||||
|
}
|
||||||
|
|
||||||
|
nav a:hover {
|
||||||
|
background-color: #39ff14;
|
||||||
|
color: #000000;
|
||||||
|
}
|
||||||
|
|
||||||
/* Scanline overlay effect */
|
/* Scanline overlay effect */
|
||||||
.scanlines {
|
.scanlines {
|
||||||
overflow: hidden;
|
overflow: hidden;
|
||||||
|
@ -50,7 +84,7 @@
|
||||||
width: 100vw;
|
width: 100vw;
|
||||||
height: 2px;
|
height: 2px;
|
||||||
z-index: 2147483649;
|
z-index: 2147483649;
|
||||||
background: rgba(0, 0, 0, 0.3);
|
background: rgba(0, 255, 0, 0.3); /* Subtle green line */
|
||||||
opacity: 0.75;
|
opacity: 0.75;
|
||||||
pointer-events: none;
|
pointer-events: none;
|
||||||
animation: scanline 2s linear infinite;
|
animation: scanline 2s linear infinite;
|
||||||
|
@ -68,7 +102,7 @@
|
||||||
background: linear-gradient(
|
background: linear-gradient(
|
||||||
to bottom,
|
to bottom,
|
||||||
transparent 50%,
|
transparent 50%,
|
||||||
rgba(0, 0, 0, 0.3) 51%
|
rgba(0, 255, 0, 0.05) 51%
|
||||||
);
|
);
|
||||||
background-size: 100% 4px;
|
background-size: 100% 4px;
|
||||||
animation: scanlines 1s steps(60) infinite;
|
animation: scanlines 1s steps(60) infinite;
|
||||||
|
@ -88,31 +122,59 @@
|
||||||
background-position: 0 50%;
|
background-position: 0 50%;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/* Main content padding */
|
||||||
|
.content {
|
||||||
|
padding: 20px;
|
||||||
|
max-width: 800px;
|
||||||
|
margin: 0 auto;
|
||||||
|
}
|
||||||
</style>
|
</style>
|
||||||
</head>
|
</head>
|
||||||
<body class="scanlines">
|
<body class="scanlines">
|
||||||
<h1>IDs</h1>
|
<nav>
|
||||||
<li>NPUB: npub1nmk2399jazpsup0vsm6dzxw7gydzm5atedj4yhdkn3yx7jh7tzpq842975</li>
|
<a href="#ids">IDs</a>
|
||||||
<li>NIP06: iru@ this domain</li>
|
<a href="#notes">Long Form Notes</a>
|
||||||
<li>LNURL: iru@ this domain</li>
|
<a href="#other">Other Stuff</a>
|
||||||
<li>GPG: 0DE8AAA9F5DA9CCB3F3F3B8E14566DCEC81EF576</li>
|
<a href="#posts">Posts</a>
|
||||||
<li>Github: irusensei</li>
|
</nav>
|
||||||
|
|
||||||
<h1>Long form notes</h1>
|
<div class="content">
|
||||||
<li>
|
<h1 id="ids">IDs</h1>
|
||||||
Running popular AI software on Linux and AMD GPUs:
|
<ul>
|
||||||
<a href="https://habla.news/a/naddr1qqxnzd3ex56rwvfexvurxwfjqgsfam9gjjew3qcwqhkgdax3r80yzx3d6w4uke2jtkmfcjr0ftl93qsrqsqqqa28vfwv5f">note</a>,
|
<li>NPUB: npub1nmk2399jazpsup0vsm6dzxw7gydzm5atedj4yhdkn3yx7jh7tzpq842975</li>
|
||||||
<a href="https://code.despera.space/iru/htdocs/src/branch/main/notes/AMD-AGI.md">local</a>
|
<li>NIP06: iru@ this domain</li>
|
||||||
</li>
|
<li>LNURL: iru@ this domain</li>
|
||||||
<li>
|
<li>GPG: 0DE8AAA9F5DA9CCB3F3F3B8E14566DCEC81EF576</li>
|
||||||
How I put NixOS on my UDM (trashcan model) router:
|
<li>Github: irusensei</li>
|
||||||
<a href="https://habla.news/a/naddr1qvzqqqr4gupzp8hv4z2t96yrpcz7eph56yvausg69hf6hjm92fwmd8zgda90ukyzqqxnzde3xccnyd3sxver2dfk5j9lzf">note</a>,
|
</ul>
|
||||||
<a href="https://code.despera.space/iru/htdocs/src/branch/main/notes/UDM-NIXOS.md">local</a>
|
|
||||||
</li>
|
|
||||||
|
|
||||||
<h1>Other stuff</h1>
|
<h1 id="notes">Long Form Notes</h1>
|
||||||
<li>
|
<ul>
|
||||||
<a href="https://code.ide-roach.ts.net/mirrors">I keep mirrors of repos I use or feel like having preserved</a>.
|
<li>
|
||||||
</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>
|
||||||
|
</ul>
|
||||||
|
|
||||||
|
<h1 id="other">Other Stuff</h1>
|
||||||
|
<ul>
|
||||||
|
<li>
|
||||||
|
<a href="https://code.despera.space/mirrors">I keep mirrors of repos I use or feel like having preserved</a>.
|
||||||
|
</li>
|
||||||
|
</ul>
|
||||||
|
|
||||||
|
<h1 id="posts">Posts</h1>
|
||||||
|
<ul>
|
||||||
|
<li>No posts yet... stay tuned.</li>
|
||||||
|
</ul>
|
||||||
|
|
||||||
|
</div>
|
||||||
</body>
|
</body>
|
||||||
</html>
|
</html>
|
||||||
|
|
Loading…
Reference in a new issue