milahu
milahu
.... or keep the ogg container and embed the cover art image as base64 comment like ``` METADATA_BLOCK_PICTURE=base64_string ``` https://superuser.com/questions/169151/embed-album-art-in-ogg-through-command-line-in-linux
> I’ve finished the work of implementation thanks for implementing my suggestion ; ) and thanks for finding a good library for the job (edit: sorry for patronizing ...) ```py...
use case: allow tight coupling between parser and evaluator = avoid double parsing ``` Parser --> Tree --> Evaluator | | v v Syntax Intellisense Highlighting ``` challenge? send tree-deltas...
> I tried to use artillery before, but I found it a bit complex. Your approach seems simpler and easier to use. for more simple/generic solutions see [performance regression](https://github.com/search?l=JavaScript&q=performance+regression&type=Repositories) testing...
@orta can you please close the many duplicate issues? https://github.com/ds300/patch-package/issues?q=in%3Atitle+parse+error+is%3Aopen
https://github.com/milahu/patch-package/pull/21#issuecomment-1288918158
> React => Mitosis see also https://github.com/milahu/awesome-component-converters
that escalated quickly ; ) example scenario: lets say you and me work on a document. i'm a maintainer, you're a contributor. the document is hosted in a git repo,...
for the record: im moving from etherpad to [tiptap](https://tiptap.dev/guide/collaborative-editing) etherpad: based on ace editor, jquery tiptap: based on prosemirror, yjs -> more modern, flexible, modular
> ```js > if(!i) return; > ``` should be ```js if (i) return; // or //if (i > 0) return; ``` to **skip most** draw calls