Skip to content

Commit 91b5d0b

Browse files
authored
Merge branch 'main' into patch-1
2 parents 58fc97f + 743adce commit 91b5d0b

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

41 files changed

+2886
-107
lines changed

.devcontainer/devcontainer.json

Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
// For format details, see https://aka.ms/devcontainer.json. For config options, see the
2+
// README at: https://github.com/devcontainers/templates/tree/main/src/docker-existing-dockerfile
3+
{
4+
"name": "Existing Dockerfile",
5+
"build": {
6+
// Sets the run context to one level up instead of the .devcontainer folder.
7+
"context": "..",
8+
// Update the 'dockerFile' property if you aren't using the standard 'Dockerfile' filename.
9+
"dockerfile": "../Dockerfile"
10+
}
11+
12+
// Features to add to the dev container. More info: https://containers.dev/features.
13+
// "features": {},
14+
15+
// Use 'forwardPorts' to make a list of ports inside the container available locally.
16+
// "forwardPorts": [],
17+
18+
// Uncomment the next line to run commands after the container is created.
19+
// "postCreateCommand": "cat /etc/os-release",
20+
21+
// Configure tool-specific properties.
22+
// "customizations": {},
23+
24+
// Uncomment to connect as an existing user other than the container default. More info: https://aka.ms/dev-containers-non-root.
25+
// "remoteUser": "devcontainer"
26+
}

.github/ISSUE_TEMPLATE/config.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
blank_issues_enabled: false
1+
blank_issues_enabled: true
22
contact_links:
33
- name: Get in Contact
44
url: https://us-rse.org/steering-committee/

.github/workflows/generate-newsletter.yml

Lines changed: 32 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -13,17 +13,41 @@ jobs:
1313
- name: Checkout repository
1414
uses: actions/checkout@v3
1515

16-
- name: Extract values from issue body
16+
- name: Print raw issue body
17+
run: |
18+
echo "--------- GITHUB.EVENT.ISSUE.BODY ---------"
19+
echo "${{ github.event.issue.body }}"
20+
echo "-------------------------------------------"
21+
22+
- name: Extract values from issue title
1723
id: vars
1824
run: |
19-
month=$(echo "${{ github.event.issue.body }}" | grep -i "Newsletter Month" -A 1 | tail -n 1 | xargs)
20-
year=$(echo "${{ github.event.issue.body }}" | grep -i "Newsletter Year" -A 1 | tail -n 1 | xargs)
21-
# Convert month name to MM
25+
title="${{ github.event.issue.title }}"
26+
27+
# Extract month and year using awk
28+
month=$(echo "$title" | awk -F': ' '{print $2}' | awk '{print $1}')
29+
year=$(echo "$title" | awk -F': ' '{print $2}' | awk '{print $2}')
30+
31+
if [ -z "$month" ] || [ -z "$year" ]; then
32+
echo "❌ Could not extract month or year from title."
33+
echo "Title was: $title"
34+
exit 1
35+
fi
36+
2237
month_num=$(date -d "$month 1" '+%m')
23-
date="${year}-${month_num}-01"
38+
date="${year}-${month_num}"
2439
branch="feature/newsletter-${year}-${month_num}"
25-
filename="_posts/${date}-newsletter.md"
26-
40+
filename="_posts/newsletters/${date}-newsletter.md"
41+
42+
echo "✅ Parsed values:"
43+
echo " Title: $title"
44+
echo " Month: $month"
45+
echo " Year: $year"
46+
echo " Month Num: $month_num"
47+
echo " Date: $date"
48+
echo " Branch: $branch"
49+
echo " Filename: $filename"
50+
2751
echo "month=$month" >> $GITHUB_OUTPUT
2852
echo "month_num=$month_num" >> $GITHUB_OUTPUT
2953
echo "year=$year" >> $GITHUB_OUTPUT
@@ -56,3 +80,4 @@ jobs:
5680
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
5781
run: |
5882
gh issue comment ${{ github.event.issue.number }} --body "Draft file created for **${{ steps.vars.outputs.month }} ${{ steps.vars.outputs.year }}** at \`${{ steps.vars.outputs.filename }}\` in branch \`${{ steps.vars.outputs.branch }}\`.\n\nYou can now:\n1. Open the branch in VS Code using GitFlow (\`feature/newsletter-${{ steps.vars.outputs.year }}-${{ steps.vars.outputs.month_num }}\`)\n2. Edit and review the draft\n3. Open a PR into \`develop\` when ready"
83+

