top | item 32212494

(no title)

tkindy | 3 years ago

I’m wondering what sorts of use-cases people would use a personal key-value store for. Maybe it’s just a useful foundation for building other tools on top of, like a password manager.

discuss

order

maxmunzel|3 years ago

The primary use case is for shuffling around files or clipboards between different computers. I also regularly use the url-sharing capability.

Prior, I had to deal with ephemeral http servers, which I didn't like from an ergonomic perspective.

Ergonomically, I find redis nice. The problem is, that it is in-memory and that encryption is cumbersome. Also, kvass is able to be used offline, as the kv-store is implemented as a CRDT.

cyberge99|3 years ago

I use a KV, Hashi vault, so my shell scripts get api keys, secrets, etc and they’re not stored plaintext or in SCM.

traviscj|3 years ago

I use a similar setup to store code snippets (certain Java annotations for integration/unit tests, various things like that), vehicle license plate/vins, internal (but nonsensitive) ids for test accounts, tons of things like that.

Honestly a password manager would probably be technically better—or a bunch of flat files lol—but there was a certain charm to having it displayed / function exactly as I like it, and lightning quick with nothing I didn’t need.

IDE would be another natural place for a lot of my usages, but I kept finding I needed to leave it in a pull request review or slack conversation or similar, not necessarily programming myself.

resoluteteeth|3 years ago

I use skate to store secrets used by some personal programs. I have scripts that pull out the secrets and set them as environment variables that are used by the programs. This way I don't have them sitting around in a configuration file in the source directory and can't accidentally commit them to git but they're easy to sync between computers.

tjpnz|3 years ago

I already use my password manager for the problem this tool is trying to solve.

apavlo|3 years ago

But it's just a wrapper around SQLite. Skip the middleman and just use SQLite.

pdpi|3 years ago

Or don't skip the middleman and get a simple k/v interface instead of having to deal with a whole sqlite database.

capableweb|3 years ago

It's clearly not "just a wrapper around SQLite", read through the README and it'll be evident why.

mosselman|3 years ago

But you can’t access Sqlite over the web.