-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
75 lines (66 loc) · 3.52 KB
/
Copy pathindex.html
File metadata and controls
75 lines (66 loc) · 3.52 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width initial-scale=1.0">
<title>Matthew | Portfolio</title>
<link rel="stylesheet" href="styles.css">
<link href="https://fonts.googleapis.com/css2?family=Inter:wght@400;700&display=swap" rel="stylesheet">
</head>
<body>
<header class="hero">
<h1>Matthew Karowich</h1>
<p class="subtitle">Programming Student • Builder of Smart Tools</p>
<a href="#projects" class="btn">View Projects</a>
</header>
<section class="about">
<h2>About Me</h2>
<p>I'm a programming student with a background in accounting, focused on building smart tools and clean code.</p>
<p>Right now I'm building a command-line assistant to help enforce daily structure and avoid distractions, part of a long-term move toward building local-first productivity tools.</p>
</section>
<section class="skills">
<h2>Skills</h2>
<ul>
<li>Python (Flask, Pygame)</li>
<li>HTML, CSS, Javascript</li>
<li>C#, Unity</li>
<li>SQL, SQLite, Oracle</li>
<li>React, Git, REST APIs</li>
</ul>
</section>
<section id="projects" class="projects">
<h2>Projects</h2>
<div class="project-card taskmaster-card">
<div class="project-card-header">
<img src="projects/TaskMaster.png" alt="TaskMaster Logo" class="project-logo">
<h3>TaskMaster</h3>
</div>
<small class="project-subtitle">"Productivity through terminal precision"</small>
<p>CLI task manager with tagging, filtering, and user auth. Built for long term personal use and productivity tracking.</p>
<p><strong>Tech:</strong> <span class="tag">Python</span>, <span class="tag">SQLite</span>, <span class="tag">Custom CLI Framework</span></p>
<a href="https://github.com/seerious/TaskMaster" target="_blank">GitHub</a>
</div>
<div class="project-card focus-engine-card">
<div class="project-card-header">
<img src="projects/focus-engine.png" alt="Daily focus engine logo" class="project-logo">
<h3>Daily Focus Engine</h3>
</div>
<small class="project-subtitle">Command-line clarity for chaotic days</small>
<p>CLI assistant for daily planning, deep work blocks, and reflection prompts. Built to run local and keep things simple.</p>
<p><strong>Tech:</strong> <span class="tag">Python</span>, <span class="tag">CLI</span>, <span class="tag">JSON</span></p>
<a href="https://github.com/seerious/daily-focus-engine" target="_blank">GitHub</a>
</div>
</section>
<section class="contact">
<h2>Contact</h2>
<p><a href="mailto:mkarowich13@gmail.com">mkarowich13@gmail.com</a></p>
<p>
<a href="https://github.com/seerious" target="_blank">GitHub</a><br>
<a href="https://matthewkarowich.substack.com/" target="_blank">SubStack - Compiled Thinking</a>
</p>
</section>
<footer>
<p>© 2025. Just Code.</p>
</footer>
</body>
</html>