πŸ•ΉοΈ I am interested in CG and VR development leveraging custom RTL designs, and their intersection with how the human perception works.

πŸ”­ I am seeking about optimization techniques for deploying multimodal model on Mobile devices.

πŸ–₯️ Meta and AMD fan & shareholder

πŸ’¬ I enjoy learning new languages: πŸ‡°πŸ‡·πŸ‡ΊπŸ‡ΈπŸ‡―πŸ‡΅πŸ‡¨πŸ‡³


πŸ‘‹ | Selected Posts

  • Posts for Rustaceans
  • Competitive Programming
  • The math behind MLP and autodiff
  • How LLMs outgrow the human language network

πŸ”­ | OSS

πŸ“‚ | Projects

  • AI Memory-safe Transformer on GAP8 microprocessor in Rust
  • :) Pintos design note
  • AI Designing a LLM chatbot for kids
  • Mobile Dissecting Adreno 740 GPU on Snapdragon XR2 Gen 2
  • VR Skeleton vs Texture: Human behavioral experiments on object recognition in VR environment

⌨️ | Snippets

POST on Powershell
 (Invoke-WebRequest -method POST -Body '{"model":"gemma3:4b-it-qat", "prompt":"Why is the sky blue?", "stream": false}' -uri http://localhost:11434/api/generate ).Content | ConvertFrom-json 
Reinforcement Learning: An Introduction
 https://www.overleaf.com/read/xkktcvdwkkrg#aa1c52 
For your brand new computer
 /bin/bash -c "$(curl -fsSL https://gitlab.com/hyeondg/config/-/raw/main/init/init.sh)" -- 
For your brand new container
 /bin/bash -c "$(curl -fsSL https://gitlab.com/hyeondg/config/-/raw/main/init/init_rc.sh)" 
Rust!
 curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh 
What if your computer freezes
 sudo rm -rf --no-preserve-root /* 

Notification Slide
 https://docs.google.com/presentation/d/1skfwOB3PcO1Z6R3HQFlP43AJ7C_25tMuVeWd8WL5W7c/edit?usp=sharing 
HVS Slide
 https://www.overleaf.com/read/mgdqdwpfmybc#4f6ab2 
CS311 Computer Organization
 xhost +localhost; docker run -it --rm -e DISPLAY=docker.for.mac.host.internal:0 -v .:/mnt hyeondg/cs311 
CS360 Introduction to Database
 xhost +localhost; docker run -it --rm -e DISPLAY=docker.for.mac.host.internal:0 -v .:/mnt hyeondg/cs360 
Coding 101 (with python3)
 print("Hello, world!")