Fullstack Developer · GSoC 2026
Open to work · Globally
DESIGNER, DEVELOPER, DATA ANALYST

I'M SHWE WIN
AUNG

Fullstack Developer React Specialist Open Source Contributor GSoC 2026 · Data Umbrella Building for Southeast Asia
GSoC 2026 · Open Science Labs
BSc IT · LPU · May 2026

Fullstack developer from Myanmar. React, TypeScript, Node.js, Python. Production apps, hackathon finalist, 3 PRs merged in Google Summer of Code 2026. Building for the next billion.

01 About me

CODE WITH
PURPOSE,
SHIP IT.

I'm a fullstack developer building things that reach real users — multilingual websites, AI-powered platforms, government document intelligence. Across freelance, team, and hackathon environments.

Originally from Myanmar. Fluent in Burmese, English and Chinese — I bring cross-cultural perspective to every product, building for the communities that need tech most.

0
Projects shipped
0
GSoC PRs merged
0
Teams beaten

Frontend

React.jsNext.jsTypeScriptTailwindSASSGraphQLVite

Backend & Data

Node.jsExpressFastAPIPythonPostgreSQLMongoDBVectorDB

DevOps & Cloud

AWSDockerKubernetesCI/CDGitHub ActionsCloudinary

Languages

English
Professional
Burmese
Native
Chinese
Conversational
02 Open Source · Google Summer of Code 2026
Open Science Labs · Data Umbrella · GSoC 2026

GSOC
2026

Contributed to Data Umbrella's Event Board — an open-source platform for managing and discovering data science community events. A fullstack app (Django REST + React) used by the global data science community to surface workshops, sprints, and conferences.

My contributions focused on a core missing feature: event format classification. Events lacked a standardised way to signal whether they were in-person, virtual, or hybrid — critical information for attendees. I implemented this end-to-end: database schema → API → validation → React UI → tests.

PR #115✓ Merged

ADD EVENT FORMAT FIELD TO MODEL

What was broken

The Event Django model had no way to classify whether an event was in-person, virtual, or hybrid. Attendees had no structured way to filter by format — buried in free-text or simply missing.

What I fixed

events/models.py — Django Model
FORMAT_CHOICES = [ ('in_person', 'In Person'), ('virtual', 'Virtual'), ('hybrid', 'Hybrid'), ] event_format = models.CharField( max_length=20, choices=FORMAT_CHOICES, null=True, blank=True ) # + migration file generated
Python / Django ORMDB Migration
PR #116✓ Merged

SERIALIZER & API VALIDATION

What was broken

Even after adding the model field, the REST API was not exposing event_format in responses, and there was no server-side validation to reject invalid format values.

What I fixed

events/serializers.py — DRF Serializer
fields = ['id','title','date',...] fields = ['id','title','date', 'event_format', ...] def validate_event_format(self, val): valid = ['in_person','virtual', 'hybrid'] if val and val not in valid: raise ValidationError( f'Invalid format: {val}') return val
Django REST FrameworkValidation
PR #118✓ Merged

REACT UI — FORMAT FILTER & DISPLAY

What was broken

The frontend had no UI component to display or filter by event format. Users couldn't distinguish in-person from virtual events at a glance — a critical UX gap for a global community.

What I fixed

src/components/EventCard.tsx — React
const FORMAT_LABELS = { in_person: '📍 In Person', virtual: '💻 Virtual', hybrid: '🔀 Hybrid', } {event.event_format && ( <FormatBadge label={FORMAT_LABELS [event.event_format]} /> )}
React + TypeScriptUI Component
niteash@gsoc-2026 ~ data-umbrella/event-board-api

SELECTED
WORK

Production apps, hackathon wins, open source — real code, real users.

01 — Freelance · Nov 2025

BUILDING MATERIALS WEBSITE

Multilingual React.js + TypeScript app supporting Myanmar, English & Chinese via ES6+ i18n modules. Cloudinary REST API for 35% load time reduction. Cross-device compatibility delivering 40% user reach increase.

