Eirik Brandtzæg
Eirik Brandtzæg
The reason this doesn't work for specifically aardwolf is because they send `\n\r`, and not `\r\n`, while the library expect the other way around: https://github.com/cadpnq/telnetlib/blob/main/src/TelnetSocket/TelnetReader.js#L31-L32 Suggested fix: Support both `\r\n`...
I want something similar, I want to detect when echo is disabled, is this possible? I need to look for IAC + WILL + 1. I noticed `client.options.keys` will contain...
I think I found a solution, something like this: ```js const { ECHO } = telnetlib.options; const c = telnetlib.createConnection( { host: "aardwolf.org", port: 23, remoteOptions: [ECHO], }, () =>...
Seems it does work in Gradle and even Kotlin, all it requires is a Java run configuration. What I did in my Kotlin+Gradle project was to create a small Java...
Update: Replacing **light** with **dark** works. Not sure how to change theme live yet.
Thank you. Had the exact same issue, your solution worked perfectly.
I'm not very well traversed in the land of Yocto, but the toolchain files at least seem to contain pieces such as; * libc: musl, glibc. Not sure if this...
Since I have a docker image for the sole purpose of cross compiling I decided to test out some hacks based on my findings from my initial test. Note that...
Ah didn't know I've got conflicts. Thanks for the heads up @SamC-Apadmi I'll fix that right away. FWIW we have been running my fork now since I made it. It...