Ask HN: What underrated open source project deserves more recognition?
1–10 of 147 posts
Re: Ask HN: What underrated open source project deserves more recognition?
#2Re: Ask HN: What underrated open source project deserves more recognition?
#3Re: Ask HN: What underrated open source project deserves more recognition?
#4 type IBackend interface {
Ls(path string) ([]os.FileInfo, error)
Cat(path string) (io.ReadCloser, error)
Mkdir(path string) error
Rm(path string) error
Mv(from string, to string) error
Save(path string, file io.Reader) error
Touch(path string) error
}
and once I had the UI working nice for FTP, I made it work for every possible file transfer protocol: S3, SFTP, NFS, SMB, WebDAV, Dropbox, Google Drive, .....Re: Ask HN: What underrated open source project deserves more recognition?
#5Postgraphile. Postgres + graphql. It really solves all the negative aspects of graphql. Also, incredibly performant. Their v5 release is also a pretty interesting piece of tech. https://postgraphile.org/
Re: Ask HN: What underrated open source project deserves more recognition?
#6File Explorer: https://github.com/spacedriveapp/spacedrive
Rust/GraphQL Server: https://github.com/exograph/exograph
Dataflow Engine: https://github.com/hydro-project/hydroflow
CRDT Generator: https://github.com/hydro-project/katara
Cloud File Transfer: https://github.com/skyplane-project/skyplane
Re: Ask HN: What underrated open source project deserves more recognition?
#7Re: Ask HN: What underrated open source project deserves more recognition?
#8Re: Ask HN: What underrated open source project deserves more recognition?
#9Postgraphile. Postgres + graphql. It really solves all the negative aspects of graphql. Also, incredibly performant. Their v5 release is also a pretty interesting piece of tech. https://postgraphile.org/
Interesting, This project looks very versatile, Can experiment with quick a backend API on Postgres.
I think Netflix is a big user / sponsor of the project.