2022-10-30 20:07:17 +00:00
|
|
|
<?php include "./php/age.php"; ?>
|
|
|
|
<?php $page_title = "projects"; ?>
|
2022-10-07 22:45:01 +01:00
|
|
|
|
2022-10-30 20:07:17 +00:00
|
|
|
<!DOCTYPE html>
|
2022-10-07 22:45:01 +01:00
|
|
|
<html lang="en">
|
2022-10-30 20:07:17 +00:00
|
|
|
<?php include "./page-blocks/head.php"; ?>
|
2022-10-07 22:45:01 +01:00
|
|
|
<body>
|
2022-10-30 20:07:17 +00:00
|
|
|
<?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>
|
2023-01-12 14:49:21 +00:00
|
|
|
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.
|
2023-01-11 23:36:23 +00:00
|
|
|
</p>
|
|
|
|
<p>
|
2023-08-14 21:37:13 +01:00
|
|
|
Most of my projects involve web development of some kind, you can find some software projects below
|
2023-01-11 23:36:23 +00:00
|
|
|
though. Besides this website, which is written in PHP - mainly for easy
|
2023-03-05 23:19:12 +00:00
|
|
|
templating rather than for dynamic content - I have created the following:
|
2023-01-11 23:36:23 +00:00
|
|
|
</p>
|
|
|
|
<dl>
|
2023-03-05 23:19:12 +00:00
|
|
|
<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>
|
2023-01-11 23:36:23 +00:00
|
|
|
<dd>Written in PHP, a simple gateway to get easy access to train departures</dd>
|
2023-03-06 21:14:50 +00:00
|
|
|
<dt><a href="https://owlboard.info">OwlBoard</a> <a href="https://git.fjla.uk/OwlBoard">Git Repos</a></dt>
|
2023-03-05 23:31:22 +00:00
|
|
|
<dd>A suite of containerised applications offering live departure boards for UK Rail.
|
2023-08-14 21:35:47 +01:00
|
|
|
Consists of an Express.JS API Server utilising JS and TS, a Python db-manager script, a Go message-broker and a modern PWA frontend
|
2023-08-14 21:37:13 +01:00
|
|
|
written using SvelteKit and utilising compression to reduce payload size, and making use of ServiceWorker caching,
|
2023-03-05 23:31:22 +00:00
|
|
|
to increase reliability over low quality mobile data links. Designed for Kubernetes deployment.
|
2023-03-05 23:19:12 +00:00
|
|
|
</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>
|
2023-01-11 23:36:23 +00:00
|
|
|
<dd>Written in Python, a simple cross-platform GUI based random number
|
|
|
|
generator. Using the tkinter library for the interface.</dd>
|
2023-08-14 21:35:47 +01:00
|
|
|
<dt><a href="https://git.fjla.uk/fred.boniface/map-dots">map-dots</a></dt>
|
|
|
|
<dd>Written in Go, an application that can consume location history data and produce images from the data. map-dots can be run as a CLI
|
|
|
|
program or as a web-server offering a simple API. <a href="https://git.fjla.uk/fred.boniface/map-dots-fetch">map-dots-fetch</a> is
|
|
|
|
a simple script designed to request images from map-dots when it is being run as a server.
|
|
|
|
Originally designed to provide images that can be used as wallpaper images.
|
2023-01-11 23:36:23 +00:00
|
|
|
</dl>
|
2022-10-30 20:07:17 +00:00
|
|
|
<br>
|
|
|
|
</div>
|
|
|
|
<?php include "./page-blocks/footer.php"; ?>
|
2022-10-07 22:45:01 +01:00
|
|
|
</body>
|
|
|
|
</html>
|