how about some multiline docstrings?
October 4, 2025 at 1:41 AM
how about some multiline docstrings?
source code here if you want to poke around github.com/nDimensional.... i have a separate jetstream consumer running though, not using the cron approach
September 30, 2025 at 4:06 PM
source code here if you want to poke around github.com/nDimensional.... i have a separate jetstream consumer running though, not using the cron approach
im working on a blog post about the architecture im using with @redwoodjs.com for snowo.st ... still early in beta but very futuristic. render RSC from workers that fetch data directly from object storage, super simple oauth, programmatic access to the cloudflare cache, ...
snowo.st
September 30, 2025 at 4:05 PM
im working on a blog post about the architecture im using with @redwoodjs.com for snowo.st ... still early in beta but very futuristic. render RSC from workers that fetch data directly from object storage, super simple oauth, programmatic access to the cloudflare cache, ...
afaik the only way to do this entirely on cloudflare is to use a cron job to process jetstream events in batches. but even if you have to run a single tiny jetstream consumer to ingest data into R2 or D1, cloudflare workers are still a great fit for hosting atproto apps
September 30, 2025 at 4:02 PM
afaik the only way to do this entirely on cloudflare is to use a cron job to process jetstream events in batches. but even if you have to run a single tiny jetstream consumer to ingest data into R2 or D1, cloudflare workers are still a great fit for hosting atproto apps
I think all the sdk libraries even let you provide your own fetch in an options object, but for some reason that I dont remember it was insufficient to get it all working... I'll try to see if I can dig up what that was
September 29, 2025 at 1:34 AM
I think all the sdk libraries even let you provide your own fetch in an options object, but for some reason that I dont remember it was insufficient to get it all working... I'll try to see if I can dig up what that was
at the very least, the DidCacheKV / HandleCacheKV / StateStoreKV / SessionStoreKV classes are extremely useful on their own, so a dedicated cloudflare workers oauth package makes sense just for them.
September 29, 2025 at 1:31 AM
at the very least, the DidCacheKV / HandleCacheKV / StateStoreKV / SessionStoreKV classes are extremely useful on their own, so a dedicated cloudflare workers oauth package makes sense just for them.
just opened a PR to add this to sdk.blue. but it's not really an ideal solution and I don't know what would be
but it does feel like a bit of a hack, and not realistic to continually cherry pick new commits in from upstream. I really don't know what the ideal outcome here is.
September 29, 2025 at 1:29 AM
just opened a PR to add this to sdk.blue. but it's not really an ideal solution and I don't know what would be
but it does feel like a bit of a hack, and not realistic to continually cherry pick new commits in from upstream. I really don't know what the ideal outcome here is.
September 29, 2025 at 1:28 AM
but it does feel like a bit of a hack, and not realistic to continually cherry pick new commits in from upstream. I really don't know what the ideal outcome here is.
I considered this, but despite being relatively minor changes it doesn't really seem right. It wouldn't make sense to change oauth-client-node since Cloudflare workers are simply not NodeJS, they have their own nonstandard constraints.
September 29, 2025 at 1:27 AM
I considered this, but despite being relatively minor changes it doesn't really seem right. It wouldn't make sense to change oauth-client-node since Cloudflare workers are simply not NodeJS, they have their own nonstandard constraints.
September 1, 2025 at 8:49 PM