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 { interface EventCardProps {
name: string; name: string;
short: string; short: string;
date: Date; startDate: Date;
endDate?: Date;
online: boolean; online: boolean;
location: string; location: string;
poster?: string; poster?: string;
@ -27,7 +28,8 @@ interface EventCardProps {
export function EventCard({ export function EventCard({
permaLink, permaLink,
name, name,
date, startDate,
endDate,
online, online,
location, location,
poster, poster,
@ -70,7 +72,12 @@ export function EventCard({
)} )}
</h1> </h1>
<h2> <h2>
<EventSetting date={date} online={online} location={location} /> <EventSetting
startDate={startDate}
endDate={endDate}
online={online}
location={location}
/>
</h2> </h2>
{!showDescription && ( {!showDescription && (
<Link href={permaLink}> <Link href={permaLink}>

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

@ -1,7 +1,7 @@
--- ---
name: 'SIGGraph Video Night' name: 'SIGGraph Video Night'
short: ' SIGGraph Video Night Featuring some truly awesome computer animations from Siggraph ''99. ' 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 online: false
location: 'DC1302' location: 'DC1302'
--- ---

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

@ -1,7 +1,7 @@
--- ---
name: 'A GNU Approach to Virtual Memory Management in a Multiserver Operating System' 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' 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 online: false
location: 'MC2066' location: 'MC2066'
--- ---

View File

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

View File

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

View File

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

View File

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

View File

@ -1,7 +1,7 @@
--- ---
name: 'GNU/Linux InstallFest with KW-LUG and UW-DIG' name: 'GNU/Linux InstallFest with KW-LUG and UW-DIG'
short: 'Bring over your computer and we''ll help you install GNU/Linux' 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 online: false
location: 'MC3002 (Math Coffee and Donut Store)' location: 'MC3002 (Math Coffee and Donut Store)'
--- ---

View File

@ -1,7 +1,7 @@
--- ---
name: 'GNU/Linux on HPPA' name: 'GNU/Linux on HPPA'
short: 'Carlos O''Donnell talks about "the last of the legacy processors to fall before the barbarian horde"' 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 online: false
location: 'MC2066' location: 'MC2066'
--- ---

View File

@ -1,7 +1,7 @@
--- ---
name: 'Metaprogramming GPUs' name: 'Metaprogramming GPUs'
short: 'A talk by Michael McCool of the Computer Graphics Lab.' 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 online: false
location: 'MC4058' location: 'MC4058'
--- ---

View File

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

View File

@ -1,7 +1,7 @@
--- ---
name: 'Pints with the Profs' name: 'Pints with the Profs'
short: 'Get to know your profs and be the envy of your friends!' 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 online: false
location: 'The Bomber' location: 'The Bomber'
--- ---

View File

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

View File

@ -1,7 +1,7 @@
--- ---
name: 'The Evil Side of C++' name: 'The Evil Side of C++'
short: 'Abusing template metaprogramming in C++; aka. writing a Mandelbrot generator that runs at compile time' 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 online: false
location: 'MC 2065' location: 'MC 2065'
--- ---

View File

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

View File

@ -1,7 +1,7 @@
--- ---
name: 'The Hurd Interfaces' 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' 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 online: false
location: 'MC2066' location: 'MC2066'
--- ---

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

@ -1,7 +1,7 @@
--- ---
name: 'Computer Go, The Ultimate' 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.' 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 online: false
location: 'MC4060' location: 'MC4060'
--- ---

View File

@ -1,7 +1,7 @@
--- ---
name: 'DVD-Video Under Linux' 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.' 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 online: false
location: 'MC4060' location: 'MC4060'
--- ---

View File

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

View File

@ -1,7 +1,7 @@
--- ---
name: 'UNIX 101: First Steps With UNIX' 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. ' 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 online: false
location: 'MC2037' location: 'MC2037'
--- ---

View File

@ -1,7 +1,7 @@
--- ---
name: 'Unix 102: Fun With UNIX' 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.' 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 online: false
location: 'MC2037' location: 'MC2037'
--- ---

View File

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

View File

@ -1,7 +1,7 @@
--- ---
name: 'CS Pints With Profs' name: 'CS Pints With Profs'
short: 'Come have a pint with your favourite CS 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 online: false
location: 'Grad House Pub (Green Room)' location: 'Grad House Pub (Green Room)'
--- ---

View File

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

View File

@ -1,7 +1,7 @@
--- ---
name: 'Jon ''maddog'' Hall: Free and Open Source: Its uses in Business and Education' 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.' 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 online: false
location: 'RCH 101' location: 'RCH 101'
--- ---

View File

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

View File

@ -1,7 +1,7 @@
--- ---
name: 'Real-Time Graphics Compilers' name: 'Real-Time Graphics Compilers'
short: 'Sh is a GPU metaprogramming language developed at the UW Computer Graphics Lab' 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 online: false
location: 'MC4061' location: 'MC4061'
--- ---

View File

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

View File

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

View File

@ -1,7 +1,7 @@
--- ---
name: 'A Brief History of Computer Science' 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.' 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 online: false
location: 'MC2066' location: 'MC2066'
--- ---

View File

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

View File

@ -1,7 +1,7 @@
--- ---
name: 'Guelph Trip' name: 'Guelph Trip'
short: 'Come Visit the University of Guelph''s Computer Science Club' 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 online: false
location: 'University of Guelph' location: 'University of Guelph'
--- ---

View File

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

View File

@ -1,7 +1,7 @@
--- ---
name: 'June 12 Exec Meeting' name: 'June 12 Exec Meeting'
short: 'Have an issue that should be brought up? We''d love to hear it!' 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 online: false
location: 'MC3036 CSC Office' location: 'MC3036 CSC Office'
--- ---

View File

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

View File

@ -1,7 +1,7 @@
--- ---
name: 'Mainframes and Linux' 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.' 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 online: false
location: 'MC2065' location: 'MC2065'
--- ---

View File

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

View File

@ -1,7 +1,7 @@
--- ---
name: 'Pints with Profs!' name: 'Pints with Profs!'
short: 'Get to know your profs and be the envy of your friends!' 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 online: false
location: 'The Grad House' location: 'The Grad House'
--- ---

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

@ -1,7 +1,7 @@
--- ---
name: 'Judy, or What Is It Like To Be A Robot?' name: 'Judy, or What Is It Like To Be A Robot?'
short: 'Held in co-operation with the UW Cognitive Science Club' 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 online: false
location: 'Humanities Theatre, Hagey Hall' location: 'Humanities Theatre, Hagey Hall'
--- ---

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

@ -1,7 +1,7 @@
--- ---
name: 'Unix 102 Tutorial' name: 'Unix 102 Tutorial'
short: 'Learn more Unix and be the envy of your friends!' 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 online: false
location: 'MC2037' location: 'MC2037'
--- ---

View File

@ -1,7 +1,7 @@
--- ---
name: 'Unix 103 Tutorial' name: 'Unix 103 Tutorial'
short: 'Learn more Unix and be the envy of your friends!' 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 online: false
location: 'MC2037' location: 'MC2037'
--- ---

View File

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

View File

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

View File

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

View File

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

View File

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

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