this post was submitted on 27 Oct 2023
22 points (100.0% liked)

Rust

5651 readers
2 users here now

Welcome to the Rust community! This is a place to discuss about the Rust programming language.

Wormhole

[email protected]

Credits

  • The icon is a modified version of the official rust logo (changing the colors to a gradient and black background)

founded 1 year ago
MODERATORS
 

I'm working on a parsing library for mil-std-1553 messages. It's a fun, minimal project that doesn't currently exist as far as I can tell.

you are viewing a single comment's thread
view the rest of the comments
[–] [email protected] 3 points 9 months ago

I'm writing a karaoke software for hosting events with friends.

Most available solutions are really ugly or "made for programmers" and this bring unnecessary complexity with them. Non tech savvy people might find it hard or unintuitive to use those.

The current stack uses Rust for the core library that contains all the logic needed to manage a database, session, song queueing and song playback.

The lubrary will then be embedded into a host application. Either as a headless server for running on a Pi or as part of a desktop application, also spawning a local server.

Players then scan a qr code displayed on the server's output device (TV or laptop) and can connect to the running session.

The apps are used for song searching, queueing, playback controls and more.

I'm currently working on the Rust library. And I have some UI/UX prototypes for the mobile phone apps.

I'm still trying to figure out how to provide audio and video to the output device via Rust...