-
Notifications
You must be signed in to change notification settings - Fork 30
/
internships.html
95 lines (85 loc) · 4.72 KB
/
internships.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
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
---
highlighter: none
layout: default
title: The Path to Internship and Fellowship Opportunities
---
{% include /get/jobs.liquid %}
<figure>
<img class="w-100 d-block d-lg-none" style="object-fit: cover; max-height: 400px;" src="{{ '/images/chtc-internship-banner.jpg' | relative_url }}"
alt="Collage photos of current and previous CHTC interns."/>
<img class="w-100 d-none d-lg-block" style="object-fit: cover; max-height: 400px;" src="{{ '/images/chtc-internship-banner-lg.jpg' | relative_url }}"
alt="Collage photos of current and previous CHTC interns."/>
</figure>
<div class="container-xxl">
<div class="row justify-content-center">
<div class="col-12 col-sm-10 col-lg-8">
{% include page-title.html title="page.title" %}
<p class="fs-5">
Want to make a difference and see your work directly
impact science across the globe?
</p>
<p class="fs-5">
The Center for High Throughput Computing offers internship and summer fellowship opportunities
for undergraduate and graduate students.
</p>
<h2>The Mission</h2>
<p>CHTC is a research computing organization located within the University
of Wisconsin-Madison CS Department and at the Morgridge Institute for
Research. CHTC is an internationally recognized leader in high
throughput computing and provides access to free large-scale computing
capacity for research. CHTC advances the field of research computing
through innovative software and services, leading distributed computing
projects across the campus and the nation.
</p>
<h2>The CHTC Fellows Program</h2>
<p>Our Fellows Program provides undergraduate and graduate students with
learning opportunities in research computing, system administration,
and facilitation. Working with engineers and
dedicated mentors, fellows will have the opportunity to learn
from leaders in their field and access state of the art computing
facilities. Fellows can also attend workshops, lectures and social
and recreational events with CHTC team members. <a href="/fellowships/index.html" class="btn btn-primary mt-4">Learn About CHTC Fellows Program</a>
</p>
<h2>We Value Diversity</h2>
<p>CHTC and Morgridge are committed to increasing diversity among
interns and staff. We believe that advancing throughput computing
and scientific research is enhanced by a wide range of backgrounds
and perspectives.
</p>
{% assign student_jobs = jobs | where_exp: "x", "x.type == 'Internship'" | sort: "availability" %}
{% assign available_jobs = jobs | where_exp: "x", "x.available == true" %}
{% if student_jobs.size > 0 %}
<h2 id="student-hourly-positions-undergrad-and-grad">Student Hourly Positions (Undergrad and Grad)</h2>
<p>
We're always looking for smart motivated students to partner with
software developer and system administrator mentors. We expect students
to work between 10 and 20 hours a week, with 10 of those being during
business hours, with some flexibility on remaining hours. During the
summer and breaks, it is possible to work up to 29 hours per week.
</p>
{% for job in student_jobs %}
{% include /components/job-card.html %}
{% endfor %}
{% endif %}
</div>
{% if available_jobs.size > 0 %}
<div class="d-none d-lg-block col-12 col-lg-4">
<div class="sticky-top mt-5">
<div class="pt-5">
<div class="uw-sidebar-box me-auto">
<div class="uw-directory">
<h3>Open Positions</h3>
<ul>
{% for job in student_jobs %}
<li><a href="#{{ job.title | slugify }}">{{ job.title }}</a></li>
{% endfor %}
</ul>
</div>
</div>
</div>
</div>
</div>
{% endif %}
<p class="text-center">Questions: <a href="mailto:[email protected]">[email protected]</a></p>
</div>
</div>