Tag: Go
-
Post Views: 13 Recently, I have been unemployed at home, while silently running my own blog while looking for remote work intermittently. After leaving the rhythm of punch-in in the workplace, I often struggle: should I be a freelancer to take an order, or should I develop and start a business independently, or find a full-time remote job? After thinking…
-
Post Views: 15 InPrevious articleWe have verified that the large language model is not competent for the precise matching of a large amount of structured data. To be completely cleared /en/tag/ For the Chinese redundant URL under the path, we must return to the engineering scheme. This article will be used as a practical tutorial, how to start from scratch,…
-
Post Views: 18 write in front Recently I tried to use the trae cn editor on Ubuntu 26.04, with the docker container to develop a Go + Gin project (go-gin-learning). The whole process stepped on some pits, but I also ran through a set of workflow that was relatively easy. This article is a complete record, I hope it can…
-
Post Views: 21 write in front This blog is just a simple record: I tossed the process of Microsoft’s official Dev Containers extension in Trae CN.Let’s talk about the conclusion first: Tossing around and discovering TRAE CN currently (June 2026)Not supported yet dev containers. So this article will not give any ‘perfect solution’, and only leave an introduction in the…
-
Post Views: 18 Seamlessly migrate from Windows WSL2 to Ubuntu bare metal, build Go development environments based on existing MySQL/Redis containers, and access custom networks. 📌 Preface I have been learning in Windows 10 + WSL2 before go-gin-learning Project, now to brand new Ubuntu 26.04 system. I hope to continue to use Docker to isolate the sending environment, and at…
-
Post Views: 27 Recently, I was tossing about the Baidu indexing problem of a WordPress site, and by the way, I experienced a new AI IDE in China, and recorded the process, hoping to help everyone. Cause: Baidu Sitemap commit has been unavailable My website shuijingwanwq.com In the Baidu search resource platform, the Sitemap submission function has always been displayed:…
-
Post Views: 22 In the concurrent programming of Go language, goroutine is a lightweight thread implementation. However, if panic occurs in goroutine and is not captured, the entire program will crash. In this article, we will dive into two cases of using and not using Recover in depth through specific examples, and we will dive into how to properly handle…
-
Post Views: 18 This series of articles records the author’s experience and practical experience in learning the Go standard library. This article is from the built-in template engine of Go Html/Template And text/template Start with, take you to quickly grasp the core concepts and practical usage, and intersperse the developer perspective of PHP to Go. Introduction: From PHP Mix to…
-
Post Views: 19 problem background In Go language, when we read data from an unclosed channel, the read operation blocks if there is no data in the channel. The traditional practice is to traverse the channel until it is closed, but in actual development, we may not be able to determine when the channel should be turned off, or when…
-
Post Views: 23 In programming learning, judging prime numbers is a classic algorithm problem. When the amount of data is small, the traditional serial loop is enough to cope; but when the amount of data is expanded to hundreds of thousands or more, how to improve the computing efficiency has become the key. Based on the Go language, this paper…