stronglink icon indicating copy to clipboard operation
stronglink copied to clipboard

A searchable, syncable, content-addressable notetaking system

Results 92 stronglink issues
Sort by recently updated
recently updated
newest added

Right now we cache all of our previews, like converted Markdown and plain text. We also cache the "generic" preview for files of an otherwise unrecognized type. This preview template...

Currently we don't impose any timeout on slow queries. This can easily lead to saturating the thread pool and causing a denial of service. This is a little bit more...

security

We should do what we can to support reproducible builds. However I think it's more practical to wait for better tooling than to start dumping compilers and other tools into...

security

It'd be nice to have a web analytics interface, maybe like what was proposed for Ghost. Although it's a low priority for now, and you can use an external analytics...

A blog platform should provide RSS feeds. It wouldn't be that hard and we could support dynamic feeds based on queries.

I disabled TLS by default to make it easier for people to get started with StrongLink (see #89). However, I think the real answer is to enable it and make...

security

In any case of a function that expects a sensitive buffer (password or key), we should probably accept a pointer to a mutable buffer and zero it before the function...

security

As seen here: https://bentrask.com/?q=hash://sha256/304bfda69f145fd722f7a836d1a86dbe77731e21ed699bf0033c632a7e3e468c This might also be an old problem that no longer occurs. Investigation needed.

Files and meta-files should be synced separately. Instead of filtering meta-files, we should send all of them. The receiver should store them and download the ones it's interested in, either...

We use libco for fibers which allocate their own stacks. That means we basically don't use the default stack for the main thread and the worker threads we spawn. I...