Jaydson Gomes
Jaydson Gomes
Oi @marcelaraujo , o Eric Elliot sem dúvidas é uma excelente opção. Ele também foi convidado para as 2 últimas edições (2016 e 2015), mas infelizmente não conseguiu vir. Vamos...
Hi, yes you can, but I do not encourage you to do this. This project was moved to the [power-polygon](https://github.com/braziljs/power-polygon) core. Power-Polygon has this feature by default. Take a look...
O Dr. Axel Rauschmayer foi convidado para particpar das 2 últimas edições (2016 e 2015), mas infelizmente por problemas de agenda ele não conseguiu vir. Quem sabe em 2017, né?...
Sure! Currently, our tool is always looking for the last opened issue in the [Weekly repository](https://github.com/braziljs/weekly/). Sometimes we need to choose another issue, not the last one. For example, when...
Hey @FagnerMartinsBrack , I've just enabled YouTube community contributions on @mjcoffeeholick's talk. I think it's easily to translate right there. Tell me your thoughts and thank you for the initiative....
@FagnerMartinsBrack got it. But as a suggestion I encourage you to try the transcription as well on YouTube (without the temporization). I tried few days ago and it's super easy.
I think it is, because there's just one transcription. So if another person will help with the transcription it's possible to continue from where you stopped. Let me know if...
Here's a silly sample as how we can implement such a thing: ``` javascript async function test() { return new Promise(function(resolve, reject) { resolve({ ok : function(){ console.log('OK'); } })...
I tried to hack Goiabada last weekend, but i can't find a way to change the `test` method. Actually, i didn't understand yet how Goiabada queue works. Here for example:...
Now i got it. Simulation below: ``` javascript async function test() { return new Promise( testResolve => { console.log('queue'); setTimeout(function() { testResolve({ ok : 'wow'}); }, 2000); }).then( assert =>...