ReactTypeScriptTailwindi18nCloudinary
↑40% reach · ↓35% load · ↓30% redundancy
const i18n = { mm: { title: "ဆောက်လုပ်ရေး" }, en: { title: "Building Materials" }, zh: { title: "建筑材料" }, } // Cloudinary auto transform const url = cld .image(publicId) .resize(fill().width(800)) .delivery(format(auto())) .toURL()

02 — Team of 9 · Jan 2025

AI TRIP PLANNER

Co-architected an AI trip planning app for 100+ test users. 10+ RESTful API endpoints (Node.js), geolocation-based mapping, delivered in 4 weeks with ↓30% API latency.

ReactNode.jsTypeScriptREST APIGeolocation
100+ users · ↓30% latency

03 — SIH Grand Finale · 2025

KMRL DOCUMENT AI

Led React + Vite frontend for a national government AI document system for Kochi Metro Rail. OCR/NLP pipeline in Python, AWS ElastiCache. 90% positive feedback from 100+ evaluators, ↑35% task efficiency.

ReactVitePythonOCRNLPAWS
90% feedback · ↑35% efficiency

04 — ByteBash 2nd Place · 2024

AI FOOD PLATFORM

AI meal recommendations from weather + mood + health inputs. End-to-end: ordering, recipes, storefronts, cooking courses. 2nd of 150+ teams in a national 36-hour hackathon at LPU.

ReactNode.jsAI36hr Sprint
2nd / 150+ teams · 36hr build

05 — Aug 2024

REACT E-COMMERCE

Full-stack mobile-first e-commerce in React + TypeScript + Tailwind. 50+ products, 8 categories. Lighthouse 90+ via lazy loading and optimised rendering. ↓25% page load time.

ReactTypeScriptTailwindLighthouse 90+
Lighthouse 90+ · ↓25% load

06 — Oct 2023

WASTE MANAGEMENT PLATFORM

Full-stack waste platform with 5 core modules and 12+ reusable components. Modular CSS tested across Chrome, Firefox, Safari & Edge. ↑30% cross-browser compatibility, ↓20% QA time.

JavaScriptSASSBootstrapHTML5
↑30% cross-browser · ↓20% QA
04 Experience & Journey

BUILT &
WON &
SHIPPED.

2026 · Open Science Labs / Data Umbrella

Google Summer of Code 2026

