Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .github/workflows/clean-expired-jobs.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ jobs:
# Exclude these patterns from the checker
exclude_patterns: supercomputing.org,https://pace.gatech.edu,https://www.linkedin.com,jobs.colorado.edu,zoom.us,danielskatz.org,usrse.github.io.wiki.git,ornl.gov,jobs.bnl.gov,https://www.rd-alliance.org/,https://uwhires.admin.washington.edu/,https://careers.umich.edu/,https://twitter.com/us_rse,https://twitter.com/us_rse/status/1447622175133945860,https://twitter.com/iancosden/status/1122937311644323841
# Only include these files
include_files: _data/jobs.yml,_data/related-jobs.yml,_data/internships.yml
include_files: _data/jobs.yml,_data/related-jobs.yml,_data/internships.yml,_data/freelance.yml

- name: Push Fixes
env:
Expand All @@ -55,7 +55,7 @@ jobs:
git config --global user.name "github-actions"
git config --global user.email "github-actions@users.noreply.github.com"

git add _data/jobs.yml _data/related-jobs.yml _data/internships.yml
git add _data/jobs.yml _data/related-jobs.yml _data/internships.yml _data/freelance.yml

set +e
git status | grep modified
Expand Down
5 changes: 5 additions & 0 deletions _data/freelance.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
- expires: 2025-12-31
location: The Verena Institute, Yale University, Remote
name: Full Stack Developer
posted: 2025-12-08
url: https://www.viralemergence.org/blog/were-hiring
5 changes: 5 additions & 0 deletions _data/jobs.yml
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
- expires: 2026-04-30
location: Aeolus Labs, San Francisco, CA
name: Research Engineer / Research Scientist
posted: 2025-12-08
url: https://expensive-legume-bf0.notion.site/Research-Engineer-Research-Scientist-atmosphere-ocean-model-development-2bfeafcd086b803f92d3f08bc23ae9bf
- expires: 2025-12-31
location: Rutgers University, Piscataway, NJ
name: Research Programmer
Expand Down
3 changes: 3 additions & 0 deletions pages/opportunities/jobs.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,9 @@ permalink: /jobs/
{% assign internships = site.data.internships | sort: "posted" | reverse %}
{% include joblist.html section_heading="### Internships" sorted_jobs=internships %}

{% assign freelance = site.data.freelance | sort: "posted" | reverse %}
{% include joblist.html section_heading="### Freelance Opportunities" sorted_jobs=freelance %}

{% assign board_size = site.data.job-boards.boards | size %}
{% if board_size > 0 %}

Expand Down
6 changes: 3 additions & 3 deletions scripts/clean_jobs.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
# Read in jobs from the _data/jobs.yml, _data/related-jobs.yml, and
# _data/internships.yml files, find links that are both expired and not
# working, and remove them. Write to a new file.
# Read in jobs from the various jobs data files, find links that are
# both expired and not working, and remove them. Write to a new file.
# Copyright @vsoch, 2020

import os
Expand Down Expand Up @@ -106,6 +105,7 @@ def main():
clean_jobs("jobs.yml")
clean_jobs("related-jobs.yml")
clean_jobs("internships.yml")
clean_jobs("freelance.yml")


if __name__ == "__main__":
Expand Down