pull/1/head
Oliver Kennedy 2017-08-17 15:03:30 -04:00
parent 93573511cd
commit 7a6b3e8485
4 changed files with 53 additions and 17 deletions

BIN
assets/people/carl.jpg Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 10 KiB

View File

@ -1,12 +1,28 @@
{
"members" : {
"Oliver Kennedy" : {
"status" : "Faculty",
"ubit" : "okennedy"
"status" : "Assistant Professor",
"ubit" : "okennedy",
"pic" : {
"file" : "http://odin.cse.buffalo.edu/assets/people/oliver.jpg",
"width" : 230,
"height" : 346
},
"github" : "okennedy",
"twitter" : "xthemage",
"scholar" : "9Q9tiCsAAAAJ",
"dblp" : "hd/k/Kennedy:Oliver",
"cv" : "http://odin.cse.buffalo.edu/artifacts/okennedy.pdf"
},
"Mike Brachman" : {
"Mike Brachmann" : {
"status" : "Senior Research Developer",
"ubit" : "mrb24"
"ubit" : "mrb24",
"pic" : {
"file" : "https://avatars1.githubusercontent.com/u/25045473?v=4&s=460",
"width" : 200,
"height" : 200
},
"github" : "mrb24"
},
"Ting Xie" : {
"status" : "PhD",
@ -19,14 +35,24 @@
"ubit" : "gokhanku",
"advisor" : ["Shambhu Upadhyaya"],
"link" : "http://www.cse.buffalo.edu/~gokhanku/",
"joint_advisor": true
"joint_advisor": true,
"pic" : {
"file" : "https://www.cse.buffalo.edu/~gokhanku/gokhankul.png",
"width" : 150,
"height" : 150
}
},
"Duc Thanh Luong" : {
"status" : "PhD",
"projects" : ["insider-threats"],
"ubit" : "ducthanh",
"advisor" : ["Varun Chandola"],
"link" : "http://www.cse.buffalo.edu/~ducthanh/"
"link" : "http://www.cse.buffalo.edu/~ducthanh/",
"pic" : {
"file" : "https://www.cse.buffalo.edu//~ducthanh/img/profile_pic.jpg",
"width" : 160,
"height" : 220
}
},
"Poonam Kumari" : {
"status" : "PhD",
@ -71,7 +97,13 @@
"joint_advisor" : true,
"advisor" : ["Luke Ziarek"],
"ubit" : "gourabmi",
"link" : "https://about.me/gourabmitra"
"link" : "https://about.me/gourabmitra",
"pic" : {
"file" : "https://aboutme.imgix.net/background/users/g/o/u/gourabmitra_1493138987_082.jpg?q=40&dpr=2&auto=format&fit=max&w=200&h=267",
"width" : 200,
"height" : 267
}
},
"Shivang Aggarwal" : {
"status" : "MS",
@ -94,7 +126,12 @@
"status" : "PhD",
"projects" : ["pocketdata"],
"joint_advisor" : true,
"advisor" : ["Luke Ziarek"]
"advisor" : ["Luke Ziarek"],
"pic" : {
"file" : "http://odin.cse.buffalo.edu/assets/people/carl.jpg",
"width" : 200,
"height" : 200
}
}
},
"temp-leave" : {

View File

@ -1,14 +1,5 @@
---
title: Oliver Kennedy
github: okennedy
twitter: xthemage
scholar: 9Q9tiCsAAAAJ
dblp: hd/k/Kennedy:Oliver
cv: http://odin.cse.buffalo.edu/artifacts/okennedy.pdf
pic:
file: ../assets/people/oliver.jpg
width: 230
height: 346
---
Oliver Kennedy is an Assistant Professor at the University at Buffalo. Oliver's primary area of research is Databases, although his research interests frequently cross over into Programming Languages and Datastructures. His work focuses on self-service analytics, making messy data, schema design, and physical layout decisions more approachable. Through real-world usage metrics gathered from industry collaborations and the use of real-world testbeds, Oliver's work aims to address the practical problems faced by data consumers everywhere. His projects include a UI for ad-hoc cleaning and analytics called <a href="http://www.mimirdb.info">Mimir</a> and a universal, <a href="/research/astral/index.html">Just In-Time Datastructure</a>.

View File

@ -11,6 +11,14 @@ name = if defined? name then name else "A Mysterious Stranger" end
<% end %>
<% end %>
<h1><%= name %></h1>
<% if defined? status %>
<h5><%=
case status
when "PhD", "MS", "BS" then status + " student"
else status
end
%></h5>
<% end %>
<div class="links">
<% if defined? github %><a href="http://github.com/<%=github%>">GitHub</a><% end %>