For file uploads I just use external storage, if am managing things on the backend I would just keep small files on Ram then upload them later in the background.
The way I recommend the most is your backend handling auth and the client can upload directly to the file server once authenticated
May 24, 2025 at 10:38 AM
For file uploads I just use external storage, if am managing things on the backend I would just keep small files on Ram then upload them later in the background.
The way I recommend the most is your backend handling auth and the client can upload directly to the file server once authenticated
Just realized shortcuts clashes are a real pain, we try to support as many shortcuts as possible for document formatting, we try to avoid all major browser shortcuts but if you got other custom shortcuts that may clash, you'll have to just fix them on your own
May 21, 2025 at 9:42 AM
Just realized shortcuts clashes are a real pain, we try to support as many shortcuts as possible for document formatting, we try to avoid all major browser shortcuts but if you got other custom shortcuts that may clash, you'll have to just fix them on your own
The best way is to tell AI what exact specific thing to generate, but going full agentic and producing code, and you're just directly sending that code to prod is scary
May 20, 2025 at 10:41 AM
The best way is to tell AI what exact specific thing to generate, but going full agentic and producing code, and you're just directly sending that code to prod is scary
The big win is whenever data comes from an API you can apply a validation schema to it like Zod before dumping the data to the tanstack query cache, so whenever a backend changes and return some weird data, your app doesn't end up in some weird state during runtime.
May 17, 2025 at 7:02 AM
The big win is whenever data comes from an API you can apply a validation schema to it like Zod before dumping the data to the tanstack query cache, so whenever a backend changes and return some weird data, your app doesn't end up in some weird state during runtime.