mbrt / blog

my blog
https://blog.mbrt.dev
2 stars 0 forks source link

Jrfs critique request #2

Open waynesbrain opened 1 week ago

waynesbrain commented 1 week ago

Hello. I saw your post about GlassDB on Hacker News today. I think you are probably a much more educated programmer than I am, so I was wondering if you would give a critique or any feedback of my work at https://github.com/jrfso/jrfs

It’s a database-like file access system. I also could not find anything nearly similar to what I built there and it’s tangentially similar to what you have done.

If not, no biggie! Thanks for your article and sorry if this issue is the wrong way to contact you.

mbrt commented 6 days ago

Hi! I read through the README, and it's not clear to me what is the main purpose. I see many features, but they seem all slightly unrelated to each other. This is just from a superficial read, but I would recommend to:

waynesbrain commented 4 days ago

Thanks so much for you response! I appreciate your time and I'll try to keep my responses direct and to the point.

If I used Electron I would have some privileged JavaScript code running on the Node side of things and my unprivileged frontend JavaScript code would send the Node side some messages to do privileged stuff. That's the same setup that I'm offering with JrFS, but without Electron (and only for filesystem related stuff).

mbrt commented 14 hours ago

Gotcha. I can see how this can be useful, however it doesn't seem to relate to what I'm doing with glassdb? It's a key value store on top of object storage, there's no frontend or local file system involved, so it is quite a different goal.