forked from USRSE/usrse24
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
180 lines (151 loc) · 5.86 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
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
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
---
layout: page
title:
subtitle:
use-site-title: true
fb-img:
---
<img src="{{ site.baseurl }}/assets/img/mainbanner.png" style="width:100%">
<hr>
<div class="main-explain-area jumbotron">
<center>
<h1>Yesterday, Today, Tomorrow</h1>
</center>
<h3>But what <i>is</i> an RSE?</h3>
<p>We like an inclusive definition of Research Software Engineers (RSEs) to encompass those who regularly use expertise in programming to advance research.
This includes researchers who spend a significant amount of time programming, full-time software engineers writing code to solve research problems,
and those somewhere in-between. We aspire to apply the skills and practices of software development to research to create more robust,
manageable, and sustainable research software.
Read more on the <a href="https://us-rse.org/" target="_blank">US-RSE website</a>.</p>
<p>This year's theme is <b><i>Yesterday, Today, Tomorrow</i></b>: A celebration of
all that RSEs have done for computing in the past, in the present, and in the future.
Topics of interest include (but are not limited to):</p>
<ul>
<li>History of the RSE movement</li>
<li>RSE impact</li>
<li>Efforts to expand the RSE movement</li>
<li>Research data management</li>
<li>Software engineering approaches supporting research</li>
<li>Diversity, Equity and Inclusion for RSEs and in RSEng</li>
<li>Training and workforce development</li>
<li>Maturing and expanding the RSE profession</li>
</ul>
<p><b>Submission Website</b>: <a href="https://easychair.org/conferences/?conf=usrse2024" target="_blank">EasyChair</a></p>
<h3> Important Dates </h3>
<ul>
<li><b>Submissions open</b>: Monday, February 12, 2024</li>
<li><b>Workshops, Tutorials, and BoF submissions due</b>: Friday, April 5, 2024 - <b>EXTENDED</b></li>
<li><b>Papers and Notebooks due</b>: Monday, May 20, 2024</li>
<li><b>Poster and Talk abstracts due</b>: Monday, June 3, 2024
<li><b>Conference Date</b>: October 15-17, 2024, Albuquerque, NM</li>
</ul>
<center>
<h2>Our Sponsors</h2>
<h3>Diamond</h3>
<div>
<a href="https://sloan.org/" target="_blank">
<img src="{{ site.baseurl }}/assets/img/sponsor-logos/sloan.png" alt="Alfred P. Sloan Foundation"
style="height:300px;width:auto;">
</a>
</div>
<br><br>
<h4>Platinum</h4>
<br>
<div>
<a href="https://www.sandia.gov" target="_blank">
<img src="{{ site.baseurl }}/assets/img/sponsor-logos/sandia.png"
alt="Sandia National Labs - Sandia National Laboratories" style="height:150px;width:auto;">
</a>
</div>
<div>
<a href="https://lsa.umich.edu/technology-services" target="_blank">
<img src="{{ site.baseurl }}/assets/img/sponsor-logos/lsa_tech_services.png"
alt="University of Michigan LSA Technology Services" style="height:150px;width:auto;">
</a>
</div>
<br><br>
<h4>Gold</h4>
<br>
<div>
<a href="https://www.globus.org" target="_blank">
<img src="{{ site.baseurl }}/assets/img/sponsor-logos/globus.png" alt="Globus" style="height:125px;width:auto;">
</a>
<a href="https://www.gitlab.com" target="_blank">
<img src="{{ site.baseurl }}/assets/img/sponsor-logos/gitlab.png" alt="GitLab" style="height: 65px;width:auto;">
</a>
</div>
</center>
<h3>Join the mailing list</h3>
<p>
Do you want to receive news about the US-RSE conference series? Join our mailing
list to get direct news about all US-RSE conferences.
<p>
<a href="https://groups.google.com/a/us-rse.org/g/usrse-conference" target="_blank" class="btn btn-light btn-lg" role="button" alt="Button link to the US-RSE Conference series mailing list page">Join</a>
<h3> Have questions? </h3>
<p>
Contact the organizers at <a href="mailto:[email protected]">[email protected]</a>.
</p>
</div>
<h1><center> Conference News & Updates </center> </h1>
<hr>
<div class="posts-list">
{% for post in paginator.posts %}
<article class="post-preview">
<a href="{{ post.url | prepend: site.baseurl }}">
<h2 class="post-title">{{ post.title }}</h2>
{% if post.subtitle %}
<h3 class="post-subtitle">
{{ post.subtitle }}
</h3>
{% endif %}
</a>
<p class="post-meta">
Posted on {{ post.date | date: "%B %-d, %Y" }}
</p>
<div class="post-entry-container">
{% if post.image %}
<div class="post-image">
<a href="{{ post.url | prepend: site.baseurl }}">
<img src="{{ post.image }}">
</a>
</div>
{% endif %}
<div class="post-entry">
{{ post.excerpt | strip_html | xml_escape | truncatewords: site.excerpt_length }}
{% assign excerpt_word_count = post.excerpt | number_of_words %}
{% if post.content != post.excerpt or excerpt_word_count > site.excerpt_length %}
<a href="{{ post.url | prepend: site.baseurl }}" class="post-read-more">[Read More]</a>
{% endif %}
<br>
<hr>
</div>
</div>
{% if post.tags.size > 0 %}
<div class="blog-tags">
Tags:
{% if site.link-tags %}
{% for tag in post.tags %}
<a href="{{ site.baseurl }}/tags#{{- tag -}}">{{- tag -}}</a>
{% endfor %}
{% else %}
{{ post.tags | join: ", " }}
{% endif %}
</div>
{% endif %}
</article>
{% endfor %}
</div>
{% if paginator.total_pages > 1 %}
<ul class="pager main-pager">
{% if paginator.previous_page %}
<li class="previous">
<a href="{{ paginator.previous_page_path | prepend: site.baseurl }}">← Newer Posts</a>
</li>
{% endif %}
{% if paginator.next_page %}
<li class="next">
<a href="{{ paginator.next_page_path | prepend: site.baseurl }}">Older Posts →</a>
</li>
{% endif %}
</ul>
{% endif %}