Compare commits

..

3 commits

2 changed files with 119 additions and 8 deletions

View file

@ -144,7 +144,7 @@ function display_header($pageTitle) {
</li>
<li>
<a href=\"http://www.zdenekborovec-dev.cz/random\">
Random Tools
Random Stuff
</a>
</li>
</ul>

View file

@ -3,18 +3,129 @@ $COMMONS = $_SERVER['DOCUMENT_ROOT'] . "/../common";
include_once($COMMONS."/header.php");
display_header("Random tools");
display_header("Random stuff");
?>
<article>
<h2>
A collection of random tools I thought could be useful.
Random stuff
</h2>
<ul>
<li>
<a href="http://www.zdenekborovec-dev.cz/random/conversions">Unit conversions</a>
</li>
</ul>
<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>
</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>
</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