Guilherme Reis

Results 34 comments of Guilherme Reis

Do we already have a way to change the tooltip?

Same thing here, someone already found the solution?

Same issue here! I am using the Socket.io to emit for all my users logged in, and I get the same error. It still works, but I get the error...

Hello, is there any update here?

My solution for the @martinrue comment. It is working for me. ``` editor.codemirror.on('beforeChange', (instance, changes) => { if(editor.value().length > 5000 && changes.origin !== "+delete"){ changes.cancel(); setErrorMessage($el, 'Too big'); // A...

@WesCossick can you merge this branch?

Same problem here

``` package main import ( "fmt" ) func main() { x := `haha pulando linha bora` fmt.Println(x) } ```

🚀 ``` package main import ( "fmt" ) type numeros int var x numeros var y int func main() { fmt.Printf("O valor de X é %d do tipo %T\n", x,...

Esse foi bem tranquilo, pois já estava brincando com o SprintF no exercicio anterior, que me causou uma dúvida antes. ``` package main import ( "fmt" ) var x =...