Posts

Showing posts with the label Go

How to load multiple language plugins in Golang?

Image
Download

In Golang, Signup Form Validation

Image
Download

Go lang Tutorial. Abstraction Using Interface.

Image
Download

How to make simple http server with Golang?

Image
Download

Using SQLite3 With Golang

Image
Download

In Go Lang, How To Make Threads(Use Go Routines)?

Image
Download

How to make HTTP Post request with Go Lang?

Image
  package main import "net/http" import "io/ioutil" import "net/url" func main(){ data := url.Values{} data.Set("name", "value") data.Set("x", "3") data.Set("y", "4") link := "https://unconcealing-gage.000webhostapp.com/add.php" println("connecting ..") println(link) resp, err := http.PostForm(link, data) if nil != err { panic(err) return } defer resp.Body.Close() body, err := ioutil.ReadAll(resp.Body) if nil != err { panic(err) return } println(string(body)) } Download

✔ Go lang ⚡ Reading user input from keyboard or stdin 🔥 Tecq Mate Tutorials

Image
package main import "bufio" import "os" func main(){ rd := bufio.NewReader(os.Stdin) print("type & enter: ") ln, er := rd.ReadString('\n') if nil != er { panic(er) } print("you entered: ", ln) }

✔ Go lang ⚡ Sum of all cmd/bash arguments 🔥 Tecq Mate Tutorials ✌

Image

✔ Speed Test ⚡PHP v/s Python v/s Golang v/s C 🔥 Tecq Mate Tutorials ✌

Image
Download

✔ Go Lang Tutorial ⚡ Hello World 🔥 Tecq Mate Tutorials ✌

Image