1 points posted by John Doak ⌘ Read more
1 points posted by John Doak ⌘ Read more
1 points posted by Ayeree ⌘ Read more
1 points posted by golangch ⌘ Read more
1 points posted by xuri ⌘ Read more
1 points posted by golangch ⌘ Read more
1 points posted by roblaszczak ⌘ Read more
1 points posted by cbrgm ⌘ Read more
1 points posted by golangch ⌘ Read more
1 points posted by golangch ⌘ Read more
The gocoverstats package just got a v0.0.5 security release on its golang.org dependencies and a minor change:
- golang.org/x/tools upgraded from v0.1.10 to v0.2 (security release on tools/crypto)
- github.com/google/go-cmp upgraded from 0.5.8 to 0.5.9 (test dependency non-security release)
One clarification about the default build is that, since it requires at least Go 1.18, paths and symbols are trimmed in the compiled output.
1 points poste ... ⌘ Read more
1 points posted by teivah ⌘ Read more
1 points posted by Elton Minetto ⌘ Read more
The tiny fgm/izidic dependency injection container just got a new release: v0.0.2 contains new features and QA improvements.
- feature: new method Container.Names to list container keys
- feature: circular dependency detection, avoiding stack overflows
- qa: moved to new domain github.com/fgm/izidic to support Github actions
- qa: added linting checks: gofmt, go vet, staticcheck
- qa: added security scanning: CodeQL
- ... ⌘ Read more
Flagr is a Go-based feature flags service, which is by default deployed as a Docker image. However, the image is not built for darwin/arm64/8. Here is how to run the server without going through a source build. 1 points posted by FGM ⌘ Read more
The “High Efficiency Image File Format” or HEIF is an image format often used by Apple devices. Although called HEIF, the file types are often heic ( _presumably the ‘c’ stands for container?_)
They use a similar encoding method of video formats and are deemed
better quality and lower file size than standard jpeg files. 1 points posted by Edd Turtle ⌘ Read more_
1 points posted by golangch ⌘ Read more
Strings are a fundamental building block of programming. Go string is a sequence of variable-width characters where each character is represented by one or more bytes, normally using the UTF-8 encoding. You can find quick solutions to common string problems that arise during writing golang programs from this valuable resource. 1 points posted by Ayeree ⌘ Read more
1 points posted by teivah ⌘ Read more
1 points posted by golangch ⌘ Read more
1 points posted by madflojo ⌘ Read more
1 points posted by Elton Minetto ⌘ Read more
1 points posted by teivah ⌘ Read more
1 points posted by golangch ⌘ Read more
1 points posted by teivah ⌘ Read more
1 points posted by xuri ⌘ Read more
1 points posted by johnsiilver ⌘ Read more
1 points posted by golangch ⌘ Read more
1 points posted by faabiosr ⌘ Read more
1 points posted by johnsiilver ⌘ Read more
1 points posted by golangch ⌘ Read more
1 points posted by Amir ⌘ Read more
1 points posted by Elton Minetto ⌘ Read more
1 points posted by Sascha Andres ⌘ Read more
1 points posted by Sascha Andres ⌘ Read more
1 points posted by Mariano ⌘ Read more
1 points posted by golangch ⌘ Read more
1 points posted by Mohammed Al Ashaal ⌘ Read more
context.Context
values1 points posted by Amir ⌘ Read more
1 points posted by golangch ⌘ Read more
Now support ing up to 1.18.4 1 points posted by Sascha Andres ⌘ Read more
In the book you will find:
\\* The basics of Go (including the 1.18 generics addition)
\\* Using Go with various encoding formats
\\* Building basic REST and gRPC services
\\* Applying Go to automate local system tasks
\\* Utilizing Go to automate those same tasks on thousands of machines
\\* Building a ... ⌘ Read more
In the book you will find:
\\\\* The basics of Go (including the 1.18 generics addition)
\\\\* Using Go with various encoding formats
\\\\* Building basic REST and gRPC services
\\\\* Applying Go to automate local system tasks
\\\\* Utilizing Go to automate those same tasks on thousands of machines
\\\\* Building a ... ⌘ Read more
1 points posted by Elton Minetto ⌘ Read more
1 points posted by Mohammed Al Ashaal ⌘ Read more
1 points posted by madflojo ⌘ Read more
1 points posted by golangch ⌘ Read more
I'm tring to make this package support generics. 1 points posted by pj ⌘ Read more
1 points posted by Amir ⌘ Read more
1 points posted by golangch ⌘ Read more
1 points posted by golangch ⌘ Read more
Sometimes, tests can succeed on the first run and fail on subsequent ones, or with the -shuffle flag. But then, how can one debug them using the builtin Delve in GoLand while run configurations only run tests once ? 1 points posted by FGM ⌘ Read more
1 points posted by Elton Minetto ⌘ Read more
1 points posted by golangch ⌘ Read more
1 points posted by roblaszczak ⌘ Read more
1 points posted by golangch ⌘ Read more
1 points posted by madflojo ⌘ Read more
Parfois, des tests peuvent réussir à la première passe et échouer à la suivante, ou dans un autre ordre. Mais comment les déboguer avec Delve et GoLand alors que les configurations d'exécution n'exécutent les tests qu'une seule fois ? 1 points posted by FGM ⌘ Read more
1 points posted by golangch ⌘ Read more
1 points posted by m110 ⌘ Read more
1 points posted by golangch ⌘ Read more
Because one cannot always modify source code to include a library to load the environment from a file, and doing it from a shell is more than arcane, I wrote this tiny \\
envrun\\
command: it will run you command with environment defaults loaded from \\.env\\
or any env file specified, without having to modify the command itself. 1 points posted by FGM ⌘ Read more
Because one cannot always modify source code to include a library to load the environment from a file, and doing it from a shell is more than arcane, I wrote this tiny \
envrun\
command: it will run you command with environment defaults loaded from \.env\
or any env file specified, without having to modify the command itself. 1 points posted by FGM ⌘ Read more
Gocoverstats, the tool allowing repository owners to gather and plot test coverage results and obtain coverage badges on Gitlab / Github without resorting to a coverage SaaS, got a new release including:
- report coverage at the statement level (like go tool) or line of code level
- report weighted (by package size) or unweighted averages for global coverage badges
- new format option -percent making it simpler to include in CI pipelines.
1 points posted by FGM ⌘ Read more
3 points posted by tomf ⌘ Read more
Learning to build a Beautifier JSON online service in Go and make it run in the browser with Webassembly 1 points posted by IVAN CORRALES SOLERA ⌘ Read more
1 points posted by golangch ⌘ Read more
1 points posted by golangch ⌘ Read more
1 points posted by cbrgm ⌘ Read more
1 points posted by Everton Marques ⌘ Read more
3 points posted by kenny ⌘ Read more
1 points posted by golangch ⌘ Read more
1 points posted by Mohammed Al Ashaal ⌘ Read more
1 points posted by Everton Marques ⌘ Read more
1 points posted by golangch ⌘ Read more
1 points posted by pj ⌘ Read more
Note: due to an issue no darwin build published for 1.18.1 at the time of writing 1 points posted by Sascha Andres ⌘ Read more
3 points posted by tomf ⌘ Read more
1 points posted by xuri ⌘ Read more
1 points posted by golangch ⌘ Read more
1 points posted by pj ⌘ Read more
A simple command-line tool written in Go that sets the terminal title. Useful for naming your various Terminal windows as you work on multiple things at the same time and need a way to quickly and easily identify which Terminal is which
1 points posted by James Mills ⌘ Read more
1 points posted by golangch ⌘ Read more
1 points posted by pj ⌘ Read more
1 points posted by golangch ⌘ Read more
1 points posted by golangch ⌘ Read more
1 points posted by Sascha Andres ⌘ Read more
1 points posted by tomf ⌘ Read more
1 points posted by cbrgm ⌘ Read more
1 points posted by golangch ⌘ Read more
1 points posted by johnsiilver ⌘ Read more
1 points posted by Elton Minetto ⌘ Read more
update-golang is a script to easily fetch and install new Golang releases with minimum system intrusion.
When you need to quickly boot up a Golang binary release into a system.
The script can automatically detect the latest Golang release.
This release updates the URL for retrieving Go release list.
Full details: https://github.com/udhos/update-golang 1 point ... ⌘ Read more
Are you sick & tired of creating template repositories that nobody wants to use? It’s not your fault, the problem is the Git Repositories servers such as Github, Gitlab, or Bitbucket don’t provide a handy mechanism to take advantage of Template Repositories...
I’m happy to announce to you that a very first (but functional) release Tempaltizer is already live!
Code and documentation: https://github.com/wesovilabs/templatizer
Demo: https://www.youtube.com/w ... ⌘ Read more
How to create CLI programs with multiple commands, flags and subcommands, and do it fast and simply?
google/subcommands makes it a breeze.
Let us see how.
1 points posted by FGM ⌘ Read more
Go 1.18 is about to be released (or it is already depending when you're reading this). One of the big things in it are generics. Axel Wagner will introduce us to generics using a practical example. 1 points posted by Sascha Andres ⌘ Read more
1 points posted by Everton Marques ⌘ Read more
1 points posted by plutov ⌘ Read more
1 points posted by golangch ⌘ Read more
1 points posted by plutov ⌘ Read more
Learn to build your own DSL (Domain Specific Language) with HCL (HashiCorp Configuration Language) 1 points posted by IVAN CORRALES SOLERA ⌘ Read more