this post was submitted on 02 May 2026
1 points (100.0% liked)

Rust

7991 readers
4 users here now

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

Wormhole

!performance@programming.dev

Credits

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

founded 2 years ago
MODERATORS
 

Hi everyone I was thinking of creating a backend module that has functione for a note taking app (search, sort, etc). So anyone can implement a ui on top of it.

I have some basic understanding of rust (made a just-working chip-8 emulator). But I've never used SQL or other database.

Is this plausible? Is there a similar project that I can use as reference? What are the mistakes I should avoid?

top 3 comments
sorted by: hot top controversial new old
[–] terabyterex@lemmy.world 0 points 1 week ago* (last edited 1 week ago)

are you asking if someone would use it? probably not. sounds like a lot of work when someone can just use obsidian with plugins to get the ui they wanted

[–] kubica@fedia.io 0 points 1 week ago (1 children)

It is difficult to imagine it without an approximate idea of the way of interaction with it.

A common exercise in programming is creating a task list... Which by the way I just searched out of curiosity and I found this as first result, and doesn't look so bad taking a first look https://github.com/dezoito/rust-todo-list

[–] remustan37@sh.itjust.works 0 points 1 week ago

Thanks for that