Website/view/home.php

66 lines
2.2 KiB
PHP
Raw Normal View History

2023-05-02 10:44:55 +00:00
<?= view('header', ['is_index' => true]) ?>
2023-04-08 22:08:53 +00:00
2023-05-02 06:16:28 +00:00
<p><blockquote>More than just willies! Some of the time.</blockquote></p>
2023-04-08 22:08:53 +00:00
2023-05-02 08:34:54 +00:00
<p>Welcome to my webserver! Your bits have traveled through the pipes that make up the internet all the way to my laptop situated in Southern Norway, Kristiansand.</p>
2023-04-08 22:08:53 +00:00
2023-05-02 08:34:54 +00:00
<p>Isn't she beautiful? Released in 2008 is a ThinkPad R400 that's been <a href="//libreboot.org">librebooted</a> and equipped with:</p>
2023-03-21 17:23:14 +00:00
<ul>
2023-05-02 08:34:54 +00:00
<li>Intel Core2 Duo P8700 2x@2.53GHz</li>
2023-05-02 06:16:28 +00:00
<li>8 Gigabytes of dedotaded wam</li>
2023-05-02 08:34:54 +00:00
<li>Dual 480GB SSD in ZFS mirror</li>
2023-03-21 17:23:14 +00:00
</ul>
2023-05-02 00:13:29 +00:00
<p><img src="<?=url('/img/laptop.jpg')?>" alt=""></p>
2023-03-30 21:58:54 +00:00
2023-05-02 06:16:28 +00:00
<h2>Now, where would you like to go?</h2>
2023-05-02 08:34:54 +00:00
<p>The server serves some services; couple being publicly accessible.</p>
2023-05-02 06:16:28 +00:00
<div style="
padding: .75rem;
padding-left: 3rem;
margin-bottom: .75rem;
background: url('img/gitea.svg') no-repeat left center;
background-position-x: .75rem;
background-size: 1.5rem;
background-color: var(--secondary);
">
<a href="//git.willy.club">Gitea</a> - Version control hosting for projects
</div>
<div style="
padding: .75rem;
padding-left: 3rem;
margin-bottom: .75rem;
background: url('img/mumble.png') no-repeat left center;
background-position-x: .75rem;
background-size: 1.5rem;
background-color: var(--secondary);
">
<a href="mumble://mumble.willy.club">Mumble</a> - Low-latency, high-quality voice chat
</div>
<h2>Touch?</h2>
<p>Join the room on Matrix: <a href="https://matrix.to/#/#lobby:willy.club">#lobby:willy.club</a></p>
<h2>Other than that?</h2>
2023-05-02 08:34:54 +00:00
<p>Here are some things that I find interesting.</p>
2023-05-02 06:16:28 +00:00
<h3>Collapse</h3>
2023-05-02 08:34:54 +00:00
<p>Recently I have taken great interest in the potential for near-term civilizational collapse, or to put it more bluntly; doomscrolling, and it has overshadowed many of my other interests.</p>
2023-05-02 06:16:28 +00:00
2023-05-02 08:34:54 +00:00
<p>Here are some resources. Get redicalized.</p>
2023-05-02 06:16:28 +00:00
<ul>
<li>Sid Smith - <a href="https://www.youtube.com/watch?v=5WPB2u8EzL8">How to Enjoy the End of the World</a><br>- Presentation about the predicament.</li>
2023-05-03 14:16:42 +00:00
<li>Nate Hagens - <a href="https://www.youtube.com/watch?v=-xr9rIQxwj4">The Great Simplification</a><br>- Nifty animated movie about the predicament in a more optimistic tone.</li>
2023-05-02 06:16:28 +00:00
</ul>
2023-05-02 08:34:54 +00:00
<p>I'm a little depressed. 🤷</p>
2023-05-02 06:16:28 +00:00
2023-03-21 17:23:14 +00:00
<?= view('footer') ?>