Jonathan Dahan
Jonathan Dahan
> `setBroadcast` (or just setting SO_BROADCAST) is useful for dns-sd/mDNS, which I use in a lot of my projects. Honestly, looking at one of the implementations, I think this could...
Making the lookup compatible with DNS-SD would help the use case of routerless node discovery. In particular, I have been building a network that uses DNS-SD over IPv6 multicast to...
@emilbayes > A peer may fetch the data as they are requested to solve a challenge. This may be possible to mitigate by setting a low timeout, but with the...
Yes it is asynchronous. fetchPositionProjections looks like this now: ``` javascript //Get the data from external sites function fetchPositionProjections(position, cb) { var source_site = ''; if (window.positions.indexOf(position) > -1) {...
In fact, you could probably just add something like ``` // if in greasemonkey script if(GM_xmlhttpRequest){ GM_xmlhttpRequest({ method: "GET", url: source_site, onload: function(response) { cb(position, response.responseText.trim()); } }); } else...
So if you unzip the archive, the tokens are included in the urls of the export. You can use the token shown there.
This is a case where slack has actually made things easier
Maybe for making it easier to transition into/out-of spider. I think the changing syntax for the sake of changing syntax is not that compelling. Changing syntax for improvements in readability,...
@mustaqimM I think I do not have enough bandwidth to maintain this project - I can archive, and make a note allowing anyone who wants to take over, but it...
I'm confused what does `koa-better-body` has to do with my request. Unfortunately I don't have the time to submit a pull request, though I would like to. This is a...