Jonathan Soma

Results 9 comments of Jonathan Soma

I ran into this issue earlier today, and found [`gulp-spawn-mocha`](https://github.com/knpwrs/gulp-spawn-mocha) to be a quick fix.

I don't know enough about argparse/gooey to know why this is, but it looks like if you change the `nargs` parameter to `"*"` or `"?"` [parameters become optional](https://github.com/chriskiehl/Gooey/pull/209), and get...

I'm going to guess that AWS made an update but we're using an outdated version of the `fog` gem, which is how we're talking to AWS. I won't be able...

I went the easy route and removed the `true` default for Tabletop (only in the instance of a proxy). I'll leave this open in case someone wants to fix, though.

You can use `mapsheet.renderer.map` to get the rendered map after it draws - if you pass a callback to a new Mapsheet object you _should_ be good to go ```...

Nope, no luck even back to 0.4.0 (although my env is a little wonky and guardrails doesn't have `__version__`, so there's like a 3% chance it's just my setup not...

Ah, got it. Guess it gives me a good opportunity to get a little more comfortable with custom validators. ```py @register_validator(name="regex-validator", data_type="string") class RegexValidator(Validator): def __init__(self, regex: str, on_fail: Optional[Callable]...

I'm thinking it's something upstream of fuzzy-pandas, so first try `pip install csvmatch`, and if you get the same error then try `pip install textmatch`, and if neither of those...

Try [these suggestions here](https://jonathansoma.com/everything/pdfs/camelot-ghostscript/). The quickest solution is probably this one: ``` mkdir -p ~/lib ln -s "$(brew --prefix gs)/lib/libgs.dylib" ~/lib ```