.github/workflows/linting.yaml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,8 @@ jobs:
5757
https://bitcon.blacksintechnology.net/,\
5858
https://travel.usnews.com/features/top-pride-parades-and-celebrations-in-the-us,\
5959
https://family.20thcenturystudios.com/movies/hidden-figures,\
60-
https://www.usatoday.com/story/money/2023/06/07/silicon-valley-tech-black-history-roy-clay/70262081007/"
60+
https://www.usatoday.com/story/money/2023/06/07/silicon-valley-tech-black-history-roy-clay/70262081007/,\
61+
https://aaan.uic.edu/student-engagement/uic-black-tech-scholars-program/"
6162

6263
# Exclude these files from the checker
6364
exclude_files: "README.md,\
@@ -69,4 +70,5 @@ jobs:
6970
_config.yml,\
7071
tests/test_,\
7172
.github/workflows,\
73+
.github/ISSUE_TEMPLATE,\
7274
_posts/newsletters/"

_data/callouts/home.yml

Lines changed: 5 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -8,12 +8,11 @@ items:
88
link_name: Newsletters
99
- title: USRSE'25
1010
subtitle: >
11-
Plan to join us at our third conference in Philadelphia, PA, October 6-8, 2025.<br><br>
11+
Join us at our third conference in Philadelphia, PA, October 6-8, 2025.<br><br>
1212
link: https://us-rse.org/usrse25/
13-
link_name: Save the Date
14-
- title: 2025 US-RSE Community Awards
13+
link_name: Register Now!
14+
- title: US-RSE Organizational Membership
1515
subtitle: >
16-
US-RSE is accepting nominations for the US-RSE Technical Excellence and
17-
US-RSE Community Impact and Leadership Awards! Nominations close July 11, 2025.
18-
link: https://us-rse.org/community-awards/
16+
Support US-RSE as an organizational member. Join by December 1, 2025 to be a Founding Member.
17+
link: https://us-rse.org/org-membership/
1918
link_name: Learn More

_data/jobs.yml

