Kequc

Results 21 comments of Kequc
trafficstars

I'd really rather not render markdown, just capture the links without them breaking. The same thing could be done for square brackets as is being done with round ones? I...

What's got me down about this issue is I prefer to store datetime as utc bigint's. They're just immeasurably easier to work with than the standard date format is. But...

The solution for me is going to be use Int and trim the ms off of the number. But as a result I'm participating in the "Year 2038 problem" where...

I had a lengthy conversation with copilot about this and it eventually convinced me to use datetime.

I am getting the following error on linux. node version 7.10.0 npm version 4.2.0 ``` > node-gyp rebuild make: Entering directory '/home/kequc/projects/kequc/node_modules/lwip/build' CXX(target) Release/obj.target/lwip_decoder/src/decoder/init.o CXX(target) Release/obj.target/lwip_decoder/src/decoder/util.o CXX(target) Release/obj.target/lwip_decoder/src/decoder/buffer_worker.o ../src/decoder/buffer_worker.cpp: In...

It would be useful to see index information on nodes in a summary. ``` div.number-1 [index: 0] div.number-2 [index: 1] (removed) div.number-3 [index: 2] (removed) div.number-4 [index: 1] (added) ```...

The way MutationObserver works, from which MutationSummary is built. The MutationObserver returns individual removal records but sometimes many at the same time. ``` var divs = document.querySelectorAll('div'); divs[2].remove(); divs[1].remove(); ```...

I'm using the cors module for express routing. ``` var express = require('express.io'); app = express(); var cors = require('cors'); app.use(cors()); app.http().io(); app.listen(8080); ``` This works for express, but I...

Thanks for your response, does an ArrayBuffer count as a Buffer? That's what I'm attempting to use.

I wonder if a better solution would be to use socket.io without socket.io-stream and just send my array buffers to have them assembled for me on the server instead. Forgive...