153 lines
2.8 KiB
PHP
153 lines
2.8 KiB
PHP
<?php
|
|
$COMMONS = $_SERVER['DOCUMENT_ROOT'] . "/../common";
|
|
|
|
include_once($COMMONS."/header.php");
|
|
|
|
display_header("Random stuff");
|
|
?>
|
|
|
|
<article>
|
|
<h2>
|
|
Random stuff
|
|
</h2>
|
|
|
|
<div>
|
|
Browse my trash! This is a collection of stuff I found on the internet
|
|
and thought worh sharing, or I made for myself and wanted to share.
|
|
Enjoy!
|
|
|
|
</div>
|
|
|
|
<hr>
|
|
|
|
<h3>
|
|
My stuff
|
|
</h3>
|
|
<div>
|
|
Webpages I made, hosted on this site.
|
|
</div>
|
|
<table class="noborder-table">
|
|
<tr>
|
|
<td>
|
|
<a href="http://www.zdenekborovec-dev.cz/random/conversions">
|
|
Unit conversions
|
|
</a>
|
|
</td>
|
|
<td>
|
|
Conversion tables between different systems of measurement and
|
|
density tables for some common kitchen ingredients, your
|
|
measurement contributions are welcome!
|
|
</td>
|
|
</tr>
|
|
<tr>
|
|
<td>
|
|
<a href="http://www.zdenekborovec-dev.cz/random/zangelding">
|
|
Zangelding
|
|
</a>
|
|
</td>
|
|
<td>
|
|
Really interesting new emerging technology.
|
|
</td>
|
|
</tr>
|
|
</table>
|
|
|
|
<hr>
|
|
|
|
<h3>
|
|
External blogs
|
|
</h3>
|
|
|
|
<div>
|
|
Blogs and articles from other people that I found worth sharing.
|
|
</div>
|
|
|
|
<table class="noborder-table">
|
|
<tr>
|
|
<td>
|
|
<a href="https://digdeeper.neocities.org/articles/mozilla">
|
|
Mozilla - Devil Incarnate
|
|
</a>
|
|
</td>
|
|
<td>
|
|
A very interesting article describing the evil nature of
|
|
Mozilla.
|
|
</td>
|
|
</tr>
|
|
<tr>
|
|
<td>
|
|
<a href="https://datagubbe.se/usab2/">
|
|
The Decline of Usability
|
|
</a>
|
|
</td>
|
|
<td>
|
|
Article on the modern UI disaster.
|
|
</td>
|
|
</tr>
|
|
<tr>
|
|
<td>
|
|
<a href="https://lukesmith.xyz/">Luke Smith</a>
|
|
</td>
|
|
<td>
|
|
Cool guy behind a buch of cool projects.
|
|
</td>
|
|
</tr>
|
|
<tr>
|
|
<td>
|
|
<a href="https://through-the-interface.typepad.com/">
|
|
Through the Interface
|
|
</a>
|
|
</td>
|
|
<td>
|
|
Great blog for AutoCAD programming.
|
|
</td>
|
|
</tr>
|
|
<tr>
|
|
<td>
|
|
<a href="https://flatkill.org/">
|
|
Flatpak - a security nightmare
|
|
</a>
|
|
</td>
|
|
<td>
|
|
An article on one of the many reasons flatpak sucks.
|
|
</td>
|
|
</tr>
|
|
</table>
|
|
|
|
<hr>
|
|
|
|
<h3>
|
|
Friends of the site
|
|
</h3>
|
|
|
|
<div>
|
|
Websites of friends.
|
|
</div>
|
|
|
|
<table class="noborder-table">
|
|
<tr>
|
|
<td>
|
|
<a href="https://www.kousal.net/">kousal.net</a>
|
|
</td>
|
|
<td>
|
|
A friend of many years, no clear direction for the site yet.
|
|
</td>
|
|
</tr>
|
|
<tr>
|
|
<td>
|
|
<a href="http://dominik.zone/">dominik.zone</a>
|
|
</td>
|
|
<td>
|
|
He came up with the site-sharing idea, and personally assured
|
|
me that IBM does not put backdoors in rhel or fedora.
|
|
Beware that his site is currently misconfigued and does not
|
|
serve the www subdomain or the https:// protocol,
|
|
so use http://dominik.zone. Cool fact, he stole his css
|
|
from the holy see.
|
|
</td>
|
|
</tr>
|
|
</table>
|
|
</article>
|
|
|
|
<?php
|
|
include_once($COMMONS."/footer.php");
|
|
?>
|