CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutSign UpSign In
sagemathinc

Real-time collaboration for Jupyter Notebooks, Linux Terminals, LaTeX, VS Code, R IDE, and more,
all in one place.

GitHub Repository: sagemathinc/cocalc
Path: blob/master/src/packages/next/pages/about/team/william-stein.tsx
Views: 687
1
import { Typography } from "antd";
2
3
import A from "components/misc/A";
4
5
import withCustomize from "lib/with-customize";
6
7
import WilliamSteinImage from "public/about/william-stein.png";
8
import { TeamBio } from "../../../components/about/team";
9
10
export default function WilliamStein({ customize }) {
11
return <TeamBio
12
customize={customize}
13
givenName="William"
14
surname="Stein"
15
position="Chief Executive Officer and Founder of SageMath, Inc."
16
positionShort="CEO & Founder"
17
positionTimeframe="2015-present"
18
image={WilliamSteinImage}
19
imageAlt={"William Stein with his dog, Bella."}
20
companyRole={
21
<Typography.Paragraph>
22
William is both the CEO and a lead software developer for both the front
23
and back end of CoCalc. His involvement with SageMath development is a
24
testament to his dedication and commitment. His remarkable past career,
25
including a tenure as Professor of Mathematics at the University of
26
Washington, adds depth to his leadership.
27
</Typography.Paragraph>
28
}
29
personalSection={
30
<>
31
<Typography.Title level={5}>
32
A Passionate CEO and Founder
33
</Typography.Title>
34
35
<Typography.Paragraph>
36
In his role as CEO of SageMath, Inc., William is at the helm,
37
navigating the future of CoCalc. His responsibilities span delegating
38
tasks, driving profitability, and managing the company’s overall
39
growth strategy. In addition, he maintains a close eye on developments
40
within the cloud-based software industry, assesses company risks to
41
ensure they’re minimized, and ensures that CoCalc remains stable and
42
productive.
43
</Typography.Paragraph>
44
</>
45
}
46
background={
47
<>
48
<Typography.Paragraph>
49
William’s academic journey began at the University of
50
California, Berkeley, where he dedicated immense time and energy
51
to using closed-source software like Magma for in-depth analysis
52
and research. Though an admirer of its powerful underlying
53
algorithms, William yearned for more transparent software that
54
didn’t operate as a “black box.” His wish to understand "how
55
things operate under the hood" eventually led him to
56
develop <A href="https://www.sagemath.org/">SageMath</A> during
57
his time as Assistant Professor of Mathematics at Harvard.
58
</Typography.Paragraph>
59
60
<Typography.Paragraph>
61
April 2013 marked another momentous chapter in William’s
62
professional life: he launched SageMathCloud, now known as
63
CoCalc. Inspired by his experiences in the academic and
64
computational fields, this web application was designed to
65
enable the collaborative use of open-source software (while
66
eliminating typical installation and package maintenance
67
issues), thus enhancing the teaching and research process in
68
mathematics and data science. CoCalc now operates under a
69
corporate model, making it self-sufficient and capable of growth
70
independent of grants or other external funding.
71
</Typography.Paragraph>
72
73
<Typography.Paragraph>
74
William’s not all business either. You can catch him making the
75
most of Seattle’s famously dismal winters by splitboarding with
76
his Blue Heeler Bella in the Cascades or skating vert at "the
77
most rad private ramp in Seattle."
78
</Typography.Paragraph>
79
80
<Typography.Paragraph>
81
Here is his <A href="https://wstein.org/">personal website.</A>
82
</Typography.Paragraph>
83
</>
84
}
85
pastExperience={[
86
{
87
position: "Tenured Professor of Mathematics",
88
institution: "University of Washington",
89
timeframe: "2006-2019"
90
},
91
{
92
position: "Tenured Associate Professor of Mathematics",
93
institution: "University of California San Diego",
94
timeframe: "2005-2006"
95
},
96
{
97
position: "Author",
98
institution: "SageMath Open-Source Software",
99
timeframe: "2004"
100
},
101
{
102
position: "Assistant Professor of Mathematics",
103
institution: "Harvard University",
104
timeframe: "2000-2005"
105
},
106
{
107
position: "Ph.D. in Mathematics",
108
institution: "University of California Berkeley",
109
timeframe: "1995-2000"
110
}
111
]}
112
/>;
113
}
114
115
export async function getServerSideProps(context) {
116
return await withCustomize({ context });
117
}
118
119