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
30 changes: 0 additions & 30 deletions _data/jobs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,26 +18,6 @@
name: Director of Research Computing
posted: 2025-03-06
url: https://www.lerner.ccf.org/careers/faculty/
- expires: 2025-03-28
location: Oak Ridge National Laboratory, Oak Ridge, TN
name: Software Engineer
posted: 2025-02-28
url: https://jobs.ornl.gov/job-invite/14632/
- expires: 2025-03-21
location: Prolaio, Inc., Chicago, IL or San Francisco, CA (remote/flexible)
name: Cloud Software Engineer
posted: 2025-02-21
url: https://www.linkedin.com/jobs/view/4133153063
- expires: 2025-03-21
location: Prolaio, Inc., Chicago, IL or San Francisco, CA (remote/flexible)
name: Director of Data Services
posted: 2025-02-21
url: https://www.linkedin.com/jobs/view/4138425467
- expires: 2025-03-21
location: Prolaio, Inc., Chicago, IL or San Francisco, CA (flexible)
name: Senior Data Scientist
posted: 2025-02-21
url: https://www.linkedin.com/jobs/view/4138240676
- expires: 2025-04-18
location: Research Software Engineering (RSE) Group, Princeton University, Princeton,
NJ
Expand All @@ -54,11 +34,6 @@
name: Research Software Engineer
posted: 2025-02-10
url: https://oscur.org/research-software-engineer-uic/
- expires: 2025-03-01
location: Carnegie Science, Washington, DC
name: Research Software Engineer
posted: 2025-01-22
url: https://apply.interfolio.com/161035
- expires: 2025-02-28
location: University of Chicago - Globus, remote/flexible
name: Professional Services Developer
Expand All @@ -79,8 +54,3 @@
name: Quantum Architect, Simulation & Software
posted: 2024-09-21
url: https://www.psiquantum.com/apply?gh_jid=6036333003
- expires: 2025-04-01
location: The National Center for Supercomputing Applications, Urbana, IL
name: Associate/Research Software Engineer/Senior
posted: 2024-04-12
url: https://illinois.csod.com/ux/ats/careersite/1/home/requisition/9969?c=illinois
11 changes: 9 additions & 2 deletions _data/org-members.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ standard:
founding_member: true
tier: "Standard"
contact: "Michelle Barker <[email protected]>"
- name: "Omnibond"
- name: "Omnibond (Project EUREKA!)"
url: https://omnibond.com/
figure: logo-omnibond.png
acronym:
Expand All @@ -92,7 +92,14 @@ premier:
date_joined: 2024-12-19
founding_member: true
tier: "Premier"
- name: "Sandia"
# - name: "Princeton University" # NOT ADDING UNTIL WE HAVE AN OFFICIAL LOGO
# url: https://princeton.edu
# figure:
# acronym:
# date_joined:
# founding_member: true
# tier: "Premier"
- name: "Sandia National Laboratories"
url: https://www.sandia.gov/
figure: logo-sandia.svg
acronym:
Expand Down
15 changes: 0 additions & 15 deletions _data/related-jobs.yml
Original file line number Diff line number Diff line change
@@ -1,8 +1,3 @@
- expires: 2025-04-01
location: Virginia Tech University Libraries, Blacksburg, VA
name: Evidence Synthesis Information Scientist
posted: 2025-03-11
url: https://careers.pageuppeople.com/968/cw/en-us/job/532611/evidence-synthesis-information-scientist
- expires: 2025-03-04
location: Scientific Computation Research Center, Rensselaer Polytechnic Institute,
Troy, NY (can be remote/flexible)
Expand All @@ -14,13 +9,3 @@
name: Teaching Assistant Professor - Computational Life Sciences
posted: 2024-12-02
url: https://apply.interfolio.com/157209
- expires: 2025-09-25
location: University of Washington, Seattle, WA
name: Assistant Professor, Teaching Track, in Data Science
posted: 2024-09-26
url: https://apply.interfolio.com/150032
- expires: 2025-09-25
location: University of Washington, Seattle, WA
name: Assistant Professor, Tenure Track, in Informatics
posted: 2024-09-26
url: https://apply.interfolio.com/150031
7 changes: 7 additions & 0 deletions _includes/event-box.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
<div class="alert alert-info" role="alert" style="margin-bottom: 30px;">
<h4 class="alert-heading">📢 {{ include.title }}</h4>
<p><strong>📅 When:</strong> {{ include.when }}</p>
<p><strong>📍 Where:</strong> {{ include.where }}</p>
<p>{{ include.preamble | markdownify }}</p>
<p>{{ include.links | markdownify | replace: '<a ', '<a target="_blank" rel="noopener" ' }}</p>
</div>
5 changes: 5 additions & 0 deletions _includes/opportunity-box.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
<div class="alert alert-success" role="alert" style="margin-bottom: 30px;">
<h4 class="alert-heading">🚀 {{ include.title }}</h4>
<p>{{ include.preamble | markdownify }}</p>
<p>{{ include.links | markdownify | replace: '<a ', '<a target="_blank" rel="noopener" ' }}</p>
</div>
27 changes: 23 additions & 4 deletions _layouts/default.html
Original file line number Diff line number Diff line change
Expand Up @@ -27,8 +27,27 @@
</div>
</div>
</section>
{% unless page.hide_footer %}{% include footer.html %}{% endunless %}
{% include footer-scripts.html %}
{% if page.set_last_modified %}{% include last-modified.html %}{% endif %}

<a href="#top" id="back-to-top" title="Back to Top" align="center">⬆️ Back to top ⬆️</a>

<script>
console.log('Scroll event listener registered');
window.addEventListener("scroll", function() {
console.log('scrolling...', window.scrollY);
var backToTopButton = document.getElementById("back-to-top");
if (window.scrollY > 300) {
console.log('Show button');
backToTopButton.style.display = "block";
} else {
console.log('Hide button');
backToTopButton.style.display = "none";
}
});
</script>

{% unless page.hide_footer %}{% include footer.html %}{% endunless %}
{% include footer-scripts.html %}
{% if page.set_last_modified %}{% include last-modified.html %}{% endif %}

</body>
</html>
</html>
Loading