Sean P. Kelly

Results 105 comments of Sean P. Kelly

Would be disabled for most channels, I imagine. Still a useful module.

Do any existing modules use this feature? Looking for examples.

Do you think we should share package.json with npm? Might be better than having to create two different package files.

Do you happen to know what the official service does if you've pushed multiple commits? Does it output a line for each one? I didn't include a link to the...

Looks like github combines all of the commits into a comparison page: https://github.com/euank/EuIrcBot/compare/8f6743d93...69ab144d5f It then prints the sha and commit message for each commit on a separate line. I'm not...

Hey @mikn, thanks for the feedback! I'm a little surprised that twoliter builds on MacOS succeeded. We have a somewhat odd Linux-specific performance optimization that works around limitations in docker/BuildKit....

I kept thinking about this and realized that you couldn't possibly tail-call optimize an async function. Each recursive iteration's `Future` result must be kept around while the subsequent function is...

> For each test, an exit 0 will distinguish a successful test run. For other bash-based test runners I've seen, the "success" exit code is configurable, and usually a specific...

I'm pretty sure my tests failed because tests are run concurrently and I'm modifying an environment variable during the test. I'll come up with a fix.

I've decided that testing the environment variable modification in Rust unit tests is a terrible idea if we would like to have a future without flaky tests. Instead, the environment...