-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathabout.php
More file actions
101 lines (90 loc) · 4.85 KB
/
about.php
File metadata and controls
101 lines (90 loc) · 4.85 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
<?php
$current_page = 'about';
$page_title = 'About Me';
require 'header.php';
?>
<!-- PAGE 2 · About -->
<div class="hero">
<h1>A Little <span>About Me</span></h1>
<div class="divider"></div>
<div class="about-split">
<div class="about-left">
<div class="profile-pic-container">
<img src="images/pfp.jpg" alt="Profile Picture" class="profile-pic" />
</div>
<p class="profile-desc">
I'm an aspiring developer passionate about learning and improving in
the field of Computer Science. I focus on building my skills through
practice, projects, and staying curious about how technology works.
</p>
</div>
<div class="about-right">
<div class="resume-section">
<h2>SKILLS</h2>
<div class="resume-content">
<p><strong>Languages:</strong> Python, R, Java, C#, TypeScript, JavaScript, SQL</p>
<p><strong>Frameworks and Databases:</strong> Next.js, React, Supabase, SQLite, Node.js</p>
<p><strong>AI & Libraries:</strong> LLM Integration, Prompt Engineering, NumPy, Pandas</p>
<p><strong>DevOps & Testing:</strong> Git, GitHub</p>
</div>
</div>
<div class="resume-section">
<h2>EDUCATION</h2>
<div class="resume-content">
<div class="resume-item">
<h3>Bachelor of Science in Computer Science / Master in Data Science</h3>
<span class="resume-date">2024 - 2028</span>
<p>Angeles University Foundation Pampanga, Angeles City</p>
<p><em>Barbara Yap Angeles (BYA) Scholarship</em></p>
</div>
</div>
</div>
<div class="resume-section">
<h2>WORK EXPERIENCE</h2>
<div class="resume-content">
<div class="resume-item">
<h3>Corresponding Author and Team Leader</h3>
<span class="resume-date">2024 - 2028</span>
<p><strong>AUF MAGNUS Research Hub Pampanga, Angeles City</strong></p>
<p>The Center for Advanced Research and Innovation (CARI) is a research center under the Office of the Vice President for Research and Innovation (OVPRI) at Angeles University Foundation, established to foster innovation-driven and data-informed research across disciplines.</p>
<p>Overseeing the entire process from development to writing the publication for Fee-Ver 2.0, an AI-powered hospital billing verification system adopted as a university research. The system unveils prices variances of 150-200% across hospitals and supporting a system targetting 4.2M HMO beneficiaries.</p>
</div>
</div>
</div>
<div class="resume-section">
<h2>PROJECTS</h2>
<div class="resume-content">
<div class="resume-item">
<h3>Fee-Ver 1.0 <span class="resume-highlight">(1st Runner-Up, Alibaba Cloud Philippines AI Hackathon 2025)</span></h3>
<p>Aggregated and engineered a benchmark pricing database from 14-15 open-source public hospital data across the Philippines, powering an AI-driven billing summarizer and discrepancy detector. Currently, being expanded to a published research paper.</p>
</div>
<div class="resume-item">
<h3>ThynkSpace <span class="resume-highlight">(1st Runner-Up, Google Developer Groups HackFest 2026: Axis)</span></h3>
<p>Conceptualized and developed the zero-friction, AI-powered research companion to bridge the gap between vast data and human insight through verified AI synthesis, in order to streamline student workflow and research progress.</p>
</div>
</div>
</div>
<div class="resume-section">
<h2>AWARDS & SCHOLARSHIPS</h2>
<div class="resume-content">
<ul class="resume-list">
<li><strong>1st Runner-Up, Alibaba Cloud Philippines AI Hackathon</strong> - Alibaba Cloud Philippines</li>
<li><strong>1st Runner-Up, AUF MAGNUS RDLead Competition</strong> - Center for Advanced Research Innovation (CARI)</li>
<li><strong>1st Runner-Up, HackFest 2026: Axis</strong> - Google Developer Groups</li>
</ul>
</div>
</div>
<div class="resume-section">
<h2>VOLUNTEERING & LEADERSHIP</h2>
<div class="resume-content">
<div class="resume-item">
<h3>Secretary</h3>
<p><strong>HonSoc (Honor Society) AUF CCS</strong></p>
<p>Adminstered correspondence, scheduling, task delegation, and record-keeping for organization efficiency catered to the Angeles University Foundation College of Computer Studies Students with academic scholarships and high GWA.</p>
</div>
</div>
</div>
</div>
</div>
</div>
<?php require 'footer.php'; ?>