Skip to content

Commit 16431c6

Browse files
Merge branch 'master' into fix_alignment_issues
2 parents 4d346cd + 105659d commit 16431c6

File tree

10 files changed

+68
-5
lines changed

10 files changed

+68
-5
lines changed

src/components/about/SmallPortraitCard.tsx

-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,6 @@ import SocialMediaContacts from "./SocialMediaContacts";
44
import { useRef, useState } from "react";
55
import LargePortraitCard from "./LargePortraitCard";
66
import Avatar from "./Avatar";
7-
import Link from "@docusaurus/Link";
87

98
const contentStyle = {
109
background: "white",

src/components/about/SubTeam.tsx

-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,6 @@ export default function SubTeam({
1515
<div className="col">
1616
<PopupPortrait
1717
person={person}
18-
1918
/>
2019
</div>
2120
</li>

src/components/about/Team/Arjun.md

+7
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
Arjun is a Scientific Software Development Intern at QuantStack.
2+
3+
He is currently a final-year student at the University of Delhi, India, pursuing his Bachelors of Technology degree with a major in Information Technology.
4+
5+
He is very passionate about open source & open science. In the past he has been a contributor, maintainer & mentor at <a target="_blank" href="https://pybamm.org/">PyBaMM</a> & other open-source projects. Additionally he has also been a Software Developer at Development Monitors LLC, Arlington VA where he had been involved in the core development of some World Bank funded GIS projects.
6+
7+
His plan is to remain consistently involved in the open source community long-term, adding value in every way possible.

src/components/about/Team/Matthias.md

+5
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
Matthias is Director of Business Development at QuantStack.
2+
3+
He began his career studying Physics and Geophysics developing a passion for numerical computing and open-source software. After his PhD and a PostDoc, Matthias committed fully to professional software development and worked with many of the world’s leading IT companies. Accumulating over 15 years of experience in both academic and industry settings, he has developed software for a wide range of projects, from personal initiatives to startup products and large enterprise systems, and has successfully led teams in building and delivering complex solutions.
4+
5+
In addition to with a strong background in purely functional programming. He is an active contributor to several popular open-source projects and has also organized community events.

src/components/about/Team/team.ts

+39-1
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,8 @@ import AndreasMD from "@site/src/components/about/Team/Andreas.md";
66
import AndreasAvatarUrl from "@site/static/img/avatars/Andreas.png";
77
import AnutoshMD from "@site/src/components/about/Team/Anutosh.md";
88
import AnutoshAvatarUrl from "@site/static/img/avatars/Anutosh.png";
9+
import ArjunMD from "@site/src/components/about/Team/Arjun.md"
10+
import ArjunAvatarUrl from "@site/static/img/avatars/Arjun.png";
911
import DavidMD from "@site/src/components/about/Team/David.md";
1012
import DavidAvatarUrl from "@site/static/img/avatars/David.png";
1113
import DarianMD from "@site/src/components/about/Team/Darian.md";
@@ -36,6 +38,8 @@ import KerimMD from "@site/src/components/about/Team/Kerim.md";
3638
import KerimAvatarUrl from "@site/static/img/avatars/Kerim.png";
3739
import MartinMD from "@site/src/components/about/Team/Martin.md";
3840
import MartinAvatarUrl from "@site/static/img/avatars/Martin.png";
41+
import MatthiasMD from "@site/src/components/about/Team/Matthias.md";
42+
import MatthiasAvatarUrl from "@site/static/img/avatars/Matthias.png";
3943
import MeriemMD from "@site/src/components/about/Team/Meriem.md";
4044
import MeriemAvatarUrl from "@site/static/img/avatars/Meriem.png";
4145
import NicolasMD from "@site/src/components/about/Team/Nicolas.md";
@@ -379,6 +383,24 @@ export const coreTeam = [
379383
subTeamName: "coreTeam",
380384
BioComponent: KerimMD,
381385
},
386+
{
387+
completeName: "Arjun Verma",
388+
firstName: "Arjun",
389+
position: " Scientific Software Development Intern",
390+
onLinkednIn: "true",
391+
onGithub: "true",
392+
onX: "true",
393+
githubLink: "https://github.com/arjxn-py",
394+
LinkedInLink:
395+
"https://www.linkedin.com/in/arjun-verma-758608226/",
396+
XLink: "https://x.com/ArjxnPy",
397+
githubName: "@arjxn-py",
398+
avatarUrl: ArjunAvatarUrl,
399+
distinctionTitle: [],
400+
distinctionLink: [],
401+
subTeamName: "coreTeam",
402+
BioComponent: ArjunMD,
403+
},
382404
];
383405

384406
export const QSCollaboratorsTeam = [
@@ -522,4 +544,20 @@ export const leadershipTeam = [
522544
subTeamName: "LeadershipTeam",
523545
BioComponent: DavidMD,
524546
},
525-
];
547+
{
548+
completeName: "Matthias Meschede",
549+
firstName: "Matthias",
550+
position: "Director Business Development",
551+
onGithub: "true",
552+
onLinkedIn: "true",
553+
onX: false,
554+
githubLink: "https://github.com/mmesch",
555+
LinkedInLink: "https://www.linkedin.com/in/mmesch/",
556+
githubName: "@mmesch",
557+
avatarUrl: MatthiasAvatarUrl,
558+
distinctionTitle: [],
559+
distinctionLink: [],
560+
subTeamName: "LeadershipTeam",
561+
BioComponent: MatthiasMD,
562+
},
563+
];

src/components/about/styles.module.css

+3-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
color: var(--ifm-color-primary-p2);
66
border-radius: 8px;
77
box-shadow: 0px 0px 8px 1px #c8c8c7;
8-
padding: var(--ifm-spacing-lg) var(--ifm-spacing-md);
8+
padding: var(--ifm-spacing-lg) var(--ifm-spacing-xs);
99
margin-bottom: var(--ifm-spacing-xl);
1010
}
1111

