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 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()
}
}

