add more projects

This commit is contained in:
Joel Wetzell
2025-12-19 14:13:11 -06:00
parent fc12e5fad9
commit 9840b3ae06
3 changed files with 37 additions and 0 deletions
+16
View File
@@ -0,0 +1,16 @@
---
title: "PosiStageNet Go Lib"
date: 2024-12-18T12:00:00-06:00
draft: false
---
## What is it?
A GoLang implementation of the [PosiStageNet protocol](https://github.com/vyv/psn-cpp/blob/master/doc/PosiStageNetprotocol_v2.03_2019_09_09.pdf) that supports both encoding/decoding. This implementation is transport agnostic and has 0 dependencies.
Some of the technologies are listed below.
* [GoLang](https://golang.org/)
## Where can I get it?
* [Source](https://github.com/jwetzell/psn-go)
* [pkg.dev](https://pkg.go.dev/github.com/jwetzell/psn-go)
+21
View File
@@ -0,0 +1,21 @@
---
title: "showbridge (Go Edition)"
date: 2025-10-15T12:00:00-06:00
draft: false
---
## What is it?
[Showbridge](https://github.com/jwetzell/showbridge-go) is a protocol "router" of sorts that allows the user to spin up "modules" and route messages between them with optional "processors" inline. The layout of the modules/processor registration is inspired by [caddy's](https://github.com/caddyserver/caddy/tree/master/modules) module system.
This is a re-imagination of a [previous project by the same name](https://github.com/jwetzell/showbridge).
Some of the technologies are listed below.
* [cli](https://github.com/jwetzell/showbridge-go/tree/main/cmd/showbridge)
* [urfave/cli](https://github.com/urfave/cli) (CLI)
## Where can I get it?
* [Binaries](https://github.com/jwetzell/showbridge-go/releases/latest)
* [Source](https://github.com/jwetzell/showbridge-go)