personal-website/docs/www/random/index.php

246 lines
4.8 KiB
PHP
Raw Permalink Normal View History

2024-01-03 12:10:52 +01:00
<?php
2024-05-10 17:20:25 +02:00
$COMMONS = $_SERVER['DOCUMENT_ROOT'] . "/../common";
include_once($COMMONS."/header.php");
2024-06-22 22:20:51 +02:00
display_header("Random stuff");
2024-01-03 12:10:52 +01:00
?>
<article>
2024-01-19 04:21:58 +01:00
<h2>
2024-09-19 18:08:39 +02:00
Random stuff
2024-01-19 04:21:58 +01:00
</h2>
2024-09-19 18:08:39 +02:00
<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 stuff
</h3>
<div>
Some cool tools on other sites, take a look!
</div>
<table class="noborder-table">
<tr>
<td>
<a href="https://www.marksmath.org/visualization/julia_sets/">
Julia set explorer
</a>
</td>
<td>
Pick a parameter on the Mandelbrot set and see the corresponding
Julia set, then you can pick a seed there and see its orbit!
</td>
</tr>
<tr>
<td>
<a href="https://lilypond.org/doc/v2.24/Documentation/web/index">
Lilypond
</a>
</td>
<td>
Awesome tool for making sheet music using a tex-like notation.
You might want to use an editor like
<a href="https://frescobaldi.org/uguide">Frescobaldi</a>.
</td>
</tr>
<tr>
<td>
<a href="https://www.rptools.net/toolbox/maptool/">
MapTool
</a>
</td>
<td>
Highly scriptable virtual tabletop.
</td>
</tr>
<tr>
<td>
<a href="https://dungeondraft.net/">
Dungeondraft
</a>
</td>
<td>
Unfortunately not FOSS, but still a great piece of
map-making software, especially when used together with
Wonderdraft. At least it is free of any DRM,
so still pretty usable.
</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>
<tr>
<td>
<a href="https://evilham.com/en/blog/">
Evilham
</a>
</td>
<td>
Interesting blog covering a variety of topics.
</td>
</tr>
<tr>
<td>
<a href="https://lunduke.locals.com/landing/article">
Lunduke
</a>
</td>
<td>
His website does not work without JS, works like shit
even with it, but he does shine a light on some
interesting topics in FOSS. Also, funny memes.
</td>
</tr>
<tr>
<td>
<a href="https://www.youtube.com/watch?v=X2xc5M4r_Mo">
Bernie Sanders on why the Congress should not be
inviting Netanyahu, a war criminal, to a joint session.
</a>
</td>
<td>
Unfortunately hosted on youtube, but it is nice to see a
politician who genuinely cares about people and does not
bend his knee to the zionists.
</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>
2024-01-03 12:10:52 +01:00
</article>
2024-05-10 17:20:25 +02:00
<?php
include_once($COMMONS."/footer.php");
?>