-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathabout.html
More file actions
94 lines (71 loc) · 4.73 KB
/
about.html
File metadata and controls
94 lines (71 loc) · 4.73 KB
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
91
92
93
94
---
layout: default
title: About
---
<!-- main -->
<section class="section">
<div class="container">
<div class="content">
<h1>About VGL</h1>
<p>The <strong class="has-text-vgl-primary">Visualization and Graphics Lab (VGL)</strong> was founded in November 2015 to bring together faculty and students to discuss and collaborate on research in the data visualization and graphics fields. Our regular lab meetings are open to all students, faculty, and staff at USF as well as interested members of the public.</p>
<h2>Contact</h2>
<p>We can be reached on the <code><i class="fab fa-slack-hash"></i>vgl</code> channel on the <a href="https://usfcs.slack.com/">USFCS Slack Team</a>. If you have an <code>@cs.usfca.edu</code>, <code>@usfca.edu</code>, or <code>@dons.usfca.edu</code> email address, you can <a href="https://usfcs.slack.com/signup/">create a free account</a> and join our channel. Otherwise, please email <a href="mailto:vgl@cs.usfca.edu">vgl@cs.usfca.edu</a> to receive an invite.</p>
<h2>Core Faculty</h2>
{% for person in site.data.people.faculty %}
<article class="media is-borderless">
<div class="media-left">
<p class="image is-96x96">
<img src="{{ "images/" | append: person.image | relative_url }}">
</p>
</div>
<div class="media-content">
<div class="content">
<p>
<strong>{{ person.first }} {{ person.last }}</strong>
{% for link in person.links %}
<a href="{{ link.link }}" alt="{{ link.name }}"><i class="{{ link.icon }}"></i></a>
{% endfor %}
<br/>
{{ person.about }}
</p>
</div>
</article>
{% endfor %}
<br/>
<p>We also frequently work with other USF faculty and students, as well as several external collaborators. See our <a href="{{ research.html | relative_url }}">Research</a> page to see who we have published with.</p>
<h2>Past Events</h2>
<p>VGL occasionally hosts, sponsors, or helps organize various on-campus and off-campus events. These can be found archived below.</p>
<h4>Pedagogy of Data Visualization Workshop (PDVW)</h4>
<p>The pedagogy of data visualization is becoming increasingly important as data visualization techniques and tools proliferate. This workshop creates a community of practice that supports each other as they learn to be better teachers in their respective classrooms.</p>
<p>This half-day interactive workshop was held in conjunction with IEEE VIS in 2016 and 2017.</p>
<p>
<a href="http://vgl.cs.usfca.edu/pdvw/2016/" class="button is-small is-light">
PDVW 2016
<i class="fas fa-angle-double-right"></i>
</a>
<a href="http://vgl.cs.usfca.edu/pdvw/2017/" class="button is-small is-light">
PDVW 2017
<i class="fas fa-angle-double-right"></i>
</a>
</p>
<h4>Data Visualization Speaker Series (DVSS)</h4>
<p>This speaker series was established in Spring 2014 as an interdisciplinary effort by professors Scott Murray in Design and Alark Joshi and Sophie Engle in Computer Science. Events in this series were open to all faculty, staff, students, alumni of USF, and the general public.</p>
<p>This speaker series was generously supported by the <a href="https://www.usfca.edu/arts-sciences/about">Office of the Dean in the College of Arts and Sciences</a> at the University of San Francisco, and advertised to the public via the <a href="http://www.meetup.com/visualizemydata/">Data Visualization Group in the Bay Area</a> meetup.</p>
<p>
<a href="http://vgl.cs.usfca.edu/dvss" class="button is-small is-light">
Learn More
<i class="fas fa-angle-double-right"></i>
</a>
</p>
<h4>Student Data Visualization Contest</h4>
<p>The goal of this contest was to encourage students to produce an interactive web-based visualization inline with the University's mission to <q>change the world from here</q>. The contest was open to all students and judged by a four-person panel. The first place winner received a Wacom Bamboo Create Pen and Touch Tablet, and two honorable mentions received an Apple iPod Shuffle and Roku LT Streaming Player.</p>
<p>The contest was generously supported by the <a href="https://www.usfca.edu/arts-sciences/about">Office of the Dean in the College of Arts and Sciences</a> at the University of San Francisco.</p>
<p>
<a href="https://sites.google.com/a/cs.usfca.edu/datavis/contest" class="button is-small is-light">
Learn More
<i class="fas fa-angle-double-right"></i>
</a>
</p>
</div>
</section>