Joel Purra
Joel Purra
For finding subdomains in "holes" in the wordlist, the [NSEC extension to DNSSEC](https://en.wikipedia.org/wiki/Domain_Name_System_Security_Extensions#Operation) might be useful to look at. This can also be used to skip over words which should...
- Git commits can optionally be signed using GNU Privacy Guard (GPG). - Without checking for `gpgsig` in the `git` output, signed commits would be skipped by `git2json`. - Adds...
Am looking for an AWS Lambda solution which would both crop (#38) and resize images, optionally outputting them in an image format different from the input (#45) server-side. Here's a...
Clicking the button to refresh the authentication methods (for using indieauth with openid authentication) shows the progress bar, but then it seems as if everything freezes. Waiting for several minutes...
- Makes for easier execution on Windows systems without .net v3.5, but has .net v4+. No need for a separate `app.config` there, as it is today. - Crashes on Windows...
Since #5, there should be no colorization if the output is piped (as in "not a TTY") from `rainbow` to another command. There still seems to be leftover ANSI escape...
The `uvcc` compatibility list and examples have so far been based on the _product name_, but looking at various reports it seems the _product id_ may vary within the advertised...
- `Nan::MakeCallback`, `Nan::Callback::Call`, and have been deprecated. - The recommended approach is `Nan::AsyncResource`. - Hobbled together the commit from test code and random examples. - Does not seem to affect...
Deprecation warnings (since Node.js v10): - `Nan::MakeCallback(...)` - `Call(...)` on `Nan::Callback` Should either use/pass in `Nan::AsyncResource`, or switch to `Nan::AsyncWorker` (which builds upon `Nan::AsyncResource`). The effect on asynchronous DNS requests...
While writing tests, a few "magic numbers" popped up. Turns out no all [@getdnsapi/getdns](https://github.com/getdnsapi/getdns) API constants have been implemented in `getdns-node/src/GNConstants.cpp`. - Might more be missing? - How can changes...