DEVELOPER NEWS STREAM
Direct logs, engine updates, and framework notifications parsed from curated RSS feeds and announcements, updated hourly.

Karan Pratap SinghGo Course: Flow Control
Let's talk about flow control, starting with if/else. If/Else This works pretty much the...

Fredy SandovalWhich Programming language is faster at reading?
Let’s say we have the same task written in the different programming languages, the questions is:...

Peter BGo programming API's and How I handle CORS.
The best way to learn is to teach so Here I go. We are going to write a simple Go...

Karan Pratap SinghGo Course: String Formatting
In this tutorial, we will learn about string formatting or sometimes also known as templating. fmt...

Rafik NaccacheBuilding turbo-ledger: A Scalable Ledger with Go and Redis
turbo-ledger: Why and How What's a ledger and why should we bother? In a...

Karan Pratap SinghGo Course: Variables and Data Types
In this tutorial, we will learn about variables. We will also learn about the different data types...

Jeff LindsayApptron Demo: Webview Window Building Block
In this demo, I use the Apptron API from Go to build a simple birthday card application defined by HTML and CSS.

Karan Pratap SinghGo Course: Hello world
Let's write our first hello world program, we can start by initializing a module. For that, we can...

InhereLightweight event management, dispatch tool library implemented by Go
event - Lightweight event management, dispatch tool library implemented by Go Support for custom...

incident.ioTracing Gorm queries with OpenCensus & Google Cloud Tracing
At incident.io we use gorm.io as the ORM library for our Postgres database, it's a really powerful...

Onelinerhub4 cases of reading and writing files in Go
1. How to create empty file in Go package main import "os" func main() { file, _ :=...

Error handling of CLI applications in Golang
When developing some CLI applications in Go, I always consider the main.go file as "the input and...

Karan Pratap SinghGo Course: Installation and Setup
In this tutorial, we will install Go and setup our code editor. Download We can install...

SamParse a JSON into struct
This short snippet shows you how to parse a JSON with a generic, random structure, stored in a...

houtizonggo : Calculate the distance and format unit from the current time based on the timestamp
//根据时间戳计算与当前时间的间距及格式化单位 func FormatDate(in string) (out string) { timeUnix := time.Now().Unix()...

Karan Pratap SinghGo Course: What is Go?
Go (also known as Golang) is a programming language developed at Google in 2007 and open-sourced in...