Cody Casterline
Cody Casterline
It's a really bad initial user experience. blank page with a big load more window? yech.
When you load feoblog and there are no items on the homepage, show a blurb welcoming users to feoblog. Direct them to: * Create an ID * Log In *...
probably because user doesn't have a profile yet.
In short, there are two types of users: * A "server user" -- someone added to the server from the CLI with `./feoblog add` * A "known user" -- someone...
When a user uploads an `Item`, its bytes are currently stored directly into the `item` table for easy access. But, that means that if multiple users sign and upload the...
Feoblog already supports the [Open Graph Protocol]. Is it worth supporting [oEmbed] too? [oEmbed]: https://oembed.com/ [Open Graph Protocol]: https://ogp.me/
Pipeliner was created before Rust's `async`/`.await` functionality [became available in stable][1]. It uses OS threads for both CPU-bound and I/O-bound computation. But async code is much more efficient for I/O-bound...
## Expected Behavior When I have a model like this: ```rust // pseudocode: #[Object] impl Query { async fn foo(&self) -> Result { Ok("Hello from foo()".into()) } async fn bar(&self)...