1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
|
import React from 'react'
import { css } from '@emotion/core'
import { FontAwesome } from '../components/font-awesome'
import {
faHeart,
faMap,
faWrench,
faFlask,
faEnvelope
} from '@fortawesome/free-solid-svg-icons'
import Layout from '../components/layout'
import { AboutEntry } from '../components/about-entry'
import { Personal } from '../components/personal'
import { SplitContainer } from '../components/split-container'
import profilePic from '../images/profile.jpg'
export const skills = [
'Building beautiful user applications using web technology',
'Deploying function based infrastructure',
'Designing software systems as modules with interfaces',
'Orchestrating fleets of cellular devices',
'Designing and implementing embedded software'
]
export const tools = [
`Languages: Expert in TypeScript/JavaScript, fluent in C, working knowledge of Python and Shell`,
'Frontend: React, Angular, Ionic, RxJS, Redux',
'Infrastructure: Node, Firebase, Google Cloud (Cloud Functions, Pubsub, Stackdriver)',
'Embedded: Linux, Legato, Yocto, AirVantage',
'Automation: TSLint, ESLint, Prettier, clang-format'
]
const aboutLists = [
{
header: (
<>
Values and Ethics <FontAwesome icon={faHeart} />
</>
),
listItems: [
'Design should consider all users',
'Design should be secure and prevent abuse by default',
'People are most important',
'Empower everyone to do amazing work'
]
},
{
header: (
<>
Skills and Experience <FontAwesome icon={faMap} />
</>
),
listItems: skills
},
{
header: (
<>
Tools <FontAwesome icon={faWrench} />
</>
),
listItems: tools
},
{
header: (
<>
Future Learning Ideas <FontAwesome icon={faFlask} />
</>
),
listItems: [
`Learn more languages. I love deriving influence from all languages. In particular, I'm interested in Ruby,
Rust, Smalltalk, ReasonML, and Elixir.`,
`Write a driver using the Linux framebuffer API. Although I never want to
specialize in operating systems, learning about them is fascinating and
helps me write better code at all levels of abstraction.`,
`Implement TCP from scratch in C (bonus for x86 Assembly). We send a lot of data over the network
so I want to zoom in on how it's done.`,
`Write my own kernel with some basic threading (RTOS style)?`,
'Reduce the overhead of declarative web primitives (React style API close to the metal).'
]
}
]
const personalProps = {
name: <h2>Me</h2>,
tagline: `Get in touch`,
imgAlt: `Portrait photo of Nicholas Van Doorn`,
imgUrl: profilePic,
email: (
<p>
<FontAwesome icon={faEnvelope} size="12px" /> vandoorn.nick <em>at</em>{' '}
gmail.com
</p>
)
}
export default () => (
<Layout>
<SplitContainer>
<Personal {...personalProps} />
<div
css={({ margins }) =>
css`
& h2 {
margin: 0 0 ${margins.md}px 0;
}
`
}
>
{aboutLists.map((entry, i) => (
<AboutEntry {...entry} key={`about-entry-${i}`} />
))}
</div>
</SplitContainer>
</Layout>
)
|