Tootfinder

Opt-in global Mastodon full text search. Join the index!

@vyskocilm@witter.cz
2026-05-28 13:20:04

Every HN thread about Go be like
> Reg: All right, but apart from the standard library, the concurrency, context, static binaries, integrated testing, cross-compilation, modules, an excellent crypto package and synctest! What have Go ever done for us?
> Xerces: fast compilation?
> Reg: Oh. fast compilation? Shut up!
#go

@jamesthebard@social.linux.pizza
2026-05-25 20:47:13

Alright, time to write some code and implement some Z80 registers.
#z80 #golang

A screenshot of the Z80 CPU user manual.
@jamesthebard@social.linux.pizza
2026-05-25 17:30:43

Hrmm, I feel like this might eventually lead to pain...however, will probably be very useful once I get farther down the road writing this Z80 emulator.
#z80 #golang

A screenshot showing a slice holding functions then indexing off the slice and using that to return the value of that specific function.
@lepire@social.linux.pizza
2026-05-15 22:54:01

Sydney golang folks: a colleague of mine has put a ton of effort into organising the next #golang Sydney meetup. Please consider coming along to support!
It's on the 21 May 2026, 6 pm in North Sydney.
Free to attend, details on Golang-Syd's Meetup page:

@vyskocilm@witter.cz
2026-04-22 09:11:10

Finally found a real use for go.work and it's amazing - code is split across several git repositories and all modules depends on each other. This is so much better than go.mod replace.
#go #golang

@vyskocilm@witter.cz
2026-06-15 07:59:33

TIL GOWORK=off is another option when go behaves "weird" wrt dependencies.
#golang

@jamesthebard@social.linux.pizza
2026-04-13 22:54:37

So, the Palmetto Cyber Defense Competition is over and it was a blast even if I'm completely exhausted. However, figured I'd post some code I actually wrote and ran in the competition:
```go
package main
func main() {
for i := 0; i < 8; i {
go func() {
for {
}
}()
}
for {
}
}
```