Skip to content

Instantly share code, notes, and snippets.

View int3rlop3r's full-sized avatar
🎯
Focusing

Jonathan Fernandes int3rlop3r

🎯
Focusing
View GitHub Profile
@renthraysk
renthraysk / main.go
Last active June 24, 2020 19:12
Cancellation
package main
import (
"context"
"errors"
"fmt"
"log"
"net"
"net/http"
"os"
@artyom
artyom / chat.go
Created March 12, 2016 22:06
Example of interactive terminal in Go
package main
import (
"fmt"
"io"
"log"
"os"
"golang.org/x/crypto/ssh/terminal"
)
@un1t
un1t / parse-xml.go
Last active January 3, 2022 09:36
Golang XML stream parser
package main
// https://github.com/dps/go-xml-parse/blob/master/go-xml-parse.go
import (
"fmt"
"os"
"encoding/xml"
)