Golang Shines
Author

Golang Shines

We share daily the latest Golang technical articles, practical resources, language news, tutorials, and real-world projects to help everyone learn and improve.

166
Articles
0
Likes
552
Views
0
Comments
Recent Articles

Latest from Golang Shines

100 recent articles max
Golang Shines
Golang Shines
Jul 12, 2026 · Operations

10 Essential Linux Ops Tools Every Engineer Should Master

This article introduces ten widely used Linux operations tools—Shell scripts, Git, Ansible, Prometheus, Grafana, Docker, Kubernetes, Nginx, ELK Stack, and Zabbix—detailing their functions, typical scenarios, advantages, concrete usage examples, and links to learning resources for each.

AnsibleDockerGit
0 likes · 9 min read
10 Essential Linux Ops Tools Every Engineer Should Master
Golang Shines
Golang Shines
Jul 11, 2026 · Fundamentals

What Is 127.0.0.2? Understanding Loopback Addresses Beyond localhost

The article explains that the entire 127.0.0.0/8 block consists of loopback addresses, shows how any address like 127.0.0.2 responds to ping, and demonstrates practical uses such as isolating services on one host, simulating clusters, and the special role of 127.0.1.1 in Debian‑based systems.

127.0.0.0/8Linux networkinghosts file
0 likes · 7 min read
What Is 127.0.0.2? Understanding Loopback Addresses Beyond localhost
Golang Shines
Golang Shines
Jul 7, 2026 · Operations

Mastering Linux Server Time Synchronization with NTP and Chrony: Best Practices

This guide explains why time synchronization is a critical yet often overlooked part of Linux operations, outlines common failure scenarios, and provides a step‑by‑step methodology for configuring, verifying, and troubleshooting NTP/chrony across physical servers, virtual machines, containers, and Kubernetes clusters.

ComplianceKubernetesLinux
0 likes · 42 min read
Mastering Linux Server Time Synchronization with NTP and Chrony: Best Practices
Golang Shines
Golang Shines
Jul 6, 2026 · Backend Development

Why a Simple for‑range Over a Go Channel Can Leak Goroutines

The article explains how using a for‑range loop to read from an unclosed Go channel can cause a goroutine to block forever, demonstrates the issue with a minimal example, compares explicit receives with for‑range, and shows that closing the channel is the only reliable fix, even for buffered channels.

Gochannelclose
0 likes · 7 min read
Why a Simple for‑range Over a Go Channel Can Leak Goroutines
Golang Shines
Golang Shines
Jul 5, 2026 · Operations

Simple Foolproof Zabbix Deployment Guide

This step‑by‑step tutorial shows how to quickly install Zabbix using the VOF package for learning purposes, covering download, system and network configuration, and basic access testing, while warning that it is not suited for production environments.

LinuxVOFdeployment
0 likes · 3 min read
Simple Foolproof Zabbix Deployment Guide
Golang Shines
Golang Shines
Jul 4, 2026 · Backend Development

Quick Reference Guide to Common Go Commands

This article provides a concise cheat‑sheet of the most frequently used Go commands—go build, go install, go get, go doc, godoc, go test, go list, and go fix—explaining each command’s purpose, typical usage, and key flags, with visual examples.

Gogo buildgo doc
0 likes · 2 min read
Quick Reference Guide to Common Go Commands