Jake Biesinger

Results 10 comments of Jake Biesinger

At first blush, it looks like we could simply provide an optional `requests.Session` object, one which we'd generate from Google's client library. We could provide the session to the `RequestsClient`...

Sorry this was unclear. I'm not trying to call Google APIs as if they were Swagger endpoints. Rather, I'm trying to call one of our own APIs (which *is* a...

:+1: I don't know about the other markups, but the `.. math::` and `:math:` directives are very common in reStructuredText. This would be a win, IMO..

Adding my +1 here... seems like this is a really common use case (simulating browser behavior) and I'd written hundreds of lines of scenarios before I happened upon this issue...

I'm running from the command line as the same user as the mediawiki server, but a different user to the dokuwiki process (switching from one server to another). I don't...

After updating as above, the error message is slightly different but the socket is still incorrect: ``` $ php index.php SQLSTATE[HY000] [2002] Can't connect to local MySQL server through socket...

Hey, slick. Looks like that did it. My wiki is converting now. I'll let you know if there are any issues!

I also happened to need this today... it's hacky, but you skott is using https://www.npmjs.com/package/minimatch under the hood, so you can use `{}` with comma-separated lists, e.g., ``` --ignorePattern '{src/file1.ts,src/path/to/file2.ts,src/api/**/*.ts}'...

I'm now using a silly command to grab this from a file if it exists: ``` npx skott --fileExtensions=.ts,.tsx --showCircularDependencies --ignorePattern '{'$([[ -e .skottSkips ]] && cat .skottSkips)'}' --displayMode raw...

I'm using skott via the CLI and would love it if there were a config file I could set and forget. For the large typescript codebase I'm working in now,...