You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
🐍 Python — my native language. Production runs on it, and so do I.
classBackendEngineer:
def__init__(self):
self.name="Aleks Zenitsin"self.role="Backend engineer"self.language_spoken= ["ru_RU", "en_US"]
defsay_hi(self):
print("Thanks for dropping by, hope you find some of my work interesting.")
me=BackendEngineer()
me.say_hi()
⛓️ Solidity — wrote a DeFi protocol, survived.
contractBlockchainDeveloper {
stringconstant myDevTag ="@magicaleks";
stringconstant deFiProject ="Ruble stablecoin";
boolconstant isOpenForFunding =true;
function contactWithMe() externalpayablereturns (stringmemory) {
return"Check my profile and contact me with your favourite messenger!";
}
}
🐹 Go — goroutines at 3am. Zero regrets.
package main
import (
"fmt""sync"
)
funcdeploy(servicestring, wg*sync.WaitGroup) {
deferwg.Done()
fmt.Printf("🟢 service/%s is up\n", service)
}
funcmain() {
services:= []string{"api-gateway", "auth", "payments", "notifications"}
varwg sync.WaitGroupfor_, svc:=rangeservices {
wg.Add(1)
godeploy(svc, &wg)
}
wg.Wait()
fmt.Println("🚀 All systems operational")
}
☕ Java — enough to be dangerous. Mostly to myself.