Skip to content
View fzl-22's full-sized avatar

Highlights

  • Pro

Block or report fzl-22

Block user

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.

Maximum 250 characters. Please don't include any personal information such as legal names or email addresses. Markdown supported. This note will be visible to only you.
Report abuse

Contact GitHub support about this user’s behavior. Learn more about reporting abuse.

Report abuse
fzl-22/README.md
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()
}

Pinned Loading

  1. elgtm elgtm Public

    Automated AI Code Reviews for CI pipeline. Go-powered, Docker-ready, and fully customizable via .reviewer prompts. Currently supports Gemini & GitHub.

    Go 1

  2. zielisme.nvim zielisme.nvim Public

    My Neovim setup.

    Lua 3

  3. antares-insight-backend antares-insight-backend Public

    Antares' alerting and notification IoT system with implementation of MQTT over WebSockets.

    TypeScript

  4. faisal-starter-code-flutter faisal-starter-code-flutter Public

    My Flutter's starter code (v1.0.0)

    Dart 5

  5. face-recognition-based-attendance-system face-recognition-based-attendance-system Public

    Face-Recognition-Based Student Attendance System using Haar-Cascade Classifier and Local Binary Pattern Histogram

    Python

  6. enigma-machine-emulator enigma-machine-emulator Public

    Enigma Machine Emulator written in C++

    C++