Sorin

Results 7 comments of Sorin

Are you writing images to the same buffer? This might happen if several goroutines write an image to the same buffer before it ends processing. Try using sync.Pool if you...

Give this a try, paste the code somewhere outside of your method: ``` var bufPool = sync.Pool{ New: func() interface{} { return &bytes.NewBuffer{} }, } ``` And inside your method...

You could use bimg.NewImage. It accepts []byte.

> @valentingavran Good question. Right now we have docs / guides / views ready and a working on the CI/CD to replace what is on the dev box right now....

> @sorinsi Back from vacation. Actually almost done with that portion. It's a lot of reuse of the old system. Hopefully have something partially up on the dev box shortly...

> Hello [@IlyaBausovAkvelon](https://github.com/IlyaBausovAkvelon), > > Is there any solution you can suggest which can work in react-native-code-push with new architecture? I made an alternative for CodePush that supports the new...

> > > Hello [@IlyaBausovAkvelon](https://github.com/IlyaBausovAkvelon), > > > Is there any solution you can suggest which can work in react-native-code-push with new architecture? > > > > > > I...