Vadims Daleckis
Vadims Daleckis
## :rotating_light: The automated release from the `master` branch failed. :rotating_light: I recommend you give this issue a high priority, so other packages depending on you could benefit from your...
## :rotating_light: The automated release from the `master` branch failed. :rotating_light: I recommend you give this issue a high priority, so other packages depending on you could benefit from your...
Hey, You can use it as a general purpose assembler. I personally use it to create thread pool to do async file system operations for my Node.js clone project: https://github.com/streamich/bamboo/blob/master/packages/asyscall/src/threadpool/asm.ts...
@ctzurcanu I have started work on Ethereum plugin: https://github.com/streamich/ass-js/pull/10
Maybe we should not detect if language per note, but per user. If user's browser settings suggest he is using RTL language then the whole app should rearrange itself. ```js...
Also found this on Stackoverflow: ```js function isRTL(s){ var ltrChars = 'A-Za-z\u00C0-\u00D6\u00D8-\u00F6\u00F8-\u02B8\u0300-\u0590\u0800-\u1FFF'+'\u2C00-\uFB1C\uFDFE-\uFE6F\uFEFD-\uFFFF', rtlChars = '\u0591-\u07FF\uFB1D-\uFDFD\uFE70-\uFEFC', rtlDirCheck = new RegExp('^[^'+ltrChars+']*['+rtlChars+']'); return rtlDirCheck.test(s); }; ```
+1 Would love absurd.js much more if it just did CSS pre-processing. Other features should be separate projects.
My understanding is that in the `performance` branch of Automerge they mostly implement the new binary encoding, hence maybe a better name for that branch would be `encoding`. With the...
Maybe we should do that in the future. But for now we have [`createFsFromVolume` method](https://github.com/streamich/memfs/blob/master/docs/reference.md#createfsfromvolumevol) to achieve this behavior.
More missing methods: https://github.com/streamich/memfs/issues/663