• OPENDEV HUB V1.0• API STATUS: 100% OPERATIONAL• CLIENT ENGINE: LOADED & CACHED• TRENDING TECH: TAILWIND V4, NEXT.JS 16, RUST, GO• ZERO AUTH REQUIRED
OPENDEVHUB

Command Palette

Search for a command to run...

DEVELOPER RELEASES

DEVELOPER NEWS STREAM

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

Go Course: Flow Control
go2022-07-11
Karan Pratap SinghKaran Pratap Singh

Go Course: Flow Control

Let's talk about flow control, starting with if/else. If/Else This works pretty much the...

Which Programming language is faster at reading?
go2022-07-09
Fredy SandovalFredy Sandoval

Which Programming language is faster at reading?

Let’s say we have the same task written in the different programming languages, the questions is:...

Go programming API's and How I handle CORS.
go2022-07-10
Peter BPeter B

Go 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...

Go Course: String Formatting
go2022-07-10
Karan Pratap SinghKaran Pratap Singh

Go Course: String Formatting

In this tutorial, we will learn about string formatting or sometimes also known as templating. fmt...

Building turbo-ledger: A Scalable Ledger with Go and Redis
redis2022-07-09
Rafik NaccacheRafik Naccache

Building 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...

Go Course: Variables and Data Types
go2022-07-09
Karan Pratap SinghKaran Pratap Singh

Go Course: Variables and Data Types

In this tutorial, we will learn about variables. We will also learn about the different data types...

Apptron Demo: Webview Window Building Block
showdev2022-07-08
Jeff LindsayJeff Lindsay

Apptron 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.

Go Course: Hello world
go2022-07-08
Karan Pratap SinghKaran Pratap Singh

Go Course: Hello world

Let's write our first hello world program, we can start by initializing a module. For that, we can...

Lightweight event management, dispatch tool library implemented by Go
programming2022-07-07
InhereInhere

Lightweight event management, dispatch tool library implemented by Go

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

Tracing Gorm queries with OpenCensus & Google Cloud Tracing
database2022-07-07
incident.ioincident.io

Tracing 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...

4 cases of reading and writing files in Go
go2022-07-07
OnelinerhubOnelinerhub

4 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
go2022-07-07
Elton MinettoElton Minetto

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...

Go Course: Installation and Setup
go2022-07-07
Karan Pratap SinghKaran Pratap Singh

Go Course: Installation and Setup

In this tutorial, we will install Go and setup our code editor. Download We can install...

Parse a JSON into struct
go2022-07-07
SamSam

Parse a JSON into struct

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

go : Calculate the distance and format unit from the current time based on the timestamp
go2022-07-07
houtizonghoutizong

go : Calculate the distance and format unit from the current time based on the timestamp

//根据时间戳计算与当前时间的间距及格式化单位 func FormatDate(in string) (out string) { timeUnix := time.Now().Unix()...

Go Course: What is Go?
go2022-07-05
Karan Pratap SinghKaran Pratap Singh

Go Course: What is Go?

Go (also known as Golang) is a programming language developed at Google in 2007 and open-sourced in...