Jim Hester

Results 413 comments of Jim Hester

FWIW readr / vroom have code to skip the byte order marks at https://github.com/r-lib/vroom/blob/b3ba15212978253174c9f99f1098799cca9a6f74/src/utils.h#L215-L266, since they are pretty common in CSV's created using Microsoft programs.

I ended up with this css for a decently styled table ```css td,th { padding: 0.4em; } thead { border-top: 1px solid #aaa; border-bottom: 1px solid #aaa; } table {...

I think this is because of the caching (or lack thereof) (https://developer.github.com/v3/repos/statistics/#a-word-about-caching) > Computing repository statistics is an expensive operation, so we try to return cached data whenever possible. If...

Yeah, https://docs.travis-ci.com uses https://github.com/gjtorikian/html-proofer to do this.

There is some documentation on using it with travis at https://github.com/gjtorikian/html-proofer/wiki/Using-HTMLProofer-From-Ruby-and-Travis

If we wanted to do this we could probably just do the 'stupid thing' they have on there ```yaml language: ruby before_install: - export NOKOGIRI_USE_SYSTEM_LIBRARIES=true addons: apt: packages: - libcurl4-openssl-dev...

There seem to be a few, e.g. https://github.com/marketplace/actions/link-checker, https://github.com/gaurav-nelson/github-action-markdown-link-check,

After trying them out locally it seems really easy to hit the GitHub rate limits and start getting 429 responses from GitHub. We would probably have to be careful to...

Those are nice @maelle! I think we _should_ be able to 1. Run a workflow only when posts happen, e.g. files change in a given directory 2. Run the checks...

Yeah, maybe this should just be a parameter to the report of what labels to aggregate by. It could just be a named list if there are ones you need...