I bought SSL Certs from DomainEsia.com and they resale SSL Certs from Comodo http://www.comodo.com/
These are the steps I went through to set up an SSL cert.
I bought SSL Certs from DomainEsia.com and they resale SSL Certs from Comodo http://www.comodo.com/
These are the steps I went through to set up an SSL cert.
MongoDB Data
[{
"title" : "Hello World",
"slug" : "hello-world",
"short_description" : "Hello World is the standard ritual for us when learning new programming language. It's good for you mind and soul hahaha!",
"tags" : [
{
"tag" : "beginner"
},
package main | |
import "fmt" | |
func main() { | |
fmt.Println("hello, world") | |
} |
package main | |
import ( | |
"io" | |
"log" | |
"net/http" | |
) | |
func Default(w http.ResponseWriter, r *http.Request) { | |
if r.URL.Path != "/" { |
package main | |
import ( | |
"io" | |
"log" | |
"net/http" | |
) | |
func Default(w http.ResponseWriter, r *http.Request) { | |
if r.URL.Path != "/" { |
Dear Go designers, | |
I love using Go because it's easy to use and easy to deploy. | |
I hope Go will become very popular language in the future. | |
Best regards, | |
Sony AK | |
[email protected] |
package main | |
import ( | |
"fmt" | |
"io/ioutil" | |
"log" | |
) | |
func main() { | |
fileContent, err := ioutil.ReadFile("my-text-file.txt") |
package main | |
import ( | |
"io" | |
"log" | |
"net/http" | |
) | |
func serviceDefault(w http.ResponseWriter, r *http.Request) { | |
if r.URL.Path != "/" { |
package main | |
import ( | |
"fmt" | |
"github.com/gorilla/mux" | |
"log" | |
"net/http" | |
) | |
func Home(w http.ResponseWriter, r *http.Request) { |