@@ -15,6 +15,7 @@
1515
text-decoration: #0000EE underline;
1616
}
1717

18+
1819
.value_text p {
1920
font-family: var(--ifm-font-family-roboto);
2021
font-size: 14px;
@@ -50,6 +51,7 @@ div .row {
5051
line-height: 24px;
5152
letter-spacing: 0.15px;
5253
margin: var(--ifm-spacing-xs) 0;
54+
width: 100%
5355
}
5456

5557
.small_card_position {

src/components/blog/blogpostsDetails.json

+14-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,17 @@
11
[
2+
{
3+
"url": "https://blog.jupyter.org/ipydatagrid-is-now-part-of-project-jupyter-3b3dfb877664",
4+
"title": "Ipydatagrid is now part of Project Jupyter",
5+
"image": "/img/blogposts/Ipydatagrid-is-now-part-of-ProjectJupyter.png",
6+
"summary": "Today, we are proud to announce that the ipydatagrid open source project has been incorporated into Project Jupyter as part of the Jupyter Widgets subproject.",
7+
"date": "August 22, 2024",
8+
"authors": "Sylvain Corlay, on behalf of the Jupyter Widgets Council",
9+
"imageID": "blogpost-image-120",
10+
"imageNaturalWidth": 1490,
11+
"imageNaturalHeight": 760,
12+
"imageRenderedWidth": 273,
13+
"imageRenderedHeight": 138.2281879194631
14+
},
215
{
316
"url": "https://medium.com/@QuantStack/introducing-mamba-2-0-0e8d5c6d1d0c",
417
"title": "Introducing Mamba 2.0",
@@ -1546,4 +1559,4 @@
15461559
"imageRenderedWidth": 180,
15471560
"imageRenderedHeight": 180
15481561
}
1549-
]
1562+
]

static/img/avatars/Arjun.png

94.3 KB
Loading

static/img/avatars/Matthias.png

206 KB
Loading
Loading

0 commit comments

Comments
 (0)