|
1 | | -<!DOCTYPE html> |
| 1 | +<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> |
2 | 2 | <html lang="en"> |
3 | 3 | <head> |
4 | | - <meta charset="UTF-8"> |
5 | | - <meta name="viewport" content="width=device-width, initial-scale=1.0"> |
| 4 | + <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1"> |
6 | 5 | <title>Nick Petrone | Projects</title> |
7 | | - <link rel="stylesheet" href="styles.css"> |
| 6 | + <link rel="stylesheet" type="text/css" href="styles.css"> |
8 | 7 | </head> |
9 | 8 | <body> |
10 | | - <header> |
11 | | - <nav> |
| 9 | + <div class="header"> |
| 10 | + <div class="nav"> |
12 | 11 | <a href="index.html" class="nav-logo">Nick Petrone</a> |
13 | 12 | <ul> |
14 | 13 | <li><a href="index.html">Home</a></li> |
15 | 14 | <li><a href="experience.html">Experience</a></li> |
16 | 15 | <li><a href="projects.html" class="active">Projects</a></li> |
17 | 16 | <li><a href="contact.html">Contact</a></li> |
18 | 17 | </ul> |
19 | | - </nav> |
20 | | - </header> |
21 | | - <main> |
| 18 | + </div> |
| 19 | + </div> |
| 20 | + <div class="main"> |
22 | 21 | <h1>Projects</h1> |
23 | 22 | <div class="projects-container"> |
24 | | - <article class="project-card"> |
| 23 | + <div class="project-card"> |
25 | 24 | <h3>IEEE Website Redesign</h3> |
26 | 25 | <p>Led the redesign and development of a new, responsive website for the IEEE student branch at UCSD. The goal was to create a modern, mobile-first platform to better engage with members and promote events. The new site features a clean aesthetic and improved navigation, built from the ground up using React and TypeScript to ensure a maintainable and scalable codebase.</p> |
27 | 26 | <p><strong>Technologies:</strong> <strong>TypeScript</strong>, <strong>React</strong>, <strong>CSS3</strong></p> |
28 | 27 | <a href="https://github.com/nick-ls/IEEEWebsite" target="_blank" class="project-link">View on GitHub</a> |
29 | | - </article> |
30 | | - <article class="project-card"> |
| 28 | + </div> |
| 29 | + <div class="project-card"> |
31 | 30 | <h3>Mandelbrot Fractal Explorer</h3> |
32 | 31 | <p>A web-based application that allows users to explore the Mandelbrot set in real-time. This project was an exercise in graphics programming and performance optimization, using the HTML5 Canvas to render the fractal. The application features smooth panning and zooming capabilities, calculated client-side with JavaScript, demonstrating an understanding of computational efficiency and browser rendering.</p> |
33 | 32 | <p><strong>Technologies:</strong> <strong>JavaScript</strong>, <strong>HTML5 Canvas</strong>, <strong>CSS</strong></p> |
34 | 33 | <a href="https://github.com/nick-ls/Mandelbrot" target="_blank" class="project-link">View on GitHub</a> |
35 | | - </article> |
36 | | - <article class="project-card"> |
| 34 | + </div> |
| 35 | + <div class="project-card"> |
37 | 36 | <h3>Commit Challenge 2025</h3> |
38 | 37 | <p>A community-focused project designed to encourage consistent software development habits. The platform challenges users to make a meaningful commit every day for a year. I contributed to the front-end and overall application logic, helping build a tool that fosters growth and collaboration among student developers at UCSD.</p> |
39 | 38 | <p><strong>Technologies:</strong> <strong>TypeScript</strong>, <strong>React</strong></p> |
40 | 39 | <a href="https://github.com/Subset-UCSD/Commit-Challenge-2025" target="_blank" class="project-link">View on GitHub</a> |
41 | | - </article> |
42 | | - <article class="project-card"> |
| 40 | + </div> |
| 41 | + <div class="project-card"> |
43 | 42 | <h3>San Diego CTF Landing Page</h3> |
44 | 43 | <p>Developed the public-facing landing page for the San Diego Capture The Flag competition. This project involved creating a visually engaging and informative site to attract participants and provide event details. The focus was on pure, semantic HTML and CSS to create a fast, accessible, and lightweight website that effectively communicates the spirit of the event.</p> |
45 | 44 | <p><strong>Technologies:</strong> <strong>HTML5</strong>, <strong>CSS3</strong></p> |
46 | 45 | <a href="https://github.com/nick-ls/sdc.tf" target="_blank" class="project-link">View on GitHub</a> |
47 | | - </article> |
48 | | - <article class="project-card"> |
| 46 | + </div> |
| 47 | + <div class="project-card"> |
49 | 48 | <h3>CSE 125: Software System Design (Game Dev)</h3> |
50 | 49 | <p>As part of UCSD's flagship software engineering course, I collaborated in a small group to design, build, and deploy a real-time multiplayer online game from scratch. This intensive project involved architecting both the client and server, managing network protocols, and implementing game logic under a tight deadline. This project was a deep-dive into C++ development, network programming, and collaborative software engineering.</p> |
51 | 50 | <p><strong>Technologies:</strong> <strong>TypeScript</strong>, <strong>Node.js</strong>, <strong>WebSocket</strong></p> |
52 | 51 | <a href="https://github.com/ucsd-cse125-sp24/group1" target="_blank" class="project-link">View on GitHub</a> |
53 | | - </article> |
| 52 | + </div> |
54 | 53 | </div> |
55 | | - </main> |
56 | | - <footer> |
| 54 | + </div> |
| 55 | + <div class="footer"> |
57 | 56 | <p>© 2025 Nick Petrone</p> |
58 | | - </footer> |
| 57 | + </div> |
59 | 58 | </body> |
60 | 59 | </html> |
0 commit comments