daubsi
daubsi
Same issue here. Was stepping into the code and trying to understand what's going on. It almost appears to me as if the current version is not 100% compatible with...
https://stackoverflow.com/questions/70418388/how-to-convert-geometry-facevertexuvs-in-three-js-current-version geometry.faceVertexUvs is depreciated.
"Fixed" the above code with: ``` //let uvs = geometry.faceVertexUvs[0]; let uvs = geometry.getAttribute("uv") if (projection !== '180_MONO') { for (let i = 0; i < uvs.length; i+=2) { //for...
Hi, I have the same issue. No logfile is ever created. Log location is /tmp, which should be writeable to everyone. I'm on Ubuntu 14.04 here.
It seems to work when I do it like this: ``` #!/bin/bash cd ttybus echo "Creating bus" sudo ./tty_bus -d -s /tmp/ttyS0mux echo "Attaching real device ttyAMA0" sudo ./tty_attach -d...
Would be great if there's an official fix - shouldn't be hard to do? Maybe I'll have a look at it when I got a couple of spare hours
Same here... it works for quite some time but then neither of the two clients can any longer properly read from the tty :-( It's a pity, would be such...
> I have no answer. I have switched to using a few 'socat' commands to perform the serial sharing in my application. Could you please describe how you used socat...
I am experiencing the same problem within a docker container and -b does not work for me. ``` root@4bc0ffa174ca:/# /hide.me -4 -s 192.168.0.0/16,172.17.0.0/8 -b /etc/resolv.conf connect streaming-uk Link: Generated a...
Thank you, I will try that way. What I am wondering in the first place is why the build is attempted in the first place as the package had already...