Hi, I'm Romik Thapa

BSc Computing Systems Student | Football Enthusiast | Aspiring Developer

Romik Thapa, Computing Systems student at Ulster University

About Me

I'm currently pursuing my BSc in Computing Systems at Ulster University, London, where I'm developing expertise in software development and system architecture. My academic journey has provided hands-on experience with various programming languages and development frameworks.

As a passionate football fan and Lionel Messi enthusiast, I admire his discipline and creative approach to the game - qualities I strive to bring to my coding practice. When I'm not studying, you'll find me watching matches or playing video games.

My goal is to combine technical skills with creative problem-solving to build innovative digital solutions that make a real impact.

Education

BSc Computing Systems at Ulster University

Football Fan

Die-hard Lionel Messi supporter

Gaming

Passionate about strategy & sports games

Development

Building skills in multiple languages

My Skills

Programming Languages

JavaScript

Python

Java

HTML5

CSS3

Tools & Technologies

Git

Linux

SQL

Windows OS

Academic Projects

University project dashboard showing code and documentation

Student Management System

A Java application for managing student records and course enrollments.

Java Swing MySQL
Web development project showing responsive design

University Web Portal

A responsive web portal for student resources and information.

HTML5 CSS3 JavaScript
Data analysis project showing charts and graphs

Data Analysis Project

Python-based data analysis of academic performance metrics.

Python Pandas Matplotlib

Get In Touch

Email

romikthapa364@gmail.com

Phone

+44 07570730394

LinkedIn

linkedin.com/in/romik-thapa-991470349

// Animation when elements come into view const observer = new IntersectionObserver((entries) => { entries.forEach(entry => { if (entry.isIntersecting) { entry.target.classList.add('animate-fade-in'); observer.unobserve(entry.target); } }); }, { threshold: 0.1 }); document.querySelectorAll('section').forEach(section => { observer.observe(section); });