Golang
Is it possible to take the address of an element obtained by index from a map with int key and int value?
Is it possible to read from a nil channel?
Situation: tight deadline, editing in someone else's module, reviewer from another team points out serious technical risks in the code. What to do, considering the deployment is already tomorrow?
Why are you looking for a new job, what is wrong with your current one, and what do you expect from a new company?
What about the standard task assignment algorithm in Jira did not satisfy the customer, leading to the need for a custom solution?
Imagine a situation: you cannot find common ground with a tester in your team who constantly 'picks on you'. How will you interact?
What is go tool pprof and how is it used?
Which category of developers do you consider yourself: a 'task executor' or a 'team superstar'?
How to see what the program does when it starts? How to diagnose the cause of a crash?
Imagine a situation: your code crashes on production, the team is emotional, blaming you, and the team lead did not oversee the review. What is your reaction?
Does the underscore (_) in import statement serve a purpose?
Can make be used for a string (make(string))?
Does calling runtime.Gosched() always immediately yield the processor to another goroutine?
// isPalindrome checks if a string is a palindrome. // Only letters and digits are considered (alphanumeric characters), case-insensitive comparison. // O(1) in memory + O(n) in time // s := "racecar" func isPalindrome(s string) bool { }
// find problems in code.
Why are backticks used in character check methods here? What is the difference between backticks, double quotes, and single quotes?
Can a function return a pointer to a local variable, and is it safe?
How can you protect yourself from the poor outcome of this dubious feature?
Why can't port 80 be occupied without permissions? What is the group of such ports called?
How many bytes does a structure with fields int32, byte, int64 (in that order) occupy?