Arno Fleming

Results 9 comments of Arno Fleming

Thanks for your help. I did follow all these steps (before), and re-followed them today. This didn't resolve the issue. I can confirm that my terminal (iTerm2) indeed has access...

I'm on Big Sur as well. Too bad it doesn't resolve my issue. Let's still blame it on my setup (it _doesn't_ work on my machine)

It again started acting up today. I'm on a new machine. I've installed a lot of the same tools as on the previous Mac, so I'm blaming myself: It's how...

Most notably I think the interaction between espanso (snippet substitution) keypad-layout and MacOS (Montery, Version 12.5.1) is working.

Looking at that repo now. Thanks!

After a few hours I see this may come across as 'what will you do to solve my problem'. That is definitely not what I was aiming for. Let me...

Implementation: ```ruby # config/initializers/rack_attack.rb # some uninteresting parts omitted Rack::Attack.throttle("pdf/baseline/throttle/user_id", limit: 80, period: 8.hours) do |request| request.user_id if request.pdf_download_route? end ``` the integration test: ```ruby # test/system/pdf_downloads_are_throttled_test.rb # some uninteresting...

I've been thinking about this in the last week. Will probably create an addition to the docs. Also I'm interested to see if an additional or replacement implementation could work...

> regarding your tests, you can make them work by freezing the start time to the beginning of a "block"/period. I probably can. However, it's testing in a way that...