Mathieu Amiot

Results 83 comments of Mathieu Amiot

Hey, I'm also thinking of betting on azul (I already have a lot of experience with Conrod, but hey, I like Azul's design and underlying concepts, so I want to...

I guess before thinking of making full-fledged widgets, the elementary building-block views need to be made I think (eg: React Native's [FlatView](https://facebook.github.io/react-native/docs/flatlist), addressing the common use case of long item...

Is the whole thing running fine in HiDPI contexts? "macOS" bugs were mostly related to HiDPI since macs nowadays are all HiDPI screens and having a second screen makes weird...

:+1: Please implement `ng-change` instead of shady $parent scope inspection for function name lookup.

What I meant by protocol is the Colfer data format, sorry. As I'd like to use Colfer in my environment (which is hybrid Rust/JS/Go/C), would you like me to just...

Glad you're hyped with the proposal! Colfer is amazing, we're already using it on an in-progress IoT implementation as the chosen binary format over ZeroMQ because it's insanely fast and...

I've thought about the `build.rs` solution (I'm actually using it in a project to generate code from a XML definition file of Modbus registers) and it has several issues: *...

Hey, I've been super busy (on a schedule) over the last few days, and couldn't do anything more than I wrote last saturday. I've been writing a rust version of...

Pattern matching in rust internally works as a scoped function lookup AFAIK so it's not a "switch" per-se as you would understand it in other languages. The semantics of it...

You can do something like this ``` passport.use('local.one', myLocalStrategy1); passport.use('local.two', myLocalStrategy2); passport.use('local.three', myLocalStrategy3); ... app.get('/login/s1', passport.authenticate('local.one'); app.get('/login/s2', passport.authenticate('local.two'); app.get('/login/s3', passport.authenticate('local.three'); ```