Real-time collaboration for Jupyter Notebooks, Linux Terminals, LaTeX, VS Code, R IDE, and more,
all in one place.
Real-time collaboration for Jupyter Notebooks, Linux Terminals, LaTeX, VS Code, R IDE, and more,
all in one place.
Path: blob/master/src/packages/next/pages/about/team/william-stein.tsx
Views: 687
import { Typography } from "antd";12import A from "components/misc/A";34import withCustomize from "lib/with-customize";56import WilliamSteinImage from "public/about/william-stein.png";7import { TeamBio } from "../../../components/about/team";89export default function WilliamStein({ customize }) {10return <TeamBio11customize={customize}12givenName="William"13surname="Stein"14position="Chief Executive Officer and Founder of SageMath, Inc."15positionShort="CEO & Founder"16positionTimeframe="2015-present"17image={WilliamSteinImage}18imageAlt={"William Stein with his dog, Bella."}19companyRole={20<Typography.Paragraph>21William is both the CEO and a lead software developer for both the front22and back end of CoCalc. His involvement with SageMath development is a23testament to his dedication and commitment. His remarkable past career,24including a tenure as Professor of Mathematics at the University of25Washington, adds depth to his leadership.26</Typography.Paragraph>27}28personalSection={29<>30<Typography.Title level={5}>31A Passionate CEO and Founder32</Typography.Title>3334<Typography.Paragraph>35In his role as CEO of SageMath, Inc., William is at the helm,36navigating the future of CoCalc. His responsibilities span delegating37tasks, driving profitability, and managing the company’s overall38growth strategy. In addition, he maintains a close eye on developments39within the cloud-based software industry, assesses company risks to40ensure they’re minimized, and ensures that CoCalc remains stable and41productive.42</Typography.Paragraph>43</>44}45background={46<>47<Typography.Paragraph>48William’s academic journey began at the University of49California, Berkeley, where he dedicated immense time and energy50to using closed-source software like Magma for in-depth analysis51and research. Though an admirer of its powerful underlying52algorithms, William yearned for more transparent software that53didn’t operate as a “black box.” His wish to understand "how54things operate under the hood" eventually led him to55develop <A href="https://www.sagemath.org/">SageMath</A> during56his time as Assistant Professor of Mathematics at Harvard.57</Typography.Paragraph>5859<Typography.Paragraph>60April 2013 marked another momentous chapter in William’s61professional life: he launched SageMathCloud, now known as62CoCalc. Inspired by his experiences in the academic and63computational fields, this web application was designed to64enable the collaborative use of open-source software (while65eliminating typical installation and package maintenance66issues), thus enhancing the teaching and research process in67mathematics and data science. CoCalc now operates under a68corporate model, making it self-sufficient and capable of growth69independent of grants or other external funding.70</Typography.Paragraph>7172<Typography.Paragraph>73William’s not all business either. You can catch him making the74most of Seattle’s famously dismal winters by splitboarding with75his Blue Heeler Bella in the Cascades or skating vert at "the76most rad private ramp in Seattle."77</Typography.Paragraph>7879<Typography.Paragraph>80Here is his <A href="https://wstein.org/">personal website.</A>81</Typography.Paragraph>82</>83}84pastExperience={[85{86position: "Tenured Professor of Mathematics",87institution: "University of Washington",88timeframe: "2006-2019"89},90{91position: "Tenured Associate Professor of Mathematics",92institution: "University of California San Diego",93timeframe: "2005-2006"94},95{96position: "Author",97institution: "SageMath Open-Source Software",98timeframe: "2004"99},100{101position: "Assistant Professor of Mathematics",102institution: "Harvard University",103timeframe: "2000-2005"104},105{106position: "Ph.D. in Mathematics",107institution: "University of California Berkeley",108timeframe: "1995-2000"109}110]}111/>;112}113114export async function getServerSideProps(context) {115return await withCustomize({ context });116}117118119