Results 51 comments of Robert Muth

Oops, yes I had type. Here is an example that covers a lot of the functionality. Maybe you can add it: ``` import 'package:js_bindings/js_bindings.dart'; dynamic make_handler(name) { return (msg) =>...

some mechanism like this would also be useful for libraries that come in two flavors: one depending on 'dart:html' and one that does not.

BTW: this is the best documentation on conditional imports I could find: https://medium.com/@dvargahali/dart-2-conditional-imports-update-16147a776aa8

After having used conditional imports on a few occasions I find them to be rather clumsy. Typically I use them to redirect code to a stub implementation, which usually affects...

This worked like a charrm - thanks! Now, I wonder what is the best way to configure a sign out rule in nginx. This works reasonable well - it logs...

For anybody who wants to look into this: The code that needs to be updated is here: https://github.com/quodlibet/quodlibet/blob/master/quodlibet/ext/events/mpdserver/main.py All the mpd commands are modeled as function annotated with @MPDConnection.Command Besides...

> @xeanhort It is quite an involved task... for adding a device in the network there are 30 steps in the documentation, get only one wrong and it does not...

Did you find it easy to match up those papers and RFCs with the S2 description? Was it easy to extract the relevant information/algorithm from them? I am just saying,...

BTW: thanks for this really awesome project. As you probably figured, I am processing the table programmatically for my own instruction encoder/decoder. For the processing it would be helpful to...

I am quite confident that at least the decoder can be done entirely table driven. The encoder as well as long as you do not want to optimize for short...