package main
import (
"fmt"
"strings"
)
type Profile struct {
Name string
Role string
Technologies []string
}
func NewProfile(name string, role string, technologies []string) *Profile {
return &Profile{
Name: name,
Role: role,
Technologies: technologies,
}
}
func (p *Profile) formatLanguages() string {
return strings.Join(p.Technologies, ", ")
}
func (p *Profile) SayHi() {
fmt.Println("Hi! Here is a bit about me:")
fmt.Println()
fmt.Printf(" Name : %s\n", p.Name)
fmt.Printf(" Role : %s\n", p.Role)
fmt.Printf(" Technologies : %s\n", strings.Join(p.Technologies, ", "))
fmt.Println()
fmt.Println("I hope you find something interesting here!")
}
func main() {
me := NewProfile("Ahmad Faisal", "Software Engineer", []string{
"Go",
"Fiber",
"Node.js (TypeScript and JavaScript)",
"Express.js",
"Nest.js",
"Swagger",
"Bash",
"PostgreSQL",
"MySQL",
"Linux",
"Git",
"Bash",
"AWS",
"Kubernetes",
"Docker",
"Terraform",
"Jenkins",
"GitHub Actions",
"Firebase",
"Dart",
"Flutter",
"React Native",
"TestFlight",
})
me.SayHi()
}
Software Engineer
-
Philip Morris International
- Surabaya
-
00:24
(UTC +07:00) - https://ahmadfaisal.space
- in/ahmadmfaisal
Highlights
- Pro
Pinned Loading
-
antares-insight-backend
antares-insight-backend PublicAntares' alerting and notification IoT system with implementation of MQTT over WebSockets.
TypeScript
-
-
faisal-starter-code-flutter
faisal-starter-code-flutter PublicMy Flutter's starter code (v1.0.0)
Dart 5
-
face-recognition-based-attendance-system
face-recognition-based-attendance-system PublicFace-Recognition-Based Student Attendance System using Haar-Cascade Classifier and Local Binary Pattern Histogram
Python
-
-
in-silico-approach-on-herbal-compound-identification
in-silico-approach-on-herbal-compound-identification PublicRepository ini adalah repository untuk tim PKM-RE dengan judul "Pendekatan In Silico dengan Menggunakan Molecular Fingerprint dan Support Vector Classifier untuk Identifikasi Senyawa Herbal Indones…
Jupyter Notebook
Something went wrong, please refresh the page to try again.
If the problem persists, check the GitHub status page or contact support.
If the problem persists, check the GitHub status page or contact support.


