Things on this page are fragmentary and immature notes/thoughts of the author. Please read with your own judgement!
Get Directory Information in Golang
Things on this page are fragmentary and immature notes/thoughts of the author. Please read with your own judgement!
Get Information of User in Golang
Things on this page are fragmentary and immature notes/thoughts of the author. Please read with your own judgement!
Get Information of the Current User¶
user.Current()
returns information of the current (real) user.
If the code is run by a non-root user named some_user
on Linux,
then information of some_user
is returned.
However,
if some_user
has sudo
Hands on Array in Golang
Things on this page are fragmentary and immature notes/thoughts of the author. Please read with your own judgement!
Comment¶
Array in Golang is similar to Array in Rust in the sense that the length of an array is part of its type and must be determined at compile time.
Array is a primitive (value) type in Golang. When assigned to another variable or passed as a parameter, it is copied! For this reason, array is not a good interface to use. Slice is prefer to array for function parameters.
Format Strings in Golang
Things on this page are fragmentary and immature notes/thoughts of the author. Please read with your own judgement!