38 lines
1.9 KiB
PHP
38 lines
1.9 KiB
PHP
<?php include "./php/age.php"; ?>
|
|
<?php $page_title = "projects"; ?>
|
|
|
|
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<?php include "./page-blocks/head.php"; ?>
|
|
<body>
|
|
<?php include "./page-blocks/head-img.php"; ?>
|
|
<?php include "./page-blocks/menu.php"; ?>
|
|
<?php include "./page-blocks/micro-content.php"; ?>
|
|
<div class="content hide_micro">
|
|
<p>
|
|
This isn't a complete list of all my projects, but check out my
|
|
<a href="https://git.fjla.uk/fred.boniface/">Gitea</a> to see more.
|
|
</p>
|
|
<p>
|
|
Most of my projects involve web development, you can find some software projects below
|
|
though. Besides this website, which is written in PHP - mainly for easy
|
|
templating rather than for dynamic content - I have created the following:
|
|
</p>
|
|
<dl>
|
|
<dt><a href="https://athena.fb-infra.uk">Athena</a> <a href="https://git.fjla.uk/fred.boniface/athena.fb-infra.uk">Git Repo</a></dt>
|
|
<dd>Written in PHP, a simple gateway to get easy access to train departures</dd>
|
|
<dt><a href="https://owlboard.fjla.uk">OwlBoard</a> <a href="https://git.fjla.uk/OwlBoard">Git Repos</a></dt>
|
|
<dd>A suite of containerised applications offering live departure boards for UK Rail.
|
|
Consists of an Express.JS API Server, a Python db-manager script and a modern PWA frontend
|
|
utilising compression to reduce payload size, and making use of ServiceWorker caching,
|
|
to increase reliability over low quality mobile data links. Designed for Kubernetes deployment.
|
|
</dd>
|
|
<dt><a href="https://git.fjla.uk/fred.boniface/trandom">tRandom</a> <a href="https://git.fjla.uk/fred.boniface/tRandom">Git Repo</a></dt>
|
|
<dd>Written in Python, a simple cross-platform GUI based random number
|
|
generator. Using the tkinter library for the interface.</dd>
|
|
</dl>
|
|
<br>
|
|
</div>
|
|
<?php include "./page-blocks/footer.php"; ?>
|
|
</body>
|
|
</html>
|