Faidon Liambotis

Results 130 comments of Faidon Liambotis

I agree with @vincentbernat here. To be honest, I also don't understand why py-junos-eznc has to have all of this complex logic around SSH options, including this, but also hardcoding...

Yeah, would be nice to be able to extract `ok` somehow. Right now this isn't possible at all as far as I can tell, one has to do hacks like...

I updated the version script above to also include the C++ WasmEdge:: symbols (Plugin registration + the allocator). Beyond that, I'm still unable to figure out why all those `std::`...

Oh, it seems like the code is a derivative of MRT's radix code, which is now available as [2-clause BSD](https://github.com/deepfield/MRT/blob/master/COPYRIGHT). I'm not sure how much patricia.c resembles MRT anymore, but...

[streamlink](https://github.com/streamlink/streamlink) has [an interesting version of an argparse plugin](https://github.com/streamlink/streamlink/blob/1fb9391de909c242482b41f32df08ec0ebd242c0/docs/ext_argparse.py). I think it could probably be simplified further for tox (e.g. no argument groups I think?) and used instead of autoprogram...

See #491 which tracks this issue - so I think this is duplicate. Note that as that task says, one can provide type hints without breaking backwards compatibility, by either...

We're trying: ```yaml measures: - name: bps title: bps formula: $main.sum($bytes)*8 / ($MillisecondsInInterval / 1000) - name: pps title: pps formula: $main.sum($packets) / ($MillisecondsInInterval / 1000) ``` …and it seems...

I think I'd reword this to be about "add support for unit prefixes". SI (multiples of 1000) would be a good start: for example for a unit of "bps" (cf....

For bytes, it seems like numbro.js offers that support with e.g. format: "0,0.00 b". Anything else is going to be more difficult I think, cf. https://github.com/BenjaminVanRyseghem/numbro/issues/126 for a 2015-era task...

Bump! I first submitted this patch to the mailing list a little bit over a year ago -- it'd be nice to see a review and/or merge before it completely...