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/harald-schilly.tsx
Views: 687
import { Typography } from "antd";12import { TeamBio } from "components/about/team";3import withCustomize from "lib/with-customize";45import HaraldSchillyImage from "public/about/harald-schilly.jpg";67export default function HaraldSchilly({ customize }) {8return <TeamBio9customize={customize}10givenName="Harald"11surname="Schilly"12position="Chief Technology Officer at SageMath, Inc."13positionShort="CTO"14positionTimeframe="2015-present"15image={HaraldSchillyImage}16imageAlt={"Harald with his dog."}17companyRole={18<Typography.Paragraph>19At SageMath, Inc., Harald assumes the role of a tech torchbearer,20evaluating new technologies and implementing various libraries for21CoCalc projects. His relentless efforts translate into the seamless22front-end and back-end software development and maintenance for Sage and23CoCalc alike.24</Typography.Paragraph>25}26personalSection={27<>28<Typography.Paragraph>29Harald isn’t all work, though. He savors his free time by reconnecting30with nature and playing maestro in the kitchen, whipping up enticing31Italian meals like pasta, pizza, and lasagna. Additionally, he is an32enthusiast of Bitcoin and its cryptic brethren.33</Typography.Paragraph>3435<Typography.Paragraph>36Reach out to chat more about his projects or for advice on the perfect37marinara sauce.38</Typography.Paragraph>39</>40}41background={42<>43<Typography.Paragraph>44Harald’s life-long dedication to coding and his profound knowledge and45dynamic personality have been invaluable in shaping CoCalc’s46operations and success.47</Typography.Paragraph>4849<Typography.Paragraph>50A software maestro, Harald discovered his passion for coding in his51teenage years, experimenting with QBasic on the Microsoft Disk52Operating System and advancing onto Turbo Pascal, Visual Basic, Java,53and C, among others.54</Typography.Paragraph>5556<Typography.Paragraph>57During his studies in Applied Mathematics with a focus on58Optimization, he deepened his understanding of the intricate workings59of algorithms. As a result, he embraced Java, Python, and later60JavaScript as his go-to coding languages. All the while, Harald became61a key contributor to the SageMath open-source mathematics software – a62testament to his dedication to broadening the horizons of technology63and innovation.64</Typography.Paragraph>6566<Typography.Paragraph>67Beyond academia, Harald began crafting software solutions for various68industry needs. After obtaining his Master’s degree, he embarked on a69Ph.D. journey at the University of Vienna while teaching Linux system70administration and introducing Python to the undergraduates. Fueled by71his passion for industry-relevant solutions, he soon founded his own72company.73</Typography.Paragraph>7475<Typography.Paragraph>76Fast forward to 2015, Harald became instrumental in CoCalc’s ascent.77His role demanded in-depth understanding of Software Engineering,78Linux administration, system monitoring, and oversight of the entire79Kubernetes cluster. Harald’s responsibilities didn’t just stop there:80he managed a towering stack of pre-installed open-source software81across all CoCalc projects – a role he fulfills with gusto.82</Typography.Paragraph>83</>84}85pastExperience={[86{87institution: "Self-Employed",88position: "IT Consultant",89timeframe: "2015-present",90},91{92institution: "Sage Open-Source Mathematical Software System",93position: "Developer",94timeframe: "2007-present",95},96{97institution: "University of Vienna",98position: "Mathematician, Faculty of Mathematics",99timeframe: "2006-2014",100},101{102institution: "DAGOPT Optimization Technologies GmbH",103position: "Research and Development",104timeframe: "2011-2012",105},106{107institution: "University of Vienna",108position: "Mag. rer. nat. Mathematics",109timeframe: "1999-2012",110},111{112institution: "University of Vienna",113position: "M.S. Mathematics",114timeframe: "1999-2008",115},116]}117/>;118}119120export async function getServerSideProps(context) {121return await withCustomize({ context });122}123124125