Skip to content

Instantly share code, notes, and snippets.

View maxiride's full-sized avatar
😃
⛵🕶️😎🧑‍💻

Federico D'Eredità maxiride

😃
⛵🕶️😎🧑‍💻
  • Wildly Freelancing
View GitHub Profile
@maxiride
maxiride / commit-emoji.md
Created March 5, 2021 08:45 — forked from silencesys/commit-emoji.md
List of emoji for git commits.

Git Commit Message

All Git Commit Messages MUST meet with this Text Format:

:emoji: Subject
(Only One NewLine)
Message Body
(Only One NewLine)
Ref <###>
@maxiride
maxiride / main.go
Created June 8, 2020 12:06 — forked from filewalkwithme/main.go
Listening multiple ports on golang http servers
package main
import (
"net/http"
)
func main() {
finish := make(chan bool)
server8001 := http.NewServeMux()