-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
207 lines (149 loc) · 6.84 KB
/
index.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
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
<!DOCTYPE html>
<html>
<head>
<title>Eric Mills - Software Engineer, Tech Entrepreneur, Y Combinator Alum, UIUC Alum</title>
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Inconsolata&display=swap" rel="stylesheet">
<link rel="icon" href="/assets/favicon-32x32.png" type="image/png">
<link rel="icon" href="/assets/favicon.ico" sizes="any">
<link rel="apple-touch-icon" href="/apple-touch-icon.png">
<link rel="manifest" href="/assets/site.webmanifest" />
<style type="text/css" media="screen">
body {
background-color: #6aa284;
}
header, main {
font-family: 'Inconsolata', monospace;
font-size: 18px;
margin: 0 auto;
max-width: 600px;
color: #fff;
padding: 0 20px;
}
header a, main a {
color: #d8f7e7;
}
h1 {
margin: 30px 0;
font-size: 4em;
line-height: 1;
letter-spacing: -1px;
color: #333333;
}
h2 {
color: #333333;
}
</style>
</head>
<body>
<header>
<h1>Eric Mills</h1>
<h2>
Software Engineer | Tech Entrepreneur | YCombinator Alum | UIUC Alum</h2>
<a href="https://www.linkedin.com/in/ericmills2/" target="_blank" rel="nofollow noopener">Linkedin</a> |
<a href="https://twitter.com/ericmillsio" target="_blank" rel="nofollow noopener">Twitter</a> |
<a href="https://github.com/ericmillsio" target="_blank" rel="nofollow noopener">Github</a> |
<a href="mailto:[email protected]">[email protected]</a>
</header>
<main>
<p>I love to build things that make life simpler. Technology should get out of our way.</p>
<h3>Focus Areas</h3>
<ul>
<li>Software architecture</li>
<li>AI/ML production engineering</li>
<li>Data science infrastructure</li>
<li>Cyber security</li>
<li>Product UI/UX</li>
</ul>
<h3>Major Projects</h3>
<ul>
<li><a href="https://blackink.ai" target="_blank">Generative AI for tattoos</li>
<li><a href="https://www.mimecast.com/products/email-security/cybergraph-ai-cybersecurity/" target="_blank" rel="nofollow noopener">Human layer email security with ML and graphs</a></li>
<li><a href="https://civisanalytics.com" target="_blank" rel="nofollow noopener">Data analytics platform for public good</a></li>
<li>Syncing tools for <a href="https://houdini.io" target="_blank">music playlists</a> and <a href="https://calendarbridge.com" target="_blank">calendars</a></li>
<li><a href="https://lithit.com" target="_blank" rel="nofollow noopener">IoT smart targets for shooting ranges</a></li>
<li>Motion tracking for wearable devices</li>
</ul>
<p>I have deep roots in the entrepreneurial communities of Chicago, SF, and Champaign. I'm a <a href="http://www.ycombinator.com/" target="_blank" rel="nofollow noopener">YCombinator alumni (W17)</a>, invest alongside <a href="https://www.orangecollective.vc/" target="_blank" rel="nofollow noopener">Orange Collective</a>, and started the entrepreneurship organization <a href="http://founders.illinois.edu/" target="_blank">Founders @ UIUC</a>.</p>
<p>I enjoy helping early-stage startups and (sometimes) do small investments.</p>
<p>Education: BS in Computer Science from the University of Illinois at Urbana-Champaign.</p>
<p>Fun: Golf, woodworking, and dancing</p>
</main>
<script async src="https://unpkg.com/[email protected]/dist/es-module-shims.js"></script>
<script type="importmap">
{
"imports": {
"three": "https://unpkg.com/[email protected]/build/three.module.js",
"three/addons/": "https://unpkg.com/[email protected]/examples/jsm/"
}
}
</script>
<script type="module">
import * as THREE from 'three';
import { AsciiEffect } from 'three/addons/effects/AsciiEffect.js';
import { TrackballControls } from 'three/addons/controls/TrackballControls.js';
let camera, controls, scene, renderer, effect;
let sphere, plane;
const start = Date.now();
init();
animate();
function init() {
camera = new THREE.PerspectiveCamera( 70, window.innerWidth / window.innerHeight, 1, 1000 );
camera.position.y = 150;
camera.position.z = 500;
scene = new THREE.Scene();
scene.background = new THREE.Color( 0, 0, 0 );
const pointLight1 = new THREE.PointLight( 0xffffff, 3, 0, 0 );
pointLight1.position.set( 500, 500, 500 );
scene.add( pointLight1 );
const pointLight2 = new THREE.PointLight( 0xffffff, 1, 0, 0 );
pointLight2.position.set( - 500, - 500, - 500 );
scene.add( pointLight2 );
sphere = new THREE.Mesh( new THREE.TorusKnotGeometry( 150, 40, 100, 16 ), new THREE.MeshPhongMaterial( { flatShading: true } ) );
scene.add( sphere );
// Plane
// plane = new THREE.Mesh( new THREE.PlaneGeometry( 800, 800 ), new THREE.MeshBasicMaterial( { color: 0xe0e0e0 } ) );
// plane.position.y = - 200;
// plane.rotation.x = - Math.PI / 2;
// scene.add( plane );
renderer = new THREE.WebGLRenderer();
renderer.setSize( window.innerWidth, window.innerHeight );
effect = new AsciiEffect( renderer, ' .:-+*=%#', { invert: true } );
effect.setSize( window.innerWidth, window.innerHeight );
effect.domElement.style.color = '#355041';
effect.domElement.style.backgroundColor = '#6aa284';
// Special case: append effect.domElement, instead of renderer.domElement.
// AsciiEffect creates a custom domElement (a div container) where the ASCII elements are placed.
// Make domElement full screen in background
effect.domElement.style.position = 'fixed';
effect.domElement.style.top = '0';
effect.domElement.style.left = '0';
effect.domElement.style.zIndex = '-1';
document.body.appendChild( effect.domElement );
controls = new TrackballControls( camera, effect.domElement );
controls.noZoom = true;
window.addEventListener( 'resize', onWindowResize );
}
function onWindowResize() {
camera.aspect = window.innerWidth / window.innerHeight;
camera.updateProjectionMatrix();
renderer.setSize( window.innerWidth, window.innerHeight );
effect.setSize( window.innerWidth, window.innerHeight );
}
//
function animate() {
requestAnimationFrame( animate );
render();
}
function render() {
const timer = Date.now() - start;
// sphere.position.y = Math.abs( Math.sin( timer * 0.002 ) ) * 150;
sphere.rotation.x = timer * 0.0003;
sphere.rotation.z = timer * 0.0002;
controls.update();
effect.render( scene, camera );
}
</script>
</body>
</html>