Lines changed: 57 additions & 48 deletions
Original file line numberDiff line numberDiff line change
@@ -1,56 +1,65 @@
1-
- expires: 2025-06-12
2-
location: University of Michigan, Ann Arbor, MI / hybrid
3-
name: Research Services Manager
4-
posted: 2025-05-30
5-
url: https://careers.umich.edu/job_detail/264030/research-services-manager
6-
- expires: 2025-05-31
7-
location: Astera Institute, Emeryville, CA
8-
name: Research Software Engineer
9-
posted: 2025-05-12
10-
url: https://jobs.ashbyhq.com/astera/06eb01f4-05e8-4f47-93b6-4ad9d30cf73e
11-
- expires: 2025-06-13
12-
location: Princeton University, Princeton, NJ
13-
name: Research Software Engineer I
14-
posted: 2025-05-05
15-
url: https://main-princeton.icims.com/jobs/20785/research-software-engineer-i/job?mode=view
1+
- expires: 2025-12-28
2+
location: Pittsburgh Supercomputing Center, Carnegie Mellon University, Pittsburgh,
3+
PA
4+
name: Computational Scientist
5+
posted: 2025-08-28
6+
url: https://www.psc.edu/computational-scientist-2023583/
7+
- expires: 2025-12-28
8+
location: Pittsburgh Supercomputing Center, Carnegie Mellon University, Pittsburgh,
9+
PA
10+
name: Associate Computational Scientist
11+
posted: 2025-08-28
12+
url: https://www.psc.edu/associate-computational-scientist-2023584/
13+
- expires: 2025-09-04
14+
location: University of Florida, Gainesville, FL
15+
name: Senior Research Software Engineer
16+
posted: 2025-08-25
17+
url: https://explore.jobs.ufl.edu/en-us/job/536099/research-software-engineer-iiiiv
18+
- expires: 2025-08-15
19+
location: Partnership for an Advanced Computing Environment (PACE), Georgia Institute
20+
of Technology, Atlanta, GA
21+
name: Research Scientist I/II (open rank)
22+
posted: 2025-08-01
23+
url: https://careers.hprod.onehcm.usg.edu/psp/careers/CAREERS/HRMS/c/HRS_HRAM_FL.HRS_CG_SEARCH_FL.GBL?Page=HRS_APP_JBPST_FL&Action=U&FOCUS=Applicant&SiteId=3000&JobOpeningId=288190&PostingSeq=1
24+
- expires: 2026-01-30
25+
location: Princeton Language and Intelligence Initiative, Princeton, NJ
26+
name: Lead Research Software Engineer
27+
posted: 2025-07-30
28+
url: https://main-princeton.icims.com/jobs/19506/lead-research-software-engineer/job
29+
- expires: 2025-08-15
30+
location: Department of Physics and Astronomy, University of Pennsylvania, Philadelphia,
31+
PA
32+
name: Postdoctoral Researcher
33+
posted: 2025-07-29
34+
url: https://academicjobsonline.org/ajo/jobs/30295
35+
- expires: 2025-08-29
36+
location: Climate People, Pittsburgh, PA
37+
name: Senior Computational Software Engineer
38+
posted: 2025-07-18
39+
url: https://www.climatepeople.com/job/2106619
1640
- expires: 2025-12-31
17-
location: MIT, Cambridge, MA, Hybrid
18-
name: Software Developer 2, SRS
19-
posted: 2025-04-29
20-
url: https://careers.peopleclick.com/careerscp/client_mit/external/en-us/jobDetails/jobDetail.html?jobPostId=32282&localeCode=en-us
21-
- expires: 2025-04-20
22-
location: University of California, Davis, Davis, CA
23-
name: CRESCENT Specialist
24-
posted: 2025-04-07
25-
url: https://recruit.ucdavis.edu/JPF07007
26-
- expires: 2025-04-25
41+
location: University of California, San Francisco, San Francisco, CA
42+
name: Data scientist
43+
posted: 2025-07-13
44+
url: https://www.jeanfeng.com/joining#data-scientist-2-openings
45+
- expires: 2025-09-30
46+
location: Florida International University, Miami, FL (position is in-person, not
47+
remote or hybrid)
48+
name: Part-Time Computer Programmer for Cognitive Neuroscience Lab at FIU
49+
posted: 2025-07-08
50+
url: http://www.ndclab.com/wp-content/uploads/2025/07/NDCLab-FIU_programmer-job.docx.pdf
51+
- expires: 2025-08-15
2752
location: Princeton University, Princeton, NJ
28-
name: Senior Research Software Development Manager
29-
posted: 2025-03-06
30-
url: https://social.icims.com/viewjob/pl17412800336940c26b
31-
- expires: 2025-05-01
32-
location: Cleveland Clinic Foundation, Cleveland, OH
33-
name: Director of Research Computing
34-
posted: 2025-03-06
35-
url: https://www.lerner.ccf.org/careers/faculty/
36-
- expires: 2025-04-18
37-
location: Research Software Engineering (RSE) Group, Princeton University, Princeton,
38-
NJ
3953
name: Research Software Engineer II
40-
posted: 2025-02-18
41-
url: https://main-princeton.icims.com/jobs/20505/research-software-engineer-ii/job?mode=view
42-
- expires: 2025-04-30
43-
location: University of Chicago, Chicago, IL
44-
name: Staff Data Scientist
45-
posted: 2025-02-18
46-
url: https://uchicago.wd5.myworkdayjobs.com/External/job/Chicago-IL/Staff-Data-Scientist_JR29077
54+
posted: 2025-07-08
55+
url: https://main-princeton.icims.com/jobs/20864/research-software-engineer-ii/job
56+
- expires: 2025-08-30
57+
location: University of Delaware, Newark, DE
58+
name: Research Software Engineer
59+
posted: 2025-06-26
60+
url: https://careers.udel.edu/cw/en-us/job/501974/research-software-engineer-first-state-ai-institute
4761
- expires: 2025-12-16
4862
location: School of Computing, University of Wyoming, Laramie, WY
4963
name: Research Scientist, Associate or Assistant (two openings)
5064
posted: 2024-12-16
5165
url: https://eeik.fa.us2.oraclecloud.com/hcmUI/CandidateExperience/en/sites/CX_1/job/243604/
52-
- expires: 2025-06-01
53-
location: Princeton University, Princeton, NJ
54-
name: Research Software Engineer I
55-
posted: 2024-11-15
56-
url: https://main-princeton.icims.com/jobs/20160/research-software-engineer-i/job?mode=view

