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/blaec-bejarano.tsx
Views: 687
import { Typography } from "antd";12import { TeamBio } from "components/about/team";3import A from "components/misc/A";45import withCustomize from "lib/with-customize";67import BlaecBejaranoImage from "public/about/blaec-bejarano.png";89export default function BlaecBejarano({ customize }) {10return <TeamBio11customize={customize}12givenName="Blaec"13surname="Bejarano"14position="Chief Sales Officer at SageMath, Inc."15positionShort="CSO"16positionTimeframe="2022-present"17image={BlaecBejaranoImage}18imageAlt={"A portrait of Blaec looking amiable."}19companyRole={20<Typography.Paragraph>21If you would like to discuss computational applied mathematics, software22development/integration opportunities, or possible partnerships with23SageMath, don’t hesitate to get in touch with Blaec via email at{" "}24<A href="mailto:[email protected]">[email protected]</A>!25</Typography.Paragraph>26}27personalSection={28<>29<Typography.Paragraph>30Blaec is passionate about implementing data-driven decision-making in31government, industry, and academia and his advocacy exemplifies his32research interests — applied mathematics and numerical modeling of33geophysical phenomena.34</Typography.Paragraph>3536<Typography.Paragraph>37His dedication to academic communities is evident through his past38roles, notably as the Student Chapter Secretary of the Society of39Industrial and Applied Mathematics. Now, it’s hard to even name a40community he’s not involved in after participating in 30 conferences41during 2023.42</Typography.Paragraph>43</>44}45background={46<>47<Typography.Paragraph>48Graduating in 2021 with an M.S. in Mathematics from Oregon State49University, Blaec’s academic expertise are focused on applying50numerical analysis and partial differential equations to model51physical phenomena.52</Typography.Paragraph>5354<Typography.Paragraph>55Blaec’s foundation in modern teaching methods - gained through his56years as a teaching assistant and instructor - complements his current57role at SageMath, where his responsibilities span from increasing58CoCalc’s user base through innovative market penetration strategies to59social media/advertising campaigns. Moreover, Blaec drives60opportunities for CoCalc by demonstrating the platform’s most recent61features via live demos at premier conferences like the International62Congress on Industrial and Applied Mathematics (ICIAM) and the63International Conference on Machine Learning (ICML).64</Typography.Paragraph>6566<Typography.Paragraph>67Beyond academic spheres, Blaec is actively engaged in several industry68and business societies, including the Seattle Chamber of Commerce, the69National Small Business Association Leadership Technology Council, and70open-source technology/startup communities like NumFocus and Startup71Grind. Blaec directs corporate alliances among his many roles, leading72the bid to fuse other proprietary software like MATLAB into the73open-source ecosystem.74</Typography.Paragraph>7576<Typography.Paragraph>77Even amidst his busy schedule, Blaec finds time for adventure and78creativity. Lovingly known as one of the SageMath resident79mountaineers, Blaec often scales the Cascade volcanoes of the Pacific80Northwest (and can otherwise be found at home writing songs alongside81his cat Fushigi).82</Typography.Paragraph>83</>84}85pastExperience={[86{87institution: "Cascade Enrichment",88position: "Tutor",89timeframe: "2022",90},91{92institution: "Oregon State University",93position: "Instructor of Record",94timeframe: "2019-2021",95},96{97institution: "Oregon State University",98position: "Graduate Teaching Assistant",99timeframe: "2018-2021",100},101{102institution: "Oregon State University",103position: "M.S. Mathematics",104timeframe: "2018-2021",105},106{107institution: "University of West Florida",108position: "B.A. History, B.S. Mathematics",109timeframe: "2013-2017",110},111]}112/>;113}114115export async function getServerSideProps(context) {116return await withCustomize({ context });117}118119120