Why Go Rocks for Building a Lua Interpreter in 7 minutes or less| www.zombiezen.com
The JSON query language behind Kyverno.| Kyverno
This week we do small refactoring to illustrate how we can improve code readability and reduce cognitive load.| Jakub Jarosz
Robust Wavefront OBJ model parsing in C| nullprogram.com
How I solved the One Billion Row Challenge (1BRC) in Go nine times, from a simple unoptimised version that takes 1 minute 45 seconds, to an optimised and parallelised version that takes 3.4 seconds.| benhoyt.com
Ricerca CTF 2023 にチーム TSG として参加しました。全チーム中 10 位で、また賞金獲得条件を満たす国内の学生チームの中では 1 位となりました。 私は主に Web の問題を解いていました。そのうち ps converter の writeup を書いていきます。| ねこも手を借りたい
To compare two strings in Go (Golang), use the comparison operators ==, !=, >=, <=, <, >. Alternatively, you can use the 'strings.Compare()' function| gosamples.dev
To repeat a string in Go (Golang), use the strings.Repeat() function. It multiplies the input string a specified number of times| gosamples.dev
Learn how to generate a random string of a fixed length| gosamples.dev
Learn the differences between string concatenation methods| gosamples.dev
Learn how to remove all redundant whitespaces from a string| gosamples.dev
To convert a string to uppercase in Go (Golang), use the 'strings.ToUpper()' function. Check out the examples| gosamples.dev
To get a hostname or domain from a URL in Go, read the url string with the url.Parse() function, and then use the url.Hostname() method to get the host| gosamples.dev
How to add examples, which double as tests, to your packages.| go.dev