forked from cs-4241-2024/a1-gettingstarted
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
60 lines (54 loc) · 4.27 KB
/
index.html
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
<!doctype html>
<html lang="en">
<head>
<title>CS4241 Assignment 1</title>
<meta charset="utf-8">
<link rel="stylesheet" href="style.css">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=New+Amsterdam&display=swap" rel="stylesheet">
<script src="script.js" defer></script>
</head>
<body>
<h1>Information about Joseph Thesmar</h1>
<button class="toggle-button">▼</button>
<div>
<p>
My name is Joseph Thesmar. Originally from Versailles, France, I moved to the United States because my father was hired to teach at MIT. My passion for programming began in high school when I took the AP Computer Science class, where I became captivated by the problem-solving aspect of the IT world. I saw coding as a complex puzzle with endless patterns and possibilities, which offerd the potential to find, develop, and attribute practical solutions to real-world challenges.
</p>
<p>
I am pursuing a Bachelor's Degree in Computer Science (Class of 2025). This academic year will mark my final year at WPI. Beginning in Spring 2025, after graduation, I aim to join the workforce. Everything excites me about technology, but I want to specialize in the digital rather than the analog side. I have conducted research using differential privacy methods and completed several internships where I worked on cloud computing, high-performance computing, data analytics and visualization, and building full-stack applications.
</p>
<p>
In my free time, I enjoy running, playing various sports, reading French literature, watching movies and series, hanging out with friends, traveling, and observing celestial bodies.
</p>
</div>
<h2>Relevant Classes Taken at WPI</h2>
<p>
Object-Oriented Design Concepts, Systems Programming Concepts, Algorithms, Database Systems, Assembly Language, Software Engineering, Introduction to Artificial Intelligence, Linear Algebra, Computer Networks, Database Systems II, Computer Graphics, Operating Systems
</p>
<h2>Experience</h2>
<p>
<strong>1. Research Internship with Professor Muriel Medard (MIT ECE Professor)</strong><br>
Worked on implementing differential privacy techniques to anonymize taxi GPS datasets from Tokyo and NYC. Utilized statistical and probabilistic methods and applied them using Python libraries such as Matplotlib, Pandas, and NumPy to ensure data confidentiality and accuracy.
</p>
<p>
<strong>2. Software Engineer Internship at Tech For Good Inc.</strong><br>
Collaborated with a nonprofit organization to develop an application that uses machine learning models to predict and optimize low-cost cloud computing services by analyzing spot and preemptible instances.
</p>
<p>
<strong>3. PLM Software Developer at Analog Devices Inc.</strong><br>
Redesigned a key component of the company's project provisioning portal by completely rebuilding the REST API and orchestrating it with Temporal to enhance scalability and robustness. Additionally, led the monitoring of hyperscheduler anomalies to advance the integration of advanced reinforcement learning strategies.
</p>
<h2>Skills</h2>
<ul class="skills-list">
<li><strong>HTML:</strong> Basic knowledge; created a portfolio website, including centering a div, making buttons, and titling the web page.</li>
<li><strong>CSS:</strong> Some experience; designed and embellished my portfolio website, including color schemes and panel arrangement.</li>
<li><strong>Java:</strong> A lot of experience; first language learned, comfortable with Object-Oriented Programming.</li>
<li><strong>JavaScript:</strong> Some experience; used React.js for managing web app functionality.</li>
<li><strong>Ruby:</strong> Some experience; used during internship for data pipeline processing with Logstash.</li>
<li><strong>Python:</strong> Extensive experience; used for research, MQP, personal projects, and LeetCode problems.</li>
<li><strong>Unit Testing:</strong> Extensive experience; crucial for software development to test, find, and fix errors.</li>
</ul>
</body>
</html>