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

Hello there πŸ‘‹

package main

import "fmt"

type Profile struct {
	Name           string
	Role           string
	LanguageSpoken []string
}

func NewProfile(name string, role string, languageSpoken []string) *Profile {
	return &Profile{
		Name:           name,
		Role:           role,
		LanguageSpoken: languageSpoken,
	}
}

func (se *Profile) SayHi() {
	fmt.Println("Hi! I hope you find something interesting here!")
}

func main() {
	me := NewProfile("Ahmad Faisal", "Software Engineer", []string{"id_ID", "en_US"})
	me.SayHi()
}

πŸ“ Visit Me

πŸ”§ Technologies & Tools

πŸ’» Most Used Languages

My most used languages

πŸ† GitHub Trophies

trophy

Pinned Loading

  1. antares-insight-backend antares-insight-backend Public

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

    TypeScript

  2. zielisme.nvim zielisme.nvim Public

    Neovim pretty setup with Tree-sitter, LSP, and AI code completions (Tabnine).

    Lua 2

  3. faisal-starter-code-flutter faisal-starter-code-flutter Public

    My Flutter's starter code (v1.0.0)

    Dart 5

  4. 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

  5. enigma-machine-emulator enigma-machine-emulator Public

    Enigma Machine Emulator written in C++

    C++

  6. in-silico-approach-on-herbal-compound-identification in-silico-approach-on-herbal-compound-identification Public

    Repository 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