CV updates

pull/1/head
Oliver Kennedy 2020-05-19 16:17:08 -04:00
parent ddd5d987e6
commit ca2cb19e9c
Signed by: okennedy
GPG Key ID: 3E5F9B3ABD3FDB60
5 changed files with 38 additions and 1 deletions

View File

@ -228,6 +228,17 @@
}
]
},
"thesis_committees" : [
// Excluding jointly advised students
{
"name" : "Duc Thanh Luong",
"date" : "May 2018"
},
{
"name" : "Sai Vikneshwar",
"date" : "May 2020"
}
],
"artifacts" : [
{
"name" : "Vizier",

View File

@ -491,7 +491,7 @@
"effort" : "25%",
"projects" : ["insider-threats"],
"copis" : ["Hung Ngo", "Shambhu Upadhyaya", "Varun Chandola"],
"status" : "accepted",
"status" : "completed",
"start" : "09/2014", "end" : "08/2019",
"type" : "grant",
"agency_id": "1409551",

View File

@ -1,4 +1,19 @@
[
{
"title" : "Loki: Streamlining Integration and Enrichment",
"authors" : [
"William Spoth",
"Poonam Kumari",
"Oliver Kennedy",
"Fatemeh Nargesian"
],
"venue" : "HILDA",
"year" : 2020,
"length" : 4,
"urls" : {
"paper" : "https://odin.cse.buffalo.edu/papers/2020/HILDA-Loki.pdf"
}
},
{
"title" : "Your notebook is not crumby enough, REPLace it",
"authors" : [

View File

@ -116,6 +116,10 @@
"2016" : 0.5
},
"years" : {
"2020" : {
"location" : "Online-Only (originally Portland, OR, USA)",
"date" : "June 19, 2020"
},
"2018" : {
"location" : "Houston, TX, USA",
"date" : "July 10, 2018"

View File

@ -904,6 +904,13 @@ class CV < Latex::Builder
render_student_list.call("PhD", students["PhD"])
render_student_list.call("MS", students["MS"])
render_student_list.call("BS", students["BS"])
theses = @data["thesis_committees"]
# Thesis Committees
subsection!("Thesis Committees (Excluding joint advisees; #{theses.size} graduated)")
puts(
theses.map { |r| "#{r["name"]} (#{r["date"]})" }.join(", ")
)
end
end