Skip to content

Team member changes #171

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 4 commits into
base: main
Choose a base branch
from
Open
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
42 changes: 19 additions & 23 deletions docs/about/about.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,8 @@ custom_edit_url: null

import CurrentGradTechLeads from '../../src/components/people/CurrentGradTechLeads';
import PrevGradTechLeads from '../../src/components/people/PrevGradTechLeads';
import CurrentStaff from '../../src/components/people/CurrentStaff';
import PrevStaff from '../../src/components/people/PrevStaff';

Open Source with SLU was established to help SLU researchers with their custom software needs, and to give students practical software development experience. The program is funded by a grant from the Alfred P. Sloan Foundation, and employs Computer Science graduate students to prototype, design, and deliver open-source software to help SLU researchers and their collaborators worldwide. Undergraduate students enrolled in project-based courses work with Open Source with SLU under the mentorship of our graduate students to contribute to ongoing open source projects.

Expand All @@ -26,46 +28,29 @@ Daniel Shown is the Program Director of the Open Source with SLU program. He han

Kate Holdener is an Assistant Professor of Computer Science at Saint Louis University. Her main focus in the department is on software engineering courses. She founded the open-source software program in an effort to engage more students in open-source development, as a way to give them practical experience during school.

### Individual Developers

<CurrentStaff/>

## Graduate Students

Graduate students are at the heart of our open-sour​ce program. They work with SLU researchers to understand their software needs, iterate on software prototypes, and deliver proof of concept solutions. Graduate students lead and mentor our undergraduate open-source developers.


### Current Tech Leads

<CurrentGradTechLeads/>

### Individual Developers

<div className="techLeadsGrid">
<div className="techLead">
<a href = "https://github.com/rkarmuri">
<img src="/img/raju_avatar.jpeg" alt="Raju Karmuri - Individual Developer" className="teamLeadImage"/>
<p>Raju Karmuri</p>
</a>
</div>
<div className="techLead">
<a href = "https://github.com/chintakjoshi">
<img src="/img/chintak_avatar1.JPG" alt="Chintak Joshi - Individial Developer" className="teamLeadImage"/>
<p>Chintak Joshi</p>
</a>
</div>
</div>

### Previous Graduate Assistant Team Leads

<PrevGradTechLeads/>

## SLU Research Team Leads

Staff from Saint Louis University's Research Computing Group have been key partners, and have even taken on the responsibility of leading teams of undergraduate students. Their work includes active open-source projects being used in academia and research. Projects involve SLU researchers across campus, regional organizations such as the Taylor Geospatial Institute, Washington University in Saint Louis, Newberry Library, the Jesuit Archives, Missouri Botanical Garden, and the St. Louis Federal Reserve. They are also involved in international open standards groups such as the International Image Interoperability Framework (IIIF) and Open Geospatial Consortium (OGC). This team supports the popular public tools TPEN ([t-pen.org](https://t-pen.org)) and the Rerum ecosystem ([rerum.io](https://rerum.io)).
Staff from Saint Louis University's Research Computing Group have been key partners. They have provided existing open source projects, and have even taken on the responsibility of leading and mentoring teams of student developers. Their work includes active open-source projects being used in academia and research. Projects involve SLU researchers across campus, regional organizations such as the Taylor Geospatial Institute, Washington University in Saint Louis, Newberry Library, the Jesuit Archives, Missouri Botanical Garden, and the St. Louis Federal Reserve. They are also involved in international open standards groups such as the International Image Interoperability Framework (IIIF) and Open Geospatial Consortium (OGC). This team supports the popular public tools TPEN ([t-pen.org](https://t-pen.org)) and the Rerum ecosystem ([rerum.io](https://rerum.io)).

### Patrick Cuba

<div className="Lead">
<img src="/img/patrick_avatar1.jpg" alt="Patrick Cuba - IT Architect" className="LeadImage"/>
</div>


