Danilo R. Gonçalves

Results 9 comments of Danilo R. Gonçalves

I know this is an old question, but since I have just tested this, might as well leave a comment for future reference. In Erlang, atoms that start with anything...

@sheharyarn > Can you explain your use-case a bit so I can understand why would you need to do this at runtime? Sure, my use case actually consists in reducing...

@sheharyarn > But the problem I see with this is that it can introduce other regressions and potentially break the whole worker queue (if not the entire application) if used...

> If you are embedding wasmtime (as a crate), you can achieve this by writing a pair of `WasiDir`/`WasiFile` impls that wraps an existing `dyn WasiDir`/ `dyn WasiFile` in one...

I assume you are using the jQuery plugin. Take a look at how the jQuery plugin is implemented: CoffeeScript: https://github.com/danxexe/sms-counter/blob/master/sms_counter.js.coffee#L56-L65 JavaScript: https://github.com/danxexe/sms-counter/blob/master/sms_counter.js#L93-L109 If I understand it correctly, implementing what you...

I'm not sure how to properly handle this. It's not like I'm actively maintaining this project anyway, so I see no issue with the fork. However, it is a little...

I'm not sure what the issue is. `\n` and `\r` are part of the [GSM 7-bit encoding](https://en.wikipedia.org/wiki/GSM_03.38) and should only use byte each for strings detected as `GSM_7BIT`. If you...

OK, I see what the problem is. The lib is correctly counting both `\n` and `\r` characters, you can try it yourself by opening your browser's console in a page...