-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
executable file
·99 lines (89 loc) · 4.08 KB
/
index.html
File metadata and controls
executable file
·99 lines (89 loc) · 4.08 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
<!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="Justin Filip - Experienced Engineer and Creative, Entrepreneur">
<link rel="icon" type="image/png" href="favicon.png">
<title>Justin Filip</title>
<link href="styles.css" rel="stylesheet" type="text/css">
</head>
<body>
<div id="intro-screen" class="intro-screen"></div>
<img class="usa" src="usa.png" alt="USA flag">
<div id="grid" class="grid">
<div id="profile" class="profile-column">
<div class="profile-content">
<img class="profile-image" src="./profile.png" alt="Justin Filip profile photo">
<div class="profile-info">
<h1 class="name">Justin Filip</h1>
<p class="tagline">Experienced Engineer and Creative, Entrepreneur</p>
</div>
<div class="contact-info">
hello { at } justinfilip { dot } com
</div>
<div class="social-links">
<a class="profile-link" href="https://www.instagram.com/arealjman/">Instagram</a>
<a class="profile-link" href="https://www.linkedin.com/in/justinlfilip/">LinkedIn</a>
<a class="profile-link" href="https://github.com/justinfilip">Github</a>
<a class="profile-link" href="https://x.com/innerhat">X</a>
</div>
</div>
</div>
<div id="main-projects" class="main-projects-column">
<section class="current-work">
<h3>Currently working on..</h3>
<div class="project-card">
<a class="big-profile-link" href="https://goquery.co">
<h4>GoQuery, The Agentic Data Analytics Platform</h4>
<p>GoQuery is a fast, intuitive, and hyper-connected Agentic Data Analytics Platform that makes it easy to combine data from multiple sources, create rich visualizations, and get targeted insights using AI-Powered Agentic Data Analysis, making it easy to understand and act on your data.</p>
<img class="project-image" src="goquery_site.png" alt="GoQuery platform screenshot">
</a>
</div>
</section>
<section class="previous-work">
<h3>Last hand-written project..</h3>
<div class="project-card">
<a class="big-profile-link" href="https://github.com/justinfilip/gpt-threads">
<h4>GPT-Threads</h4>
<p>An open-source AI app | running mixtral 8x7B / llama.cpp | single-layer threads interface | multi-user | private | offline capable</p>
<img class="project-image" src="gptt_screenshot.png" alt="GPT-Threads application screenshot">
</a>
</div>
</section>
</div>
<div id="other-projects" class="other-projects-column">
<section class="other-projects">
<h3>Old Demos..</h3>
<div class="small-projects-grid">
<div class="small-project-card">
<a href="pages/a-quick-game/">
<h4>A Quick Game</h4>
<p>A slightly frustrating clicking game. Click the numbered circles!</p>
</a>
</div>
<div class="small-project-card">
<a href="pages/byzantine-generals/">
<h4>Byzantine Generals</h4>
<p>An overview of the Byzantine Generals problem in computer science.</p>
</a>
</div>
<div class="small-project-card">
<a href="pages/rotateMatrix/">
<h4>Matrix Rotation</h4>
<p>Demonstration of matrix rotation by transposition and column swapping.</p>
</a>
</div>
<div class="small-project-card">
<a href="pages/shapes-animation/">
<h4>Shapes & Animations</h4>
<p>Choose from multiple interactive demos featuring ball physics, edge detection, and generative art.</p>
</a>
</div>
</div>
</section>
</div>
</div>
<script src="main.js"></script>
</body>
</html>