Explore >> Select a destination


You are here

damienradtke.com
| | blog.owulveryck.info
3.6 parsecs away

Travel
| | This is a very quick post with some notes about the support of WebAssembly (wasm) in the Go toolchain. This article is not a tutorial and as any information it contains may be obsolete soon. The Go api for Wasm is not stable yet.
| | avelino.run
4.3 parsecs away

Travel
| | A linguagem Go é um projeto open source para tornar os programadores mais produtivos. Go foi desenvolvido para utilização maxima do CPU, tornando um processo simples para criar aplicação Multithreaded, o processo de utilização de maquinas na rede para processar determinado programa também é bem simples, assim tornando um software mais flexível e modular. Vamos montar um servidor HTTP em Go. package main import ( "http"; "io"; "fmt"; ) func HelloServer(c *http.Conn, req *http.Request) { io.WriteString(c, "hello, world!\n"); } func main() { fmt.Printf("http://localhost:8080/hello\n"); http.Handle("/hello", http.HandlerFunc(HelloServer)); err := http.ListenAndServe(":8080", nil); if err != nil { panic("ListenAndServe: ", err.String()) } } O HelloServer() é o qu...
| | aarol.dev
3.9 parsecs away

Travel
| | TLDR: # http.ListenAndServe(":8080", nil) // bad http.ListenAndServe("localhost:8080", nil) // good If you are using Go with Windows, you might ...
| | golangbot.com
21.2 parsecs away

Travel
| Learn how the WebSocket protocol works and how to create a simple WebSocket server using Go.