Hello, is there an intern job for Golang developer? I haven't work in cs profesionally but I used to make small projects which I sell on various leaker forums. Biggest project...
> Also, I think web go playground don't work well with this sort of thing. You need to run it from terminal or somewhere and insert a SIGINT. The SIGINT catcher somehow did t...
What's so special about io.Reader? A lot of decoder use io.Reader as an input instead of raw byte slice. I use regex to parse bytes from file (2-10mb), can I improve this usin...
When removing elements from slices, it is a norm to swap it with the last index right? But is there issues with deleting slices by swapping them with the first index like this...
Does this: a = a[n:] remove all the elements before n? Is it possible to restore them back? I thought I can restore them back by doing this: a = a[:] I'm trying to mutate a ...
They are faster in my observation. Also, is it possible to overdo capacity parameters when initiating slices?
I'm a little confused with slices in Golang. Is this method of deleting gc-safe?
Can I modify flag's on error func?
Why is golang's http gives "W/" etag while curl don't for the same url? Unlike curl, it also don't give content-length.
Is it true that each element have length property and that len() return that property instead of counting them?
Can I get the count of WaitGroup?
Does os.Chdir() changes the current dir gllobally? Sorry I don't know how to test it.
Does anyone know what the literal meaning of pc in runtime library?