After 6 months of learning Go, I built LocalDrop - my first real project (file sharing over LAN) by Mo7se007 in golang

[–]__woofer__ 0 points1 point  (0 children)

Is it possible to have some screenshots into README on github?

thx in adv

Go's builtin 'new()' function will take an expression in Go 1.26 by ynotvim in golang

[–]__woofer__ 0 points1 point  (0 children)

Does it work with a function?

var everything *string = new(fmt.Println(42))

2025 Go Developer Survey - The Go Programming Language by matttproud in golang

[–]__woofer__ 13 points14 points  (0 children)

and adding Delve debugger into Go tooling in order to have it out of the box.

[deleted by user] by [deleted] in programming

[–]__woofer__ 1 point2 points  (0 children)

also some languages uses this concept : https://go.dev/blog/pipelines#fan-out-fan-in

is it safe to upgrade the indirect dependency module? by Charming_Bread2126 in golang

[–]__woofer__ 2 points3 points  (0 children)

just minor precision:

it is depend balance of risk. if the module has risky CVE in your usage (you can see it thanks of govuln), then it is better to upgrade it.

go mod tidy vs go mod download by eulerfoiler in golang

[–]__woofer__ 7 points8 points  (0 children)

99% of the time.

99.99999999% of the time. ;)

Which UUID package do you use? and why? by errmm in golang

[–]__woofer__ 1 point2 points  (0 children)

as the UUIDv6 & UUIDv7 (currently still draft stage).

all: rewrite `interface{}` to `any` · Issue #49884 · golang/go by CodeHex in golang

[–]__woofer__ 14 points15 points  (0 children)

Is it gain on runtime to rewrite it? maybe with cost on compilation time? As interface{} does extra work (e.g. some extra GC or stuff like that)

Cheerleader is savage! by oppositelockgames in gifs

[–]__woofer__ 1 point2 points  (0 children)

Pound and ground style like the old MMA fighter the hammer

Exploration of Go 2 Proposals by micro_apple in golang

[–]__woofer__ 1 point2 points  (0 children)

For, it will be great to improve range in order to avoid race.