taoxinyi

Results 8 comments of taoxinyi

I have a similiar problem ``` lock" (free)> :NOTIFY-PUSH NIL :NOTIFY-POP #) 1) [fast-method] 16: ((FLET "BODY-FN0" :IN LPARALLEL.KERNEL::MAKE-CHANNELED-TASK)) 17: ((LAMBDA NIL :IN LPARALLEL.KERNEL::MAKE-CHANNELED-TASK)) 18: (LPARALLEL.KERNEL::EXEC-TASK/WORKER # #S(LPARALLEL.KERNEL::WORKER :HANDSHAKE/FROM-WORKER #S(LPARALLEL.CONS-QUEUE:CONS-QUEUE...

I have the same problem that it randomly throws Index out of Range Exception. Did you solve it?

@dcodeIO I used python django channels to send protobuf bytes data to the browser. I compare the the bytes data of the `Uint8Array` and the bytes data after `SerializeToString` in...

@dcodeIO I find the there is something different from the bytes data I sent from python and the `Uint8Array` I convert in the browser. ### Bytes data send from python:...

@dcodeIO In my case, the data server sent to client is binary. The client receives it using Websocket as Blob, and converts it to `Uint8Arrary`, so I don't understand which...

@dcodeIO Thank you for the advice. I've replaced `FileReader` with `binaryType="arraybuffer"`. But the result is the same. Maybe it's the problem of django `channels` that the binary data is somehow...

@dcodeIO Sorry to bother you again. Even the same bytes data cannot be decoded in the browser. ### in Python ``` >>> b=bytearray() >>> x=[18, 150, 1, 8, 3, 18,...