Results 14 comments of Scott Prager

Also, I've been considering asking whether of not we should ``` c if (ptrA != NULL || ptrB == NULL) ... ``` vs ``` c if (ptrA || !ptrB) ......

I couldn't be bothered to put it under a licence, to be honest. Consider it simply "free". I wrote Pure for personal/academic reasons, after all. :) I think if I...

If one needs to follow a user to see their issue reports and pull requests, how do new contributors get everyone to follow them? Would it be possible to put...

lol, looks like @anarcat made a PR for the same issue right when I did. (#26) I like that solution more. Still curious about the `--export-all` flag, too, though.

Oh, I misread your PR (and misunderstood what "bare" meant). I had looked for a way to express the subdirectory being option, without using `**`, in `glob(...)`, but couldn't find...

That's perfect. How about you just add that to #29 or #26 and I'll close this.

Oh wait, doesn't work if the `.git` is in the current directory.

Use this: ``` js glob.sync('{,.git/,*/.git/}git-daemon-export-ok') ```

Rebased. > but it's requires a reponame. Thanks, fixed. EDIT: Actually, fixed is not the word I'd use: better. Do we use the information of the repository's name to inform...

> we're not using the mainline bittorrent DHT itself, just its protocol. That makes sense, but might the libraries implementing the DHT and protocol decide to reject large messages at...