aboutsummaryrefslogtreecommitdiff
path: root/html
diff options
context:
space:
mode:
Diffstat (limited to 'html')
-rw-r--r--html/404.html18
-rw-r--r--html/404.pngbin0 -> 444707 bytes
-rw-r--r--html/gear.html75
-rw-r--r--html/index.html36
-rw-r--r--html/projects.html60
-rw-r--r--html/robots.txt2
-rw-r--r--html/style.css9
7 files changed, 200 insertions, 0 deletions
diff --git a/html/404.html b/html/404.html
new file mode 100644
index 0000000..4debd65
--- /dev/null
+++ b/html/404.html
@@ -0,0 +1,18 @@
+<!DOCTYPE html>
+<html lang="en">
+ <head>
+ <meta charset="UTF-8">
+ <meta name="viewport" content="width=device-width, initial-scale=1">
+ <title>߸ schererleander</title>
+ <link rel="stylesheet" href="style.css">
+ <script>
+ window.setTimeout(function() { window.location.href = "/"; }, 3000);
+ </script>
+ </head>
+ <body>
+ <h1>404 — Not found</h1>
+ <p>Sorry not found, you will be redirected!</p>
+ <img width="500px" src="404.png">
+ </body>
+</html>
+
diff --git a/html/404.png b/html/404.png
new file mode 100644
index 0000000..f8f7719
--- /dev/null
+++ b/html/404.png
Binary files differ
diff --git a/html/gear.html b/html/gear.html
new file mode 100644
index 0000000..d04e0fd
--- /dev/null
+++ b/html/gear.html
@@ -0,0 +1,75 @@
+<!DOCTYPE html>
+<html lang="en">
+ <head>
+ <meta charset="UTF-8">
+ <meta name="viewport" content="width=device-width, initial-scale=1">
+ <title>߸ shinjū</title>
+ <link rel="stylesheet" href="style.css"">
+ </head>
+ <body>
+ <h1>gear</h1>
+ <ul>
+ <li>iPhone 11</li>
+ <li>AirPods Pro 1st Generation</li>
+ <li>MacBook Air M2</li>
+ </ul>
+ <h2>desktop</h2>
+ <table>
+ <colgroup>
+ <col style="width: 25%">
+ <col style="width: 37%">
+ <col style="width: 17%">
+ </colgroup>
+ <thead>
+ <tr class="header">
+ <th>Name</th>
+ <th>Description</th>
+ <th>Links</th>
+ </tr>
+ </thead>
+ <tbody>
+ <tr class="odd">
+ <td>AMD Ryzen 7 7700x</td>
+ <td>CPU</td>
+ <td><a href="https://www.amd.com/en/products/cpu/amd-ryzen-7-7700x">AMD</a></td>
+ </tr>
+ <tr class="even">
+ <td>NH-D9L chromax.black</td>
+ <td>CPU Cooler</td>
+ <td><a href="https://noctua.at/en/nh-d9l-chromax-black">Noctua</a></td>
+ </tr>
+ <tr class="odd">
+ <td>G.Skill 16GB DDR4 3200MHz</td>
+ <td>RAM</td>
+ <td><a href="https://www.gskill.com/product/165/326/1562841554/F4-3200C16D-16GVKB">G.Skill</a></td>
+ </tr>
+ <tr class="even">
+ <td>ROG STRIX B650E-I</td>
+ <td>Motherboard</td>
+ <td><a href="https://rog.asus.com/motherboards/rog-strix/rog-strix-b650e-i-gaming-wifi-model/">ASUS</a></td>
+ </tr>
+ <tr class="odd">
+ <td>Samsung 980 Pro 2TB M.2</td>
+ <td>Storage (Windows)</td>
+ <td><a href="https://www.samsung.com/semiconductor/minisite/ssd/product/consumer/980pro.html">Samsung</a></td>
+ </tr>
+ <tr class="even">
+ <td>Crucial P3 Plus 500GB</td>
+ <td>Storage (Linux)</td>
+ <td><a href="https://www.crucial.com/ssd/p3-plus/CT500P3SSD8">Crucial</a></td>
+ </tr>
+ <tr class="odd">
+ <td>Corsair SF Series SF750</td>
+ <td>PSU</td>
+ <td><a href="https://www.corsair.com/us/en/Categories/Products/Power-Supply-Units/SF-Series/p/CP-9020008-NA">Corsair</a></td>
+ </tr>
+ <tr class="even">
+ <td>Asus ROG Strix RX580 8GB</td>
+ <td>GPU (needs a upgrade)</td>
+ <td><a href="https://www.asus.com/us/Graphics-Cards/ROG-STRIX-RX580-O8G-GAMING/">ASUS</a></td>
+ </tr>
+ </tbody>
+ </table>
+ </body>
+</html>
+
diff --git a/html/index.html b/html/index.html
new file mode 100644
index 0000000..dcc8780
--- /dev/null
+++ b/html/index.html
@@ -0,0 +1,36 @@
+<!DOCTYPE html>
+<html lang="en">
+ <head>
+ <meta charset="UTF-8">
+ <meta name="viewport" content="width=device-width, initial-scale=1">
+ <title>߸ shinjū</title>
+ <link rel="stylesheet" href="style.css">
+ </head>
+ <body>
+ <h1>hi,</h1>
+ <p>i am <b>leander</b>. since i am young, i have passion for computers and software. i once hosted a minecraft server and wrote plugins for it, which got me into programming. i'm currently focused on backend web development.</p>
+ <p>as of now i am 20, currently in uni and studying computer science. below are few more things that iam interrested in:</p>
+ <ul>
+ <li>digital minimalism</li>
+ <li>digital privacy</li>
+ <li>*nix systems</li>
+ <li>homelab/self hosting</li>
+ <li>seinen manga</li>
+ </ul>
+ <hr>
+ <nav>
+ <a href="https://github.com/schererleander">git</a>
+ #
+ <a href="/projects.html">projects</a>
+ #
+ <a href="https://github.com/schererleander/dotfiles">dotfiles (should update them)</a>
+ #
+ no socials
+ #
+ <a href="/gear.html">gear</a>
+ #
+ <a href="mailto:leander@schererleander.de">contact</a>
+ </nav>
+</body>
+</html>
+
diff --git a/html/projects.html b/html/projects.html
new file mode 100644
index 0000000..87943d1
--- /dev/null
+++ b/html/projects.html
@@ -0,0 +1,60 @@
+<!DOCTYPE html>
+<html lang="en">
+ <head>
+ <meta charset="UTF-8">
+ <meta name="viewport" content="width=device-width, initial-scale=1">
+ <title>߸ shinjū</title>
+ <link rel="stylesheet" href="style.css">
+</head>
+<body>
+ <h1>projects</h1>
+ <table>
+ <colgroup>
+ <col style="width: 25%">
+ <col style="width: 37%">
+ <col style="width: 17%">
+ <col style="width: 20%">
+ </colgroup>
+ <thead>
+ <tr class="header">
+ <th>name</th>
+ <th>description</th>
+ <th>links</th>
+ </tr>
+ </thead>
+ <tbody>
+ <tr class="odd">
+ <td>Hackintosh</td>
+ <td>Was fascinated with macOS didnt had a Mac so i was lucky that my pc was compatible. I really liked MacOS and even bough a MacBook afterward</td>
+ <td><a href="https://github.com/schererleander/opencore-config">GitHub</a></td>
+ </tr>
+ <tr class="even">
+ <td>Space Invaders</td>
+ <td>Old school project of mine</td>
+ <td><a href="https://github.com/schererleander/pygame-space-invaders">GitHub</a></td>
+ </tr>
+ <tr class="odd">
+ <td>Markdown Preview</td>
+ <td>Live preview of markdown, supports very basic syntax</td>
+ <td><a href="https://github.com/schererleander/markdown-preview">GitHub</a></td>
+ </tr>
+ <tr class="even">
+ <td>Quiz Website</td>
+ <td>Quiz website for school project, very basic and hacked together</td>
+ <td><a href="https://github.com/schererleander/expressjs-quiz">GitHub</a></td>
+ </tr>
+ <tr class="odd">
+ <td>hyprland rice</td>
+ <td>got into ricing, used arch btw</td>
+ <td><a href="https://github.com/schererleander/hyprdots">GitHub</a></td>
+ </tr>
+ <tr>
+ <td>another rice</td>
+ <td>tried a different wm, stopped ricing after that, consumed a lot of time</td>
+ <td><a href="https://github.com/schererleander/labwcdots">GitHub</a></td>
+ </tr>
+ </tbody>
+ </table>
+ </body>
+</html>
+
diff --git a/html/robots.txt b/html/robots.txt
new file mode 100644
index 0000000..1f53798
--- /dev/null
+++ b/html/robots.txt
@@ -0,0 +1,2 @@
+User-agent: *
+Disallow: /
diff --git a/html/style.css b/html/style.css
new file mode 100644
index 0000000..f3cf308
--- /dev/null
+++ b/html/style.css
@@ -0,0 +1,9 @@
+* {
+ font-family: ui-serif, Georgia, Cambria, "Times New Roman", Times, serif;
+}
+body {
+ background: #EBE9DA;
+ max-width: 50em;
+ margin: 0 auto;
+ padding: 1.25em;
+}