Skip to content
View DangNhutNguyen's full-sized avatar
💻
Focusing
💻
Focusing

Organizations

@CodliRo

Block or report DangNhutNguyen

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.

Please don't include any personal information such as legal names or email addresses. Maximum 100 characters, 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
DANGNHUTNGUYEN/README.md
// 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

  1. PrompTEA PrompTEA Public

    Forked 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

  2. Focumia Focumia Public

    Forked from CodliRo/Focumia

    Focumia: Focus, Tasks, Streaks - Master Your Day!

    HTML 3

  3. Neural-Network-from-Scratch Neural-Network-from-Scratch Public

    I'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

  4. AZOTA-K12Online-Cheated AZOTA-K12Online-Cheated Public

    AZOTA Bypass Cheated remove event listener to easily collect out the answer of the test.

    JavaScript 4

  5. MNIST-TRAINING MNIST-TRAINING Public

    This 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

  6. GOOGLE-FORM-AUTO GOOGLE-FORM-AUTO Public

    Google 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