Kenny's students and formatting

pull/1/head
Oliver Kennedy 2019-05-02 20:54:25 -04:00
parent 40da147ac2
commit ce7deb1e68
1 changed files with 49 additions and 8 deletions

View File

@ -232,6 +232,47 @@ classes:
group:
- name: Shubham Gulati
email: sgulati3@buffalo.edu
- class: "Applied NLP and Computational Social Science (CSE 702)"
groups:
- title: "A Replication of Language Understanding for Text-based Games using Deep Reinforcement Learning"
group:
- name: Yuhao Du
- title: "A Replication of Fake news on Twitter during the 2016 U.S. presidential election"
group:
- name: Aamir Masood
- name: Sanjay B.
- title: "Seq2Seq machine translation and gender bias analysis"
group:
- name: Payraw Salih
email: payrawsa@buffalo.edu
- name: Parth Shah
email: parthnay@buffalo.edu
- title: "A Replication of Reducing Gender Bias Amplification using Corpus-level Constraints"
group:
- name: Nishi Mehta
- name: Pratik Kubal
- class: "Independent Study"
groups:
- title: "Anonymous public perception - An analysis of r/RoastMe and r/ToastMe"
group:
- name: Niharika Raut
- name: Gokul Premraj
- title: "Fake news in public WhatsApp groups during the 2019 Indian Election"
group:
- name: Abhishek Bhave
- name: Sidharth Pati
- name: Ateendra Ramesh
- title: "What's influencing the president?"
group:
- name: Akshada Chandrakant Bhor
- name: Ruturaj Tukaram Molawade
- title: "Explaining patterns in gender stereotypes associated with having a career"
group:
- name: Vikram Karthikeyan
- title: "What do people put in their twitter bios, and how does it vary by demographics?"
group:
- name: Krithika Srinivasan
---
<h1>CSE Fall Departmental Demo Day</h1>
@ -293,15 +334,15 @@ def render_student(data)
txt = data["name"]
tags = [
["github", "G", "https://github.com/"],
["linkedin", "L", "https://www.linkedin.com/in/"],
["email", "@", "mailto:"]
["github", "github", "https://github.com/"],
["linkedin", "linkedin", "https://www.linkedin.com/in/"],
["email", "email", "mailto:"]
].map do |key, tag, prefix|
"<a href=\"#{prefix}#{data[key]}\">#{tag}</a>" if data.include? key
end.compact
txt += " ↦ #{tags.join(" | ")} " unless tags.empty?
txt += " (#{tags.join(" | ")})" unless tags.empty?
return "{ #{txt} }"
return "<div style='display: inline-block'><span style='font-size: 110%'>[</span> #{txt} <span style='font-size: 110%'>]</span></div>"
end
project_id = 0
@ -320,9 +361,9 @@ project_id = 0
project = "<a href=\"#{group_data["url"]}\">#{project}</a>" if group_data.include? "url"
team = group_data["group"]
%>
<dt style="display: inline-block; "><b><%= project_id += 1 %>.</b> <%= project %></dt>
<dd style="display: inline-block; ">
<span style="font-size: 150%">←</span>
<dt style="display: run-in; "><b><%= project_id += 1 %>.</b> <%= project %></dt>
<dd style="display: inline-block; text-align: right; ">
<span style="font-size: 150%; margin-left: 30px;">↳</span>
<%= team.map { |t| render_student(t) }.join(" + ") %></dd>
<dd style="margin-bottom: 10px; margin-left: 10px;"><%= group_data.fetch("description", "A really ☃ project")%></dd>
<% end %>