Sergiy Kukunin

Results 55 comments of Sergiy Kukunin

it seems the format of the default config was changed. Solved by using this config: ```js const plugins = require('tailwind-react-ui/plugins'); const colors = { transparent: 'transparent', black: '#22292f', 'grey-darkest': '#3d4852',...

```css /* Hack for component from tailwind-react-ui */ .pin-y { @apply inset-y-0 } .pin-r { @apply right-0 } ``` This is a workaround that worked for me

Is there any workaround in the meantime while the PR is merged & released?

It happens to me too. Edge Start is present on every workspace. I don't have any `Config_rule` regarding it. My workaround is to minimize it with `#^m`. Also, I'm not...

Something weird happens to Edge. I've restarted bug.n without last session, `Win I` on Edge (Start window) gives ``` ID: 0xdb0948 class: ApplicationFrameWindow title: Start ‎- Microsoft Edge process: ApplicationFrameHost.exe...

I run bug.n on the same Windows 10, Version 1809, Build 17763.253 and it works fine. It seems like an issue with the Macbook's display

I had a similar error in my project (not related to instascan) in Chrome Android. The error happened when I tried to switch cameras. The solution for me was to...

I have successfully implemented feeding frames via stdin. The main problem is that ffmpeg blocks the execution, so a worker can't process income messages. You have to use either ASYNCIFY...

take a look into `https://github.com/Kukunin/ffmpeg.js/blob/master/build/library.js`. As you can see, I use `Module['stdinAsync']` and `Module['stdoutBinary']` there. Here you can see https://github.com/Kukunin/ffmpeg.js/blob/012368c685ff30e8dc63278d40380bf3fe9e5aad/build/pre.js#L31, that ffmpeg assigns almost every option to Module. So you...

as an example, how to use it, you can take a look to this code: ```js opts = {}; // other options here opts['stdinAsync'] = function(size, callback) { getMyInputSomehow().then((data) =>...