Skip to content

Commit 0d416a8

Browse files
This adds the following:
1. Removes expired jobs from jobs.yml an related-jobs.yml 2. Creates an "event box" and "opportunity box" html type to make events and opportunities more visually appealing. 3. Automates the updating of the community and travel funds deadline to always show the next upcoming deadline (end of quarter) 4. Puts the community call in a playable youtube iframe
1 parent bac5d5a commit 0d416a8

File tree

5 files changed

+123
-106
lines changed

5 files changed

+123
-106
lines changed

β€Ž_data/jobs.ymlβ€Ž

Lines changed: 0 additions & 35 deletions
Original file line numberDiff line numberDiff line change
@@ -18,26 +18,6 @@
1818
name: Director of Research Computing
1919
posted: 2025-03-06
2020
url: https://www.lerner.ccf.org/careers/faculty/
21-
- expires: 2025-03-28
22-
location: Oak Ridge National Laboratory, Oak Ridge, TN
23-
name: Software Engineer
24-
posted: 2025-02-28
25-
url: https://jobs.ornl.gov/job-invite/14632/
26-
- expires: 2025-03-21
27-
location: Prolaio, Inc., Chicago, IL or San Francisco, CA (remote/flexible)
28-
name: Cloud Software Engineer
29-
posted: 2025-02-21
30-
url: https://www.linkedin.com/jobs/view/4133153063
31-
- expires: 2025-03-21
32-
location: Prolaio, Inc., Chicago, IL or San Francisco, CA (remote/flexible)
33-
name: Director of Data Services
34-
posted: 2025-02-21
35-
url: https://www.linkedin.com/jobs/view/4138425467
36-
- expires: 2025-03-21
37-
location: Prolaio, Inc., Chicago, IL or San Francisco, CA (flexible)
38-
name: Senior Data Scientist
39-
posted: 2025-02-21
40-
url: https://www.linkedin.com/jobs/view/4138240676
4121
- expires: 2025-04-18
4222
location: Research Software Engineering (RSE) Group, Princeton University, Princeton,
4323
NJ
@@ -54,11 +34,6 @@
5434
name: Research Software Engineer
5535
posted: 2025-02-10
5636
url: https://oscur.org/research-software-engineer-uic/
57-
- expires: 2025-03-01
58-
location: Carnegie Science, Washington, DC
59-
name: Research Software Engineer
60-
posted: 2025-01-22
61-
url: https://apply.interfolio.com/161035
6237
- expires: 2025-02-28
6338
location: University of Chicago - Globus, remote/flexible
6439
name: Professional Services Developer
@@ -69,11 +44,6 @@
6944
name: Research Scientist, Associate or Assistant (two openings)
7045
posted: 2024-12-16
7146
url: https://eeik.fa.us2.oraclecloud.com/hcmUI/CandidateExperience/en/sites/CX_1/job/243604/
72-
- expires: 2025-06-01
73-
location: Princeton University, Princeton, NJ
74-
name: Research Software Engineer I
75-
posted: 2024-11-15
76-
url: https://main-princeton.icims.com/jobs/20160/research-software-engineer-i/job?mode=view
7747
- expires: 2025-02-26
7848
location: Princeton University and NOAA GFDL, Princeton, NJ
7949
name: Postdoctoral Research Associate - data science and engineering
@@ -84,8 +54,3 @@
8454
name: Quantum Architect, Simulation & Software
8555
posted: 2024-09-21
8656
url: https://www.psiquantum.com/apply?gh_jid=6036333003
87-
- expires: 2025-04-01
88-
location: The National Center for Supercomputing Applications, Urbana, IL
89-
name: Associate/Research Software Engineer/Senior
90-
posted: 2024-04-12
91-
url: https://illinois.csod.com/ux/ats/careersite/1/home/requisition/9969?c=illinois

β€Ž_data/related-jobs.ymlβ€Ž

