1

WIP more pages

This commit is contained in:
Evan Pratten 2024-02-28 12:47:21 -05:00
parent 6a7a4e4237
commit fc47ed60d0
6 changed files with 55 additions and 2 deletions

View File

@ -2,13 +2,32 @@
title: Software
---
This page contains a directory of my software projects.
## Applications
- [Slice](/software/apps/slice): A hybrid analog/digital WearOS watch face that features a 24-hour clock
- [Protomask](/software/apps/protomask): Fast & reliable user space NAT64
- [gamels](/software/apps/gamels): `ls` with the power of the Steam API
- [aprshttp](https://github.com/ewpratten/aprshttp): One-way APRS position reporting using APRS-IS
The following applications are archived and no longer maintained:
- [Tabset](https://github.com/ewpratten/tabset) <span class="gray">(archived)</span>: A Linux drawing tablet configuration tool
- [NetBrowse](https://github.com/ewpratten/netbrowse) <span class="gray">(archived)</span>: A graphical frontend to avahi-browse
- [UDM-Pro fan control tool](https://github.com/ewpratten/udm-fan) <span class="gray">(archived)</span>
- [MCQ](https://github.com/ewpratten/mcq) <span class="gray">(archived)</span>: A tool for querying Minecraft servers
## Libraries
- [Raylib FFI](/software/libs/raylib-ffi): Raw Rust bindings for raylib
- [Rust function mangler for JNI](https://github.com/ewpratten/jni-mangle)
- [Amateur Data Interchange Format parsing and generation tools for Rust](https://github.com/ewpratten/adif-rs)
- [Automatic GitHub crash reporting system for Rust](https://github.com/ewpratten/crashreport-rs)
- [aprs-encode](https://github.com/ewpratten/aprs-encode): A `no_std` library for encoding APRS packets
- [boids-rs](https://github.com/ewpratten/boids-rs): A fast boids library for Rust
- [LegalAccess](https://github.com/ewpratten/legalaccess) <span class="gray">(archived)</span>: A Java library for safely accessing private fields and methods
## Games
- [[data::loss]](/software/games/data-loss): A Ludum Dare 49 game
@ -16,3 +35,7 @@ title: Software
- [Micromanaged Mike](/software/games/micromanaged-mike): A Ludum Dare 46 game
## Experiments
- [APRS Trains](https://github.com/ewpratten/aprs-trains): Passenger train telemetry over APRS
- [OpenDepthMap](https://github.com/ewpratten/OpenDepthMap) <span class="gray">(archived)</span>: Extracting depth data from a LeapMotion controller
- [MiDaS Depth Solver in Docker](https://github.com/ewpratten/midas-depth-solve) <span class="gray">(archived)</span>

View File

@ -0,0 +1,12 @@
---
title: gamels
description: ls with the power of the Steam API
---
`gamels` will list all files in a directory in the style of `ls -la`, but will also show the name of any Steam game found in the listing. This utility was made to help me explore the filesystem of the Steam Deck.
This works by querying the Steam API to resolve the appids back in to something useful for us humans.
![](/images/software/apps/gamels/screenshot.png)
Rust users can install this tool with `cargo install gamels`. The source code and builds are available on [GitHub](https://github.com/ewpratten/gamels).

View File

@ -2,13 +2,13 @@
title: Slice (WearOS Watchface)
description: The WearOS watchface that fuses a 24-hour clock with a digital display
extra:
og_image: /images/apps/slice/slice.png
og_image: /images/software/apps/slice/slice.png
---
It started from a simple question. *What would it be like to use a 24-hour analog clock?*
<img
src="/images/apps/slice/slice.png"
src="/images/software/apps/slice/slice.png"
style="border-radius: 100%; box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.5); width: 100%; max-width: 300px; margin: 0 auto; display: block;"
alt="Slice watchface"
>

View File

@ -0,0 +1,18 @@
---
title: Raylib FFI
description: Raw Rust bindings for raylib
---
Any time someone new to game and graphics programming asks me how to get started, I point them to [raylib](https://www.raylib.com/). It's a simple, yet powerful, game development library that is perfect for beginners and experts alike.
`raylib-ffi` is a raw binding from Rust to raylib. The library is 100% [`unsafe`](https://doc.rust-lang.org/std/keyword.unsafe.html) code, and thats the point!
I wanted to build a bindings library that can always track the very latest version of raylib without worrying about hand-wrapping every function into a safe Rust equivalent. This raw library is designed to be built *on top of* by other libraries that want to provide a safe interface to raylib through my wrapper.
## The magic
Raylib helpfully exposes a function signatures list for binding authors to reference. My library automatically reads this file and generates Rust code from it on the fly at built time. This means that any version update is a simple `git submodule update && cargo publish` away.
## Learn more
You can find the source code for `raylib-ffi` on [GitHub](https://github.com/ewpratten/raylib-ffi). Additionally, documentation is available on [docs.rs](https://docs.rs/raylib-ffi).

Binary file not shown.

After

Width:  |  Height:  |  Size: 104 KiB

View File

Before

Width:  |  Height:  |  Size: 29 KiB

After

Width:  |  Height:  |  Size: 29 KiB