Sobes.tech
Middle+

Tell me what you specifically did at [company]?

sobes.tech AI

Answer from AI

In the company, I was involved in developing backend services in Go, including designing REST APIs, optimizing performance, and working with databases. For example, I implemented microservices for processing large volumes of data, using goroutines and channels for efficient parallel processing. I also participated in writing unit tests and integration tests, ensuring stability and code quality.

Example of a simple HTTP server in Go:

package main

import (
    "fmt"
    "net/http"
)

func handler(w http.ResponseWriter, r *http.Request) {
    fmt.Fprintf(w, "Hello, World!")
}

func main() {
    http.HandleFunc("/", handler)
    http.ListenAndServe(":8080", nil)
}

I also handled CI/CD setup, monitoring, and logging of services.

Tell me what you specifically did at [company]… - sobes.tech