-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.shtml
90 lines (89 loc) · 2.66 KB
/
index.shtml
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
<html>
<head>
<title>Kyle Maxwell</title>
<style>
*{
margin:0;
padding:0;
list-style:none;
}
h2{
margin-bottom:0px;
}
p{
margin-bottom:10px;
}
h3{
margin-top:30px;
}
body {
background-color:#333;
font-family:sans-serif;
}
#card {
border:1px silver solid;
padding:30px;
margin:60px;
width:500px;
background-color:white;
}
#description {
margin-bottom:30px;
}
li {
display:inline;
margin-right:10px;
}
img {
float:right;
border:1px silver solid;
padding:1px;
margin: 0 0 10px 10px;
}
div.listy{
margin-top: 20px;
}
em{
font-style:normal;
background-color:#ffc;
}
</style>
</head>
<body>
<div id="card">
<img src="icon.jpg">
<h1>Kyle Maxwell</h1>
<div id="content">
<div id="description">
Hi. I'm Kyle. This is an online index into my online life. You can always reach me at [email protected]. I'm currently starting on a new venture, changing the way the world views the web. In past lives, I've worked with web-scale information retrieval, Ruby on Rails, physics, and advertising agencies.
</div>
<div class="listy">
<h3>Find me on:</h3>
<ul>
<!-- <li><strike><a href="http://www.casttv.com/about/">my employer's site</a></strike></li> -->
<li><a href="http://www.github.com/fizx">GitHub</a></li>
<li><a href="http://www.new.facebook.com/people/Kyle_Maxwell/3303334">facebook</a></li>
<li><a href="http://www.twitter.com/kmx"><strike>twitter</strike></a> (not active)</li>
</ul>
<h3>SelectorGadget</h3>
<p><em><a href="http://www.andrewcantino.com">Andrew Cantino</a> and I have built a simple bookmarklet to let you inspect the css selector paths of a web page.
</em>
</p>
<ul>
<li><a href="http://www.selectorgadget.com">selectorgadget.com</a></li>
<li><a href="http://github.com/tectonic/selectorgadget">on github</a></li>
</ul>
<h3>Miscellaneous gems</h3>
<p>
I haven't been able to find Ruby gems for either a robots.txt parser, or a thread pool implementation. So I wrote my own. </p><p>I'm also working on a filesystem abstraction layer (called keyhole), so you can swap out (at least S3, mogilefs, and local) filesystems without affecting your application.
</p>
<ul>
<li><a href="http://github.com/fizx/thread_pool/tree/master">thread pool (ruby)</a></li>
<li><a href="http://github.com/fizx/robots/tree/master">robots.txt parser (ruby)</a></li>
<li><a href="http://github.com/fizx/keyhole/tree/master">keyhole (ruby)</a></li>
</ul>
</div>
</div>
</div>
</body>
</html>