Based in Bansalan, Philippines | Passionate about building useful things
BSIT Student | Developer | Programmer | Editor | Explorer
Welcome to my GitHub! I'm a IT student who loves building web apps and tools from scratch. I enjoy working on both frontend and backend, and I'm always learning something new whether it's a new framework, a hardware project, or how to edit things.
| Project | Description | Stack |
|---|---|---|
| GradeHub | Student grade management system | Laravel · React · TypeScript |
| RecipesPOS | POS system with product & transaction management | Java Swing |
| AR Campus Nav | Augmented reality campus navigation app | Mobile · AR |
| SHORT FILM (HI, LIKE YOU) | Filipino romcom short film (directed by me) | Editing and Scripts! |
I'm always open to collaborating on interesting projects or discussing new ideas. Feel free to reach out!
I once built a hardware gas detector with an Arduino at 2AM and it actually worked.
#!/usr/bin/env python3
class BsitStudent:
def __init__(self):
self.name = "Jeremiah"
self.role = "BSIT Student | Developer | Film Director"
self.school = "St. Mary's College of Bansalan"
self.stack = ["Laravel", "React", "TypeScript", "Java", "PHP"]
self.currently = "Building GradeHub"
self.learning = ["AR Development", "System Integration", "Computer Graphics"]
self.fun_fact = "I write code AND direct short films"
def say_hi(self):
print("Thanks for stopping by! Let's build something cool.")
me = BsitStudent()
me.say_hi()