Jakub T. Jankiewicz

Results 1429 comments of Jakub T. Jankiewicz

I can think about it, it should not be that hard. I have a package ascii-canvas that allo w to place elements on different xy position. But first I need...

Just found this on [CodePen](https://codepen.io/Boowoa/pen/abxxXqb?editors=1010): ``` igzo@solair:/$ fetch KKKKKKKKKKKKKKKKKKKKKKKKKKKKKKKKKKKKKK igzo@solair KKKKKKKKKKKKKKKKKKKKKKKKKKKKKKKKKKKKKK --------- KKKKKKKKKKKKKKKKKKKKKKKKKKKKKKKKKKKKKK Model: Brave Browser KKKKKKKKKKKKKKKKKKKKKKKKKKKKKKKKKKKKKK OS: I use arch btw KKKKKKKKKKKKKKKKKKKKKKKKKKKKKKKKKKKKKK Kernel: 5.12 KKKKKKKKKKKKKKK0kkkO0KKKKKOkxxk0KKKKKK Packages: idk??? KKKKKKKKKKKKKKKo'..,xKK0x:,....,cx0KKK Shell:...

You can try to implement this if you want. But note that the jQuery Terminal library may not work 100% correctly on mobile.

According to Server-Sent Events spec the name of the event is `event:` not `name:`. See this tutorial https://javascript.info/server-sent-events#event-types So you need: ```javascript stream.send({ event: 'eventName1', data: '' }); ```

Thanks for the report, here is repro https://codepen.io/jcubic/pen/wvbmpgX This is another problem with `newline: false` that was integrated with the library by a contributor. Since it was added, there were...

You can fix this with a hack: ```javascript for(let i = 0; i < 100; i+=1) { term.echo('qwerty', { newline: false }); term.update(-1, ...term.get_output(true).pop()); } ``` This will force having...

It seems this don't solve the problem.

It's a challenging bug, it may take a while to fix. I'm not sure how to handle one edge case.

The bug was fixed and released with version 2.42.1.

Thanks for the report, it seems that I forget the aim to use ES5 for the codebase.