From 14ed85db8e8c16ae233eb781f743cf83513e5aa1 Mon Sep 17 00:00:00 2001 From: Evan Pratten Date: Fri, 16 Dec 2022 16:23:49 -0500 Subject: [PATCH] Add rust projects --- content/blog/2022-03-15-Java-cheatsheet.md | 2 +- content/software/2021-01-30-rbn.md | 8 +++++++ content/software/2021-01-31-hambands.md | 6 +---- .../software/2021-03-03-pathfollowing-demo.md | 8 +++++++ content/software/2021-03-28-mcq.md | 8 +++++++ content/software/2021-03-31-cargo-token.md | 8 +++++++ content/software/2021-03-31-polymesh.md | 8 +++++++ content/software/2021-04-03-boop.md | 8 +++++++ content/software/2021-04-26-deep-breath.md | 8 +++++++ content/software/2021-05-04-glasscast.md | 8 +++++++ content/software/2021-06-01-open-depth-map.md | 8 +++++++ content/software/2021-06-13-ittyr.md | 8 +++++++ content/software/2021-07-09-tsinfo.md | 8 +++++++ .../software/2021-07-17-serde-frontmatter.md | 8 +++++++ content/software/2021-08-12-spacetrace.md | 8 +++++++ content/software/2021-09-03-boids.md | 8 +++++++ content/software/2021-09-22-aprshttp.md | 8 +++++++ content/software/2021-09-24-dorm-dash.md | 8 +++++++ content/software/2021-09-27-dirty-fsm.md | 8 +++++++ content/software/2021-10-04-data-loss.md | 8 +++++++ content/software/2021-12-17-netbrowse.md | 8 +++++++ content/software/2022-01-23-tabset.md | 8 +++++++ content/software/2022-04-12-kobo-rs.md | 8 +++++++ content/software/2022-04-14-crashreport.md | 8 +++++++ sass/styles/fonts.scss | 2 +- templates/base.html | 10 ++++++++ templates/components/site-timeline.html | 24 ++++++++++++++++--- 27 files changed, 210 insertions(+), 10 deletions(-) create mode 100644 content/software/2021-01-30-rbn.md create mode 100644 content/software/2021-03-03-pathfollowing-demo.md create mode 100644 content/software/2021-03-28-mcq.md create mode 100644 content/software/2021-03-31-cargo-token.md create mode 100644 content/software/2021-03-31-polymesh.md create mode 100644 content/software/2021-04-03-boop.md create mode 100644 content/software/2021-04-26-deep-breath.md create mode 100644 content/software/2021-05-04-glasscast.md create mode 100644 content/software/2021-06-01-open-depth-map.md create mode 100644 content/software/2021-06-13-ittyr.md create mode 100644 content/software/2021-07-09-tsinfo.md create mode 100644 content/software/2021-07-17-serde-frontmatter.md create mode 100644 content/software/2021-08-12-spacetrace.md create mode 100644 content/software/2021-09-03-boids.md create mode 100644 content/software/2021-09-22-aprshttp.md create mode 100644 content/software/2021-09-24-dorm-dash.md create mode 100644 content/software/2021-09-27-dirty-fsm.md create mode 100644 content/software/2021-10-04-data-loss.md create mode 100644 content/software/2021-12-17-netbrowse.md create mode 100644 content/software/2022-01-23-tabset.md create mode 100644 content/software/2022-04-12-kobo-rs.md create mode 100644 content/software/2022-04-14-crashreport.md diff --git a/content/blog/2022-03-15-Java-cheatsheet.md b/content/blog/2022-03-15-Java-cheatsheet.md index ebb3656..531bbcc 100644 --- a/content/blog/2022-03-15-Java-cheatsheet.md +++ b/content/blog/2022-03-15-Java-cheatsheet.md @@ -4,7 +4,7 @@ title: "A Java development cheatsheet for my classmates" description: "PROG10082: Reference Material" date: 2022-03-15 tags: reference -draft: false +draft: true extra: excerpt: This document is written for my PROG10082 classmates as a quick reference for some Java concepts that were skipped over in the course. diff --git a/content/software/2021-01-30-rbn.md b/content/software/2021-01-30-rbn.md new file mode 100644 index 0000000..1298474 --- /dev/null +++ b/content/software/2021-01-30-rbn.md @@ -0,0 +1,8 @@ +--- +title: "The Reverse Beacon Network in your terminal" +date: 2021-01-30 +extra: + icon: las la-toolbox + excerpt: "'rbn' is a small CLI interface to the Reverse Beacon Network, displaying all global network spots in real time as a formatted feed in a terminal." + redir_to: https://github.com/ewpratten/rbn +--- diff --git a/content/software/2021-01-31-hambands.md b/content/software/2021-01-31-hambands.md index c551687..63aeca3 100644 --- a/content/software/2021-01-31-hambands.md +++ b/content/software/2021-01-31-hambands.md @@ -1,12 +1,8 @@ --- title: HamBands - Rust Library -description: A small library for checking which amateur radio band a frequency belongs to date: 2021-01-31 extra: icon: las la-toolbox excerpt: A small library for checking which amateur radio band a frequency belongs to + redir_to: https://github.com/ewpratten/hambands --- - -- [GitHub](https://github.com/ewpratten/hambands) -- [Crates.io](https://crates.io/crates/hambands) -- [Documentation](https://docs.rs/hambands) diff --git a/content/software/2021-03-03-pathfollowing-demo.md b/content/software/2021-03-03-pathfollowing-demo.md new file mode 100644 index 0000000..428001e --- /dev/null +++ b/content/software/2021-03-03-pathfollowing-demo.md @@ -0,0 +1,8 @@ +--- +title: An interactive Pure Pursuit demo +date: 2021-03-03 +extra: + icon: las la-toolbox + excerpt: An interactive demonstration of the Pure Pursuit algorithm used by Raider Robotics + redir_to: https://github.com/ewpratten/pathfollowing-demo +--- diff --git a/content/software/2021-03-28-mcq.md b/content/software/2021-03-28-mcq.md new file mode 100644 index 0000000..e374189 --- /dev/null +++ b/content/software/2021-03-28-mcq.md @@ -0,0 +1,8 @@ +--- +title: "mcquery" +date: 2021-03-28 +extra: + icon: las la-toolbox + excerpt: A small CLI tool for checking who is playing on a Minecraft server. + redir_to: https://github.com/ewpratten/mcq +--- diff --git a/content/software/2021-03-31-cargo-token.md b/content/software/2021-03-31-cargo-token.md new file mode 100644 index 0000000..cb66fef --- /dev/null +++ b/content/software/2021-03-31-cargo-token.md @@ -0,0 +1,8 @@ +--- +title: "cargo-token" +date: 2021-03-31 +extra: + icon: las la-toolbox + excerpt: A small extension for cargo that allows you to fetch your publish token from the command line + redir_to: https://github.com/ewpratten/cargo-token +--- diff --git a/content/software/2021-03-31-polymesh.md b/content/software/2021-03-31-polymesh.md new file mode 100644 index 0000000..15075e1 --- /dev/null +++ b/content/software/2021-03-31-polymesh.md @@ -0,0 +1,8 @@ +--- +title: "PolyMesh: A custom 3D file format" +date: 2021-03-31 +extra: + icon: las la-toolbox + excerpt: PolyMesh is a custom 3D object description file format I designed as an experiment. The PolyMesh file format and toolset are specifically designed for 3D rendering applications. + redir_to: https://github.com/ewpratten/polymesh +--- diff --git a/content/software/2021-04-03-boop.md b/content/software/2021-04-03-boop.md new file mode 100644 index 0000000..58c9cfe --- /dev/null +++ b/content/software/2021-04-03-boop.md @@ -0,0 +1,8 @@ +--- +title: "Boop: An experimental implementation of ping(8)" +date: 2021-04-03 +extra: + icon: las la-toolbox + excerpt: boop is a commandline tool that aims to be a super simple cross between ping and nmap. The tool can quickly probe hosts using ICMP ping packets, and report their status. + redir_to: https://github.com/ewpratten/boop +--- diff --git a/content/software/2021-04-26-deep-breath.md b/content/software/2021-04-26-deep-breath.md new file mode 100644 index 0000000..a1ea736 --- /dev/null +++ b/content/software/2021-04-26-deep-breath.md @@ -0,0 +1,8 @@ +--- +title: "Ludum Dare 48: Deep Breath" +date: 2021-04-26 +extra: + icon: las la-gamepad + excerpt: Deep Breath is an exploration game where you explore an underwater cave in hopes of finding your lost transponder. Items and upgrades can be acquired along the way to assist your search. + redir_to: https://github.com/ewpratten/ludum-dare-48 +--- diff --git a/content/software/2021-05-04-glasscast.md b/content/software/2021-05-04-glasscast.md new file mode 100644 index 0000000..cc165eb --- /dev/null +++ b/content/software/2021-05-04-glasscast.md @@ -0,0 +1,8 @@ +--- +title: "GlassCast: 2D glass rendering experiment" +date: 2021-05-04 +extra: + icon: las la-toolbox + excerpt: GlassCast is a raytracing (more like raycasting) experiment revolving around glass material with subtractive coloring. + redir_to: https://github.com/ewpratten/glasscast +--- diff --git a/content/software/2021-06-01-open-depth-map.md b/content/software/2021-06-01-open-depth-map.md new file mode 100644 index 0000000..0c86b8f --- /dev/null +++ b/content/software/2021-06-01-open-depth-map.md @@ -0,0 +1,8 @@ +--- +title: "OpenDepthMap" +date: 2021-06-01 +extra: + icon: las la-toolbox + excerpt: OpenDepthMap is an experiment in Binocular Depth Mapping, based around the ultraleap's first generation LeapMotion hand tracking sensors. + redir_to: https://github.com/ewpratten/OpenDepthMap +--- diff --git a/content/software/2021-06-13-ittyr.md b/content/software/2021-06-13-ittyr.md new file mode 100644 index 0000000..a27f7b1 --- /dev/null +++ b/content/software/2021-06-13-ittyr.md @@ -0,0 +1,8 @@ +--- +title: "Internet Teletype Reader" +date: 2021-06-13 +extra: + icon: las la-toolbox + excerpt: ittyr is a CLI Internet Teletype client that decodes and outputs ITTY messages in real time as they are being streamed through the ITTY service. + redir_to: https://github.com/ewpratten/ittyr +--- diff --git a/content/software/2021-07-09-tsinfo.md b/content/software/2021-07-09-tsinfo.md new file mode 100644 index 0000000..64dfbea --- /dev/null +++ b/content/software/2021-07-09-tsinfo.md @@ -0,0 +1,8 @@ +--- +title: "tsinfo" +date: 2021-07-09 +extra: + icon: las la-toolbox + excerpt: tsinfo is a CLI tool for providing information about a specific UNIX timestamp. + redir_to: https://github.com/ewpratten/tsinfo +--- diff --git a/content/software/2021-07-17-serde-frontmatter.md b/content/software/2021-07-17-serde-frontmatter.md new file mode 100644 index 0000000..d56953f --- /dev/null +++ b/content/software/2021-07-17-serde-frontmatter.md @@ -0,0 +1,8 @@ +--- +title: "serde-frontmatter" +date: 2021-07-17 +extra: + icon: las la-toolbox + excerpt: This is a Rust library for using the Serde serialization framework with Jekyll-style front matter. + redir_to: https://github.com/ewpratten/serde-frontmatter +--- diff --git a/content/software/2021-08-12-spacetrace.md b/content/software/2021-08-12-spacetrace.md new file mode 100644 index 0000000..862d32d --- /dev/null +++ b/content/software/2021-08-12-spacetrace.md @@ -0,0 +1,8 @@ +--- +title: "SpaceTrace: 3D path planning" +date: 2021-08-12 +extra: + icon: las la-toolbox + excerpt: SpaceTrace is the 3rd revision of my 2D/3D path planning algorithm. + redir_to: https://github.com/ewpratten/spacetrace +--- diff --git a/content/software/2021-09-03-boids.md b/content/software/2021-09-03-boids.md new file mode 100644 index 0000000..3b8123a --- /dev/null +++ b/content/software/2021-09-03-boids.md @@ -0,0 +1,8 @@ +--- +title: "A fast boids library for Rust" +date: 2021-09-03 +extra: + icon: las la-toolbox + excerpt: The 'boids' crate is a reasonably fast implementation of the Boids algorithm in Rust + redir_to: https://github.com/ewpratten/boids-rs +--- diff --git a/content/software/2021-09-22-aprshttp.md b/content/software/2021-09-22-aprshttp.md new file mode 100644 index 0000000..03410ab --- /dev/null +++ b/content/software/2021-09-22-aprshttp.md @@ -0,0 +1,8 @@ +--- +title: "aprshttp" +date: 2021-09-22 +extra: + icon: las la-toolbox + excerpt: One-way APRS position reporting using APRS-IS + redir_to: https://github.com/ewpratten/aprshttp +--- diff --git a/content/software/2021-09-24-dorm-dash.md b/content/software/2021-09-24-dorm-dash.md new file mode 100644 index 0000000..188f9d1 --- /dev/null +++ b/content/software/2021-09-24-dorm-dash.md @@ -0,0 +1,8 @@ +--- +title: "Dorm Dash" +date: 2021-09-24 +extra: + icon: las la-toolbox + excerpt: A real-time dashboard for my dorm room's wall-mounted TV + redir_to: https://github.com/ewpratten/dorm-dash +--- diff --git a/content/software/2021-09-27-dirty-fsm.md b/content/software/2021-09-27-dirty-fsm.md new file mode 100644 index 0000000..506102f --- /dev/null +++ b/content/software/2021-09-27-dirty-fsm.md @@ -0,0 +1,8 @@ +--- +title: "Dirty FSM" +date: 2021-09-27 +extra: + icon: las la-toolbox + excerpt: "A \"Quick and Dirty\" implementation of a finite state machine, derived from another of my libraries: LibKontrol" + redir_to: https://github.com/ewpratten/dirty-fsm +--- diff --git a/content/software/2021-10-04-data-loss.md b/content/software/2021-10-04-data-loss.md new file mode 100644 index 0000000..3257f15 --- /dev/null +++ b/content/software/2021-10-04-data-loss.md @@ -0,0 +1,8 @@ +--- +title: "Ludum Dare 49: [data::loss]" +date: 2021-10-04 +extra: + icon: las la-toolbox + excerpt: "[data::loss] is a fast-paced side-scroller platforming game where you navigate a world full of graphical inconsistencies that have a habit of causing physical consequences." + redir_to: https://github.com/ewpratten/ludum-dare-49 +--- diff --git a/content/software/2021-12-17-netbrowse.md b/content/software/2021-12-17-netbrowse.md new file mode 100644 index 0000000..4ca9c53 --- /dev/null +++ b/content/software/2021-12-17-netbrowse.md @@ -0,0 +1,8 @@ +--- +title: "NetBrowse: an avahi-browse GUI" +date: 2021-12-17 +extra: + icon: las la-toolbox + excerpt: "This tool is used to quickly inspect a network for hosts that publicly expose their services." + redir_to: https://github.com/ewpratten/netbrowse +--- diff --git a/content/software/2022-01-23-tabset.md b/content/software/2022-01-23-tabset.md new file mode 100644 index 0000000..54dc932 --- /dev/null +++ b/content/software/2022-01-23-tabset.md @@ -0,0 +1,8 @@ +--- +title: "TABSET" +date: 2022-01-23 +extra: + icon: las la-toolbox + excerpt: "A Linux command-line tool for configuring your drawing tablets." + redir_to: https://github.com/ewpratten/tabset +--- diff --git a/content/software/2022-04-12-kobo-rs.md b/content/software/2022-04-12-kobo-rs.md new file mode 100644 index 0000000..55c43c9 --- /dev/null +++ b/content/software/2022-04-12-kobo-rs.md @@ -0,0 +1,8 @@ +--- +title: "Kobo e-reader interface library" +date: 2022-04-12 +extra: + icon: las la-toolbox + excerpt: "A a minimal Rust library for interacting with modified Kobo e-readers. This is designed for use in applications running on the Kobo, not over the network." + redir_to: https://github.com/ewpratten/kobo-rs +--- diff --git a/content/software/2022-04-14-crashreport.md b/content/software/2022-04-14-crashreport.md new file mode 100644 index 0000000..4ac6a6d --- /dev/null +++ b/content/software/2022-04-14-crashreport.md @@ -0,0 +1,8 @@ +--- +title: "Crash reporting for Rust programs" +date: 2022-04-14 +extra: + icon: las la-toolbox + excerpt: "A set & forget crate that appends a button to your application's panic messages allowing users to quickly report basic diagnostic information back to you." + redir_to: https://github.com/ewpratten/crashreport-rs +--- diff --git a/sass/styles/fonts.scss b/sass/styles/fonts.scss index e0a6224..d6e8766 100644 --- a/sass/styles/fonts.scss +++ b/sass/styles/fonts.scss @@ -22,7 +22,7 @@ @font-face { font-family: 'Rubik'; - font-style: italic; + // font-style: italic; // font-weight: 400; font-display: swap; src: url("/dist/fonts/rubik/Rubik-VariableFont_wght.ttf") format("truetype"); diff --git a/templates/base.html b/templates/base.html index e1c546c..5307269 100644 --- a/templates/base.html +++ b/templates/base.html @@ -57,9 +57,19 @@ {# Actual content #} + {% if redirect_target %} +
+

Redirection Notice

+

+ You are being redirected to another page.
+ Click here if this does not happen automatically. +

+
+ {% else %}
{% block content %}{% endblock content %}
+ {% endif %} {# Footer #} {% include "components/footer.html" %} diff --git a/templates/components/site-timeline.html b/templates/components/site-timeline.html index 10a8fde..cbc9a8b 100644 --- a/templates/components/site-timeline.html +++ b/templates/components/site-timeline.html @@ -37,6 +37,15 @@ {% endfor %} \ No newline at end of file