-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathjoin.html
More file actions
73 lines (62 loc) · 5.42 KB
/
Copy pathjoin.html
File metadata and controls
73 lines (62 loc) · 5.42 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Join — LeCAR Lab</title>
<link rel="stylesheet" href="styles.css">
<link rel="icon" href="assets/icon.jpg">
<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=Source+Serif+4:ital,opsz,wght@0,8..60,400..700;1,8..60,400..700&family=Source+Sans+3:ital,wght@0,400..700;1,400..700&display=swap" rel="stylesheet">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.3/css/all.min.css">
<script>
// Apply saved theme before paint to avoid a flash of the wrong theme.
(function () {
try {
var t = localStorage.getItem('theme');
if (t === 'dark' || t === 'light') document.documentElement.setAttribute('data-theme', t);
} catch (e) {}
})();
</script>
</head>
<body>
<header class="site-header">
<div class="container nav-row">
<a class="brand" href="index.html"><img src="assets/logo.png" alt="LeCAR Lab — Learning and Control for Agile Robotics Lab"></a>
<input type="checkbox" id="nav-toggle" class="nav-toggle" aria-label="Toggle navigation">
<label for="nav-toggle" class="nav-toggle-label" aria-hidden="true"><i class="fas fa-bars"></i></label>
<nav class="site-nav">
<a href="people.html">People</a>
<a href="publications.html">Publications</a>
<a href="research.html">Research Topics</a>
<a href="join.html" class="active">Join</a>
</nav>
<button type="button" class="theme-toggle" aria-label="Toggle dark mode"><i class="fas fa-moon"></i></button>
</div>
</header>
<main class="container">
<section>
<h2>Join the LeCAR Lab</h2>
<p class="callout">We are hiring a postdoc in robot learning (see details <a href="https://x.com/GuanyaShi/status/2048944372650315818?s=20" target="_blank">here</a>)!</p>
<p>Thank you so much for your interest in our lab! We are always looking for highly motivated postdocs, Ph.D. students, MS students, undergraduate students, and visiting students to join our lab or collaborate with us. Please read the following sections before emailing me.</p>
<h3>Prospective Ph.D. and MS Students</h3>
<p>You are encouraged to apply to related programs in the <a href="https://www.cs.cmu.edu/academics/overview-programs" target="_blank">School of Computer Science</a> at CMU, in particular, <a href="https://www.ri.cmu.edu/ri-education/" target="_blank">graduate programs at the Robotics Institute</a>. In your application, please make sure to mention my name under faculty you are interested in working with. I also hire students in the <a href="https://www.ece.cmu.edu/" target="_blank">Electrical and Computer Engineering</a> and <a href="https://www.meche.engineering.cmu.edu/" target="_blank">Mechanical Engineering</a> Departments. <em>There is no need to email before the application deadline</em>. If you would like to email me <em>after</em> you have submitted your application or <em>after</em> you have been admitted, please use the subject heading "Prospective Ph.D./MS Student" and include your CV/transcript, research experience, why you are interested in our lab, and other materials you want to share in the email.</p>
<h3>Current Ph.D. and MS Students</h3>
<p>Welcome to CMU! Please send me an email with the subject heading "Current Ph.D./MS Student". For prompt reply, please include your CV/transcript, research experience, why you are interested in our lab, whether or not you will need funding, and other materials you want to share in the email.</p>
<h3>Undergraduate Students, Visiting Students, and Postdocs</h3>
<p>For undergrads, please send me an email with the subject heading "Prospective Undergraduate Student". For prompt reply, please include your CV/transcript and other materials you want to share in the email. For CMU undergrads, in general, we only consider those who can spend a summer in the lab on research. For international visiting undergrads, currently we only take those who can visit <em>longer than six months</em>. For postdocs and visiting students, please directly email me with your CV/transcript, research experience, why you are interested in our lab, whether or not you will need funding, and other materials you want to share in the email.</p>
<h3>Collaborators</h3>
<p>Thank you for considering collaborating with us! Please send me an email with your background, which direction/project/paper you would like to collaborate on, and other materials you want to share in the email.</p>
</section>
</main>
<footer class="site-footer">
<div class="social-icons">
<a href="https://youtube.com/@LeCARLab" target="_blank" aria-label="YouTube"><i class="fab fa-youtube"></i></a>
<a href="https://twitter.com/LeCARLab" target="_blank" aria-label="Twitter"><i class="fab fa-twitter"></i></a>
<a href="https://github.com/LeCAR-Lab" target="_blank" aria-label="GitHub"><i class="fab fa-github"></i></a>
</div>
</footer>
<script src="theme.js"></script>
</body>
</html>