diff --git a/.all-contributorsrc b/.all-contributorsrc index a537268d4..b35294cdf 100644 --- a/.all-contributorsrc +++ b/.all-contributorsrc @@ -982,6 +982,17 @@ "avatar_url": [ "https://avatars.githubusercontent.com/u/56853002?v=4" ] + }, + { + "login": "manbat", + "name": "manbat", + "contributions": [ + "code" + ], + "profile": "https://github.com/manbat", + "avatar_url": [ + "https://avatars.githubusercontent.com/u/41646490?v=4" + ] } ], "contributorsPerLine": 7 diff --git a/.github/ISSUE_TEMPLATE/config.yml b/.github/ISSUE_TEMPLATE/config.yml index 86d3d78a1..e993b3e30 100644 --- a/.github/ISSUE_TEMPLATE/config.yml +++ b/.github/ISSUE_TEMPLATE/config.yml @@ -1,4 +1,4 @@ -blank_issues_enabled: false +blank_issues_enabled: true contact_links: - name: Get in Contact url: https://us-rse.org/steering-committee/ diff --git a/.github/workflows/generate-newsletter.yml b/.github/workflows/generate-newsletter.yml index 8c7a4399b..c87522833 100644 --- a/.github/workflows/generate-newsletter.yml +++ b/.github/workflows/generate-newsletter.yml @@ -13,17 +13,41 @@ jobs: - name: Checkout repository uses: actions/checkout@v3 - - name: Extract values from issue body + - name: Print raw issue body + run: | + echo "--------- GITHUB.EVENT.ISSUE.BODY ---------" + echo "${{ github.event.issue.body }}" + echo "-------------------------------------------" + + - name: Extract values from issue title id: vars run: | - month=$(echo "${{ github.event.issue.body }}" | grep -i "Newsletter Month" -A 1 | tail -n 1 | xargs) - year=$(echo "${{ github.event.issue.body }}" | grep -i "Newsletter Year" -A 1 | tail -n 1 | xargs) - # Convert month name to MM + title="${{ github.event.issue.title }}" + + # Extract month and year using awk + month=$(echo "$title" | awk -F': ' '{print $2}' | awk '{print $1}') + year=$(echo "$title" | awk -F': ' '{print $2}' | awk '{print $2}') + + if [ -z "$month" ] || [ -z "$year" ]; then + echo "❌ Could not extract month or year from title." + echo "Title was: $title" + exit 1 + fi + month_num=$(date -d "$month 1" '+%m') - date="${year}-${month_num}-01" + date="${year}-${month_num}" branch="feature/newsletter-${year}-${month_num}" - filename="_posts/${date}-newsletter.md" - + filename="_posts/newsletters/${date}-newsletter.md" + + echo "✅ Parsed values:" + echo " Title: $title" + echo " Month: $month" + echo " Year: $year" + echo " Month Num: $month_num" + echo " Date: $date" + echo " Branch: $branch" + echo " Filename: $filename" + echo "month=$month" >> $GITHUB_OUTPUT echo "month_num=$month_num" >> $GITHUB_OUTPUT echo "year=$year" >> $GITHUB_OUTPUT @@ -56,3 +80,4 @@ jobs: GH_TOKEN: ${{ secrets.GITHUB_TOKEN }} run: | 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" + diff --git a/.github/workflows/linting.yaml b/.github/workflows/linting.yaml index 00945bf6b..b99bdced7 100644 --- a/.github/workflows/linting.yaml +++ b/.github/workflows/linting.yaml @@ -57,7 +57,8 @@ jobs: https://bitcon.blacksintechnology.net/,\ https://travel.usnews.com/features/top-pride-parades-and-celebrations-in-the-us,\ https://family.20thcenturystudios.com/movies/hidden-figures,\ - https://www.usatoday.com/story/money/2023/06/07/silicon-valley-tech-black-history-roy-clay/70262081007/" + https://www.usatoday.com/story/money/2023/06/07/silicon-valley-tech-black-history-roy-clay/70262081007/,\ + https://aaan.uic.edu/student-engagement/uic-black-tech-scholars-program/" # Exclude these files from the checker exclude_files: "README.md,\ @@ -69,4 +70,5 @@ jobs: _config.yml,\ tests/test_,\ .github/workflows,\ + .github/ISSUE_TEMPLATE,\ _posts/newsletters/" diff --git a/.tributors b/.tributors index 7ad21ad48..c95ab4529 100644 --- a/.tributors +++ b/.tributors @@ -496,5 +496,9 @@ "TatsatJha": { "name": "TatsatJha", "blog": "https://github.com/TatsatJha" + }, + "manbat": { + "name": "manbat", + "blog": "https://github.com/manbat" } } \ No newline at end of file diff --git a/README.md b/README.md index 2acad7f1d..57edcd958 100644 --- a/README.md +++ b/README.md @@ -3,7 +3,7 @@ https://us-rse.org -[![All Contributors](https://img.shields.io/badge/all_contributors-91-orange.svg?style=flat-square)](#contributors) +[![All Contributors](https://img.shields.io/badge/all_contributors-92-orange.svg?style=flat-square)](#contributors) ## What is this? @@ -239,6 +239,9 @@ tool to generate a contributors graphic below. David Luet
David Luet

