Skip to content

Commit 92fdec6

Browse files
committed
update cv
1 parent 7d8f3b5 commit 92fdec6

6 files changed

Lines changed: 42 additions & 35 deletions

File tree

public/cv.pdf

224 KB
Binary file not shown.

public/images/profile.jpg

224 KB
Loading

public/transcript.pdf

726 KB
Binary file not shown.

src/components/css/main/index.tsx

Lines changed: 16 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -55,13 +55,22 @@ export const Main: React.FC = () => {
5555
return (
5656
<div style={{ display: 'flex', flexDirection: 'column', minHeight: '100vh', alignItems: 'stretch' }} >
5757
{/* <About /> */}
58-
<div className="print-only" style={{ position: 'fixed', margin: 16, top: 0, left: 0 }}>
59-
0224998841<br />
60-
edeetee@gmail.com<br />
61-
www.edt.nz
58+
59+
<h1 className="not-print" style={{ marginRight: 0, textAlign: 'right', margin: '5vh 5vw' }}>Edward Taylor</h1>
60+
<div className="print-only" style={{ display: 'flex', flexDirection: 'row', width: '100%', justifyContent: 'space-betweens', }} >
61+
62+
<div style={{ display: 'flex', flexDirection: 'column', alignSelf: 'start', marginLeft: 16 }} >
63+
<h1 style={{ marginRight: 0 }}>Edward Taylor</h1>
64+
<br />
65+
<div >
66+
0224998841<br />
67+
edeetee@gmail.com<br />
68+
www.edt.nz
69+
</div>
70+
</div>
71+
<img src="images/profile.jpg" width={180} height={180} style={{ marginRight: 8, marginTop: 16 }} />
6272
</div>
6373

64-
<h1 style={{ alignSelf: 'end', margin: '5vh 5vw' }}>Edward Taylor</h1>
6574
<div className="nav" role="navigation"><PageSelector<PageInfo>
6675
options={pageOptions}
6776
selected={selectedPage}
@@ -95,7 +104,8 @@ export const Main: React.FC = () => {
95104

96105
<Expandable expanded={showContent}>
97106
<div ref={contentRef} className={styles.content}>
98-
<div style={{ margin: '32px 24px', padding: '32px 0' }}>{selectedPage?.page}</div>
107+
<div className="not-print" style={{ margin: '32px 24px', padding: '32px 0' }}>{selectedPage?.page}</div>
108+
<div className="print-only" style={{ margin: '32px 24px' }}>{selectedPage?.page}</div>
99109
</div>
100110
</Expandable>
101111

src/components/cv.tsx

Lines changed: 20 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -20,22 +20,13 @@ export const Skills: React.FC = () =>
2020
{/* <Separator /> */}
2121

2222
<div style={{ display: 'flex', flexDirection: 'row', flexWrap: 'wrap', justifyContent: 'space-around' }}>
23-
<div style={{ width: '30%', minWidth: 200 }} >
24-
<h3>Rendering & Interaction</h3>
25-
<ul style={{ paddingLeft: 16 }}>
26-
<li>3D Materials, Modelling & Maths</li>
27-
<li>Live data & interaction</li>
28-
<li>Projection hardware experience</li>
29-
<li>Passion for experimental techniques</li>
30-
</ul>
31-
</div>
3223

3324
<div style={{ width: '30%', minWidth: 200 }} >
3425
<h3>Software Development</h3>
3526
<ul style={{ paddingLeft: 16 }}>
36-
<li>Linux management (systemd, nixos, Raspberry Pi)</li>
3727
<li>Backend (AWS, Rust in lambda, Postgres)</li>
38-
<li>Apps (Flutter, Android, Web)</li>
28+
<li>Apps (Flutter, Android, iOS, Web)</li>
29+
<li>Linux (systemd, nixos, Raspberry Pi)</li>
3930
</ul>
4031
</div>
4132

@@ -47,6 +38,16 @@ export const Skills: React.FC = () =>
4738
<li>Knowing when to present a learning opportunity and when to step in</li>
4839
</ul>
4940
</div>
41+
42+
<div style={{ width: '30%', minWidth: 200 }} >
43+
<h3>Rendering & Interaction</h3>
44+
<ul style={{ paddingLeft: 16 }}>
45+
<li>3D Materials, Modelling & Maths</li>
46+
<li>Live data & interaction</li>
47+
<li>Projection hardware experience</li>
48+
<li>Passion for experimental techniques</li>
49+
</ul>
50+
</div>
5051
</div>
5152

5253
<h1>Experience</h1>
@@ -56,8 +57,8 @@ export const Skills: React.FC = () =>
5657
Map app
5758
<ul>
5859
<li>Geospatial data and processing</li>
59-
<li>Python visualisation and data proessing</li>
60-
<li>Reproducible data pipeline</li>
60+
<li>Data visualisation and proessing</li>
61+
<li>Accessible flutter app</li>
6162
<li>Team management</li>
6263
</ul>
6364
</div>
@@ -121,17 +122,19 @@ export const Skills: React.FC = () =>
121122
<h4>
122123
Bachelor of Design Innovation (Media Design)
123124
</h4>
124-
Deans Award<br />
125-
6 courses complete with grade A- or greater<br />
126-
2 more with B+
125+
<ul>
126+
<li>Deans Award</li>
127+
<li>7.32 GPA</li>
128+
</ul>
129+
<a href='https://edt.nz/transcript.pdf'>Download Transcript</a> <br />
127130
</div>
128131
<div style={{ width: '40%', minWidth: 300 }} >
129132
<h3><i>2016</i> Canterbury University</h3>
130133
<h4>
131134
Bachelor of Science (Incomplete) (Computer Science)
132135
</h4>
133136
First year completed with average of A-<br />
134-
Dropped out second year to pursue more applied skills
137+
Dropped out second year to pursue applied skills
135138
</div>
136139
</div>
137140

src/styles/global.css

Lines changed: 6 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -103,25 +103,19 @@ h4 {
103103
margin-bottom: 16px;
104104
}
105105

106-
.print-only {
107-
display: none;
108-
}
109-
110-
.not-print {
111-
display: block;
112-
}
113-
114-
@media print {
106+
@media not print {
115107
.print-only {
116-
display: block;
108+
display: none !important;
117109
}
110+
}
118111

112+
@media print {
119113
.not-print {
120-
display: none;
114+
display: none !important;
121115
}
122116

123117
.nav {
124-
display: none;
118+
display: none !important;
125119
}
126120

127121
.footer {

0 commit comments

Comments
 (0)