Live data from Hacker News

Show HN: Textdb.dev – simple data sharing for fun projects

textdb.dev

21–30 of 79 posts

Re: Show HN: Textdb.dev – simple data sharing for fun projects

#21
post #15
post #10

Very cool. Are you using just cowboy as a server or do you have nginx/Apache in front?

nginx is in front, but it's just doing a proxy and setting some headers, so effectively cowboy's serving everything. So far it's doing a great job too, CPU is at 2%, 1Gb free ram of the 4Gb available, and a pretty constant 1Mbps outward, on the 20$/m digital ocean droplet. I may have jinxed it by saying this though.

This is fancy...

Re: Show HN: Textdb.dev – simple data sharing for fun projects

#23
This seems to be in a similar spirit to https://patchbay.pub/.

I love these small services, but I still don't have an idea how they can be scaled up: If you want to use them for anything serious you probably have to prevent abuse and comply to all kinds of regulations.

Re: Show HN: Textdb.dev – simple data sharing for fun projects

#24
It would be cool if it was possible to read the data not just by the ID, but also by the hash of the ID.

That would let us serve stuff like version information and links to the latest version, without the fear that somebody is going to reverse engineer our app and replace the data with something malicious.

We, as the app author, would have the full key, so we could read and write, whereas users would have nothing but the hash.

Re: Show HN: Textdb.dev – simple data sharing for fun projects

#25
post #5

Earlier quoted context omitted.

Sure, I just made it public over here: https://github.com/bontaq/textdb Yeah I'm not sure why it's doing that, v annoying though

probably you have a layout bug. it's wrapping a layout within a layout.

Yep that was it, ty, it should be fixed now

Re: Show HN: Textdb.dev – simple data sharing for fun projects

#27

It would be cool if it was possible to read the data not just by the ID, but also by the hash of the ID. That would let us serve stuff like version information and links to the latest version, without the fear that somebody is going to reverse engineer our app and replace the data with something malicious. We, as the app author, would have the full key, so we could read and write, whereas users would have nothing but…

That's a cool idea, I'd definitely like to add the ability to create a little store with more safety, and that totally works with the goal of simplicity. I'll give it a shot.

Re: Show HN: Textdb.dev – simple data sharing for fun projects

#30
post #27

It would be cool if it was possible to read the data not just by the ID, but also by the hash of the ID. That would let us serve stuff like version information and links to the latest version, without the fear that somebody is going to reverse engineer our app and replace the data with something malicious. We, as the app author, would have the full key, so we could read and write, whereas users would have nothing but…

That's a cool idea, I'd definitely like to add the ability to create a little store with more safety, and that totally works with the goal of simplicity. I'll give it a shot.

It's a cool idea, but the old anti-pattern about security through obscurity applies.
Post reply on HN