Senior Software & Platform Engineer · 10+ years building cloud-native systems · Barcelona, Spain 🇪🇸
I'm a Senior Software & Platform Engineer with a Ph.D. and 10+ years building backend systems and cloud-native platforms — Go, Python, Kubernetes, and microservices, including a messaging layer handling 300k+ messages/sec. Currently based in Barcelona, Spain 🇪🇸.
I've been in love with Go since 2014 and it's still my favorite language. Python comes a close second, and I have an insatiable appetite for picking up whatever the problem actually needs. I'm a strong advocate for open source and I care about software being tangible — real systems you can run, not diagrams. I've done frontend too, though it's been a while since I last dived in.
The longer version — experience, education, projects, and the odd blog post — lives at 1995parham.me.
Most of my work lives under an org rather than my own account. These are the ones worth a look:
| Organization | What lives there | |
|---|---|---|
| snapp-incubator | Open source from Snapp!, Iran's largest ride-hailing platform | |
| rahacloud | Raha Cloud — infrastructure consulting and DevOps-as-a-Service | |
| 1995parham-teaching | Course material I teach — C, Python, Go, networking, Kubernetes, LLMs | |
| citado | Ph.D. research — low-power wide-area network performance evaluation | |
| reinnet | M.Sc. research — network function virtualization and optimization | |
| I1820 | The IoT platform we built for LoRa and Zigbee deployments | |
| 1995parham-learning | Learning from birth to death — languages, tools, everything I poke at | |
| 9231058 | Every B.Sc., M.Sc., and Ph.D. course I passed since 2013 |
More organizations
| Organization | What lives there | |
|---|---|---|
| snappcloud-io | The Snappcloud platform team | |
| aveehealth | Telemedicine in British Columbia, Canada | |
| 1995parham-me | Home and personal infrastructure behind 1995parham.me | |
| R523 | Parham & Raha's IoT learning hub | |
| AoLab | Founded 2015 ❤️, fell apart 2019 😭 | |
| aut-cic | Amirkabir University of Technology — Computer & Information Center | |
| XePersianShowcase | Persian TeX documents typeset with the XePersian package | |
| 1995parham-goodies | Projects I don't own but never want to lose |
My life and professional ethos, encapsulated:
package main
import (
"fmt"
"net/http"
)
func eat(dishes ...string) {
fmt.Printf("😋 %v\n", dishes)
}
func inLove(theOne string) {
fmt.Printf("😍 %v\n", theOne)
}
func code(langs ...string) {
fmt.Printf("💻 %v\n", langs)
}
func alive() bool {
req, err := http.NewRequest("GET", "https://github.com/1995parham", nil)
if err != nil {
return false
}
resp, err := http.DefaultClient.Do(req)
if err != nil {
return false
}
defer resp.Body.Close()
return resp.StatusCode == http.StatusOK
}
func haveTime() bool {
return false
}
func checkEMail() {
fmt.Printf("📧\n")
}
func sleep() {
fmt.Printf("😴\n")
}
func main() {
go inLove("@elaheh-dastan")
for alive() {
eat("Kebab 🍢")
code("c", "golang", "python3", "rust")
if haveTime() {
checkEMail()
}
sleep()
}
}






