diff --git a/content/software/_index.md b/content/software/_index.md index 3ebf1d3..ad4b790 100644 --- a/content/software/_index.md +++ b/content/software/_index.md @@ -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) (archived): A Linux drawing tablet configuration tool +- [NetBrowse](https://github.com/ewpratten/netbrowse) (archived): A graphical frontend to avahi-browse +- [UDM-Pro fan control tool](https://github.com/ewpratten/udm-fan) (archived) +- [MCQ](https://github.com/ewpratten/mcq) (archived): 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) (archived): 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) (archived): Extracting depth data from a LeapMotion controller +- [MiDaS Depth Solver in Docker](https://github.com/ewpratten/midas-depth-solve) (archived) diff --git a/content/software/apps/gamels.md b/content/software/apps/gamels.md new file mode 100644 index 0000000..6c1712c --- /dev/null +++ b/content/software/apps/gamels.md @@ -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). diff --git a/content/software/apps/slice.md b/content/software/apps/slice.md index 7e13a28..27dd07a 100644 --- a/content/software/apps/slice.md +++ b/content/software/apps/slice.md @@ -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?* Slice watchface diff --git a/content/software/libs/raylib-ffi.md b/content/software/libs/raylib-ffi.md new file mode 100644 index 0000000..d610cac --- /dev/null +++ b/content/software/libs/raylib-ffi.md @@ -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). diff --git a/static/images/software/apps/gamels/screenshot.png b/static/images/software/apps/gamels/screenshot.png new file mode 100644 index 0000000..4a9c01c Binary files /dev/null and b/static/images/software/apps/gamels/screenshot.png differ diff --git a/static/images/apps/slice/slice.png b/static/images/software/apps/slice/slice.png similarity index 100% rename from static/images/apps/slice/slice.png rename to static/images/software/apps/slice/slice.png