Gleb Mazovetskiy

Results 440 comments of Gleb Mazovetskiy

Will I still be able to bind directly like in the snippet below? ``` google.maps.event.addListener(scope.googleMap, 'bounds_changed', onBoundsChanged) # onBoundsChanged called outside $apply # and trigger google.maps.event.trigger(scope.googleMap, 'resize') ```

OK, great! Thanks, sorry for not getting it :)

I don't see any mention of atomicity guarantees in the 2018 edition: https://pubs.opengroup.org/onlinepubs/9699919799/functions/readv.html https://pubs.opengroup.org/onlinepubs/9699919799/functions/writev.html Is it specified elsewhere?

The Linux `readv` is atomic but look like it's a Linux thing and not a POSIX requirement. (http://man7.org/linux/man-pages/man2/readv.2.html)

I patched 1 line in rangy and it seems to fix the issue: https://github.com/glebm/bootstrap-wysihtml5-rails/blob/master/vendor/assets/javascripts/bootstrap-wysihtml5/rangy/rangy-core.js#L2958

We already have a Ruby parser dependency, consider reusing it rather than adding another one.

I don't mind dropping support for older rubies, but does Prism support JRuby? If so, switching to Prism throughout might be a good idea > Then I would like it...

Looks like Prism on JRuby is still a work-in-progress: http://blog.jruby.org/2024/02/jruby-prism-parser

> This encoding is not UTF-8 compatible and is likely a variation on UTF-16 or UCS-2. Not that this is relevant, but just an FYI: Windows-1250 is a single byte...

I have a basic implementation of using libpng directly in https://github.com/glebm/devilutionX/commits/png-screenshots/ Seems to work just fine and the screenshots are about half the size of pcx What's missing: 1. Building...