iqualfragile

Results 30 comments of iqualfragile

while the way side effects are handled in elm seems a bit weird from a non-fp point of view, having managed side effects is extremly important to the elm architecture...

an enum seems to be the way to go design-wise. it would not restrict to a predefined set, if you add one variant to the enum typed Other(String).

hi @ivanceras i, am still interested in doing this. tech wise i think we should use nightly until unsafe_unions hits stable, because that makes things so much easier. i had...

@ivanceras unions are now in rust, i rewrote my code using it, it looks good to me, want to get started?

https://github.com/rust-lang/rust/issues/32836 unions are just like enums, but without the tag, so you need to externally save which variant they currently are, and accesses are unsafe. they are not strictly _in_...

i think the decoder has the higher priority here, because it has to work with untrusted input almost all the time.

honestly, i think finding panics is even more important then finding unsafe, because uses of unsafe are generally well planed, while .unwrap() is often just lazyness/hope this won't crash/will do...

Yes, that is not what i am talking about. I want to be able to manage which in and output is used via pulseaudio, just like i can manage any...

using pulseaudio would have quite some advantages, besides better linux desktop integration, it provides an echo cancellation module, too