package profiletype Candidate struct {Name stringRole stringInstitution string}var Me = Candidate{Name: "Mr. Woo",Role: "CS Major",Institution: "University of NorthEast",}
resume.go
var ResearchInterests = []string{"Scalable Training and Serving for LLMs","Parameter-Efficient Fine-tuning","Reproducible Applied ML Workflows",}var CurrentFocus = []string{"Machine Learning Systems","Efficient LLM Fine-tuning","Model Compression and Inference Optimization",}
type Project struct {Title stringPeriod stringStack []stringLink string}var Projects = []Project{{Title: "Dimensional Debris",Period: "2025 - Present",Stack: []string{"Astro", "TypeScript", "Tailwind CSS", "Preact"},Link: "https://dimensional-debris.dev/",},{Title: "Interactive Terminal UI Module",Period: "2025",Stack: []string{"JavaScript", "DOM Events", "Command Parsing"},},{Title: "Game Tooling and Pipeline Support",Period: "2024",Stack: []string{"Unity", "C#", "Pipeline Integration"},},}var Publications = []string{"Publications available upon request.",}
func Contact() map[string]string {return map[string]string{"github": "https://github.com/elonwoo-02/","cv": "/cv/mr-woo-cv.md","email": "mailto:gongzi_1076@163.com",}}// I am currently applying for MSc programs and seeking research-oriented training opportunities.
candidate = {'name': 'Mr. Woo','role': 'CS Major','institution': 'University of NorthEast',}
research_interests = ['Scalable Training and Serving for LLMs','Parameter-Efficient Fine-tuning','Reproducible Applied ML Workflows',]
projects = [{"title": "Dimensional Debris","period": "2025 - Present","tech": ["Astro", "TypeScript", "Tailwind CSS", "Preact"],"link": "https://dimensional-debris.dev/",},{"title": "Interactive Terminal UI Module","period": "2025","tech": ["JavaScript", "DOM Events", "Command Parsing"],},{"title": "Game Tooling and Pipeline Support","period": "2024","tech": ["Unity", "C#", "Pipeline Integration"],},]
contact = {'github': 'https://github.com/elonwoo-02/','cv': '/cv/mr-woo-cv.md','email': 'mailto:gongzi_1076@163.com',}
name = "Mr. Woo"status = "MSc applicant"direction = "ML systems and efficient LLM"
highlights = ["Machine Learning Systems","Efficient LLM Fine-tuning","Model Compression and Inference Optimization",]
projects = ["Dimensional Debris (2025 - Present)","Interactive Terminal UI Module (2025)","Game Tooling and Pipeline Support (2024)",]
github = "https://github.com/elonwoo-02/"cv = "/cv/mr-woo-cv.md"email = "mailto:gongzi_1076@163.com"