// Dang Nhut Nguyen - 915080
// Software Developer & AI Enthusiast
// Profile Views: https://komarev.com/ghpvc/?username=dangnhutnguyen
package main
import (
"fmt"
"strings"
)
type Organization struct {
Name string
Position string
Projects []string
Teammates []string
}
type AboutMe struct {
Name string
Born int
Roles []string
Skills []string
CurrentFocus string
Organization Organization
Pronouns string
}
type Project struct {
Name string
Link string
}
type TechnicalSkills struct {
Languages []string
Frameworks []string
Tools []string
}
func main() {
about := AboutMe{
Name: "Nguyen Huynh Dang Nhut",
Born: 2008,
Roles: []string{"High School Student", "Software Developer", "AI Enthusiast"},
Skills: []string{"Python", "OpenCV", "AI", "HTML", "JavaScript"},
CurrentFocus: "AI Engineer",
Organization: Organization{
Name: "CodliRo",
Position: "CGO & Founder",
Projects: []string{"Focumia", "Writedownia", "PrompTEA"},
Teammates: []string{"@zakagjins", "@huynguyennhut"},
},
Pronouns: "He/Him",
}
story := `
Summer 2019: Started coding with Scratch → Built animations & games.
Learned Python + Arduino → Created LED blinkers, motor controllers, sensors.
Discovered AI (ML2019) → Trained my first model to recognize patterns.
Journey: Scratch → Python → Arduino → AI.
`
projects := []Project{
{"AZOTA BYPASS", "https://dangnhutnguyen.github.io/AZOTA-BYPASS-WEBSITE-CONTAINER-SHOW/"},
{"Harmonic Motion Simulator", "https://dangnhutnguyen.github.io/HARMONIC-MOTION/"},
{"Focumia Website", "https://codliro.github.io/Focumia/"},
{"My Portfolio", "https://dangnhutnguyen.github.io/Portfolio/"},
}
skills := TechnicalSkills{
Languages: []string{"Python", "JavaScript", "HTML", "CSS", "C++", "Java", "Golang", "C#"},
Frameworks: []string{"Flask", "React", "Django"},
Tools: []string{"Docker", "Git", "VS Code", "Nginx", "AWS", "Azure"},
}
fmt.Printf("=== ABOUT ME ===\nName: %s\nBorn: %d\nRoles: %s\n\n",
about.Name, about.Born, strings.Join(about.Roles, ", "))
fmt.Printf("=== STORY ===\n%s\n", story)
fmt.Println("=== PROJECTS ===")
for _, p := range projects {
fmt.Printf("- %s → %s\n", p.Name, p.Link)
}
fmt.Println("\n=== TECHNICAL SKILLS ===")
fmt.Println("Languages :", strings.Join(skills.Languages, ", "))
fmt.Println("Frameworks:", strings.Join(skills.Frameworks, ", "))
fmt.Println("Tools :", strings.Join(skills.Tools, ", "))
}
Pinned Loading
-
PrompTEA
PrompTEA PublicForked from CodliRo/PrompTEA
PrompTEA is an open-source framework that optimizes prompts for language models using NLP and machine learning. It generates high-quality, customizable prompts to improve model performance across v…
Python 2
-
Focumia
Focumia PublicForked from CodliRo/Focumia
Focumia: Focus, Tasks, Streaks - Master Your Day!
HTML 3
-
Neural-Network-from-Scratch
Neural-Network-from-Scratch PublicI've written this repository to explaining step-by-step building a neural network from scratch by using python and MNIST dataset to review
Python 2
-
AZOTA-K12Online-Cheated
AZOTA-K12Online-Cheated PublicAZOTA Bypass Cheated remove event listener to easily collect out the answer of the test.
JavaScript 4
-
MNIST-TRAINING
MNIST-TRAINING PublicThis repository contains a simple implementation of a Neural Network trained to classify handwritten digits from the MNIST dataset. The neural network is built using TensorFlow, and the model uses …
Jupyter Notebook 2
-
GOOGLE-FORM-AUTO
GOOGLE-FORM-AUTO PublicGoogle Form Auto-Submission Script The Google Form Auto-Submission Script is a Python-based automation tool designed to streamline the process of submitting responses to Google Forms. This script a…
Python 2
If the problem persists, check the GitHub status page or contact support.