1package main
2
3import (
4 "fmt"
5)
6
7type aboutMe struct {
8 languages []string
9 skills_technologies []string
10 university string
11 hackathons []string
12 hobbies []string
13}
14
15func main() {
16 me := aboutMe{
17 languages: []string{
18 "Golang", "Python", "C", "R", "Javascript",
19 },
20 skills_technologies: []string{
21 "API/Backend development", "Webscraping", "API Reverse engineering",
22 "Data analysis", "Data classification", "Web development", "ThreeJS",
23 },
24 university: "The University of Melbourne",
25 hackathons: []string{
26 "CISSA Codebrew", "Catalyst Hackafun (2nd)", "Pokehack",
27 },
28 hobbies: []string{
29 "Snowboarding", "Volleyball", "Cooking", "Clarinet",
30 },
31 }
32
33 fmt.Printf("%+v\n", me)
34}
35
I'm a 19-year-old software engineer focused on building robust, efficient solutions for backend systems and machine learning applications. I began coding at 14 by creating small Discord bots for my friends, which gradually evolved into a more serious pursuit. During the COVID lockdowns, I ran a Discord-based database search engine that served over 200 users — a project that became my primary source of income before I was eligible for employment.
Around the time I picked up Go, I began experimenting with reverse engineering TikTok's mobile endpoints. Go's lightweight concurrency model and network performance, especially when paired with fasthttp, enabled me to develop an autoclaimer that “claimed” rare usernames the moment they became available.
While backend engineering remains my core strength, I picked up enough web development to bring my ideas into production, and recently began exploring WebGL and Three.js as a creative outlet. Since starting university, I've turned my focus toward deepening my understanding of data science, backend systems, and low-level programming — working primarily with Python, Go, and C.