Backend Portfolio for Engineering at Scale // Open for Internship

Build Backend Systems.

Backend-focused Software Engineering undergraduate building RESTful APIs with Java and Spring Boot, strong in relational databases, learning Docker + DevOps.

JavaSpring BootREST APIsPostgreSQL / MySQLDocker
ApplicationController.java
JavaAuto
1
2
3
4
5
6
7
8
9
10
 
UI / UX section

UI thinking that moves cleanly into frontend code.

This section auto-rotates between design-system logic, interaction flows, and portfolio presentation patterns so visitors can feel both the code side and the visual side of your work.

design-tokens.css
Design systemAuto sync
1
2
3
4
5
6
7
8
9
10
11
12
13
 
Design system
Desktop rhythm
Prototype board
Primary layout
Active idea
Type scale
Active idea
Spacing map
Active idea
Button states
Desktop hero
Primary heading, short support copy, and action balance.
Component stack
Cards, filters, and CTA rules stay reusable.
Visual summary

Token-based hierarchy that stays clean from Figma to frontend.

Spacing, typography, and component states are organized so the final interface keeps the same visual discipline after implementation.

Fast, Clean, Practical
Backend Engineering Focus.

REST API Development

Clean Controller-Service-Repository APIs with validation and error handling.

API Flow
Database Design

Relational modeling, normalization, and efficient CRUD workflows.

VIDEO COMING SOON
Schema + Query
DevOps Exposure

Docker basics, environments, CI/CD exposure and Linux CLI habits.

VIDEO COMING SOON
Docker + CI

Programmatic Control.
File, Git, LSP, and Execute API.

process.py
from daytona import Daytona

daytona = Daytona()
sandbox = daytona.create()

response = sandbox.process.code_run('print("Hello World!")')
print(response.result)

response = sandbox.process.exec('echo "Hello World from exec!"', cwd="/home/daytona", timeout=10)
print(response.result)

daytona.remove(sandbox)