trimill.xyz/flaskr/templates/projects.html

92 lines
3.4 KiB
HTML
Raw Permalink Normal View History

2022-06-23 05:58:54 +00:00
{% set meta={"title": "Projects", "desc": "List of projects I have made"} %}
{% extends "/_base.html" %}
{% block content %}
2024-05-12 23:21:34 +00:00
<h2><a href="https://cx.trimill.xyz/">CXGraph</a></h2>
<p>
CXGraph is the successor to Complex Grapher. It allows the definition of multiple functions,
iteration, and interactive sliders and draggable points. It is implemented primarily in Rust
using WASM and WebGPU.
</p>
<h2><a href="https://g.trimill.xyz/trimill/talc">Talc</a></h2>
2023-02-22 22:12:52 +00:00
<p>
2024-05-12 23:21:34 +00:00
Talc is a procedural/functional programming language implemented in Rust. It supports
several numeric types, first-class functions, file I/O, string manipulation, exceptions,
and several other features.
2023-02-22 22:12:52 +00:00
</p>
<h2><a href="https://g.trimill.xyz/trimill/quectocraft">Quectocraft</a></h2>
<p>
2024-05-12 23:21:34 +00:00
Quectocraft is an extensible, ultra-minimalist implementation of a Minecraft server.
By doing away with most features of the vanilla server (such as world generation and
interaction) it can run without consuming many system resources. It is written primarily
in Rust, but can load simple plugins written in Lua to add chat features and commands.
2023-02-22 22:12:52 +00:00
</p>
<h2><a href="https://g.trimill.xyz/trimill/rss-bundler">RSS Bundler</a></h2>
<p>
2024-05-12 23:21:34 +00:00
RSS Bundler is a tool that bundles multiple RSS feeds into one. At a fixed interval it fetches content from the configured
feeds, merges them together, and stores and serves the result. RSS Bundler is written in Rust.
2023-02-22 22:12:52 +00:00
</p>
2024-05-12 23:21:34 +00:00
<h2><a href="/projects/zzcxz_vis">zzcxz visualizer</a></h2>
2023-02-22 22:12:52 +00:00
<p>
2024-05-12 23:21:34 +00:00
zzcxz visualizer displays a force-directed graph of <a href="https://zzcxz.citrons.xyz/">zzcxz</a>, a collaborative interactive
fiction project. It is written in JavaScript and uses D3.js.
2023-02-22 22:12:52 +00:00
</p>
2024-05-12 23:21:34 +00:00
<h2><a href="https://g.trimill.xyz/trimill/complexpr">complexpr</a></h2>
2023-02-22 22:12:52 +00:00
<p>
2024-05-12 23:21:34 +00:00
Complexpr is a toy programming language with an interpreter written in Rust. It is dynamically typed, with
native support for rational and complex numbers, lists and maps, and first-class functions. It features
pipeline operators (similar to Elixir's <code>|&gt;</code>) to express nested function calls more cleanly.
2023-02-22 22:12:52 +00:00
</p>
<h2><a href="https://g.trimill.xyz/trimill/sysh">sysh</a></h2>
<p>
2024-05-12 23:21:34 +00:00
sysh is a shell that allows users to run Linux syscalls directly. It supports the entire set of x86_64 syscalls, as well as
several other commands to manage memory, manipulate data, and perform arithmetic. sysh is written in C, using Python to
automatically generate some code.
2023-02-22 22:12:52 +00:00
</p>
<h2><a href="https://g.trimill.xyz/trimill/musidl">Musidl</a></h2>
<p>
2024-05-12 23:21:34 +00:00
Musidl is a Bash script that downloads music using <a href="https://github.com/yt-dlp/yt-dlp">yt-dlp</a> and
automatically add ID3v2 tags based on Youtube Music metadata.
2023-02-22 22:12:52 +00:00
</p>
<h2><a href="/projects/mazemaker">Maze maker</a></h2>
<p>
2024-05-12 23:21:34 +00:00
Generate random mazes based on a variety of parameters. Written in JavaScript using <a href="https://p5js.org/">p5.js</a>.
2023-02-22 22:12:52 +00:00
</p>
<h2><a href="/projects/converter">Unit converter</a></h2>
<p>
2024-05-12 23:21:34 +00:00
Convert between various different units, including commonly-used ones as well as unusual or archaic ones.
2023-02-22 22:12:52 +00:00
</p>
<h2><a href="/projects/fracbase">Fraction base converter</a></h2>
<p>
2024-05-12 23:21:34 +00:00
Convert a fraction to its positional notation in an arbitrary base.
2023-02-22 22:12:52 +00:00
</p>
<h2><a href="/projects/number">number</a></h2>
<p>
2024-05-12 23:21:34 +00:00
Make number go up.
2023-02-22 22:12:52 +00:00
</p>
<h2><a href="/projects/pixelcircle">Pixel circle</a></h2>
<p>
2024-05-12 23:21:34 +00:00
Create pixelated circles with a specified radius.
2023-02-22 22:12:52 +00:00
</p>
<h2><a href="/projects/stars">Stars</a></h2>
<p>
2024-05-12 23:21:34 +00:00
Generate stars.
2023-02-22 22:12:52 +00:00
</p>
{% endblock %}