site

my personal site
git clone git://git.daat.foo/site.git
Log | Files | Refs | README | LICENSE

index.html (3968B)


      1  <!DOCTYPE html>
      2 <html lang="en">
      3 <head>
      4     <meta name="viewport" content="width=device-width, initial-scale=1" />
      5     <meta charset="utf-8" />
      6     <title>cowmonk's Place</title>
      7     <link rel="stylesheet" href="../main.css" />
      8     <link rel="apple-touch-icon" sizes="180x180" href="../assets/images/apple-touch-icon.png" />
      9     <link rel="icon" type="image/png" sizes="32x32" href="../assets/images/favicon-32x32.png" />
     10     <link rel="icon" type="image/png" sizes="16x16" href="../assets/images/favicon-16x16.png" />
     11     <link rel="manifest" href="../assets/images/site.webmanifest" />
     12 </head>
     13 <body>
     14     <header>
     15         <h1>cowmonk's Digital Lair ~]#</h1>
     16         <p>Welcome to my corner of the web. Explore my thoughts, projects, and other random bits.</p>
     17         <nav id="main-nav">
     18             <a href="../">About</a>
     19             <a href="../projects/">Projects</a>
     20             <a href="../blog/">Blog</a>
     21             <a href="#other-things" class="active-nav-item"><b>Interests</b></a>
     22             <a href="../credits/">Credits</a>
     23         </nav>
     24     </header>
     25 
     26     <div class="content-wrapper">
     27         <aside class="profile-info">
     28             <img src="../assets/images/pfp.png" alt="[cowmonk pfp]" id="profile-pic">
     29             <h3>cowmonk</h3>
     30             <p><em>Linux enthusiast, C enjoyer, and lifelong suckless shill.</em></p>
     31 
     32             <details class="contacts">
     33                 <summary><b>Contact & Links</b></summary>
     34                 <dl class="contact-details">
     35                     <dt>Email / XMPP</dt>
     36                     <dd>cowmonk@based.pt</dd>
     37 
     38                     <dt>GitHub</dt>
     39                     <dd><a href="https://github.com/cowmonk" target="_blank" rel="noopener noreferrer">cowmonk</a></dd>
     40 
     41                     <dt>Codeberg</dt>
     42                     <dd><a href="https://codeberg.org/cowmonk" target="_blank" rel="noopener noreferrer">cowmonk</a></dd>
     43 
     44                     <dt>Based Git</dt>
     45                     <dd><a href="https://git.based.pt/cowmonk" target="_blank" rel="noopener noreferrer">cowmonk</a></dd>
     46                 </dl>
     47             </details>
     48         </aside>
     49 
     50         <main class="main-content">
     51             <section id="other-things">
     52                 <h2><span class="prompt">$</span> Other Things I Find Interesting</h2>
     53                 <ul>
     54                     <li><strong>Linux From Scratch:</strong> The masochist's dream OS.</li>
     55                     <li><strong>Suckless Software:</strong> Exploring tools that aren't bloat.</li>
     56                     <li><strong>Vim:</strong> More than just an editor, it's a way of life.</li>
     57                     <li><strong>Torrenting:</strong> Does anyone actually pay for anything they don't own?</li>
     58                     <li><strong>C:</strong> Yes I don't like garbage collectors, how can you tell?</li>
     59                     <li><strong>Audio Gear:</strong> Not a music producer, I just like listening to high quality audio.</li>
     60                     <li><strong>Gym:</strong> If you can't go into a pool and instantly sink, then you haven't made it in life yet.</li>
     61                 </ul>
     62                 <p>Feel free to check out my <a href="../blog/index.html">blog</a> for more detailed write-ups on some of these topics.</p>
     63             </section>
     64         </main>
     65     </div>
     66 
     67     <footer>
     68         <a href="https://www.vim.org/" target="_blank" rel="noopener noreferrer"><img src="https://cyber.dabamos.de/88x31/vim.vialle.love.anim.gif" alt="[Made on Vim]" height="31" /></a>
     69         <img src="https://88x31.kate.pet/madeon_linux.gif" alt="[Made on Linux]" height="31" />
     70         <img src="https://cyber.dabamos.de/88x31/javascript-zero.gif" alt="[No JavaScript]" height="31" />
     71         <center>
     72                 <p><a href="https://based.pt/~bacalhau">[ prev ]</a> | <a href="https://based.pt/webring">[ webring ]</a> | <a href="https://ariamath.xyz/~broke">[ next ]</a></p>
     73         </center>
     74         <p>© 2026 cowmonk.</p>
     75     </footer>
     76 </body>
     77 </html>
     78 
     79     
     80