💻 TatsatJha
TatsatJha

💻 + + manbat
manbat

💻 + diff --git a/_config.yml b/_config.yml index b5d62ccaf..e8d4457fe 100644 --- a/_config.yml +++ b/_config.yml @@ -9,8 +9,8 @@ baseurl: "" # for testing, also check .circleci/circle_urls.sh title-img: /assets/img/main_logo_transparent.png # baseurl will be prepended twitter-img: /assets/img/main_logo_transparent.png # url + baseurl will be prepended banner: /assets/img/main_logo_transparent.png -icon: /assets/img/main_logo_transparent.png -# icon: /assets/img/USRSE_Pride_6ColorChevronsSquare.png +# icon: /assets/img/main_logo_transparent.png +icon: /assets/img/USRSE_Pride_6ColorChevronsSquare.png domain: https://us-rse.org email: contact@us-rse.org diff --git a/_data/jobs.yml b/_data/jobs.yml index e51a3c729..77aec46d3 100644 --- a/_data/jobs.yml +++ b/_data/jobs.yml @@ -1,8 +1,8 @@ -- expires: 2025-06-12 - location: University of Michigan, Ann Arbor, MI / hybrid - name: Research Services Manager - posted: 2025-05-30 - url: https://careers.umich.edu/job_detail/264030/research-services-manager +- expires: 2025-06-22 + location: University of Florida, Gainesville, Florida + name: Research Software Engineer III/IV + posted: 2025-06-18 + url: https://explore.jobs.ufl.edu/en-us/job/536099/research-software-engineer-iiiiv - expires: 2025-05-31 location: Astera Institute, Emeryville, CA name: Research Software Engineer @@ -33,12 +33,6 @@ name: Director of Research Computing posted: 2025-03-06 url: https://www.lerner.ccf.org/careers/faculty/ -- expires: 2025-04-18 - location: Research Software Engineering (RSE) Group, Princeton University, Princeton, - NJ - name: Research Software Engineer II - posted: 2025-02-18 - url: https://main-princeton.icims.com/jobs/20505/research-software-engineer-ii/job?mode=view - expires: 2025-04-30 location: University of Chicago, Chicago, IL name: Staff Data Scientist diff --git a/_data/related-jobs.yml b/_data/related-jobs.yml index f1f98f0f3..431dfbfc6 100644 --- a/_data/related-jobs.yml +++ b/_data/related-jobs.yml @@ -1,3 +1,8 @@ +- expires: 2025-09-30 + location: Kempner Institute, Harvard University, Cambridge, MA + name: Senior ML Research Engineer (NeuroAI) + posted: 2025-06-13 + url: https://sjobs.brassring.com/TGnewUI/Search/home/HomeWithPreLoad?partnerid=25240&siteid=5341&PageType=JobDetails&jobid=2012692 - expires: 2025-09-22 location: Arizona State University, Tempe, AZ name: Teaching Assistant Professor - Computational Life Sciences diff --git a/_events/2023/2023-04-funder-talk-series.md b/_events/2023/2023-04-funder-talk-series.md index 47a5ba630..ff9692128 100644 --- a/_events/2023/2023-04-funder-talk-series.md +++ b/_events/2023/2023-04-funder-talk-series.md @@ -61,7 +61,7 @@ He provides leadership, strategic guidance, and coordination of trans-NIH FAIR d
-![Lori A. J. Scott-Sheldon, PhD](https://www.lifespan.org/sites/default/files/styles/provider_headshot/public/2020-10/scott-sheldon-lori-phd-2013-web.jpg){: style="float: left; margin-right: 10px; clear: left; width: 143px; height: 177px;"} +![Lori A. J. Scott-Sheldon, PhD](https://www.brownhealth.org/sites/default/files/styles/provider_headshot/public/2020-10/scott-sheldon-lori-phd-2013-web.jpg){: style="float: left; margin-right: 10px; clear: left; width: 143px; height: 177px;"} **Lori A. J. Scott-Sheldon, PhD**
Program Chief, Data Science and Emerging Methodologies in HIV
diff --git a/_posts/2025-06-13-pride-month.md b/_posts/2025-06-13-pride-month.md new file mode 100644 index 000000000..0da8973ff --- /dev/null +++ b/_posts/2025-06-13-pride-month.md @@ -0,0 +1,68 @@ +--- +layout: post +title: "US-RSE Celebrates LGBTQ+ Pride" +tags: [dei, pride] +author: Lance Parsons +--- + +Happy Pride Month, everyone\! If you are new to US-RSE this year, you might not +have had a chance to see our nifty US-RSE Pride Logo before. Be sure to check +out this [article about the history of the Pride Flag and its many +variants](https://en.wikipedia.org/wiki/Rainbow_flag_(LGBT)#Variations) +(Wikipedia). + +![US-RSE Progress Pride Logo - Square][image1]    ![US-RSE Progress Pride Logo - Wide][image2] + +At US-RSE, we believe that diversity, inclusivity, and the vibrant +contributions of the LGBTQ+ community make our research software engineering +community better and stronger. The [US-RSE’s DEI working group +(DEI-WG)](https://us-rse.org/wg/dei/) is proud to lead US-RSE’s participation +in celebrating [Pride Month](https://www.loc.gov/lgbt-pride-month/). With an +[increase in anti-DEI +legislation](https://www.chronicle.com/article/here-are-the-states-where-lawmakers-are-seeking-to-ban-colleges-dei-efforts) +and [many institutions pulling back on DEI +efforts](https://www.chronicle.com/article/tracking-higher-eds-dismantling-of-dei), +, we feel that it’s more important than ever to display our pride and stand +together. + +Throughout the month members of our community will be writing blog posts +recognizing compelling stories about LGBTQ+ people who have been involved in +computing, science, engineering, and/or math, and have inspired our members +through their accomplishments in their careers and their personal stories. +We’ll be publishing these posts during the month of June to highlight such +people, where we talk about the person and tie their work and life to the RSE +movement. + +* [Edith Windsor]({% post_url 2025-06-16-edith-windsor %}) - + June 16, 2025 + +In conjunction with these blog posts, we ask the community to think about how +they will celebrate and reflect on pride this month. This will likely come in +many different forms for each individual. Check out the resources below to +inspire your introspection throughout the month. + +We’d also like to bring to your attention the +[\#lgbtq](https://usrse.slack.com/archives/C056NFHET97) Slack channel: “A place +for LGBTQ+ folks to gather and chat\!” This, and the +[\#dei-discussion](https://usrse.slack.com/archives/C01C8CJQ7AP) Slack +channel, will provide space for all of us to discuss thoughts throughout +the month. + +Resources: + +* [Popular pride parades around the + country](https://travel.usnews.com/features/top-pride-parades-and-celebrations-in-the-us) +* [Out In Tech Events](https://outintech.com/events/) +* [Human Rights Campaign](https://www.hrc.org/) +* [What are Gender Pronouns? Why Do They Matter? \- NIH Office of Equity, + Diversity, and + Inclusion](https://web.archive.org/web/20241209190608/https://www.edi.nih.gov/the-EDI-pulse-blog/what-are-gender-pronouns-why-do-they-matter) + (2024) +* [Transgender History \- + Wikipedia](https://en.wikipedia.org/wiki/Transgender_history) +* [US-RSE DEI + Resources](https://docs.google.com/spreadsheets/d/e/2PACX-1vRwwTmM29KHDXd7s5clv1EcwITxPMNi7yIyaBUS_rwvJw87yHqgMDJU-kANFZQ1W2y3sz9GHoizmh7v/pubhtml?gid=0&single=true) + +[image1]: + +[image2]: diff --git a/_posts/2025-06-16-edith-windsor.md b/_posts/2025-06-16-edith-windsor.md new file mode 100644 index 000000000..6a79f69bf --- /dev/null +++ b/_posts/2025-06-16-edith-windsor.md @@ -0,0 +1,72 @@ +--- +layout: post +title: "US-RSE Pride Month Spotlight - Edith Windsor" +tags: [dei, pride-month] +--- + +US-RSE's [DEI working group (DEI-WG)](https://us-rse.org/wg/dei/) is proud to +help US-RSE celebrate and participate in Pride Month. Throughout June, the +US-RSE will spotlight LGBTQ+ individuals who have been involved in computing, +science, engineering, and/or math, and have inspired our members through their +accomplishments in their careers and their personal stories. + +## This week's Pride Month spotlight features Edith Windsor + +{% include image.html +url="https://upload.wikimedia.org/wikipedia/commons/4/4f/Edie_Windsor_DC_Pride_2017.jpg" +description="Edie Windsor at DC Pride, 2017, Photo by Rex Block, CC0 +, via Wikimedia Commons" +style="float:right; padding:1em; max-width:350px;" %} + +Did you know that the lead plaintiff in the US Supreme Court case that +overturned Section 3 of the Defense of Marriage Act (DOMA) in 2013, leading to +marriage being expanded to include same-sex couples, was a systems programmer +at IBM and then a software development consultant in her own company? + +Edith (Edie) Schlain was born in 1929 in Philadelphia. She graduated from +Temple in 1950, where she met her future husband, Saul Windsor, who she married +in 1951 and divorced in 1952. She later earned a master's in math from NYU in 1957. +She then joined IBM, where she worked for 16 years in senior technical +and management positions related to systems architecture and implementation of +operating systems and language processors. As AnitaB.org +[describes](https://anitab.org/profile/remembering-edith-windsor-tech-pioneer-equality-advocate/), +she started as a mainframe programmer and later rose to "the company's highest +technical rank, Senior Systems Programmer, on the strength of her top-notch +debugging skills. 'They couldn't fix the code because they couldn't read it,' +Edith told a journalist. 'But I could read code until it wrapped around the +room and back again. A guy I was working with said, 'give this woman a roll of +toilet paper, she can do anything.'" During this time, in 1963, she met and +began dating Thea Spyer, who asked Edith to marry her in 1967, and they began +living together six months later. + +In her professional life, as AnitaB.org [continues to +describe](https://anitab.org/profile/remembering-edith-windsor-tech-pioneer-equality-advocate/), +"Edith left IBM in 1975, becoming the founding president of PC Classics, a +consulting firm specializing in major software development projects. During +this time, Edith also helped countless LGBTQ groups become tech literate. 'I +computerized everybody,' she quipped. 'I got calls from gay organizations that +wanted to computerize their mail systems. All of my IBM experience continues +throughout my life.' Her love of computing was personal, too — she was the +owner of the very first IBM-PC delivered in New York City." In 1993, when New +York City first began registering domestic partnerships between same-sex +couples, they registered. Because the US did not allow same-sex marriage, they +traveled to Toronto in 2007 where they were married. Two years later, Thea +died, and left her estate to Edie, but because the US did not recognize their +marriage, Edie had to pay taxes on the estate. This was the cause of her +lawsuit that led to Section 3 of DOMA being ruled unconstitutional, enabling +same sex marriage to become legal, after which the US government refunded the +estate tax. + +Again +[quoting](https://anitab.org/profile/remembering-edith-windsor-tech-pioneer-equality-advocate/) +AnitaB.org, "Edith was recognized by the National Computing Conference as an +operating systems pioneer. In 2013, she was the Grand Marshal of the New York +City LGBT Pride March and a runner-up for Time's Person of the Year." She died +in 2017, and was eulogized by Hillary Clinton. Barack Obama said about her, +"America's long journey towards equality has been guided by countless small +acts of persistence, and fueled by the stubborn willingness of quiet heroes to +speak out for what's right. Few were as small in stature as Edith Windsor — and +few made as big a difference to America." + +[Read more about US-RSE's planned Pride Month +activities]({% post_url 2025-06-13-pride-month %}). diff --git a/_template/newsletter-template.md b/_template/newsletter-template.md index 12546d525..e1d146d02 100644 --- a/_template/newsletter-template.md +++ b/_template/newsletter-template.md @@ -1,21 +1,22 @@ --- layout: post title: US-RSE {{ month }} {{ year }} Newsletter +subtitle: "This Month: [Headline Theme]!" subtitle: {{ month }} {{ year }} category: newsletter tags: [newsletter, {{ month }}] date: {{ date }} 00:00:00 -0400 +author: Tinashe M. Tapera +image: "[HEADLINE IMAGE]" --- -### 💜 This Month: [Headline Theme] 💜 - In this monthly newsletter, we share recent, current, and planned activities of the US-RSE Association, and related news that we think is of interest to US-RSE members. Newsletters are also available on our [website](https://us-rse.org/newsletters/). To receive our newsletter, [join US-RSE](https://us-rse.org/join/). In this issue: * [1. USRSE'25 Conference](#conference2025) -* [2. [HEADLINE](#headline) +* [2. [HEADLINE]](#headline) * [3. Steering Committee Updates](#sc-update) * [4. Organizational Founding Membership](#orgmember) * [5. Community and Travel Funds](#community-funds) @@ -31,6 +32,23 @@ In this issue: # 🔔 **1. US-RSE Conference 2025 (USRSE'25)** +

+ USRSE25 Banner +

+ +Are you making plans to join us in 🦅 **Philadelphia, Pennsylvania 🦅 October 6-8, 2025**? The theme for the third annual conference from the United States Research Software Engineer Association ([US-RSE](https://us-rse.org/)) is **“Code, Practices, and People.”** + +The conference organizers are pleased to share that we received many high quality submissions to the upcoming conference. Thank you to all who submitted your work! Reviews are underway and notifications should be sent by July 14. Registration will open in June. + +**While the submission deadline for most formats has passed, we continue to invite poster submissions for [USRSE'25](https://us-rse.org/usrse25/participate/)**. Poster submissions will be accepted through July 20, 2025\. + +Whether you’re a research software engineer, data scientist, digital humanist, scientific programmer, software developer, or research software user, US-RSE is where people at the intersection of code and research come together. The USRSE'25 conference is your chance to connect with peers, mentors, and experts in the fast-growing world of research software. Don’t just take our word for it—100% of last year's post-conference survey respondents said they would return and recommend the conference to others. + +Visit the [conference website](https://us-rse.org/usrse25/participate/) for further details including: + +- Venue, hotel, and travel [details](https://us-rse.org/usrse25/attend/) +- Posters: how and where to submit (still have questions? contact [usrse2025@easychair.org](mailto:usrse2025@easychair.org)) +- Dates for notification of acceptance and other important dates ----------------- @@ -51,9 +69,11 @@ In this issue: # 🤝 **4. Organizational Founding Membership** -Organizations that join on or before **November 30, 2025** will be recognized in perpetuity as founding members. Current fee lock through **December 31, 2028**. +US-RSE envisions a future where Research Software Engineers are universally respected for advancing science, technology, and society through the transformative power of research software engineering. +We’re excited to share that the momentum around our Organizational Founding Membership continues to grow! Our current members are listed below, and organizations that join on or before November 30, 2025, will be recognized in perpetuity as founding members. Founding organizations will also lock in current membership fees through December 31, 2028. +Organizational support helps sustain and expand vital community offerings, including the annual conference, monthly calls and newsletter, job board, working groups, and new resources. -Please reach out to Sandra Gesing at [sandra@us-rse.org](mailto:sandra@us-rse.org) if you are interested in becoming a member. +Please reach out to Sandra Gesing at [sandra@us-rse.org](mailto:sandra@us-rse.org) if you are interested in becoming an organizational founding member! ### Premier Members {% for org in site.data.org-members.premier %} @@ -84,7 +104,7 @@ Please reach out to Sandra Gesing at [sandra@us-rse.org](mailto:sandra@us-rse.or {% assign next_deadline = current_year | append: "-06-30" %} {% elsif current_month <= 9 %} {% assign next_deadline = current_year | append: "-09-30" %} -{% else %} +{% elsif current_month <= 12 %} {% assign next_deadline = current_year | append: "-12-31" %} {% endif %} @@ -92,39 +112,168 @@ Please reach out to Sandra Gesing at [sandra@us-rse.org](mailto:sandra@us-rse.or Next Application Deadline: {{ next_deadline | date: "%B %-d, %Y" }} -You can apply at [us-rse.org/funds-and-awards](https://us-rse.org/funds-and-awards/) +*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.* + +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! +The application process is simple and straightforward. You can find the application form [here](https://us-rse.org/funds-and-awards/). ----------------- - -# 🗞️ **6. Community News** + +# 🗞️ **6. Community News** + + + ### **Community Calls** -**Upcoming Call**: [Topic and Date/Time] -**Last Month’s Call**: [Summary or recording link] + + +The next community call topic will be on **AI in Research Software Engineering** and will take place on June 13th at 1PM CDT/2PM EST. Please visit the [Community Calls Website](https://us-rse.org/events/category/#community-call) for more information and to access the registration link. + +> It’s been almost two years since we lasted talked about AI, ChatGPT, and LLMs in RSEng, and a lot has changed in that time! Let’s get together and share how we’re using these tools today to write code, check code, or otherwise help out in our roles as RSEs. What do they mean for our job? How are they best deployed? Do they create trustworthy code? Or maybe you use them for research rather than for creating code for research? What do they mean for the next generation of research software engineers? These and so many more questions will be discussed at our next community call. + +***May Community Call (Past)*** + +The May Community Call was about the upcoming **USRSE'25 Conference**, and is available on YouTube: + +
+ YouTube Video Thumbnail +
----------------- # 👀 **7. Interesting Events and Opportunities** +🦄 They Arrived as a Herd… But They’re Ready to Travel to You! 🚀 + +[The 2025 US-RSE magical unicorns have officially arrived!](https://give.communityin.org/unicorn2025?ref=ab_20w0PysS59P20w0PysS59P) + + +
+ + US-RSE Unicorn + +

+ They came as a herd, packed together in a carton, just like how research software engineers come together to build a stronger community. But now, these unicorns are ready to set off on their own journeys—finding new homes with RSEs, allies, and supporters like you. +

+ +

+ This year’s edition proudly wears a red shirt featuring the US-RSE logo integrated with 2025, symbolizing another year of growth, collaboration, and impact. Just like our community, these unicorns remind us that while we each have our own paths, we are part of something bigger—a movement dedicated to advancing research software and supporting those who make it happen. +

+ +

+ By adopting a unicorn, you’re not just getting a fun desk companion—you’re also supporting US-RSE’s mission to strengthen the RSE community, advocate for recognition, and create more opportunities for collaboration. +

+ +

+ 📦 Limited supply—once they leave the herd, they’re gone! +

+ +

+ 🚚 They’ll ship for free within the US! 🚚 +

+ +

+ If you're from another country and want to get your hands on a unicorn, reach out to us, and we'll find out whether we can arrange shipping for you. +

+ +

+ Don't miss out on this opportunity to own a piece of US-RSE magic and donate to get your Unicorn 2025 Edition today. This edition will be available while supplies last until December 10, 2025 ✨🦄✨ +

+ +
+ +👉 [https://give.communityin.org/unicorn2025?ref=ab_20w0PysS59P20w0PysS59P](https://give.communityin.org/unicorn2025?ref=ab_20w0PysS59P20w0PysS59P) + + + + + ----------------- # 📚 **8. Featured Reads, Videos, and Podcasts** - + + +### 📑 Recent Publications + + + +### 📝 Blog Posts + + + +### 🎧 Podcast Highlights + +Recent episodes from the **#code4thought** podcast: + + +> Have something interesting you'd like to share? Please send us your suggestions for the next newsletter using the #newsletters channel in the USRSE Slack! ----------------- # 🏃 **9. Get Involved** US-RSE Working Groups: - {% assign wgs = site.data.menus["working-groups"][0].items %}
    {% for wg in wgs %} @@ -137,10 +286,14 @@ US-RSE Working Groups: # 🧑‍💼 **10. Recent Job Postings** -{% assign today = 'now' | date: "%Y-%m-%d" %} +These opportunities were recently posted to the [RSE Opportunities page](https://us-rse.org/jobs/): + + +{% assign today = site.time | date: "%Y-%m-%d" %}
      {% for job in site.data.jobs %} - {% if job.expires | date: "%Y-%m-%d" >= today %} + {% assign job_expiry = job.expires | date: "%Y-%m-%d" %} + {% if job_expiry >= today %}
    • {{ job.name }}
      📍 {{ job.location }}
      @@ -162,6 +315,6 @@ US-RSE Working Groups: **This newsletter is a joint effort of members of the US-RSE Association.** -© US-RSE • 2021–{{ year }} • US-RSE is a fiscally sponsored project of [Community Initiatives](http://communityin.org/) +© US-RSE • 2021–{{ 'now' | date: "%Y" }} • US-RSE is a fiscally sponsored project of [Community Initiatives](http://communityin.org/) [Email](mailto:contact@us-rse.org) [Mastodon](https://fosstodon.org/@us_rse) [Twitter](https://twitter.com/us_rse) [YouTube](https://youtube.com/@us_rse) [LinkedIn](https://linkedin.com/company/us-rse/) [GitHub](https://github.com/USRSE) diff --git a/pages/about/steering-committee.md b/pages/about/steering-committee.md index 27a08cd43..6bd6f9156 100644 --- a/pages/about/steering-committee.md +++ b/pages/about/steering-committee.md @@ -17,7 +17,7 @@ set_last_modified: true * Ian Cosden, Princeton University, 2019-2025, Chair, International Council Rep * Julia Damerow, Arizona State University, 2021-2026, Treasurer * Alex Koufos, Stanford University, 2024-2025, Co-Secretary -* Kenton McHenry, University of Illinois at Urbana-Champaign, 2023-2026 +* Kenton McHenry, University of Illinois Urbana-Champaign, 2023-2026 * Miranda Mundt, Sandia National Laboratories, 2023-2026, Election Co-Chair * Abbey Roelofs, University of Michigan, 2024-2025, Deputy Treasurer @@ -28,7 +28,7 @@ set_last_modified: true * Sandra Gesing, University of Illinois Discovery Partner Institute, 2019-2023 * Christina Maimone, Northwestern University, 2019-2023 * Chris Hill, MIT, 2019-2022 -* Daniel S. Katz, University of Illinois at Urbana-Champaign, 2019-2022 +* Daniel S. Katz, University of Illinois Urbana-Champaign, 2019-2022 * Lance Parsons, Princeton University, 2019-2022 * Charles Ferenbaugh, Los Alamos National Laboratory, 2019-2021 * Jordan Perr-Sauer, National Renewable Energy Laboratory, 2019-2020 diff --git a/pages/index.md b/pages/index.md index a48a69ea4..373359701 100644 --- a/pages/index.md +++ b/pages/index.md @@ -2,6 +2,8 @@ subtitle: in support of research. layout: page show_hero: true +hero_link: 2025-06-13-pride-month +hero_link_text: Celebrate Pride Month with US-RSE! callouts: home permalink: / full_width: true