GO BACKEND DEVELOPER

Maxim Zolotoy

I am Maxim Zolotoy (Max Zolotoy), a Go (Golang) backend developer focused on domain logic, APIs and data, with explicit invariants and reliable systems.

package main

func main() {
  profile := []byte{
    0x6d, 0x61, 0x78, 0x7a, 0x6f, 0x6c,
    0x6f, 0x74, 0x6f, 0x79, 0x2e, 0x63,
    0x6f, 0x6d, 0x20, 0x2d, 0x20, 0x67,
    0x6f, 0x20, 0x62, 0x61, 0x63, 0x6b,
    0x65, 0x6e, 0x64, 0x20, 0x64, 0x65,
    0x76, 0x65, 0x6c, 0x6f, 0x70, 0x65,
    0x72,
  }

  println(string(profile))
}
01 / ABOUT

An engineering mindset without unnecessary noise.

My main focus is Go backend development. In learning projects I work through domain modelling, order and payment lifecycles, architectural boundaries and data persistence. This site is a static frontend and also a playground for interaction and deployment experiments.

02 / STACK

Technologies I use and continue to study.

GoREST APIgRPCPostgreSQLRedisKafkaDockerGitGrafana
03 / PROJECTS

Go backend projects and verifiable engineering work.

01

StockFlow — order and payment domain

A work-in-progress educational Go project where I practice order and payment domain modelling, state transitions, and basic HTTP handlers.

  • Value objects for money and order items, order states, and validated state transitions.
  • Online payment, cancellation, and refund scenarios encoded in the domain model.
  • Basic net/http handlers for creating orders, retrieving them by ID, and health checks.
#Go#net/http#DDD#WIP
02

maxzolotoy.com — bilingual website

A static RU/EN website built with HTML, CSS, and JavaScript without runtime dependencies, featuring a custom drag interaction and SEO markup for two indexable URLs.

  • The /ru/ and /en/ content is prerendered to static HTML with canonical, hreflang, sitemap, and JSON-LD.
  • The language switcher supports Pointer Events, keyboard controls, ordinary links, and prefers-reduced-motion.
  • CI rebuilds the site and verifies SEO, accessibility, and curtain invariants before publishing.
#JavaScript#Accessibility#Technical-SEO#Cloudflare
Built without frontend frameworks — HTML, CSS and JavaScript.