Günter Zöchbauer

Results 303 comments of Günter Zöchbauer

I updated [my examples](https://github.com/bwu-dart/bwu_polymer_routing). I added some helper methods that make it easy to create links to other routes. This works independent of the `usePusState` setting. So now the routing...

Where do you send the message from? AFAIK you need to encrypt the content properly for the browser to accept it. See also https://developers.google.com/web/updates/2016/03/web-push-encryption I made an attempt a while...

@isoos seems you had a similar experience as I had. I got stuck on PointyCastle/pointycastle#112

The 2nd variant would make me very nervous. It is a complete statement that ends with closing paren but not with the indentation of the beginning. It's completely unclear what...

This is a package to parse HTML. What you are looking for is a browser ;-) Chrome now has headless mode, that should do what you want. http://phantomjs.org/ might also...

https://github.com/lrhn/dep-configured-imports

The example code has additional issues ``` dart class BarElement extends InputElement{ //void created() { // should be BarElement.created() : super.created() { print('BarElement created!'); } } ```

`den fetch` should do what you want https://pub.dartlang.org/packages/den But the existence of newer versions doesn't mean they are compatible with your dependencies. You would need to run `pub upgrade` to...

@jakemac53 as far as I know there are checks that libraries from packages imported in files from `lib/` or `/bin` are required to be listed in `dependencies:` I think it's...