Matthieu Coudron

Results 605 comments of Matthieu Coudron

thanks for the notification, I may update the install instructions as I've switched to poetry https://python-poetry.org/ for packaging. Would you mind running a `poetry install` in a clone to see...

seems like we can choose between: - https://github.com/tbielawa/bitmath - https://github.com/hgrecco/pint/blob/master/pint/default_en.txt (has pandas integration) - unitconverter https://pythonhosted.org/iperflexer/unitconverter.html - ~~http://kdavies4.github.io/natu/BIPM-ini.html~~ (doesn't deal with bytes) - ~~https://github.com/python-quantities/python-quantities~~ (doesn't deal with bytes) (some gathered...

If you are looking for some simple statistics, you could just order packets by their DSN and check their receival time no ? Start mptcpanalyzer then run `load_pcap `. It...

bestprefix ignored :( https://github.com/tbielawa/bitmath/issues/90

if we want to display computed values live, we need to rewrite the code so that it can be updated by chunks of packets, aka, read the last 100 packets...

Thanks for reporting. It's a plot I haven't updated. Will try to do soon and add it to the tests. Meanwhile you can plot dss/dsn via `plot mptcp_attr examples/client_2_redundant.pcapng 0...

so this prove more complex than I had anticipated because I hadn't updated that code in a long time. I have almost completed the update but I still have an...

I've also discovered recently `ls -p` which suffixes folders with a `/`, making them more distinct, and that eza lacks: ``` ➜ eza -p eza: Unknown argument -p home on...

also the plugin spams `Requesting completion for a detached buffer, check enable_suggestions_on_files' value` notifications which is not a good design IMO (aka it does not scale if every plugin does...

Historically, plugins expose their mappings via `Name`. In lua that would give: ``` vim.keymap.set("n", "HelloWorld", function() print("Hello World!") end) vim.keymap.set("n", "gs", "HelloWorld") ``` in the readme, you could remove the...