Sergio Gurillo Corral
Sergio Gurillo Corral
@VahidNZ I could convert it to base64 & send it to ws. I'll share my code asap. I'm don't have my laptop now
@VahidNZ here is the code ``` /** CONVERT BLOB TO BASE64 */ const blobToBase64 = (blob: any) => new Promise((resolve, reject) => { const reader = new FileReader(); reader.readAsDataURL(blob); reader.onload...
Could you solve this issue? I'm trying to fix it. Above answer did not work for me
Finally I could fix it! onStop callback worked for me. My guess for the blob coming as text/html is because doing the fetch when the blob is not created yet,...
same here, did you figure it out how to solve it?
@RambousekTomas you are my fucking hero, I was about to throw my laptop out of my seventh floor window.
@anupam-basu would you mine to share your alpha.lua config? or your full nvim conf folder
I really like this one. I will use it for my project. It would great to see more libraries related with Desktop platforms! :)
It would be great, maybe we could have some conversation about how to document the next major release based on how it should be done from a project already with...
here are some tips (by chatgpt XD) about how to have a scalable versioning system for your lib: ----- (chatgpt) Since it's a React Native library, the context is a...