Status Updates From Go in Action
Go in Action by
Status Updates Showing 1-30 of 429
Xianshun Chen
is 84% done
chapter 8 not so useful, can just use "go doc"
— May 23, 2026 11:00PM
Add a comment
Xianshun Chen
is 65% done
buffered channel and unbuffered channel
— May 23, 2026 10:56PM
Add a comment
Xianshun Chen
is 61% done
import ("sync/atomic", "runtime")
var counter Int64 = 1
atomic.AddInt64(&counter, 1)
run.Gosched()
atomic.StoreInt64(&counter, 1)
atomic.LoadInt(64(&counter)
import ("sync", "runtime")
var mutex sync.Mutex
mutex.Lock {
value := 1
runtime.Gosched()
value := 2
}
mutex.Unlock()
— May 23, 2026 10:54PM
Add a comment
var counter Int64 = 1
atomic.AddInt64(&counter, 1)
run.Gosched()
atomic.StoreInt64(&counter, 1)
atomic.LoadInt(64(&counter)
import ("sync", "runtime")
var mutex sync.Mutex
mutex.Lock {
value := 1
runtime.Gosched()
value := 2
}
mutex.Unlock()
Xianshun Chen
is 60% done
var wg sync.WaitGroup
wg.Add(k)
wg.Wait()
— May 23, 2026 10:45PM
Add a comment
wg.Add(k)
wg.Wait()
Ashley Finafrock
is 9% done
egh, the author of this advanced reading copy was originally supposed to finish this in 2024, but has been stuck with not writing any chapters recently. I'll pivot to a different golang book for now and read Go in Action, 2nd Edition, closer to when all chapters are completed...
— Jan 22, 2025 02:08PM
Add a comment
Ashley Finafrock
is 9% done
I'm currently reading the 2nd edition of Go in Actiom, that's still unpublished as of May 2024, not the 1st edition. For some reason goodreads search takes me to 1st edition, even searching by ISBN
— May 03, 2024 01:16AM
Add a comment










