/explore

Click through on any links that interest you or select the planets on the right to continue exploring the Outer Web.
You are here

aarol.dev
| | github.com
4.3 parsecs away

Travel
| | lambda-go-api-proxy makes it easy to port APIs written with Go frameworks such as Gin (https://gin-gonic.github.io/gin/ ) to AWS Lambda and Amazon API Gateway. - awslabs/aws-lambda-go-api-proxy
| | damienradtke.com
3.8 parsecs away

Travel
| |
| | 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...
| | noteflakes.com
32.9 parsecs away

Travel
| My Open Source Ruby Gems - February 2022 Report - Noteflakes