Results 60 comments of Adam

Hi @abiosoft I'm also affected by this. I'm attempting to emulate a `rockylinux:9.1-minimal` container on x86_64 on an M1 laptop (aarch64). The container starts but fails on the first executable...

Hi, thanks for looking at this. Yeah maybe something like that. Alternatively we can abstract the platform-dependent stuff into function table, one for POSIX, one for Windows. The extra layer...

Not a high level library, but there's a basic example of using [termbox2](https://github.com/termbox/termbox2) via FFI [here](https://github.com/termbox/termbox2/blob/df4d01bf468853713906cc427c9635380a4c60bb/demo/example.nim). (This was my first time writing Nim so it probably sucks.)

Hi @mpociot sorry for the very delayed reply. `process_vm_readv` is a Linux-specific syscall. You might try looking at rbspy for ideas, specifically these repos: https://github.com/rbspy/read-process-memory https://github.com/rbspy/proc-maps which have cross-platform routines...

Assuming you're running chef-client on a cron, `action :start` can be undesirable as there are cases where you want a service to remain stopped (e.g., after a failure or if...

The distinction is "starting a service unconditionally" vs "starting a service only when it transitions to enabled".

Hi @cdluminate I will release 1.6.0 soon. I was going to make a new `debian_1_6_0` branch off the v1.6.0 commit and then add in the updated `debian/` folder. But after...

Thank you @cdluminate. I think I understand now. Basically it was a problem because https://github.com/adsr/mle/compare/v1.5.0...debian_1_5_0 contained changes outside of the `debian/` directory (`debian.sh`). I can avoid that in the next...

@cdluminate I made a `debian_1_7_2` branch, this time without the `debian.sh` script that caused a problem last time. I also uploaded the package. ``` Uploading to ftp-master (via ftp to...

Added in bffa40f. `insert` (by default) toggles block mode.