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/blaec-bejarano.tsx
Views: 687
1
import { Typography } from "antd";
2
3
import { TeamBio } from "components/about/team";
4
import A from "components/misc/A";
5
6
import withCustomize from "lib/with-customize";
7
8
import BlaecBejaranoImage from "public/about/blaec-bejarano.png";
9
10
export default function BlaecBejarano({ customize }) {
11
return <TeamBio
12
customize={customize}
13
givenName="Blaec"
14
surname="Bejarano"
15
position="Chief Sales Officer at SageMath, Inc."
16
positionShort="CSO"
17
positionTimeframe="2022-present"
18
image={BlaecBejaranoImage}
19
imageAlt={"A portrait of Blaec looking amiable."}
20
companyRole={
21
<Typography.Paragraph>
22
If you would like to discuss computational applied mathematics, software
23
development/integration opportunities, or possible partnerships with
24
SageMath, don’t hesitate to get in touch with Blaec via email at{" "}
25
<A href="mailto:[email protected]">[email protected]</A>!
26
</Typography.Paragraph>
27
}
28
personalSection={
29
<>
30
<Typography.Paragraph>
31
Blaec is passionate about implementing data-driven decision-making in
32
government, industry, and academia and his advocacy exemplifies his
33
research interests — applied mathematics and numerical modeling of
34
geophysical phenomena.
35
</Typography.Paragraph>
36
37
<Typography.Paragraph>
38
His dedication to academic communities is evident through his past
39
roles, notably as the Student Chapter Secretary of the Society of
40
Industrial and Applied Mathematics. Now, it’s hard to even name a
41
community he’s not involved in after participating in 30 conferences
42
during 2023.
43
</Typography.Paragraph>
44
</>
45
}
46
background={
47
<>
48
<Typography.Paragraph>
49
Graduating in 2021 with an M.S. in Mathematics from Oregon State
50
University, Blaec’s academic expertise are focused on applying
51
numerical analysis and partial differential equations to model
52
physical phenomena.
53
</Typography.Paragraph>
54
55
<Typography.Paragraph>
56
Blaec’s foundation in modern teaching methods - gained through his
57
years as a teaching assistant and instructor - complements his current
58
role at SageMath, where his responsibilities span from increasing
59
CoCalc’s user base through innovative market penetration strategies to
60
social media/advertising campaigns. Moreover, Blaec drives
61
opportunities for CoCalc by demonstrating the platform’s most recent
62
features via live demos at premier conferences like the International
63
Congress on Industrial and Applied Mathematics (ICIAM) and the
64
International Conference on Machine Learning (ICML).
65
</Typography.Paragraph>
66
67
<Typography.Paragraph>
68
Beyond academic spheres, Blaec is actively engaged in several industry
69
and business societies, including the Seattle Chamber of Commerce, the
70
National Small Business Association Leadership Technology Council, and
71
open-source technology/startup communities like NumFocus and Startup
72
Grind. Blaec directs corporate alliances among his many roles, leading
73
the bid to fuse other proprietary software like MATLAB into the
74
open-source ecosystem.
75
</Typography.Paragraph>
76
77
<Typography.Paragraph>
78
Even amidst his busy schedule, Blaec finds time for adventure and
79
creativity. Lovingly known as one of the SageMath resident
80
mountaineers, Blaec often scales the Cascade volcanoes of the Pacific
81
Northwest (and can otherwise be found at home writing songs alongside
82
his cat Fushigi).
83
</Typography.Paragraph>
84
</>
85
}
86
pastExperience={[
87
{
88
institution: "Cascade Enrichment",
89
position: "Tutor",
90
timeframe: "2022",
91
},
92
{
93
institution: "Oregon State University",
94
position: "Instructor of Record",
95
timeframe: "2019-2021",
96
},
97
{
98
institution: "Oregon State University",
99
position: "Graduate Teaching Assistant",
100
timeframe: "2018-2021",
101
},
102
{
103
institution: "Oregon State University",
104
position: "M.S. Mathematics",
105
timeframe: "2018-2021",
106
},
107
{
108
institution: "University of West Florida",
109
position: "B.A. History, B.S. Mathematics",
110
timeframe: "2013-2017",
111
},
112
]}
113
/>;
114
}
115
116
export async function getServerSideProps(context) {
117
return await withCustomize({ context });
118
}
119
120