_data/memberCounts.csv

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -86,3 +86,7 @@ January 2025,45,3095
8686
February 2025,52,3146
8787
March 2025,68,3214
8888
April 2025,44,3258
89+
May 2025,52,3310
90+
June 2025,70,3380
91+
July 2025,74,3454
92+
August 2025,70,3524

_data/related-jobs.yml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1+
- expires: 2025-09-30
2+
location: Kempner Institute, Harvard University, Cambridge, MA
3+
name: Senior ML Research Engineer (NeuroAI)
4+
posted: 2025-06-13
5+
url: https://sjobs.brassring.com/TGnewUI/Search/home/HomeWithPreLoad?partnerid=25240&siteid=5341&PageType=JobDetails&jobid=2012692
16
- expires: 2025-09-22
27
location: Arizona State University, Tempe, AZ
38
name: Teaching Assistant Professor - Computational Life Sciences

_data/rse-groups.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -93,7 +93,7 @@
9393
url: https://www.hpc.msstate.edu
9494
- institution: Dartmouth College
9595
name: Research Software Engineering
96-
url: https://rc.dartmouth.edu/index.php/research-software-engineering/
96+
url: https://rc.dartmouth.edu/research-software-engineering/
9797
- institution: University of Florida
9898
name: UFIT Research Computing
9999
url: https://www.rc.ufl.edu

_events/2021/2021-10-dei-media-club.md

Lines changed: 4 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -18,10 +18,10 @@ Equity, and Inclusion Working Group
1818
at the US-RSE Association presents its next instance of the DEI Media Club.
1919

2020
For this next session of the DEI Media Club, we will be discussing an episode
21-
of [reWorked - The Diversity and Inclusion
22-
Podcast](https://theewgroup.com/podcast/) - [Series 4, Episode 6: Building safe
21+
of *reWorked - The Diversity and Inclusion
22+
Podcast*, Series 4, Episode 6: "Building safe
2323
spaces and harnessing psychological
24-
safety](https://feeds.buzzsprout.com/151841.rss).
24+
safety".
2525

2626
To prepare:
2727

@@ -30,9 +30,7 @@ To prepare:
3030
to let us know you interested
3131

3232
2. Listen to Series 4, Episode 6: Building safe spaces and harnessing
33-
psychological safety - [Apple
34-
Podcasts](https://podcasts.apple.com/gb/podcast/reworked/id1342204629)
35-
[RSS](https://feeds.buzzsprout.com/151841.rss)
33+
psychological safety (*podcast no longer available*)
3634

3735
3. Come prepared to discuss!
3836

0 commit comments

Comments
 (0)