Michael Gaver-Holmes

Results 9 comments of Michael Gaver-Holmes

I've had feedback on the pret Discord server that this works and people are able to build projects such as `pokefirered` on M1 Macs. Further research indicates that both vanilla...

I've recently found some documentation indicating these may be consequences of deliberate changes made to the ARM64 ABI on Apple platforms: https://developer.apple.com/documentation/xcode/writing-arm64-code-for-apple-platforms#Update-Code-that-Passes-Arguments-to-Variadic-Functions

There's confirmation that the changes in the above PR (#52) resolve this issue.

If anyone is interested, I have this sort of working using workarounds; the _Bot User OAuth Access Token_ provided on the _OAuth & Permissions_ page for app management can be...

1. You'll need to [create a Slack app for your Hubot](https://api.slack.com/apps/new) to use interactive messages. 2. Use the key as can be found above as your Hubot's Slack token, and...

My bad - I write most of my Hubot stuff using Babel, and I forgot that most people don't follow that setup! You are absolutely free to use your modified...

The `response_url` method allows for more complex workflows, such as a chain of interaction messages. It's also useful for when you're waiting on things (remote API calls, long running jobs)...

Test case reproducing/demonstrating issue: ```rs #[test] fn state_snapshot_tracks_quota_accurately() { use crate::clock::FakeRelativeClock; use crate::RateLimiter; use nonzero_ext::*; let clock = FakeRelativeClock::default(); let lim = RateLimiter::direct_with_clock(Quota::per_minute(nonzero!(5_u32)), &clock) .with_middleware::(); let state = lim.check_n(nonzero!(4_u32)).expect("Should not...