-
Notifications
You must be signed in to change notification settings - Fork 31
/
jobs.html
158 lines (137 loc) · 7.33 KB
/
jobs.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
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
---
highlighter: none
layout: default
title: Available Positions
---
{% include /get/jobs.liquid %}
<figure>
<img class="w-100" style="object-fit: cover; max-height: 400px;" src="{{ '/images/Emile_Working.jpg' | relative_url}}"
alt="IT Professional, Emile, working in the Discovery Server Rooms"/>
<figcaption class="p-1 bg-light">Photo: Morgridge Institute for Research</figcaption>
</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>
If advancing the state of the art of distributed computing in an
academic environment interests you, the Center for High Throughput
Computing (CHTC) at the University of Wisconsin-Madison (UW) offers a
unique working environment. Our project’s home is in the UW Department
of Computer Sciences, an internationally recognized department
consistently ranked in the top ten across the USA.
</p>
<p>
A position with CHTC
will provide you the opportunity to interact with both department
faculty and students to translate novel ideas into real-world solutions.
The software and infrastructure you will be working on is used by
scientists and engineers at hundreds of institutions, from universities
to national laboratories and from large high tech corporations to small
animation teams.
</p>
<h2 id="internships" class="mb-0">Fellowships & Internships</h2>
<h5 class="mt-1 mb-3"><span class="badge bg-primary">Summer 2025 Now Available</span></h5>
<p>
Our student programs provides undergraduate and graduate students with learning opportunities in
research computing, system administration, web development, and communication.
</p>
<a class="btn btn-dark" href="/internships.html">Discover Active Fellowships and Internships</a>
{% assign fulltime_jobs = jobs | where_exp: "x", "x.type == 'Full Time'" %}
{% if fulltime_jobs.size > 0 %}
<h2 id="full-time-positions">Full Time Positions</h2>
<p>
Details about our open full-time positions are typically provided below.
Positions pertaining to "HTCondor" and "CHTC" search terms can also
be found on the <a
href="https://jobs.wisc.edu/jobs/search?page=1&query=chtc">University's
Position Vacancy List
(PVL)</a>.
</p>
{% for job in fulltime_jobs %}
{% include /components/job-card.html %}
{% endfor %}
{% endif %}
{% assign student_jobs = jobs | where_exp: "x", "x.type == 'Internship'" %}
{% 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 %}
<hr>
<h2 id="benefits">Benefits</h2>
<p>
The University of Wisconsin-Madison is a great place to work. You can
<a href="https://hr.wisc.edu/benefits/">read about the benefits in detail
elsewhere</a>. In short, we have
five weeks of vacation/personal time per year, very good health
insurance (and cost effective for entire families), and a good
retirement plan. Please note that the minimum salary in our job listings
are just that - the minimum. Compensation will increase with experience.
</p>
<p>In addition to the official benefits, there are many side benefits:</p>
<ol>
<li>You will work with the CHTC team. We are world leaders in solving
interesting distributed computing problems!
</li>
<li>You can attend interesting talks in the department</li>
<li>Relatively flexible working hours — we value work-life balance.</li>
<li>A Discounted Bus Pass!</li>
<li>You get staff access to <a href="http://www.union.wisc.edu/">the Union</a>,
<a href="http://www.recsports.wisc.edu/">the UW athletic facilities</a>, and
<a href="http://www.library.wisc.edu/">the UW library system</a>.
</li>
<li>We're in a lively neighborhood with great restaurants in easy
walking distance.
</li>
</ol>
<hr>
<p>
If you are interested in a position with CHTC, explore the job listings
below! If you would like to apply, send your resume and cover letter to
<a href="mailto:[email protected]">[email protected]</a>, and indicate
which job you would like to apply for.
</p>
<p><strong>Please note:</strong></p>
<ul>
<li>A criminal background check will be conducted prior to hiring.</li>
<li>A period of evaluation will be required.</li>
<li>UW-Madison is an equal opportunity/affirmative action employer. We
promote excellence through diversity and encourage all qualified
individuals to apply.
</li>
</ul>
</div>
<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">
{% if fulltime_jobs.length > 0 %}
<h3>Full-Time Positions</h3>
<ul>
{% for job in fulltime_jobs %}
<li><a href="#{{ job.title | slugify }}">{{ job.title }}</a></li>
{% endfor %}
</ul>
{% endif %}
<h3>Fellowships & Internships</h3>
<ul>
<li><a href="/internships.html">Learn More</a></li>
</ul>
</div>
</div>
</div>
</div>
</div>
</div>
</div>