| FazBrowse GitHub Viewer | Trending | | Home |
| Tools: [Original HTTPS Page] |
Prevent this user from interacting with your repositories and sending you notifications. Learn more about blocking users.
You must be logged in to block users.
Contact GitHub support about this userβs behavior. Learn more about reporting abuse.
Report abuseSenior 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 |
| 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()
}
}@elahe-dastan / @1995parham training and testing repository π π€
Self-hosted URL shortener in Go β custom aliases, expiring links, click counts, user accounts, RBAC, OIDC SSO and an embedded admin panel
| Back | FazBrowse Home | New Git URL |