Add endDate to events (#446)
continuous-integration/drone/push Build is passing Details

Added endDate to events.
This commit is contained in:
Shahan Nedadahandeh 2022-05-25 20:58:12 -04:00
parent c665be281a
commit f12ffbb925
548 changed files with 659 additions and 575 deletions

View File

@ -10,7 +10,8 @@ import styles from "./EventCard.module.css";
interface EventCardProps {
name: string;
short: string;
date: Date;
startDate: Date;
endDate?: Date;
online: boolean;
location: string;
poster?: string;
@ -27,7 +28,8 @@ interface EventCardProps {
export function EventCard({
permaLink,
name,
date,
startDate,
endDate,
online,
location,
poster,
@ -70,7 +72,12 @@ export function EventCard({
)}
</h1>
<h2>
<EventSetting date={date} online={online} location={location} />
<EventSetting
startDate={startDate}
endDate={endDate}
online={online}
location={location}
/>
</h2>
{!showDescription && (
<Link href={permaLink}>

View File

@ -13,7 +13,8 @@ interface Props {
short: string;
online: boolean;
location: string;
date: Date;
startDate: Date;
endDate?: Date;
poster?: string;
registerLink?: string;
permaLink: string;
@ -34,7 +35,8 @@ export function EventDescriptionCard({
poster,
name,
short,
date,
startDate,
endDate,
online,
registerLink,
permaLink,
@ -48,7 +50,12 @@ export function EventDescriptionCard({
<div className={styles.details}>
<h1 className={styles.name}>{name}</h1>
<h2 className={styles.setting}>
<EventSetting date={date} online={online} location={location} />
<EventSetting
startDate={startDate}
endDate={endDate}
online={online}
location={location}
/>
</h2>
<p className={styles.desc}>{short}</p>
<Link href={permaLink}>Learn more</Link>

View File

@ -3,30 +3,51 @@ import React from "react";
import styles from "./EventSetting.module.css";
interface Props {
date: Date;
startDate: Date;
endDate?: Date;
online: boolean;
location: string;
}
export function EventSetting(props: Props) {
const date = props.date.toLocaleDateString("en-US", {
const date = props.startDate.toLocaleDateString("en-US", {
day: "numeric",
month: "long",
year: "numeric",
});
const time = props.date.toLocaleTimeString("en-US", {
const time = props.startDate.toLocaleTimeString("en-US", {
hour: "numeric",
minute: "numeric",
timeZoneName: "short",
});
const endDate =
props.endDate?.toLocaleDateString("en-US", {
day: "numeric",
month: "long",
year: "numeric",
}) ?? "";
const location = props.online ? `Online - ${props.location}` : props.location;
const separator = <span className={styles.separator}> | </span>;
return (
<div className={styles.container}>
<time dateTime={props.date.toISOString()}>{date}</time>
{!props.endDate || date == endDate ? (
// Single day event
<>
<time dateTime={props.startDate.toISOString()}>{date}</time>
{separator}
<span>{time}</span>
</>
) : (
// Multi day event
<span>
<time dateTime={props.startDate.toISOString()}>{date}</time>
<span> - </span>
<time dateTime={props.startDate.toISOString()}>{endDate}</time>
</span>
)}
{separator}
{location}
</div>

View File

@ -11,7 +11,8 @@ interface MiniEventCardProps {
short: string;
online: boolean;
location: string;
date: Date;
startDate: Date;
endDate?: Date;
year: string;
term: string;
slug: string;
@ -22,7 +23,8 @@ export const MiniEventCard: React.FC<MiniEventCardProps> = ({
short,
description,
location,
date,
startDate,
endDate,
online,
year,
term,
@ -37,7 +39,12 @@ export const MiniEventCard: React.FC<MiniEventCardProps> = ({
<div className={styles.nameSpacer}></div>
</h2>
<div className={styles.info}>
<EventSetting date={date} location={location} online={online} />
<EventSetting
startDate={startDate}
endDate={endDate}
location={location}
online={online}
/>
</div>
<p className={styles.shortDescription}>{short}</p>
</div>

View File

@ -1,7 +1,7 @@
---
name: "ACM-Style Programming Contest"
short: ""
date: 'October 15 1994 11:00'
startDate: 'October 15 1994 11:00'
online: false
location: "MC 3022"
---

View File

@ -1,7 +1,7 @@
---
name: "CSC Elections"
short: ""
date: 'September 16 1994 17:30'
startDate: 'September 16 1994 17:30'
online: false
location: "MC 4040"
---

View File

@ -1,7 +1,7 @@
---
name: "Exploring the Internet"
short: ""
date: 'October 20 1994 17:30'
startDate: 'October 20 1994 17:30'
online: false
location: "MC 3009"
---

View File

@ -1,7 +1,7 @@
---
name: "Game Theory"
short: ""
date: 'November 02 1994 17:30'
startDate: 'November 02 1994 17:30'
online: false
location: "MC 2038"
---

View File

@ -1,7 +1,7 @@
---
name: 'Movie Outing: Brainstorm'
short: ' No description available. '
date: 'September 13 1994 21:00'
startDate: 'September 13 1994 21:00'
online: false
location: 'Princess Cinema'
---

View File

@ -1,7 +1,7 @@
---
name: "Prograph: Picture the Future"
short: ""
date: 'October 13 1994 18:00'
startDate: 'October 13 1994 18:00'
online: false
location: "DC 1302"
---

View File

@ -1,7 +1,7 @@
---
name: "SIGGRAPH Video Night"
short: ""
date: 'September 21 1994 19:30'
startDate: 'September 21 1994 19:30'
online: false
location: "DC 1302"
---

View File

@ -1,7 +1,7 @@
---
name: "UNIX I Tutorial"
short: ""
date: 'September 22 1994 17:30'
startDate: 'September 22 1994 17:30'
online: false
location: "MC 3022"
---

View File

@ -1,7 +1,7 @@
---
name: "UNIX II Tutorial"
short: ""
date: 'September 26 1994 17:30'
startDate: 'September 26 1994 17:30'
online: false
location: "MC 3022"
---

View File

@ -1,7 +1,7 @@
---
name: 'Calculational Mathematics'
short: 'By Edgar Dijkstra'
date: 'December 02 1999 13:30'
startDate: 'December 02 1999 13:30'
online: false
location: 'DC1302'
---

View File

@ -1,7 +1,7 @@
---
name: 'Ctrl-D'
short: 'End-of-term dinner'
date: 'December 01 1999 19:00'
startDate: 'December 01 1999 19:00'
online: false
location: 'Golf''s Steakhouse'
---

View File

@ -1,7 +1,7 @@
---
name: "GDB, Purify Tutorial"
short: ""
date: 'October 19 1999 17:30'
startDate: 'October 19 1999 17:30'
online: false
location: "DC1304"
---

View File

@ -1,7 +1,7 @@
---
name: 'Homebrew Processors and Integrated Systems in FPGAs'
short: 'By Jan Gray'
date: 'December 01 1999 16:30'
startDate: 'December 01 1999 16:30'
online: false
location: 'MC2066'
---

View File

@ -2,7 +2,7 @@
name: 'Living Laboratories: The Future Computing Environments at
Georgia Tech'
short: 'By Blair MacIntyre and Elizabeth Mynatt'
date: 'October 18 1999 14:30'
startDate: 'October 18 1999 14:30'
online: false
location: 'DC1304'
---

View File

@ -1,7 +1,7 @@
---
name: 'Open Q&A session'
short: 'By Edsger Dijkstra'
date: 'December 03 1999 15:00'
startDate: 'December 03 1999 15:00'
online: false
location: 'DC1351'
---

View File

@ -1,7 +1,7 @@
---
name: 'Proofs and Programs'
short: 'By Edsger Dijkstra'
date: 'December 03 1999 10:00'
startDate: 'December 03 1999 10:00'
online: false
location: 'Siegfried Hall,
St Jerome''s'

View File

@ -1,7 +1,7 @@
---
name: 'CSC Elections'
short: 'Fall 2000 Elections for the CSC.'
date: 'September 14 2000 18:00'
startDate: 'September 14 2000 18:00'
online: false
location: 'DC1302'
---

View File

@ -1,7 +1,7 @@
---
name: 'Realising the Next Generation Internet'
short: 'By Frank Clegg of Microsoft Canada'
date: 'September 25 2000 14:30'
startDate: 'September 25 2000 14:30'
online: false
location: 'DC1302'
---

View File

@ -1,7 +1,7 @@
---
name: 'SIGGraph Video Night'
short: ' SIGGraph Video Night Featuring some truly awesome computer animations from Siggraph ''99. '
date: 'September 14 2000 19:00'
startDate: 'September 14 2000 19:00'
online: false
location: 'DC1302'
---

View File

@ -1,7 +1,7 @@
---
name: 'Ctrl-D'
short: 'End-of-term dinner'
date: 'July 20 2000 19:00'
startDate: 'July 20 2000 19:00'
online: false
location: 'Ali Babas Steak
House, 130 King Street S, Waterloo'

View File

@ -1,7 +1,7 @@
---
name: "Enterprise Java APIs and Implementing a Web Portal (1)"
short: ""
date: 'March 30 2000 17:30'
startDate: 'March 30 2000 17:30'
online: false
location: "DC1304"
---

View File

@ -1,7 +1,7 @@
---
name: "Enterprise Java APIs and Implementing a Web Portal"
short: ""
date: 'March 24 2000 17:30'
startDate: 'March 24 2000 17:30'
online: false
location: "DC1304"
---

View File

@ -1,7 +1,7 @@
---
name: 'ACM-Style programming contest'
short: 'Practice for the ACM international programming contest'
date: 'June 02 2001 10:30'
startDate: 'June 02 2001 10:30'
online: false
location: 'MC3006'
---

View File

@ -1,7 +1,7 @@
---
name: 'ACM-Style programming contest'
short: 'Practice for the ACM international programming contest'
date: 'January 27 2001 10:30'
startDate: 'January 27 2001 10:30'
online: false
location: 'MC3006'
---

View File

@ -1,7 +1,7 @@
---
name: 'Executive elections'
short: 'Winter 2001 CSC Elections.'
date: 'January 15 2001 16:30'
startDate: 'January 15 2001 16:30'
online: false
location: 'MC3036'
---

View File

@ -1,7 +1,7 @@
---
name: 'Meeting #2'
short: 'Second CSC meeting for Winter 2001.'
date: 'January 22 2001 15:30'
startDate: 'January 22 2001 15:30'
online: false
location: 'MC3036'
---

View File

@ -1,7 +1,7 @@
---
name: "Meeting #3"
short: ""
date: 'January 29 2001 15:39'
startDate: 'January 29 2001 15:39'
online: false
location: "MC3036"
---

View File

@ -1,7 +1,7 @@
---
name: "Meeting #4"
short: ""
date: 'February 05 2001 16:30'
startDate: 'February 05 2001 16:30'
online: false
location: "MC3036"
---

View File

@ -1,7 +1,7 @@
---
name: "Meeting #5"
short: ""
date: 'February 12 2001 16:30'
startDate: 'February 12 2001 16:30'
online: false
location: "MC3036"
---

View File

@ -1,7 +1,7 @@
---
name: 'A GNU Approach to Virtual Memory Management in a Multiserver Operating System'
short: 'Neal Walfield, a GNU Hurd developer, talks about a possible Virtual Memory Management subsystem for the GNU Hurd'
date: 'October 26 2002 16:30'
startDate: 'October 26 2002 16:30'
online: false
location: 'MC2066'
---

View File

@ -1,7 +1,7 @@
---
name: 'Automatic Memory Management and Garbage Collection'
short: 'A talk by James A. Morrison'
date: 'November 12 2002 16:30'
startDate: 'November 12 2002 16:30'
online: false
location: 'MC4058'
---

View File

@ -1,7 +1,7 @@
---
name: 'Business Meeting'
short: 'Vote on a constitutional change.'
date: 'September 30 2002 18:30'
startDate: 'September 30 2002 18:30'
online: false
location: 'Comfy lounge, MC3001'
---

View File

@ -1,7 +1,7 @@
---
name: 'Debian in the Enterprise'
short: 'A talk by Simon Law'
date: 'October 17 2002 17:30'
startDate: 'October 17 2002 17:30'
online: false
location: 'MC2065'
---

View File

@ -1,7 +1,7 @@
---
name: 'F02 elections'
short: 'Come and vote for this term''s exec'
date: 'September 16 2002 17:30'
startDate: 'September 16 2002 17:30'
online: false
location: 'Comfy lounge'
---

View File

@ -1,7 +1,7 @@
---
name: 'GNU/Linux InstallFest with KW-LUG and UW-DIG'
short: 'Bring over your computer and we''ll help you install GNU/Linux'
date: 'November 02 2002 11:00'
startDate: 'November 02 2002 11:00'
online: false
location: 'MC3002 (Math Coffee and Donut Store)'
---

View File

@ -1,7 +1,7 @@
---
name: 'GNU/Linux on HPPA'
short: 'Carlos O''Donnell talks about "the last of the legacy processors to fall before the barbarian horde"'
date: 'October 26 2002 13:30'
startDate: 'October 26 2002 13:30'
online: false
location: 'MC2066'
---

View File

@ -1,7 +1,7 @@
---
name: 'Metaprogramming GPUs'
short: 'A talk by Michael McCool of the Computer Graphics Lab.'
date: 'November 19 2002 16:30'
startDate: 'November 19 2002 16:30'
online: false
location: 'MC4058'
---

View File

@ -1,7 +1,7 @@
---
name: 'Perl 6'
short: 'A talk by Simon Law'
date: 'November 21 2002 18:00'
startDate: 'November 21 2002 18:00'
online: false
location: 'MC2066'
---

View File

@ -1,7 +1,7 @@
---
name: 'Pints with the Profs'
short: 'Get to know your profs and be the envy of your friends!'
date: 'October 01 2002 18:30'
startDate: 'October 01 2002 18:30'
online: false
location: 'The Bomber'
---

View File

@ -1,7 +1,7 @@
---
name: 'Samba and You'
short: 'A talk by Dan Brovkovich, Mathsoc''s Computing Director'
date: 'November 21 2002 16:30'
startDate: 'November 21 2002 16:30'
online: false
location: 'MC2066'
---

View File

@ -1,7 +1,7 @@
---
name: 'The Evil Side of C++'
short: 'Abusing template metaprogramming in C++; aka. writing a Mandelbrot generator that runs at compile time'
date: 'November 05 2002 16:30'
startDate: 'November 05 2002 16:30'
online: false
location: 'MC 2065'
---

View File

@ -1,7 +1,7 @@
---
name: 'The GNU General Public License'
short: 'The teeth of Free Software'
date: 'November 07 2002 17:30'
startDate: 'November 07 2002 17:30'
online: false
location: 'MC4063'
---

View File

@ -1,7 +1,7 @@
---
name: 'The Hurd Interfaces'
short: 'Marcus Brinkmann, a GNU Hurd developer, talks about the Hurd server interfaces, at the heart of a GNU/Hurd system'
date: 'October 26 2002 15:00'
startDate: 'October 26 2002 15:00'
online: false
location: 'MC2066'
---

View File

@ -1,7 +1,7 @@
---
name: 'Trip to York University'
short: 'Going to visit the York University Computer Club'
date: 'November 16 2002 13:30'
startDate: 'November 16 2002 13:30'
online: false
location: 'York University'
---

View File

@ -1,7 +1,7 @@
---
name: 'UNIX 101'
short: 'First Steps with UNIX'
date: 'September 26 2002 17:30'
startDate: 'September 26 2002 17:30'
online: false
location: 'MC3006'
---

View File

@ -1,7 +1,7 @@
---
name: 'UNIX 102'
short: 'Talking to your UNIX can be fun and profitable.'
date: 'October 03 2002 17:30'
startDate: 'October 03 2002 17:30'
online: false
location: 'MC3006'
---

View File

@ -1,7 +1,7 @@
---
name: 'UNIX 103'
short: ''
date: 'October 10 2002 17:30'
startDate: 'October 10 2002 17:30'
online: false
location: 'MC3006'
---

View File

@ -1,7 +1,7 @@
---
name: 'Video cards, Linux display drivers and the Kernel Graphics Interface (KGI)'
short: 'A talk by Filip Spacek, KGI developer'
date: 'October 08 2002 16:30'
startDate: 'October 08 2002 16:30'
online: false
location: 'MC4045'
---

View File

@ -2,7 +2,7 @@
name: 'S02
elections'
short: 'Come and vote for this term''s exec'
date: 'May 11 2002 19:00'
startDate: 'May 11 2002 19:00'
online: false
location: 'MC3036'
---

View File

@ -1,7 +1,7 @@
---
name: 'An Introduction to GNU Hurd'
short: 'Bored of GNU/Linux? Try this experimental operating system!'
date: 'January 26 2002 14:00'
startDate: 'January 26 2002 14:00'
online: false
location: 'Comfy Lounge MC3001'
---

View File

@ -1,7 +1,7 @@
---
name: 'Computer Go, The Ultimate'
short: 'Thomas Wolf from Brock University will be holding a talk on the Asian game of Go. All are welcome.'
date: 'March 01 2002 17:00'
startDate: 'March 01 2002 17:00'
online: false
location: 'MC4060'
---

View File

@ -1,7 +1,7 @@
---
name: 'DVD-Video Under Linux'
short: 'Billy Biggs will be holding a talk on DVD technology (in particular, CSS and playback issues) under Linux, giving some technical details as well as an overview of the current status of Free Software efforts. All are welcome.'
date: 'February 13 2002 16:00'
startDate: 'February 13 2002 16:00'
online: false
location: 'MC4060'
---

View File

@ -1,7 +1,7 @@
---
name: 'GnuPG/PGP Keysigning Party'
short: 'Get more signatures on your key!'
date: 'January 26 2002 14:30'
startDate: 'January 26 2002 14:30'
online: false
location: 'Comfy Lounge MC3001'
---

View File

@ -1,7 +1,7 @@
---
name: 'UNIX 101: First Steps With UNIX'
short: ' This is the first in a series of seminars that cover the use of the UNIX Operating System. UNIX is used in a variety of applications, both in academia and industry. We will be covering the basics of the UNIX environment, as well as the use of PINE, an electronic mail and news reader. '
date: 'January 31 2002 18:00'
startDate: 'January 31 2002 18:00'
online: false
location: 'MC2037'
---

View File

@ -1,7 +1,7 @@
---
name: 'Unix 102: Fun With UNIX'
short: 'This the second in a series of UNIX tutorials. Simon Law and James Perry will be presenting some more advanced UNIX techniques. All are welcome. Accounts will be provided for those needing them.'
date: 'February 07 2002 18:00'
startDate: 'February 07 2002 18:00'
online: false
location: 'MC2037'
---

View File

@ -1,7 +1,7 @@
---
name: '.NET & Linux: When Worlds Collide'
short: 'A talk by James Perry'
date: 'October 21 2003 16:30'
startDate: 'October 21 2003 16:30'
online: false
location: 'MC2065'
---

View File

@ -1,7 +1,7 @@
---
name: 'CS Pints With Profs'
short: 'Come have a pint with your favourite CS profs!'
date: 'November 05 2003 16:30'
startDate: 'November 05 2003 16:30'
online: false
location: 'Grad House Pub (Green Room)'
---

View File

@ -1,7 +1,7 @@
---
name: 'CSC Elections'
short: 'CSC Fall 2003 Elections'
date: 'September 17 2003 16:30'
startDate: 'September 17 2003 16:30'
online: false
location: 'MC3001 (Comfy)'
---

View File

@ -1,7 +1,7 @@
---
name: 'Jon ''maddog'' Hall: Free and Open Source: Its uses in Business and Education'
short: ' Free and Open Source software has been around for a long time, even longer then shrink-wrapped code.'
date: 'December 01 2003 19:00'
startDate: 'December 01 2003 19:00'
online: false
location: 'RCH 101'
---

View File

@ -1,7 +1,7 @@
---
name: 'Poster Team Meeting'
short: 'Join the Poster Team and get Free Pizza!'
date: 'October 06 2003 16:00'
startDate: 'October 06 2003 16:00'
online: false
location: 'MC3001 (Comfy)'
---

View File

@ -1,7 +1,7 @@
---
name: 'Real-Time Graphics Compilers'
short: 'Sh is a GPU metaprogramming language developed at the UW Computer Graphics Lab'
date: 'October 22 2003 16:30'
startDate: 'October 22 2003 16:30'
online: false
location: 'MC4061'
---

View File

@ -1,7 +1,7 @@
---
name: 'UNIX 101: Text Editors'
short: 'vi vs. emacs: The Ultimate Showdown'
date: 'October 02 2003 16:00'
startDate: 'October 02 2003 16:00'
online: false
location: 'MC2037'
---

View File

@ -1,7 +1,7 @@
---
name: 'UNIX 103: Development Tools'
short: 'GCC, GDB, Make'
date: 'October 16 2003 16:00'
startDate: 'October 16 2003 16:00'
online: false
location: 'MC2037'
---

View File

@ -1,7 +1,7 @@
---
name: 'A Brief History of Computer Science'
short: 'War, insanity, espionage, beauty, domination, sacrifice, and tragic death... not what one might associate with the history of computer science. In this talk I will focus on the origin of our discipline in the fields of engineering, mathematics, and science, and on the complicated personalities that shaped its evolution. No advanced technical knowledge is required.'
date: 'June 10 2003 16:30'
startDate: 'June 10 2003 16:30'
online: false
location: 'MC2066'
---

View File

@ -1,7 +1,7 @@
---
name: 'Friday Flicks'
short: ' SIGGRAPH Electronic Theatre Showing '
date: 'June 27 2003 14:30'
startDate: 'June 27 2003 14:30'
online: false
location: 'DC1302'
---

View File

@ -1,7 +1,7 @@
---
name: 'Guelph Trip'
short: 'Come Visit the University of Guelph''s Computer Science Club'
date: 'July 04 2003 15:30'
startDate: 'July 04 2003 15:30'
online: false
location: 'University of Guelph'
---

View File

@ -2,7 +2,7 @@
name: 'July
Exec Meeting'
short: ' See Abstract for minutes '
date: 'July 24 2003 15:00'
startDate: 'July 24 2003 15:00'
online: false
location: 'CSC Office'
---

View File

@ -1,7 +1,7 @@
---
name: 'June 12 Exec Meeting'
short: 'Have an issue that should be brought up? We''d love to hear it!'
date: 'June 12 2003 15:30'
startDate: 'June 12 2003 15:30'
online: false
location: 'MC3036 CSC Office'
---

View File

@ -1,7 +1,7 @@
---
name: 'LaTeX and Work Reports'
short: 'Writing beautiful work reports'
date: 'July 31 2003 16:30'
startDate: 'July 31 2003 16:30'
online: false
location: 'MC4064'
---

View File

@ -1,7 +1,7 @@
---
name: 'Mainframes and Linux'
short: 'A talk by Jim Elliott. Jim is responsible for IBM''s in Open Source activities and IBM''s mainframe operating systems for Canada and the Carribbean.'
date: 'July 08 2003 16:00'
startDate: 'July 08 2003 16:00'
online: false
location: 'MC2065'
---

View File

@ -1,7 +1,7 @@
---
name: 'May 22 Exec Meeting'
short: 'The execs discuss what needs discussion'
date: 'May 22 2003 16:30'
startDate: 'May 22 2003 16:30'
online: false
location: 'MC3036 CSC Office'
---

View File

@ -1,7 +1,7 @@
---
name: 'Pints with Profs!'
short: 'Get to know your profs and be the envy of your friends!'
date: 'June 09 2003 05:00'
startDate: 'June 09 2003 05:00'
online: false
location: 'The Grad House'
---

View File

@ -1,7 +1,7 @@
---
name: 'Sh'
short: 'Metaprogramming your way to stunning effects.'
date: 'July 17 2003 16:30'
startDate: 'July 17 2003 16:30'
online: false
location: 'MC4064'
---

View File

@ -1,7 +1,7 @@
---
name: 'Spring 2003 Elections'
short: 'Come on out and vote for your exec!'
date: 'May 14 2003 16:30'
startDate: 'May 14 2003 16:30'
online: false
location: 'MC3001 Comfy Lounge'
---

View File

@ -1,7 +1,7 @@
---
name: 'Unix 101: First Steps With Unix'
short: 'Learn Unix and be the envy of your friends!'
date: 'May 29 2003 16:30'
startDate: 'May 29 2003 16:30'
online: false
location: 'MC2037'
---

View File

@ -1,7 +1,7 @@
---
name: 'Unix 102: Fun With Unix'
short: 'Talking to your Unix can be fun and profitable'
date: 'June 05 2003 16:30'
startDate: 'June 05 2003 16:30'
online: false
location: 'MC2037'
---

View File

@ -1,7 +1,7 @@
---
name: 'Unix 103: Scripting Unix'
short: 'You too can be a Unix taskmaster'
date: 'June 12 2003 16:30'
startDate: 'June 12 2003 16:30'
online: false
location: 'MC2037'
---

View File

@ -1,7 +1,7 @@
---
name: 'vi: the visual editor'
short: 'It''s not 6.'
date: 'June 19 2003 16:30'
startDate: 'June 19 2003 16:30'
online: false
location: 'MC2037'
---

View File

@ -1,7 +1,7 @@
---
name: 'Abusing the C++ Compiler'
short: 'Abusing template metaprogramming in C++'
date: 'March 26 2003 18:00'
startDate: 'March 26 2003 18:00'
online: false
location: 'MC2065'
---

View File

@ -1,7 +1,7 @@
---
name: 'Judy, or What Is It Like To Be A Robot?'
short: 'Held in co-operation with the UW Cognitive Science Club'
date: 'March 24 2003 20:00'
startDate: 'March 24 2003 20:00'
online: false
location: 'Humanities Theatre, Hagey Hall'
---

View File

@ -1,7 +1,7 @@
---
name: 'LaTeX: A Document Processor'
short: 'Typesetting beautiful text'
date: 'February 06 2003 18:30'
startDate: 'February 06 2003 18:30'
online: false
location: 'MC1085'
---

View File

@ -1,7 +1,7 @@
---
name: 'LaTeX: Beautiful Mathematics'
short: 'LaTeX => fun'
date: 'February 20 2003 18:30'
startDate: 'February 20 2003 18:30'
online: false
location: 'MC1085'
---

View File

@ -1,7 +1,7 @@
---
name: 'LaTeX: Reports'
short: 'Writing reports that look good.'
date: 'February 13 2003 18:30'
startDate: 'February 13 2003 18:30'
online: false
location: 'MC1085'
---

View File

@ -1,7 +1,7 @@
---
name: 'Regular Expressions'
short: 'Find your perfect match'
date: 'January 23 2003 18:30'
startDate: 'January 23 2003 18:30'
online: false
location: 'MC1085'
---

View File

@ -1,7 +1,7 @@
---
name: 'SSH and Networks'
short: 'Once more into the breach'
date: 'March 27 2003 18:30'
startDate: 'March 27 2003 18:30'
online: false
location: 'MC1085'
---

View File

@ -1,7 +1,7 @@
---
name: 'Stream Processing'
short: 'A talk by Assistant Professor Michael McCool'
date: 'March 25 2003 16:30'
startDate: 'March 25 2003 16:30'
online: false
location: 'MC2065'
---

View File

@ -1,7 +1,7 @@
---
name: 'The BSD License Family'
short: 'Free for all'
date: 'February 27 2003 18:00'
startDate: 'February 27 2003 18:00'
online: false
location: 'MC1085'
---

View File

@ -1,7 +1,7 @@
---
name: 'The GNU General Public License'
short: 'The teeth of Free Software'
date: 'February 27 2003 18:30'
startDate: 'February 27 2003 18:30'
online: false
location: 'MC1085'
---

View File

@ -1,7 +1,7 @@
---
name: 'Unix 101 Tutorial'
short: 'Learn Unix and be the envy of your friends!'
date: 'February 04 2003 16:30'
startDate: 'February 04 2003 16:30'
online: false
location: 'MC2037'
---

View File

@ -1,7 +1,7 @@
---
name: 'Unix 102 Tutorial'
short: 'Learn more Unix and be the envy of your friends!'
date: 'February 11 2003 16:30'
startDate: 'February 11 2003 16:30'
online: false
location: 'MC2037'
---

View File

@ -1,7 +1,7 @@
---
name: 'Unix 103 Tutorial'
short: 'Learn more Unix and be the envy of your friends!'
date: 'February 18 2003 16:30'
startDate: 'February 18 2003 16:30'
online: false
location: 'MC2037'
---

View File

@ -1,7 +1,7 @@
---
name: 'W03 Elections'
short: 'Come out and vote for the new exec!'
date: 'January 13 2003 18:00'
startDate: 'January 13 2003 18:00'
online: false
location: 'MC3001'
---

View File

@ -1,7 +1,7 @@
---
name: 'XML'
short: 'Give your documents more markup'
date: 'March 13 2003 18:30'
startDate: 'March 13 2003 18:30'
online: false
location: 'MC1085'
---

View File

@ -1,7 +1,7 @@
---
name: 'XSLT'
short: 'Transforming your documents'
date: 'March 20 2003 18:30'
startDate: 'March 20 2003 18:30'
online: false
location: 'MC1085'
---

View File

@ -1,7 +1,7 @@
---
name: 'sed & awk'
short: 'Unix text editing'
date: 'January 30 2003 18:30'
startDate: 'January 30 2003 18:30'
online: false
location: 'MC1085'
---

View File

@ -2,7 +2,7 @@
name: 'CSC
Elections'
short: 'Come out and vote for the Fall 2004 executive!'
date: 'September 17 2004 16:00'
startDate: 'September 17 2004 16:00'
online: false
location: 'The Comfy Lounge'
---

Some files were not shown because too many files have changed in this diff Show More