Roman Shterenzon

Results 64 comments of Roman Shterenzon

Unfortunately version 4.0.0 of blurry made the Blur and BlurFactor classes package private. I think that they should be part of public API, as we also use them this way...

It breaks when doing "back" in the browser.

This is the workaround for going "back": ```javascript $(document).on('turbolinks:before-cache', function() { const $picker = $('.selectpicker'); const picker = $picker.data('selectpicker'); if (picker) { picker.destroy(); $picker.addClass('selectpicker'); } }); ```

Perhaps create a branch which will hold these changes for people who want to adopt the code in their projects after seeing the course.

I'm also experiencing this. In some cases there's no report in the log and not in web-console. However I have a sentry crash backtrace for one such issue. In my...

Tried it, and looks like it works flawlessly. I also wrote a trivial stream implementation which can load the sound font from assets using AAssetManager.

Here you go: https://github.com/romanbsd/tiny_midi_player

IMHO if you need more complex features, maybe it's better to go with fluidsynth...

I can probably switch back to npm. There was some problem which I think was resolved since then.

It's up to you what to do about this PR. For me it was the first step before trying to modernize the project and bring the components to the latest...