Lines changed: 0 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,3 @@
1-
- expires: 2025-04-01
2-
location: Virginia Tech University Libraries, Blacksburg, VA
3-
name: Evidence Synthesis Information Scientist
4-
posted: 2025-03-11
5-
url: https://careers.pageuppeople.com/968/cw/en-us/job/532611/evidence-synthesis-information-scientist
61
- expires: 2025-03-04
72
location: Scientific Computation Research Center, Rensselaer Polytechnic Institute,
83
Troy, NY (can be remote/flexible)
@@ -14,13 +9,3 @@
149
name: Teaching Assistant Professor - Computational Life Sciences
1510
posted: 2024-12-02
1611
url: https://apply.interfolio.com/157209
17-
- expires: 2025-09-25
18-
location: University of Washington, Seattle, WA
19-
name: Assistant Professor, Teaching Track, in Data Science
20-
posted: 2024-09-26
21-
url: https://apply.interfolio.com/150032
22-
- expires: 2025-09-25
23-
location: University of Washington, Seattle, WA
24-
name: Assistant Professor, Tenure Track, in Informatics
25-
posted: 2024-09-26
26-
url: https://apply.interfolio.com/150031

β€Ž_includes/event-box.htmlβ€Ž

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
<div class="alert alert-info" role="alert" style="margin-bottom: 30px;">
2+
<h4 class="alert-heading">πŸ“’ {{ include.title }}</h4>
3+
<p><strong>πŸ“… When:</strong> {{ include.when }}</p>
4+
<p><strong>πŸ“ Where:</strong> {{ include.where }}</p>
5+
<p>{{ include.preamble | markdownify }}</p>
6+
<p>{{ include.links | markdownify | replace: '<a ', '<a target="_blank" rel="noopener" ' }}</p>
7+
</div>
Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
<div class="alert alert-success" role="alert" style="margin-bottom: 30px;">
2+
<h4 class="alert-heading">πŸš€ {{ include.title }}</h4>
3+
<p>{{ include.preamble | markdownify }}</p>
4+
<p>{{ include.links | markdownify | replace: '<a ', '<a target="_blank" rel="noopener" ' }}</p>
5+
</div>

β€Ž_posts/newsletters/2025-04-28-newsletter.mdβ€Ž

Lines changed: 111 additions & 56 deletions
Original file line numberDiff line numberDiff line change
@@ -94,14 +94,27 @@ In March, the Steering Committee looked at financing for the US-RSE'25 conferenc
9494

9595
<a name="community-funds"></a>
9696
# ✈️ **4. Community and Travel Funds program**
97-
**Next Application Deadline:** March 31, 2025
9897

