davidawesome02
davidawesome02
I found [https://github.com/FEX-Emu/FEX](url) whitch is great btw, It runs like yours a x86 program in aarm processors, I have talked to someone about how it works, and with that one,...
I know this is dumb, because I belive that js blocks doing direct network things like quarry dose, but can I run it in py-script? [https://pyscript.net/](url) my error in testing:...
I don't know if this is incorrect, (this is my first time using github) It seams that as in 1.18 the way of unpacking chunks has changed vs what is...
``` def packet_downstream_chunk_data(self,buff): x,y = struct.unpack(">ll",buff.read(8)) height_map = buff.unpack_nbt() size = buff.unpack_varint() chunk_data = buff.read(size) block_ents = buff.unpack_varint() for i in range(block_ents): xz_ent = buff.read(1) y_ent = struct.unpack(">h",buff.read(2))[0] type_ent =...
Update for anyone looking at my previous two issues, which are still issues, You can use 6a4d89bfeb6d8237da3e63ac66a6207c8af1c7bf to run them still (if you wana clone read https://stackoverflow.com/questions/3489173/how-to-clone-git-repository-with-specific-revision-changeset) Ok, so because...
After direct clone from github current version, I cannot compile the Fat example at all. Command: ``` make CHIP=bl808 BOARD=bl808dk CPU_ID=m0 ``` System specification: Using a rockpro64 from pine64 via...
When running the example, almost no fs type works; fat32 - error 1 while mounting (this is after forcing it to partition by skipping the checks for empty) exfat -...
Versions: websockets 12.0 Python 3.10.13 On the examples ([readthedocs](https://websockets.readthedocs.io/en/stable/howto/quickstart.html), [github](https://github.com/python-websockets/websockets/blob/main/example/quickstart/server_secure.py)) the server is able to connect via https; but any attempts to connect via http no longer connect, only immediate...