Iβm a Backend Developer, Iβve been passionate about Golang since 2014 β itβs my favorite programming language. Besides Golang, Iβm proficient in Python and have an insatiable appetite for learning new technologies. Iβm a strong advocate for open-source and dedicate myself to developing software thatβs not only useful but also tangible. While I have experience in Frontend development, itβs been quite some time since I last dived into it. My life and professional ethos can be encapsulated in the following snippet of code:
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("@elahe-dastan")
for alive() {
eat("Kebab π’")
code("c", "golang", "python3", "react", "rust")
if haveTime() {
checkEMail()
}
sleep()
}
}