-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathportfolio.html
More file actions
107 lines (97 loc) · 4.39 KB
/
portfolio.html
File metadata and controls
107 lines (97 loc) · 4.39 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Cameron Quilici | Portfolio</title>
<link id="main-stylesheet" rel="stylesheet" href="css/style.css">
<script src="js/functions.js"></script>
</head>
<body>
<div class="tab">
<div class="main-nav-bar">
<ul>
<li><a href="index.html">About Me</a></li>
<li><a href="qualifications.html">Qualifications</a></li>
<li><a href="portfolio.html">Portfolio</a></li>
<li><a href="service.html">Service</a></li>
<li><a href="pics/resume.pdf">Resume</a></li>
</ul>
</div>
<!-- <div id="toggle-button">
<button onclick="toggleStyleSheet()" type="button">Toggle Style</button>
</div> -->
</div>
<header class="site-header">
<div class="wrapper">
<h1 class="name-title" itemprop="headline">
<a href="index.html">Cameron Quilici</a>
</h1>
</div>
</header>
<div class="site-content">
<div id="wrapper-widget">
<div id="wrapper-h2-auton-studio">
<div class="content-bit">
<h2>AutonStudio</h2>
<ul>
<li> Application made by myself and a colleague that allows FTC robotics students to map out
autonomous
movements
paths on a GUI that would then be translated to Java code that made the physical robot move
on
specified
path.
</li>
<li>
Allowed new students to be more easily trained and elegantly introduced them to the concept
of
code.
</li>
</ul>
</div>
</div>
<img id="portfolio-logo-1" src="pics/auton-logo.png" alt="Logo of AutonStudio application made">
</div>
<div class="content-bit">
<h2>Real Analysis Notes</h2>
<ul>
<li>Typeset the notes for my undergraduate Real Analysis class using LaTeX and <a
href="https://cquil11.github.io/MATH-409-Notes/">publicly hosted</a> the website to share with
peers.</li>
<li>Set up an automated compilation pipeline using GitHub Actions.</li>
</ul>
<h2>Tic-Tac-Toe Solver</h2>
<ul>
<li>Engineered a <a href="https://github.com/cquil11/CSCE420/tree/master/programming_assignment_2">game
solver</a> that utilizes the minimax algorithm to analyze optimal moves for the computer player.
</li>
<li>Achieved a gameplay where the computer either wins or draws, never losing to the human player.</li>
<li>Explored recursive strategies to assess all potential game states, ensuring the prediction of the most favorable moves.</li>
</ul>
<h2>Internship Work</h2>
<ul>
<li>Helped work on software that trained ML models on some of the world's largest supercomputer clusters
at
Cray Inc.</li>
<li>Wrote Bash scripts that streamlined the workflow of job executions on the clusters.</li>
<li>Developed an application to allow developers to run an instance of this product under their personal
user account (allowed them to do this even if they did not necessarily have root access on the
cluster)
</li>
</ul>
<h2>Coming Up...</h2>
<ul>
<li>Currently working on an application called "ClassChat" which will allow students to interact with
each
other based on their schedules.</li>
<li>Check back soon for updates!</li>
</div>
</div>
<footer class="site-footer">
<p>Author: Cameron Quilici</p>
<p><a href="mailto:quilicam@tamu.edu">quilicam@tamu.edu</a></p>
</footer>
</body>
</html>