Sasha Sorokin

Results 128 comments of Sasha Sorokin

@ThibG wdym “over the preview widget”? > they are discarded server-side Ah, snap. Server said no fun allowed 😩

[@[email protected]](https://mastodon.xyz/@lightone) seem to have lost access to her GitHub account, but wanted to comment on this issue too: > @ThibG [\[that\]](https://github.com/tootsuite/mastodon/issues/14336#issuecomment-659398635) isn't quite right. When I send a post with...

I believe the solution is to upgrade TypeScript package used by `@formatjs/cli-lib` and then add `module: ts.ModuleKind.Preserve` [to `compilerOptions`](https://github.com/formatjs/formatjs/blob/f3bb540bea4614bbd22d4e80521d7a63101684e0/packages/cli-lib/src/parse_script.ts#L15). Preserve will allow to be import-agnostic, supporting both `require` and `import`....

@longlho oh, seems that it's fixed by some update, then. Though, doesn't seem that the relevant code changed at all, perhaps it's just a transitive dependency update that fixed it...

Redrafting to add support for persistent storage (KV) for workers and resolve conflicts.

It seems that this approach is not compatible with short-living workers or serverless functions: - You can, of course, use [Workers KV](https://developers.cloudflare.com/workers/learning/how-kv-works/), but reads on it will probably be quite...

Reopening as according to Geo KV won't cost much. I have implemented KV support for Cloudflare and Vercel, below are steps to set it up properly. If cache is not...

Saw merge conflicts, tried to resolve them, but figured why not take the opportunity and decided to re-create this almost from scratch to make it much cleaner and maintainable 👍🏻...

Addressed the concerns both of you had, @falseresync and @triphora. Reapplied simple strategy and just removed all of the build-time caching as you asked. There's no local caching or anything...

Either use regular extensions with boundaries or rearrange the replacements order so that `$INST_JAVA_ARGS` gets replaced before `$INST_JAVA`. You should however check how this replacement is done in other launchers...