-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathexperience.html
More file actions
102 lines (90 loc) · 5.06 KB
/
Copy pathexperience.html
File metadata and controls
102 lines (90 loc) · 5.06 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Work Experience | Sam Wu</title>
<script src="https://cdn.tailwindcss.com"></script>
</head>
<body class="bg-gray-100 text-gray-800">
<header class="bg-blue-900 text-white py-4">
<div class="max-w-4xl mx-auto px-6 flex items-center justify-between">
<a href="index.html" class="text-2xl font-bold hover:underline">Sam Wu</a>
<button class="md:hidden" id="menu-button">
<svg class="w-6 h-6" fill="none" stroke="currentColor" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M4 6h16M4 12h16M4 18h16"></path>
</svg>
</button>
</div>
<nav class="hidden md:flex max-w-4xl mx-auto px-6 flex-wrap justify-between gap-x-6 text-sm md:text-base mt-4 md:mt-2 md:flex-row flex-col text-center" id="menu">
<a href="projects.html" class="hover:underline block py-1">Research Project</a>
<a href="experience.html" class="hover:underline block py-1 font-semibold">Work Experience</a>
<a href="volunteer.html" class="hover:underline block py-1">Volunteer Activity</a>
<a href="honors.html" class="hover:underline block py-1">Honors and Awards</a>
</nav>
<script>
document.addEventListener('DOMContentLoaded', function () {
const button = document.getElementById('menu-button');
const menu = document.getElementById('menu');
button.addEventListener('click', () => {
menu.classList.toggle('hidden');
});
});
</script>
</header>
<main class="max-w-4xl mx-auto p-6 space-y-8">
<!-- Work Experience 1 -->
<section>
<h2 class="text-xl font-bold mb-1">Undergraduate Research Opportunities Program (UROP)</h2>
<p class="text-sm text-gray-600 mb-1 italic"><a href="https://www.csltaipeitech.com/" target="_blank" class="text-blue-600 underline">MIT City Science Lab @ Taipei Tech</a></p>
<p class="italic text-sm mb-2">@Taipei, Taiwan | July 2025 – August 2025</p>
<ul class="list-disc pl-6 mb-4 space-y-1">
<li>Worked with a student from ME, MIT to trained and deployed different policies (ACT, Diffusion, HIL-SERL) on Koch robot arms to compare their performance.</li>
<li>Reconstructed the hardware and system environment to increase the quality of data collection.</li>
</ul>
<div class="flex justify-center">
<img src="images/work_11.png" class="w-[95%] md:w-[80%] lg:w-[70%] h-auto rounded-lg mb-4">
</div>
</section>
<!-- Work Experience 2 -->
<section>
<h2 class="text-xl font-bold mb-1">Mechanical Engineering Intern</h2>
<p class="text-sm text-gray-600 mb-1 italic">Logitech</p>
<p class="italic text-sm mb-2">@Hsinchu, Taiwan | March 2025 – June 2025</p>
<ul class="list-disc pl-6 mb-4 space-y-1">
<li>Applied the design thinking framework to design and prototype an innovative gaming peripheral.</li>
<li>Developed 3D mechanical designs in PTC Creo and implemented PID-based control on Arduino Nano ESP32.</li>
<li>Performed reliability testing and finalized a production-ready prototype with supporting technical documentation.</li>
</ul>
<div class="flex justify-center">
<img src="images/work_3.jpg" class="w-[95%] md:w-[80%] lg:w-[70%] h-auto rounded-lg mb-4">
</div>
</section>
<!-- Work Experience 3 -->
<section>
<h2 class="text-xl font-bold mb-1">Research Assistant</h2>
<p class="text-sm text-gray-600 mb-1 italic"> Control & Micromanipulation Lab, NTHU, led by <a href="https://pme.site.nthu.edu.tw/p/406-1308-263043,r4027.php?Lang=zh-tw" target="_blank" class="text-blue-600 underline">Prof. Chia-Hsiang Menq</a></p>
<p class="italic text-sm mb-2">@Hsinchu, Taiwan | Feburary 2025 – June 2025</p>
<ul class="list-disc pl-6 mb-4 space-y-1">
<li>Assisted in developing magnetic detection for 3D scanning probe microscopy of live cells.</li>
<li>Focused on hardware implementation, including ADC/DAC integration and FPGA-based control algorithm debugging.</li>
</ul>
<div class="flex justify-center">
<img src="images/work_2.png" class="w-[95%] md:w-[80%] lg:w-[70%] h-auto rounded-lg mb-4">
</div>
</section>
<!-- Work Experience 4 -->
<section>
<h2 class="text-xl font-bold mb-1">Teaching Assistant</h2>
<p class="text-sm text-gray-600 mb-1 italic"> Control System I (PME 320701) under <a href="https://pme.site.nthu.edu.tw/p/406-1308-180019,r4027.php?Lang=zh-tw" target="_blank" class="text-blue-600 underline">Prof. Cheng-Hsien Liu</a></p>
<p class="italic text-sm mb-2">@Hsinchu, Taiwan | September 2024 – December 2024</p>
<ul class="list-disc pl-6 mb-4 space-y-1">
<li>Review control system concepts and solve problems for the students.</li>
</ul>
</section>
</main>
<footer class="text-center text-sm text-gray-600 py-4 bg-gray-200 mt-12">
© 2025 Sam Wu. All rights reserved.
</footer>
</body>
</html>