Phil Pirozhkov

Results 566 comments of Phil Pirozhkov

My apologies, @koic, I'm not convinced enough that duplicate output from the old and the new cop that is an impact on user experience is a good tradeoff for not...

Postgres docs mention that the performance difference is barely noticeable. One reason for recommending I can think of is to have the right index in place without the need to...

https://github.com/rails/rails/pull/46568 one done, one to go

https://github.com/rails/rails/pull/46592

What is wrong with keeping the keys while leaving only the ed25519 and rsa HostKey items in sshd_config? You can also make dsa and ecdsa world readable so that sshd...

You should make ecdsa and dsa world readable as most simple option to prevent sshd from using them. Even if they happen to be turned on in sshd_config, they won't...

The whole point of making them world readable is that they won't be re-generated. Do you get this simple reason for keeping them? In case they were used previously, they...

```diff - expect(response).to have_http_status(200) - expect(response).to have_http_status(:ok) + expect(response).to be_ok ``` Research: ``` $ rg --no-ignore --hidden --count-matches 'have_http_status.200' | wc -l 126 # files, some file have more than...