Val Packett

Results 399 comments of Val Packett

As someone who switched from vim to kakoune, my [config](https://github.com/unrelentingtech/dotfiles/blob/1b1de0b516eb014893a8c1c0879aa67cbb52bdb4/kakoune/kakrc#L7-L27) includes a "vim habits" section that includes: `$` to go to end of line, `0` to go to beginning of...

Hi, I'm the author of [systemstat](https://github.com/unrelentingtech/systemstat), would you accept a PR that uses systemstat for uptime and memory and adds more things systemstat supports (such as battery percentage and disk...

I've extended the MiBeacon support in https://github.com/shmuelzon/esp32-ble2mqtt to support more devices, including ones that send v4/v5 encrypted advertisements.

You can activate this device using the universal version of the flasher page: https://atc1441.github.io/Temp_universal_mi_activate.html

Would be nice to be able to completely turn off the inclusion of headers there too. ...also why are they `headers_json`? what's the purpose of nesting JSON-in-JSON or JSON-in-msgpack?

This should also work with https://github.com/rust-lang/rust/issues/57241 const fn support, i.e. ideally writing `something.sqrt()` should: - if it's constant, evaluate at compile time, done - if we're compiling for e.g. `eabihf`,...

This is strictly with MDBX, doesn't happen in heed with features=lmdb.

Previously: https://github.com/nrf-rs/nrf51-hal/pull/25

Same is happening on FreeBSD armv6/7. (aarch64 works fine.) (clang is used on all archs.) `__strong_alias` is not defined in any headers, might be a compiler builtin thing?

Yes, `__strong_reference` is a thing (in `sys/cdefs.h`) ```c #if defined(__GNUC__) || defined(__INTEL_COMPILER) #ifndef __INTEL_COMPILER #define __strong_reference(sym,aliassym) \ extern __typeof (sym) aliassym __attribute__ ((__alias__ (#sym))) #endif // … #endif ``` Hmm,...