Open Source Contributor

  • Added event_format field (in-person/virtual/hybrid) to Django Event model with DB migration
  • Implemented DRF serializer exposure + custom validation rejecting invalid format values
  • Built React FormatBadge UI component with filtering support — 3 PRs merged (#115, #116, #118)

Nov 2025 – Jan 2026

Building Materials Website

Freelance Fullstack Developer

  • Multilingual React + TypeScript (Myanmar · English · Chinese) — ↑40% user reach
  • Reusable Tailwind component library — ↓30% redundancy, ↓35% load time

Sep – Dec 2025

Smart India Hackathon · KMRL

React Lead · Grand Finale

  • Led React + Vite frontend for national gov AI document system
  • OCR/NLP Python pipeline + AWS ElastiCache — 90% positive feedback

Jan – Mar 2025

AI Trip Planner

Fullstack Developer · Team of 9

  • 10+ RESTful API endpoints — ↓30% API latency · 100+ test users · 4-week delivery

Mar 2024

ByteBash Hackathon

1st Runner-Up · 150+ teams · LPU

  • AI food platform: weather + mood + health recommendations · 36-hour build

Aug – Sep 2024

React E-Commerce Application

Fullstack Developer

  • 50+ products · Lighthouse 90+ · ↓25% load time

Oct – Nov 2023

Solid Waste Management Platform

Fullstack Developer

  • 5 modules · 4 browsers · ↑30% cross-browser compat · ↓20% QA time

EDUCATION

Lovely Professional University

BSc Information Technology

Aug 2023 – May 2026 · Punjab, India

Yadanabon University

Bachelor of Arts in English

Jun 2022 – May 2023 · Mandalay, Myanmar

RECOGNITION

GSoC 2026 — Open Science Labs

Data Umbrella Event Board · 3 PRs merged

ByteBash Hackathon — 1st Runner-Up

Top 2 of 150+ teams · LPU · 2024

Smart India Hackathon — Grand Finale

National level · KMRL · 2025

AI Ready ASEAN Youth Challenge 2026

Team Myanmar · TutorAI Myanmar concept

Research Published — NRC 2026

Crowd Detection & Analysis Survey · LPU

05 Resume

DOWNLOAD
CV

Fullstack Developer · React · TypeScript · Node.js · Python. Production apps, open source contributions, national hackathon finalist. Available globally.

↓  Download Resume PDF

Open to roles in

SingaporeNetherlandsGermanyPolandThailandVietnamEnglandIndiaMyanmarRemote
SHWE_WIN_AUNG_FullStack_Developer.pdf
SHWE WIN AUNG
FULLSTACK DEVELOPER · REACT · TYPESCRIPT · NODE.JS · PYTHON
📧 nickytwist70@gmail.com  ·  📱 +95 89-251-9900
🌐 shwewinaung.vercel.app  ·  github.com/niteash  ·  Punjab, India

EXPERIENCE

Building Materials Website
Freelance Fullstack Developer
Nov 2025
Jan 2026
AI Trip Planner
Fullstack Dev · Team of 9
Jan–Mar
2025
SIH Grand Finale · KMRL
React Lead · Gov AI System
Sep–Dec
2025
ByteBash Hackathon — 1st Runner-Up
Top 2 of 150+ teams
Mar 2024
React E-Commerce App
Fullstack Developer
Aug–Sep
2024

OPEN SOURCE

Google Summer of Code 2026
Open Science Labs / Data Umbrella — 3 PRs merged
2026

EDUCATION

Lovely Professional University
BSc Information Technology
2023–2026
Yadanabon University
BA English · Mandalay, Myanmar
2022–2023

SKILLS

React.jsNext.jsTypeScriptNode.jsPythonFastAPIPostgreSQLMongoDBAWSDockerKubernetesCI/CDGraphQLTailwindDjango REST
06 Client Reviews

WHAT
CLIENTS
SAY

5.0
2 verified client reviews
"
★ 5/5 Overall ★ 9/10 Design ★ 10/10 Comms Delivered on time

It was a pleasure working together. The process was well-organised, communication was clear, and the results exceeded my expectations.

I really like the clean, modern look of the design. The layout is intuitive and easy to navigate, making the overall experience smooth and enjoyable.
Design
Speed
Comms
Devices
📱 Mobile 💻 Desktop 📟 Tablet No bugs reported Would work again
kay-zin-pf
Kay Zin Htoo Naing
Verified Client · Fullstack Project
2 Apr 2026
kayzinhtoonaing1@gmail.com
"
★ 5/5 Overall ★ 10/10 Design Pann Tha Zin Delivered on time
Original review in Burmese

ချက်ချင်းကြည့်လို့ရပြီ ပို၍ဆင်ပြေ — "Immediately accessible and much more elegant."

Site was immediately accessible and much more visually refined. Easy to navigate, brand-aligned, and delivered exactly as requested — no bugs encountered.
လူအများသိအောင်ပိုလုပ် — Increase public visibility and marketing reach.
Overall
Navigation
Features
Brand fit
No bugs reported May showcase project Portfolio approved
img-profile
Sai Lain Leng Fha
Pann Tha Zin · Building Materials
6 Apr 2026
kosailay417@gmail.com
HELLO
Now Building portfolio · GSoC 2026 contributor

Let's build something real

GET IN
TOUCH.

Open to fulltime roles, freelance projects and interesting collaborations worldwide.

nickytwist70@gmail.com LinkedIn GitHub Instagram