99-
*Part of the Alfred P. Sloan Foundation grant for US-RSE has been delegated for the [Community and Travel Funds program](https://us-rse.org/funds-and-awards/). Members of US-RSE can apply for funds for community or individual purposes for event costs, get-togethers, travel funding, and more.*
100-
101-
<!--Update program details-->
98+
{% assign current_month = 'now' | date: '%m' | plus: 0 %}
99+
{% assign current_year = 'now' | date: '%Y' %}
100+
101+
{% if current_month <= 3 %}
102+
{% assign next_deadline = current_year | append: "-03-31" %}
103+
{% elsif current_month <= 6 %}
104+
{% assign next_deadline = current_year | append: "-06-30" %}
105+
{% elsif current_month <= 9 %}
106+
{% assign next_deadline = current_year | append: "-09-30" %}
107+
{% elsif current_month <= 12 %}
108+
{% assign next_deadline = current_year | append: "-12-31" %}
109+
{% endif %}
110+
111+
<div class="alert alert-primary" role="alert">
112+
<strong>Next Application Deadline:</strong> {{ next_deadline | date: "%B %-d, %Y" }}
113+
</div>
102114

115+
*Part of the Alfred P. Sloan Foundation grant for US-RSE has been delegated for the [Community and Travel Funds program](https://us-rse.org/funds-and-awards/). Members of US-RSE can apply for funds for community or individual purposes for event costs, get-togethers, travel funding, and more.*
103116

104-
The next application deadline is **March 31, 2025**. We encourage you to apply for funding to support your community and travel needs!
117+
The next application deadline is **{{ next_deadline | date: "%B %-d, %Y" }}**. We encourage you to apply for funding to support your community and travel needs!
105118
The application process is simple and straightforward. You can find the application form [here](https://us-rse.org/funds-and-awards/).
106119

107120

@@ -137,7 +150,7 @@ Please reach out to Sandra Gesing at [[email protected]](mailto:[email protected]
137150
-----------------
138151

139152
<a name="news"></a>
140-
# πŸ—žοΈ **5. Community News**
153+
# πŸ—žοΈ **6. Community News**
141154

142155
<!--Someone you want to shoutout? DO IT HERE!-->
143156

@@ -150,18 +163,23 @@ The next community call will be all about **conferences** and will take place on
150163

151164
***April Community Call (Past)***
152165

153-
The April Community Call was about **git branching strategies and continuous integration tools**, and is available on YouTube [here](https://www.youtube.com/watch?v=UdpjTha4F4M).
166+
The April Community Call was about **git branching strategies and continuous integration tools**, and is available on YouTube:
167+
168+
<div style="position: relative; padding-bottom: 56.25%; height: 0; overflow: hidden; max-width: 100%; background: #000;">
169+
<img src="https://img.youtube.com/vi/UdpjTha4F4M/hqdefault.jpg"
170+
alt="YouTube Video Thumbnail"
171+
style="position: absolute; top: 0; left: 0; width: 100%; height: 100%; object-fit: cover; cursor: pointer;"
172+
onclick="this.outerHTML='<iframe width=\'560\' height=\'315\' src=\'https://www.youtube.com/embed/UdpjTha4F4M?autoplay=1\' title=\'YouTube video player\' frameborder=\'0\' allow=\'accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share\' allowfullscreen style=\'position: absolute; top: 0; left: 0; width: 100%; height: 100%;\'></iframe>'">
173+
</div>
154174

155175
----------------
156176

157177
<a name="events"></a>
158178
-----------------
159-
# πŸ‘€ **6. Interesting Events and Opportunities**
179+
# πŸ‘€ **7. Interesting Events and Opportunities**
160180

161181
Save the date! All of the most exciting events and opportunities in the RSE community are listed here.
162182

163-
<!--Advertise your interesting opportunities here-->
164-
165183
#### 😲_**Get Your Magical US-RSE Unicorn - Edition 2025!**_😲
166184

167185
πŸ¦„ They Arrived as a Herd… But They’re Ready to Travel to You! πŸš€
@@ -208,58 +226,95 @@ Save the date! All of the most exciting events and opportunities in the RSE comm
208226

209227
πŸ‘‰ [https://give.communityin.org/unicorn2025?ref=ab_20w0PysS59P20w0PysS59P](https://give.communityin.org/unicorn2025?ref=ab_20w0PysS59P20w0PysS59P)
210228

211-
#### _**R-RSE Affinity Group (Project 2)**_
212-
213-
<div style="overflow: hidden;">
214-
215-
<img src="https://rworks.dev/posts/welcome-to-rworks/images/r-love.png"
216-
alt="Artwork by @allison_horst on Twitter"
217-
style="float: right; max-width: 300px; width: 100%; height: auto; margin: 0 20px 20px 0; border-radius: 10px;">
218-
219-
<p>
220-
Interested in designing and launching a mini-hackathon, codeathon, or other R-focused project?
221-
Come join the <a href="https://us-rse.org/ag/r-rse/" target="_blank" rel="noopener">R-RSE Affinity Group (R-RSE)</a>
222-
for Project 2 of 3 that we are making available this year! R-RSE exists to increase the representation of R users in the US-RSE community
223-
and provide opportunities for members to develop R skills.
224-
</p>
225-
226-
<p>
227-
Submit your plan by June 6, 2025. More details can be found
228-
<a href="https://docs.google.com/document/d/1fEL6H4-FW-C_OaB0oMp5iw9_5KJYgbOk6xpnW0sMSDY/edit?tab=t.b8icz0xlc3zz" target="_blank" rel="noopener">here</a>.
229-
</p>
230-
231-
</div>
232-
233-
<!--Advertise your events in May and beyond here-->
234-
235-
#### _DMV-RSE Meetup: Maintaining open-source software over the decade time scale: lessons learned and best practices_
236-
229+
<!--
230+
231+
Advertise your interesting opportunities here
232+
233+
We're using an html-box for automating opportunities.
234+
They look pretty, and are easy to use.
235+
Just copy the code in the include block below, and fill in the details in markdown.
236+
237+
{% include opportunity-box.html
238+
title="Awesome opportunity"
239+
preamble="Are you an R user passionate about software engineering and collaboration?
240+
Join the **R-RSE Affinity Group** to connect with fellow R users, share projects, and build community."
241+
links="[Learn more about R-RSE](https://us-rse.org/ag/r-rse/)"
242+
%}
243+
-->
244+
245+
246+
247+
{% include opportunity-box.html
248+
title="R-RSE Affinity Group (Project 2)"
249+
preamble="
250+
<img src='https://rworks.dev/posts/welcome-to-rworks/images/r-love.png'
251+
alt='Artwork by @allison_horst on Twitter'
252+
style='float: right; max-width: 300px; width: 100%; height: auto; margin: 0 20px 20px 0; border-radius: 10px;'>
253+
254+
Interested in designing and launching a mini-hackathon, codeathon, or other R-focused project?
255+
256+
Come join the [R-RSE Affinity Group (R-RSE)](https://us-rse.org/ag/r-rse/) for Project 2 of 3 that we are making available this year! R-RSE exists to increase the representation of R users in the US-RSE community and provide opportunities for members to develop R skills.
257+
"
258+
links="Submit your plan by June 6, 2025. More details can be found [here](https://docs.google.com/document/d/1fEL6H4-FW-C_OaB0oMp5iw9_5KJYgbOk6xpnW0sMSDY/edit?tab=t.b8icz0xlc3zz)!"
259+
%}
260+
261+
262+
<!--
263+
Advertise your events and opportunities in in the coming months and beyond here!
264+
265+
We're using an html-box for automating events.
266+
They look pretty, and are easy to use.
267+
Just copy the code in the include block below, and fill in the details in markdown.
268+
269+
{% include event-box.html
270+
271+
title="My cool event"
272+
when="Tomorrow, May 15, 5:30–7:00 PM"
273+
where="My place"
274+
preamble="Come on over to my cool event. It's going to be **awesome**! Here's a list of things we can do:
275+
- eat pizza
276+
- drink soda
277+
- play games
278+
- have fun
279+
It's all in markdown too!"
280+
links="Make sure to include a CALL TO ACTION: Show up by registering[here](https://example.com) or on [Meetup](https://example.com)"
281+
%}
282+
283+
-->
284+
285+
{% include event-box.html
286+
287+
title="DMV-RSE Meetup: Maintaining Open-Source Software"
288+
289+
when="Thursday, May 15, 5:30–7:00 PM"
290+
291+
where="Martin Luther King Jr. Memorial Library, Washington DC"
292+
293+
preamble="
237294
The [Delaware-Maryland-Virginia (DMV) RSE](https://us-rse.org/ag/dmv-rse/) affinity group is hosting a third in-person DMV Research Software Engineers meetup on May 15 in Washington DC! Join us to learn about a new RSE topic, connect with fellow RSE professionals in the area, and make friends!
238295

239-
**Speaker**: [Ryan Dale](https://irp.nih.gov/pi/ryan-dale), a senior scientist and Head of the Bioinformatics and Scientific Programming Core at the National Institute of Child Health and Human Development will share insights about what it takes to maintain software for 14 years (and counting). Ryan's talk will touch on various hot topics in research software engineering like journal article citations vs. actual usage, engaging with a community of users, working with GitHub and various online providers, building out your online CV, and more.
240-
241-
**When**: Thursday, May 15, 5.30-7pm
242-
243-
**Where**: Martin Luther King Jr. Memorial Library, Washginton DC
244-
245-
Register and details on [Luma](https://lu.ma/f260643d) or via [Meetup](https://www.meetup.com/dc-research-software-engineers/events/307019826/?utm_medium=referral&utm_campaign=share-btn_savedevents_share_modal&utm_source=link).
246-
247-
#### _Non-Government Career Paths for U.S. Federal Data Scientists_
248-
249-
rOpenSci and Openscapes are lucky to have as members many U.S. federal employees who enrich our work and community. In a time of great uncertainty for so many government workers, we want to support our members who are considering their next career steps.
250-
Join us on Tuesday, May 6 at 8:30PM EDT for a discussion and networking event for and with current and former U.S. federal government data scientists.
251-
We will be joined by co-hosts discussing their career paths in other sectors after serving at U.S. federal agencies. Follow this link to register: [rOpenSci](https://ropensci.org/events/datasci-careers-feds/)
252-
253-
**When**: Tuesday, May 6, 8:30PM EDT
254-
255-
**Where**: Online
296+
**Speaker**: [Ryan Dale](https://irp.nih.gov/pi/ryan-dale), a senior scientist and Head of the Bioinformatics and Scientific Programming Core at the National Institute of Child Health and Human Development will share insights about what it takes to maintain software for 14 years (and counting). Ryan's talk will touch on various hot topics in research software engineering like journal article citations vs. actual usage, engaging with a community of users, working with GitHub and various online providers, building out your online CV, and more."
297+
298+
links="Register and details on [Luma](https://lu.ma/f260643d) or via [Meetup](https://www.meetup.com/dc-research-software-engineers/events/307019826/?utm_medium=referral&utm_campaign=share-btn_savedevents_share_modal&utm_source=link)"
299+
%}
300+
301+
{% include event-box.html
302+
303+
title="Non-Government Career Paths for U.S. Federal Data Scientists"
304+
when="Tuesday, May 6, 8:30 PM EDT"
305+
where="Online"
306+
preamble="
307+
rOpenSci and Openscapes are lucky to have as members many U.S. federal employees who enrich our work and community. In a time of great uncertainty for so many government workers, we want to support our members who are considering their next career steps. Join us on Tuesday, May 6 at 8:30PM EDT for a discussion and networking event for and with current and former U.S. federal government data scientists. We will be joined by co-hosts discussing their career paths in other sectors after serving at U.S. federal agencies.
308+
"
309+
links="Follow this link to register: [rOpenSci](https://ropensci.org/events/datasci-careers-feds/)"
310+
%}
256311

257312
> Have an event you want people to know about? Please send us your suggestions for the next newsletter using the #newsletters channel in the USRSE Slack!
258313
259314
-----------------
260315

261316
<a name="reads"></a>
262-
# πŸ“š **7. Featured Reads, Videos, and Podcasts**
317+
# πŸ“š **8. Featured Reads, Videos, and Podcasts**
263318

264319
Stay informed with the latest publications, conversations, and entertaining content from the research software engineering community.
265320

@@ -287,7 +342,7 @@ Recent episodes from the **Code4Thought** podcast:
287342
288343
-----------------
289344
<a name="involved"></a>
290-
# πŸƒ **8. Get Involved**
345+
# πŸƒ **9. Get Involved**
291346

292347
Volunteering with US-RSE is a great way to build your professional network and gain skills that can help you take the next step in your career. A great way to start is by joining a working group. Reach out to [email protected] or ask on Slack if you have questions about getting started.
293348

@@ -312,7 +367,7 @@ As always, we thank everyone who is already contributing for their help in shapi
312367
-----------------
313368

314369
<a name="jobs"></a>
315-
# πŸ§‘β€πŸ’Ό **9. Recent Job Postings**
370+
# πŸ§‘β€πŸ’Ό **10. Recent Job Postings**
316371

317372
These opportunities were recently posted to the [RSE Opportunities page](https://us-rse.org/jobs/):
318373

0 commit comments

Comments
Β (0)