ShellCode

Results 58 comments of ShellCode

Hey, thanks for your work ! A few comments if you don't mind : - PBKDF2 is ok-ish but [Argon2id](https://en.wikipedia.org/wiki/Argon2) is state of the art, you should probably use that...

Use PBKDF2-HMAC-SHA256 with 600,000 iterations then, it's more than fine ! Same for AES CBC, if you don't want to bump the API level you can keep using it, it's...

I think it would be possible to read `/proc/self/sessionid` instead of relying on `XDG_SESSION_ID`. I didn't try it but in the meantime, I think you could workaround this by creating...

Same here, don't want to install npm :raised_hand_with_fingers_splayed: (I complain but I still install it... But I'd rather not. And thanks for your amazing work ;) ) > Interesting, I've...

Let's say you have a small window in which you perform a command with long lines : ![image](https://user-images.githubusercontent.com/8455652/201937390-6eb2d2b4-3225-4e95-a27d-d43866cffc55.png) For whatever reason you change the layout of your WM, or you...

Yep, many incompatibilities indeed. At first I was willing to submit a PR but I gave up when I saw the amount of lines in the rejected diff. Ended up...

I feel like the boxdraw patch is not worth it if you're already using a "good" font. I use Fantasque Sans Mono for my terminal, and it looks pretty much...

Thanks for your answer ! That helps a lot > The ModuleRequirement name isn't important, so you could just have one called 'kernel', no need to duplicate those. Of course......

The reason why `systemctl stop autorandr` doesn't stop it is because the Makefile creates a udev rule that will trigger the systemd service everytime an external monitor is hot {un,}plugged....

Good question, I guess it's for maintainability reasons, if they update the systemd unit file (e.g. a change of CLI parameters), it will propagate to the udev rule as well....