Carlo Corradini

Results 37 issues of Carlo Corradini

Improving maintainability 🥳🤗🤯 The `CHANGELOG.md` file contains every relevant changes. The modifications are listed in the list below: - All includes must be preceded by the word _erkir_: `#include `...

With ESLint v9 the configuration file and format has changed. There is the need to do a migration

Help Wanted :sos:
Community :family_man_girl:
Chore :hammer:

gui_topology.py does not find the `html` folder. From the [docs](https://ryu.readthedocs.io/en/latest/gui.html) I simply run `PYTHONPATH=. ./bin/ryu run --observe-links ryu/app/gui_topology/gui_topology.py` but no `html` folder is found. Looking in the [source code](https://github.com/faucetsdn/ryu/tree/master/ryu/app/gui_topology/html) the...

@karljj1 Can you create an account on [Codecov](https://codecov.io) for `kdis` Thanks 🥳🤗

KDIS has a lot of enums. To avoid pollution (like C) it's suggested to use `enum class` instead of `enum`

Use [`std::unordered_map`](https://en.cppreference.com/w/cpp/container/unordered_map) instead of [`map`](https://en.cppreference.com/w/cpp/container/map) when order of elements is not important

Using the current constructor to create a `Connection` class is a little too verbose and tedious. Additionally, although if some options can be modified after creation, some cannot (`port`). I...

There is a possibility to exit with error code if ```error!(...)``` macro is used? Currently ```error!(...)``` simply prints the message: can we set a flag (maybe during building the logger)...

question

## Description of the feature I would like to include a feature similar to [`serde_with::FromInto`](https://docs.rs/serde_with/3.7.0/serde_with/struct.FromInto.html): > Serialize value by converting to/from a proxy type with serde support. > > This...

enhancement