• 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 Basics: Functions
go2021-11-25
Abhinav PandeyAbhinav Pandey

Go Basics: Functions

In the last article, we discussed the syntax of variables and constants. Now let's look at the syntax...

GOing down the rabbit hole
googlecloud2021-11-23
ujjaujja

GOing down the rabbit hole

I recently upgraded a service written in golang which was deployed using Google's AppEngine and I...

Go Basics: Variables
go2021-11-22
Abhinav PandeyAbhinav Pandey

Go Basics: Variables

In the last article, I gave a small introduction to programming with Go, where we saw the tiniest...

Design Patterns in Kubernetes Codebase
go2021-11-23
FarhanFarhan

Design Patterns in Kubernetes Codebase

Published originally on my blog post here I love reading open source code, you get to learn...

How is new() different in Go?
go2021-11-21
BhanuReddyBhanuReddy

How is new() different in Go?

what is new()? new() is a builtin function, used to create zero values(doesn't initializes...

Getting started with Go
go2021-11-20
Abhinav PandeyAbhinav Pandey

Getting started with Go

Golang is a programming language that popularly used to build web applications. In this article, I'm...

GOLANG- MSSQL CRUD OPERATIONS
go2021-11-20
Muhammet TanMuhammet Tan

GOLANG- MSSQL CRUD OPERATIONS

In this tutorial, you will learn basic crud operations in golang. Project structre looks like...

How to write three times fewer lines of code when doing load testing
programming2021-11-17
tarantooltarantool

How to write three times fewer lines of code when doing load testing

The key concept of load testing is automating everything that can be automated. Take a tool, write a...

How to Minimize Go Apps Container Image
docker2021-11-19
Clavin JuneClavin June

How to Minimize Go Apps Container Image

Introduction Image is one necessary thing that you must plan when you want to...

Some tips and bothers for Go 1.18 Generics
go2021-11-17
Kei KamikawaKei Kamikawa

Some tips and bothers for Go 1.18 Generics

As of 2021-11-17, there is probably no cache library that uses the Go 1.18 Generics feature. I've...

4 Things to Consider When Choosing a Go API Framework
go2021-11-16
Mark PhelpsMark Phelps

4 Things to Consider When Choosing a Go API Framework

This post originally appeared on my personal blog. So you've decided to write an API service in...

Speed Up Golang Test Execution Time
go2021-11-15
Clavin JuneClavin June

Speed Up Golang Test Execution Time

Introduction Code Testing is a requirement for production codes. Some people ignore it,...

Top 10 trending github repos of the week😘.
javascript2021-11-19
Kavindu SanthusaKavindu Santhusa

Top 10 trending github repos of the week😘.

Most popular trending Github repos in this week.

Building a monolithic application with Go and React
webdev2021-11-14
Shin'ya UeokaShin'ya Ueoka

Building a monolithic application with Go and React

The ways and practices of building web services are more and more diversified today due to the...

Design pattern in golang: builder
bahasa2021-11-14
ynwdynwd

Design pattern in golang: builder

Builder pattern dipakai untuk membuat sebuah instance dari sebuah struct -- beserta dengan semua...

Measuring mutex, channel and waitGroup performance
benchmark2021-11-13
ynwdynwd

Measuring mutex, channel and waitGroup performance

function concurrency getText no getTextWithChannel yes getTextWithWaitGroup yes getTextW...