Harvey Chapman

Results 12 comments of Harvey Chapman

Found it: https://github.com/hubotio/hubot/blob/master/src/response.js#L132,L137 Just call `res.finish()`, correct?

I actually prefer version name. My version codes are autogenerated from git to be ever-increasing numbers, but meaningless to humans. My version names include a git hash and the version...

Workaround: ```python from flask_wtf.recaptcha import Recaptcha def validate_recaptcha(form, field): """Validate recaptcha response.""" # Recaptcha validator only looks for data in a hard-coded field name # https://github.com/lepture/flask-wtf/issues/370 request.json["g-recaptcha-response"] = field.data return...

This works, but it's very busy-looking. Run this and paste the output into a terminal with a git prompt. ``` # cd to .../themes/ (for i in *; do echo...

Scratch that, it doesn't work because just changing the theme doesn't seem to undo changes made by previous themes.

You could have said that nicer.

I came here to report this because black will add, but not remove parentheses Example: ```python value = some_really_really_really_long_variable_name_1, some_really_really_really_long_variable_name_2 ``` becomes ```python value = ( some_really_really_really_long_variable_name_1, some_really_really_really_long_variable_name_2, ) ```...

It would be really nice to have the option to output the request to the end of the `HTTP Response` buffer after the response headers. I use variables to generate...

The `activate` command uses the `PYENV_VERSION` environment variable to set the version. That variable is set only as long as your script is running. The environment doesn't persist into the...

The problem is that you have org installed, but not from the org repo. Run `list-packages` and install org-mode from org. Maybe there's a way to tell use-package to install...