Skip to content
View pvhuwung's full-sized avatar
🇻🇳
Focusing
🇻🇳
Focusing

Organizations

@thats-not-my-code
Block or Report

Block or report pvhuwung

Report abuse

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

Report abuse
pvhuwung/README.md

🇻🇳🇸🇬 Hi Folks! I'm David a.k.a PVHuwung

Awesome GCP Portfolio page views GitHub followers

Embedded GIF

Hi there! 👋

Here are some ideas to get you started:

#!/bin/bash

🔭 currentJob=" Currently working at: Advance Intelligence Group"
🌱 learning=" Learning about: Cloud, Software, and AI"
🏔️ collaboration=" Innovative AI and App Projects"
💬 askMeAbout=" API Development, Cloud, AI, and System Design"
📫 howToReachMe=" linkedin.com/in/vn-phamviethung"
🏎️ pronouns=" He/Him"
🤖 funFact=" No Fun"

info="$currentJob\n$learning\n$collaboration\n$askMeAbout\n$howToReachMe\
n$pronouns\n$funFact"

echo -e "$info"
Embedded GIF
Golang Python Cplusplus CSharp JavaScript TypeScript Java Rust Deno
HTML5 CSS3 Node.js Streamlit NextJS Github Gitlab Git Docker
AWS GoogleCloud MongoDB GraphQL Firebase FastAPI Supabase MySQL PostgreSQL
// Get to know more about me with some Golang
package main

import (
	"fmt"
	"reflect"
)

type PVHuwung struct {
	Pronouns     string
	Backend      []string
	Frontend     []string
	Database     []string
	CloudServer  []string
	Architecture ArchitectureInfo
	Challenge    []string
	AISkills     []string
	Company      string
}

type ArchitectureInfo struct {
	Patterns   []string
	Components []string
	Challenges []string
	Serverless []string
}

func main() {
	var PVHUWUNG = PVHuwung{
		Pronouns:    "He/Him",
		Company:   "Advance Intelligence Group",
		Backend:     []string{"Go", "Python", "Rust", "C++"},
		Frontend:    []string{"Typescript", "NextJS", "HTML", "CSS"},
		Database:    []string{"PostgreSQL", "DynamoDB", "Firebase", "Redis"},
		CloudServer: []string{"AWS", "GCP", "DigitalOcean", "Heroku"},
		Architecture: ArchitectureInfo{
			Patterns:   []string{"Microservices", "Event-driven", "System Design"},
			Components: []string{"Docker", "Kubernetes", "Kafka", "GraphQL"},
			Challenges: []string{"Scalability", "Resilience", "Security"},
			Serverless: []string{"Lambda", "API Gateway"},
		},
		Challenge: []string{"Keep getting better, even if it's just 0.001% each day.",
					"Consistency turns those tiny gains into something big"},
		AISkills:  []string{"MachineLearning", "DeepLearning", "AI", "GenAI", "LLM", "ComputerVision"},
	}

	val := reflect.ValueOf(PVHUWUNG)
	for i := 0; i < val.NumField(); i++ {
		field := val.Field(i)
		fieldName := val.Type().Field(i).Name
		fmt.Printf("- %s: %v\n", fieldName, field.Interface())
	}
}
	// Feel free to folk or use, but don't forget to give a star ⭐⭐⭐. Thanks!!!!

activity graph

Embedded GIF

Pinned Loading

  1. AIRST-research-paper-summarization AIRST-research-paper-summarization Public

    This AI tool app built on Streamlit library provides a powerful and user-friendly tool through web interface for accessing key information from healthcare-related academic literature. Its natural l…

    Jupyter Notebook 19 8

  2. nextjs-ts-portforlio nextjs-ts-portforlio Public

    My portfolio website built with Next.js and TypeScript features a clean design showcasing my skills, projects, and experience. It's fully responsive and available on GitHub for easy customization. …

    TypeScript

  3. Histopathologic-Cancer-Detection Histopathologic-Cancer-Detection Public

    This repository contains code for a deep learning model that detects cancerous cells in histopathologic images using computer vision. The model utilizes ViT (Vision Transformer) and CovNExt (Convol…

    Jupyter Notebook 1

  4. anhquan3012/dlw-queue-monitor anhquan3012/dlw-queue-monitor Public

    A real-time people counting system for queue management at supermarkets, malls and public areas.

    Python 1

  5. cinema-recommendation-systems cinema-recommendation-systems Public

    This Python code uses the Pygame and Pygame_menu libraries to create several menus for different cinemas. Built a Sorting algorithm using Pattern Recognition, Decomposition to recommend by location…

    Python 1

  6. SimpleChatBot SimpleChatBot Public

    This is a simple chatbot using Javascript. This is a basic JavaScript program designed to help to learn about the language's syntax and how to use variables, conditions, loops, and functions to cre…

    JavaScript