-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcurrent-projects.html
More file actions
111 lines (102 loc) · 5.88 KB
/
Copy pathcurrent-projects.html
File metadata and controls
111 lines (102 loc) · 5.88 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
102
103
104
105
106
107
108
109
110
111
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="description" content="Jack Oien's software projects — web apps, mobile development, and systems programming.">
<title>Jack Oien — Projects</title>
<link rel="stylesheet" href="index.css">
<script>
function updateClock() {
var now = new Date();
document.getElementById("live-clock").textContent = now.toLocaleTimeString();
}
window.onload = function() {
updateClock();
const fadeElements = document.querySelectorAll('.fade-in');
const observer = new IntersectionObserver((entries) => {
entries.forEach(entry => {
if (entry.isIntersecting) entry.target.classList.add('visible');
});
}, { threshold: 0.1 });
fadeElements.forEach(el => observer.observe(el));
}
setInterval(updateClock, 1000);
</script>
</head>
<body>
<div id="content">
<p class="align-right"><span id="live-clock"></span></p>
<p class="section-label">Projects</p>
<p class="fade-in" style="margin-top: -0.35rem; margin-bottom: 1.5rem; font-size: 0.92rem; max-width: 62ch; opacity: 0.78;">This page mirrors the current resume project lineup while keeping a little more room for browsing on the web.</p>
<div class="project-block fade-in">
<div class="project-header">
<span class="project-title">Sup Rec</span>
<a class="project-link" href="https://github.com/r-b-1/supp-ranker" target="_blank" rel="noopener">github.com/r-b-1/supp-ranker</a>
<span class="project-date">2026 – Present</span>
</div>
<div class="tech-tags">
<span class="tech-tag">React 19</span>
<span class="tech-tag">Vite</span>
<span class="tech-tag">JavaScript</span>
<span class="tech-tag">Supabase</span>
<span class="tech-tag">Vercel</span>
<span class="tech-tag">PostgreSQL</span>
</div>
<ul class="project-bullets">
<li>Built a supplement ranking web app in React 19 + Vite that helps users compare products by category, search terms, price, stock status, and ingredient data from a curated catalog.</li>
<li>Engineered serverless ranking APIs and product-level aggregation logic to merge variant data, normalize search, and surface cleaner comparisons from a Supabase/PostgreSQL-backed dataset.</li>
<li>Added authenticated user submissions and admin review tools with Supabase-based access control, per-user request quotas, and approval workflows for community-contributed supplement updates.</li>
</ul>
</div>
<div class="project-block fade-in">
<div class="project-header">
<span class="project-title">Bloc Party</span>
<a class="project-link" href="https://github.com/r-b-1/bloc-party" target="_blank" rel="noopener">github.com/r-b-1/bloc-party</a>
<span class="project-date">Fall 2025</span>
</div>
<div class="tech-tags">
<span class="tech-tag">Flutter</span>
<span class="tech-tag">Dart</span>
<span class="tech-tag">Firebase</span>
<span class="tech-tag">Google Maps API</span>
</div>
<ul class="project-bullets">
<li>Owned the home screen and item data layer in a 5-person team — built the Firestore item model, live item feed, neighborhood-scoped filtering, search/filter widget, and asset image system with fallback error handling.</li>
<li>Built a JSON-driven runtime theme system using Provider, enabling light/dark/custom themes switchable without app restart.</li>
<li>Implemented public/private item description views scoped by ownership and integrated with the borrow scheduling flow.</li>
</ul>
</div>
<div class="project-block fade-in">
<div class="project-header">
<span class="project-title">Zork-Style Adventure Engine</span>
<span class="project-date">Fall 2023</span>
</div>
<div class="tech-tags">
<span class="tech-tag">C++</span>
</div>
<ul class="project-bullets">
<li>Reverse-engineered Zork's terminal mechanics and designed an original world with branching narrative in C++, with a 5-person team.</li>
<li>Established documentation standards and introduced structured Git workflow for the team's first collaborative project.</li>
</ul>
</div>
<div class="skills-section fade-in">
<p class="skills-label">Skills</p>
<div class="skills-row"><strong>Languages:</strong> Dart, TypeScript, Rust, Python, Java, C++</div>
<div class="skills-row"><strong>Frameworks & Tools:</strong> Flutter, React, Tauri, Vite, Firebase, Supabase, OpenAI API, Google Maps API</div>
<div class="skills-row"><strong>Concepts:</strong> REST APIs, SSE Streaming, OCR, OOP, Git, MVC Architecture, Agile/Scrum</div>
</div>
<div class="landing-links-container">
<a href="index.html">about me</a>
<a href="current-projects.html">projects</a>
<a href="personal-hobbies.html">hobbies</a>
<a href="resume.html">resume</a>
</div>
<div class="footer-links">
<a href="mailto:oiendjack@gmail.com">email</a>
<a href="https://github.com/r-b-1" target="_blank" rel="noopener">github</a>
<a href="https://linkedin.com/in/jack-oien-93aa43369" target="_blank" rel="noopener">linkedin</a>
</div>
</div>
</body>
</html>