Draft website

This commit is contained in:
Oliver Kennedy 2019-11-19 15:24:33 -05:00
parent 9f2579b36a
commit 97bf570244
Signed by: okennedy
GPG key ID: 3E5F9B3ABD3FDB60

137
src/demoday/2019fa.erb Normal file
View file

@ -0,0 +1,137 @@
---
title: CSE 2019 Fall Departmental Demo Day
schedule:
- - "12:30 PM"
- "Staff Arrives [Setup Tables, etc…]"
- - "1:00 PM"
- "Participants Arrive [Setup starts for participants and sponsors]"
- - "2:00 PM"
- "Networking for participants and Judges"
- - "2:30 PM"
- "Demo Day opens to public"
- - "4:30 PM"
- "Breakdown and Judging Tabulated, shift into 101"
- - "5:00 PM"
- "Prizes awarded, Teams give their pitch to audience"
- - "6:00 PM"
- "Demo Day Ends"
classes:
- class: CSE Masters Capstone (CSE-611)
groups:
- class: Languages and Runtimes for Big Data (CSE-662)
groups:
- group:
- name: Varsha Ganesh
- name: Lakshmi Narasimhavihari Vemuri
- name: Srinivas Rishindra Rishindra Pothireddi
- name: Sri Harsha Kesapragada
title: Linear Algebra on Spark Dataframes
- group:
- name: Cheng En Chuang
- name: William Lawrence Stewart
- name: Zhenyu Yang
title: Simulating Data from SQL Logs
- group:
- name: Mohammad Umair
- name: Deepak Ranjan
- name: Yash Narendra Saraf
title: Replicate Learned Index Structures
---
<h1><%= title %></h1>
<p>
We're thrilled to invite you to the fifth bi-annual Comp. Sci. &amp; Eng. Fall Demo Day.  Student groups from several CSE capstone classes will be presenting the culmination of 3-months of effort, hard work, (metaphorical) blood, sweat (well... caffeine really), and tears (see above). 
</p>
<hr/>
<h2>Sponsors</h2>
<p style="text-align: center;">
<a href="https://www.mtb.com/">
<img src="sponsors/mt_bank.png" alt="M&amp;T Bank" width="184" height="100" style="margin-left: 25px; margin-right: 50px;" />
</a>
<a href="https://starkandwayne.com/">
<img src="sponsors/sw_horizontal_hi_res.png" alt="Stark and Wayne" width="315px" height="39"/>
</a>
<a href="https://www.acvauctions.com/">
<img src="sponsors/acv_auctions.png" alt="ACV Auctions" width="96" height="45" style="margin-left: 50px; margin-right: 25px;" />
</a>
</p>
<hr/>
<h2>Schedule</h2>
<h4>Davis Hall; 1st Floor Atrium</h4>
<table>
<%
schedule.each do |time, description| %>
<tr>
<th style="padding-left: 10px; padding-right: 20px; "><%= time %></th>
<td><%= description %></td>
</tr>
<% end %>
</table>
<hr/>
<h2>Projects</h2>
<%
def render_student(data)
data = { "name" => data } if data.is_a? String
txt = data["name"]
tags = [
["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?
return "<div style='display: inline-block'><span style='font-size: 110%'></span> #{txt} <span style='font-size: 110%'></span></div>"
end
project_id = 0
%>
<% classes.each do |class_data|
class_title = class_data["class"]
groups = class_data.fetch("groups", [])
groups = [] if groups.nil?
%>
<h4><%= class_title %></h4>
<dl style="margin-left: 20px;">
<% groups.each do |group_data|
project = group_data["title"]
project = "<a href=\"#{group_data["url"]}\">#{project}</a>" if group_data.include? "url"
team = group_data["group"]
%>
<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 %>
</dl>
<% end %>
<hr/>
<h2>Previous Demo Days</h2>
<ul><% [
"2016fa", "2017fa", "2018fa", "2019sp"
].each do |short|
full = short.gsub(/fa/, " Fall").gsub(/sp/, " Spring") %>
<li><a href="<%=short%>.html"><%= full %></a></li>
<% end %>
</ul>