Sobes.tech

Embedded / IoT

Tell me, are there 6 Go developers, 2 front-end developers, 2 QA, and a PM in your team?

202

Describe a specific case of PostgreSQL optimization with chunking: what was before and what changed after?

199

Why is UPDATE in PostgreSQL essentially a DELETE and INSERT?

193

// What will the following code output and why? package main import "fmt" type Person struct { Name string } func changeName(person *Person) { person = &Person{ Name: "Alice", } } func main() { person := &Person{ Name: "Bob", } fmt.Println(person.Name) changeName(person) fmt.Println(person.Name) }

190

What are the steps involved in transforming Java code from source to execution?

186

How long will the execution take after optimization? Does it depend on the number of processor threads (GOMAXPROCS)?

186

Tell about your work experience — who you are, where you worked, what you did?

185

The application has started to slow down, GC pauses have increased by 20 times. What should I do?

177

Why is the Inbox pattern needed if the Outbox already guarantees delivery?

174

How to prevent overbooking through PostgreSQL when booking the last seat simultaneously?

171

How to organize partitioning of the events table with 2 billion rows, growing by 10 million rows per day, with frequent range date queries?

170
/3