-
Notifications
You must be signed in to change notification settings - Fork 1
/
funding.html
executable file
·171 lines (168 loc) · 5.84 KB
/
funding.html
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
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
<!DOCTYPE html>
<html>
<head>
<meta name="viewport" content="width=device-width, initial-scale=1" />
<link rel="stylesheet/less" type="text/css" href="styles/baseStyles.less" />
<link
rel="stylesheet/less"
type="text/css"
href="styles/fundingStyles.less"
/>
<script
type="text/javascript"
src="node_modules/less/dist/less.min.js"
data-log-level="1"
></script>
<script
type="text/javascript"
src="node_modules/d3/dist/d3.min.js"
></script>
<script type="module" src="node_modules/uki/dist/uki.esm.js"></script>
<script
type="module"
src="node_modules/@ukijs/ui/dist/uki-ui.esm.js"
></script>
<script type="module">
import ConsultingController from './controllers/ConsultingController/ConsultingController.js';
window.controller = new ConsultingController();
</script>
</head>
<body>
<div class="fundingChunk jumbotron">
<div>
<h3 id="consulting">Hire Me!</h3>
<p>
I am currently on the job market—if you need to consult a data
visualization expert or if you have an employment opportunity that you
think might be a good fit, please
<a
href="mailto:alex.r.big%65low%40%67mail.%63om"
>contact me</a
>!
</p>
<p>
If you need informal (free) expert advice about anything on this page,
I try to attend
<a href="https://researchbazaar.arizona.edu/"
>Arizona Research Bazaar</a
>
events as often as I can—come grab a Hacky Hour beer, and let's
chat!
</p>
</div>
</div>
<div class="fundingChunk">
<div>
<h3 id="interests">What I do</h3>
<p>I design and build:</p>
<ul class="iconList">
<li>
<img src="/img/application.svg" />
<span>Creative software</span>
</li>
<li>
<img src="/img/dataWrangling.svg" />
<span>Data wrangling tools</span>
</li>
<li>
<img src="/img/visAnalytics.svg" />
<span>Visual analytics systems</span>
</li>
<li>
<img src="/img/webApp.svg" />
<span>Advanced web apps</span>
</li>
</ul>
<p>
... but each of the above is easier imagined than done. Doing this
kind of work almost always also involves:
</p>
<ul class="iconList">
<li>
<img src="/img/brainVsDisk.svg" />
Making fuzzy data or task requirements more crisp
</li>
<li>
<img src="/img/training.svg" />
Providing training for groups or individuals
</li>
<li>
<img src="/img/share.svg" />
Connecting with other world-class researchers and software
</li>
</ul>
</div>
</div>
<div class="fundingChunk">
<h3 id="roles">
<img src="/img/unicorn.svg" />
Business roles I can fill
</h3>
<div class="splitscreen">
<div class="anchor">
<p>
Designing for data is hard—I've
<a href="https://doi.org/10.1145/2598153.2598175">published</a>
<a href="https://doi.org/10.1109/TVCG.2016.2598609">several</a>
<a href="https://doi.org/10.1109/TVCG.2019.2934285">papers</a>
<a
href="http://hdc.cs.arizona.edu/papers/infovis_2020_abstractionGuidelines.pdf"
>about</a
>
why it's hard! To do it properly, it's really important to listen
to, learn from, and develop empathy for people with diverse
perspectives.
</p>
<p>
Often, that includes working with people who wear very different
hats within an organization (and, sometimes, trying those hats on!);
this list is a summary of my current comfort level with various
roles.
</p>
<div class="RolesViewLegend"></div>
</div>
<div class="scrollWrapper">
<div class="RolesView scrollContent"></div>
</div>
</div>
</div>
<!--div class="fundingChunk">
<h3 id="creative_software">Creative Software</h3>
</div-->
<div class="fundingChunk">
<h3 id="expertise">Specific skills</h3>
<div class="splitscreen reverse">
<div class="anchor">
<p>
Have a specific technology that you need me to work with? Here's an
overview of what I've dealt with in the past, and what I'd like an
excuse to learn more about.
</p>
<p>
Is something missing? Want to know more about what I mean by my star
ratings? Please
<a
href="mailto:alex.r.big%65low%40%67mail.%63om"
>contact me</a
>!
</p>
<small
><p>
(Salty opinion): these lists are never exhaustive, nor do they
indicate what a candidate can learn—this interface could use
a redesign. If you're this far down this page, chances are decent
that you're considering hiring me—if so, let me know what
sort of interactions you'd like to see here, that would make your
job of hiring someone easier! For now, Control (or Command) + F is
your friend if you're looking for something specific.
</p></small
>
<div class="ExpertiseViewLegend"></div>
</div>
<div class="scrollWrapper">
<div class="ExpertiseView scrollContent"></div>
</div>
</div>
</div>
</body>
</html>