MindSwipe

Results 11 comments of MindSwipe

I think using shorter names for the chart dataset classes is ok, as you said this is a chart library so the `Chart` part is basically implicit I feel like...

> If we switch to c# 8 the using declarations will be here and those look quite nice so we'll be using them. Just a quick note: Using statements and...

I feel like making the move to C# 8.0 wouldn't bring any harm, as nullable reference types are optional and we would manually need to opt in to by adding...

Which classes would need to be modified for this? I only saw that `LineChartData` uses a HashSet

I might be ignorant here, but why not keep it a HashSet (so we don't need to worry about duplicates and such) and create an Extension method `AddRange` for `ISet`?

Just to note: I prefer extension methods to be as generic as possible, hence I made one using `ISet` instead of `HashSet`. ```c# /// /// Allows to add a range...

Input handling in Linux is (from what I've gathered) quite fragmented across different Window Managers and different display servers (X11/ Wayland) and I think the best bet to support Linux...

I agree with SeppPenner to leave the warning and fall back to the default handlers, but in the mean time it might be worth opening an issue with the [Chart.js](https://github.com/chartjs/Chart.js)...

Oops, forgot to mention I already added the `crate-type = [ "cdylib" ]` to the lib section, otherwise the compilation doesn't work or doesn't generate a `*.wasm` file (can't remember,...

I found out what the issue was, but not what's causing it. Turns out, rodio can't handle my Razer Nari headphones. I'll update my drivers and check back