Patrick Cuba is the IT Architect for RCG at SLU. His service is focused on consulting and project development, translating research questions into features, and helping to accelerate human-driven research. Specifically, he designs, develops, and implements technological solutions for use cases that escape typical vendor solutions, usually because of requirements for sustainability, openness, or customizable encoding. He has a passion for the record of human knowledge, especially supporting controversy, ambiguity, and attribution.

### Bryan Haberberger
Expand All @@ -75,3 +60,14 @@ Patrick Cuba is the IT Architect for RCG at SLU. His service is focused on consu
</div>

Bryan Haberberger is the Full Stack Developer for RCG at SLU. He works in the technology stacks behind various projects, and his focus shifts sprint by sprint. Simply put, he is a professional developer on campus and a resource for faculty, staff, students, and outside collaborators looking for software development expertise, especially in the realm of Web Applications. In recent years, he has accrued specialized skills with geospatial data on the web and is a member of the Open Geospatial Consortium, as well as an IIIF Maps TSG co-chair, as part of his commitment to open-source technologies.

## Previous Staff

<PrevStaff/>

## Previous Graduate Assistant Team Leads

<PrevGradTechLeads/>



4 changes: 3 additions & 1 deletion src/components/people/CurrentGradTechLeads/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,9 @@ function CurrentGradTechLeads() {

return (
<div className="techLeadsGrid">
{currentGradTechLeads.map((techLead, index) => (
{currentGradTechLeads.slice()
.sort((a, b) => (a.name > b.name) ? 1 : (b.name > a.name) ? -1 : 0)
.map((techLead, index) => (
<Profile
key={`current-grad-tech-lead-${index}`}
imgSrc={techLead.image}
Expand Down
23 changes: 23 additions & 0 deletions src/components/people/CurrentStaff/index.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
import React from 'react';
import currentStaff from '../../../data/people/currentStaff.json';
import Profile from '../Profile';

function CurrentStaff() {

return (
<div className="staffGrid">
{currentStaff.slice()
.sort((a, b) => (a.name > b.name) ? 1 : (b.name > a.name) ? -1 : 0)
.map((staff, index) => (
<Profile
key={`current-staff-${index}`}
imgSrc={staff.image}
name={staff.name}
profileLink={staff.profileLink}
/>
))}
</div>
);
}

export default CurrentStaff;
14 changes: 8 additions & 6 deletions src/components/people/PrevGradTechLeads/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -6,12 +6,14 @@ function PrevGradTechLeads() {

return (
<div className="techLeadsGrid">
{prevGradTechLeads.map((techLead, index) => (
<Profile
key={`prev-grad-tech-lead-${index}`}
imgSrc={techLead.image}
name={techLead.name}
profileLink={techLead.profileLink}
{prevGradTechLeads.slice()
.sort((a, b) => (a.name > b.name) ? 1 : (b.name > a.name) ? -1 : 0)
.map((techLead, index) => (
<Profile
key={`prev-grad-tech-lead-${index}`}
imgSrc={techLead.image}
name={techLead.name}
profileLink={techLead.profileLink}
/>
))}
</div>
Expand Down
23 changes: 23 additions & 0 deletions src/components/people/PrevStaff/index.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
import React from 'react';
import prevStaff from '../../../data/people/prevStaff.json';
import Profile from '../Profile';

function PrevStaff() {

return (
<div className="staffGrid">
{prevStaff.slice()
.sort((a, b) => (a.name > b.name) ? 1 : (b.name > a.name) ? -1 : 0)
.map((staff, index) => (
<Profile
key={`prev-staff-${index}`}
imgSrc={staff.image}
name={staff.name}
profileLink={staff.profileLink}
/>
))}
</div>
);
}

export default PrevStaff;
49 changes: 17 additions & 32 deletions src/data/people/currentGradTechLeads.json
Original file line number Diff line number Diff line change
@@ -1,14 +1,4 @@
[
{
"name": "Siri Chandana Garimella",
"image": "/img/siri_avatar.jpg",
"profileLink": "https://github.com/SiriChandanaGarimella"
},
{
"name": "Anjali Putta",
"image": "/img/anjali_avatar.jpeg",
"profileLink": "https://anjaliofficial.netlify.app/"
},
{
"name": "Yenkatarajalaxmi Manohar Meda",
"image": "/img/manohar_avatar.jpg",
Expand All @@ -19,11 +9,6 @@
"image": "",
"profileLink": "https://github.com/AjithAkuthota23"
},
{
"name": "Mohammad Al-Hanoosh",
"image": "",
"profileLink": "https://github.com/mohamdlog"
},
{
"name": "Lalith Adithya Reddy Avuthu",
"image": "",
Expand All @@ -40,17 +25,7 @@
"profileLink": "https://github.com/jackbelyeu"
},
{
"name": "Pranitha Bollepalli",
"image": "",
"profileLink": "https://github.com/BollepalliPranitha"
},
{
"name": "Chirag Gupta",
"image": "",
"profileLink": "https://github.com/Chirag2x"
},
{
"name": "Sri Tammiraja",
"name": "Sanotsh Iragavarapu",
"image": "",
"profileLink": "https://github.com/jacksayshi"
},
Expand Down Expand Up @@ -85,18 +60,28 @@
"profileLink": "https://github.com/Rakesh-Ranga-Buram"
},
{
"name": "Harshitha Thota",
"name": "Zanxiang Wang",
"image": "",
"profileLink": "https://github.com/HarshithaThota"
"profileLink": "https://github.com/BaloneyBoy97"
},
{
"name": "Brijitha Tialu",
"name": "Nandini Reddy Bhumula",
"image": "",
"profileLink": "https://github.com/Brijitha1609"
"profileLink": "https://github.com/bhumulanandinireddy"
},
{
"name": "Zanxiang Wang",
"name": "Julian Shniter",
"image": "",
"profileLink": "https://github.com/BaloneyBoy97"
"profileLink": "https://github.com/smallrussian"
},
{
"name": "Lakshmi Mamillipalli",
"image": "",
"profileLink": "https://github.com/lmamillapalli786"
},
{
"name": "Abhilash Kurapati",
"image": "",
"profileLink": "https://github.com/kurapati1"
}
]
12 changes: 12 additions & 0 deletions src/data/people/currentStaff.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
[
{
"name": "Raju Karmuri",
"image": "",
"profileLink": "https://github.com/rkarmuri"
},
{
"name": "Chintak Joshi",
"image": "/img/yash_avatar1.jpg",
"profileLink": "https://github.com/chintakjoshi"
}
]
36 changes: 36 additions & 0 deletions src/data/people/prevGradTechLeads.json
Original file line number Diff line number Diff line change
Expand Up @@ -48,5 +48,41 @@
"name": "Yashaswini Shivalingaiah",
"image": "/img/yashaswini_avatar.jpg",
"profileLink": "https://github.com/yashaswini-slu"
},
{
"name": "Siri Chandana Garimella",
"image": "/img/siri_avatar.jpg",
"profileLink": "https://github.com/SiriChandanaGarimella"
},
{
"name": "Anjali Putta",
"image": "/img/anjali_avatar.jpeg",
"profileLink": "https://anjaliofficial.netlify.app/"
},
{
"name": "Mohammad Al-Hanoosh",
"image": "",
"profileLink": "https://github.com/mohamdlog"
},
{
"name": "Pranitha Bollepalli",
"image": "",
"profileLink": "https://github.com/BollepalliPranitha"
},
{
"name": "Chirag Gupta",
"image": "",
"profileLink": "https://github.com/Chirag2x"
},
{
"name": "Harshitha Thota",
"image": "",
"profileLink": "https://github.com/HarshithaThota"
},
{
"name": "Brijitha Tialu",
"image": "",
"profileLink": "https://github.com/Brijitha1609"
}

]
12 changes: 12 additions & 0 deletions src/data/people/prevStaff.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
[
{
"name": "Abhilash Kotha",
"image": "/img/abhilash_avatar.jpg",
"profileLink": "https://github.com/AbhilashKotha"
},
{
"name": "Yash Kamal Bhatia",
"image": "/img/yash_avatar1.jpg",
"profileLink": "https://yashb196.github.io/yashb196/"
}
]
Loading