Skip to content

Instantly share code, notes, and snippets.

@gilbertchen
gilbertchen / acrosync_cla
Created August 17, 2017 02:08
Contributor License Agreement for Acrosync
###Acrosync Individual Contributor License Agreement
Thank you for your interest in contributing to software projects (“Projects”) made available by Acrosync LLC (“Acrosync”). This Individual Contributor License Agreement (“Agreement”) sets out the terms governing any source code, object code, bug fixes, configuration changes, tools, specifications, documentation, data, materials, feedback, information or other works of authorship that you submit or have submitted, in any form and in any manner, to Acrosync in respect of any of the Projects (collectively “Contributions”). If you have any questions respecting this Agreement, please contact [email protected].
You agree that the following terms apply to all of your past, present and future Contributions. Except for the licenses granted in this Agreement, you retain all of your right, title and interest in and to your Contributions.
Copyright License. You hereby grant, and agree to grant, to Acrosync a non-exclusive, perpetual, irrevocable, worldwide, fully-p
@gilbertchen
gilbertchen / client.go
Created April 7, 2019 02:24 — forked from spikebike/client.go
TLS server and client
package main
import (
"crypto/tls"
"crypto/x509"
"fmt"
"io"
"log"
)
@gilbertchen
gilbertchen / ssl_smtp_example.go
Created July 17, 2019 03:32 — forked from chrisgillis/ssl_smtp_example.go
Golang SSL SMTP Example
package main
import (
"fmt"
"log"
"net"
"net/mail"
"net/smtp"
"crypto/tls"
)