Skip to content

Instantly share code, notes, and snippets.

View ReaganCn's full-sized avatar
🎯
Cutting corners is not cutting edge

Reagan Charana ReaganCn

🎯
Cutting corners is not cutting edge
View GitHub Profile
@joshbuchea
joshbuchea / semantic-commit-messages.md
Last active July 22, 2024 06:03
Semantic Commit Messages

Semantic Commit Messages

See how a minor change to your commit message style can make you a better programmer.

Format: <type>(<scope>): <subject>

<scope> is optional

Example

@xjdrew
xjdrew / client.go
Last active June 20, 2024 07:39
golang tls client and server, require and verify certificate in double direction
package main
import (
"crypto/tls"
"crypto/x509"
"flag"
"io"
"io/ioutil"
"log"
"os"