Compare commits

..

18 Commits

Author SHA1 Message Date
Shahan Nedadahandeh 366e226520
Updated location of script
continuous-integration/drone/push Build is passing Details
2022-06-01 23:43:11 -07:00
Shahan Nedadahandeh b6129b3843
cleaned up
continuous-integration/drone/push Build is passing Details
2022-06-01 23:36:39 -07:00
Shahan Nedadahandeh be527c382e
Updated ci check
continuous-integration/drone/push Build is passing Details
2022-06-01 23:14:30 -07:00
Shahan Nedadahandeh a3bd8da8cc
Updated env check
continuous-integration/drone/push Build is passing Details
2022-06-01 23:13:30 -07:00
Shahan Nedadahandeh bead08ed09
updated warning
continuous-integration/drone/push Build is passing Details
2022-06-01 23:13:05 -07:00
Shahan Nedadahandeh 3d57bde02e
Testing warning on production
continuous-integration/drone/push Build is passing Details
2022-06-01 23:08:28 -07:00
Shahan Nedadahandeh bec8d006cf
fixed issue with file extensions being uppercase 2022-06-01 23:07:40 -07:00
Shahan Nedadahandeh 2bff6684db
Testing warning
continuous-integration/drone/push Build is passing Details
2022-06-01 23:01:11 -07:00
Shahan Nedadahandeh db38859bf8
Added warning when running in production 2022-06-01 23:00:24 -07:00
Shahan Nedadahandeh 085ad25348
Merge branch 'shahanneda/optimze-image-script' of https://git.csclub.uwaterloo.ca/www/www-new into shahanneda/optimze-image-script
continuous-integration/drone/push Build is passing Details
2022-06-01 21:15:00 -07:00
Shahan Nedadahandeh 06cf135218
Tested env 2022-06-01 21:13:32 -07:00
Shahan Nedadahandeh a29d5f4211
Updated naming for hashes 2022-06-01 21:13:28 -07:00
Shahan Nedadahandeh 9517e6d2c9
Updated naming for hashes
continuous-integration/drone/push Build is passing Details
2022-06-01 21:08:29 -07:00
Shahan Nedadahandeh a0a1e4626b
Cleaned script 2022-06-01 20:23:50 -07:00
Shahan Nedadahandeh 4f79c73cd3
Ran optimize image script
continuous-integration/drone/push Build is passing Details
2022-06-01 20:12:08 -07:00
Shahan Nedadahandeh c35e9dd44a
Added hashing to optimize-images script 2022-06-01 20:12:01 -07:00
Shahan Nedadahandeh 5263c6880d
added console logging to image script
continuous-integration/drone/push Build is failing Details
2022-06-01 19:12:54 -07:00
Shahan Nedadahandeh 6f6510a5ee
Reduced number of workers
continuous-integration/drone/push Build is failing Details
2022-06-01 18:57:52 -07:00
621 changed files with 2587 additions and 12206 deletions

View File

@ -37,13 +37,6 @@ steps:
commands:
- npm run build:calendar
- name: generate-api
image: node:16
depends_on:
- install-deps
commands:
- npm run build:api
- name: build
image: node:16
depends_on:
@ -54,7 +47,6 @@ steps:
- name: export
image: node:16
depends_on:
- generate-api
- generate-calendar
- build
commands:

View File

@ -17,12 +17,7 @@ module.exports = {
],
plugins: ["@typescript-eslint", "react", "react-hooks", "prettier"],
rules: {
'prettier/prettier': [
'error',
{
'endOfLine': 'lf',
}
],
"prettier/prettier": "error",
"import/first": "error",
"import/order": [

11
.gitignore vendored
View File

@ -25,13 +25,4 @@ yarn-debug.log*
yarn-error.log*
# Calendar is automatically generated
/public/events.ics
# Images should be optimized
/public/images
# APIs should be automatically generated, schema should be checked in
/public/api/*
!/public/api/schema
.idea/**
/public/events.ics

View File

@ -40,11 +40,7 @@
"files.eol": "\n",
"[markdown]": {
"editor.wordWrap": "on",
"editor.quickSuggestions": {
"comments": "off",
"strings": "off",
"other": "off"
},
"editor.quickSuggestions": false,
"editor.tabSize": 4
}
}

View File

@ -1,13 +1,6 @@
# README
# Development
## Documentation
- [Architecture and Folder Structure](docs/architecture.md)
- [Everything about pages](docs/pages.md)
## Development
### Dependencies
## Dependencies
Make sure that you have `node` >= 14 and `npm` >= 7. Node 14 ships with npm v6,
so if you're using node 14, you would need to upgrade npm. Alternatively you
@ -15,20 +8,19 @@ could also upgrade to node 16, which ships with npm 7.
How to upgrade npm: `npm i -g npm`
### Local
## Local
- `npm install` to install project dependencies
- `npm run build:images` to optimize images for the first time after cloning
- `npm run dev` to run the dev server (http://localhost:3000)
### Production
## Production
- `npm install` to install project dependencies
- `npm run build` to generate html/css/js
- `npm run export` to move the built files (along with assets in the public directory) to the `/out` directory
- Use your favourite web server to host the files in the `/out` directory. (A very simple one would be `python -m http.server` - not sure if it should actually be used for production :P)
## Deploy
# Deploy
- `groups` (make sure you're in the `www` group)
- `curl -o- https://git.csclub.uwaterloo.ca/www/www-new/raw/branch/main/deploy.sh | bash` (run on `caffeine`)

View File

@ -3,7 +3,7 @@
}
.page > h1 {
border-bottom: calc(1rem / 16) solid var(--border);
border-bottom: calc(1rem / 16) solid var(--primary-heading);
padding-bottom: 1rem;
}

View File

@ -6,6 +6,7 @@
.bubble {
--border-radius: calc(5000rem / 16);
display: flex;
flex-direction: row;
position: absolute;

View File

@ -2,8 +2,8 @@
.link {
font-family: "Poppins", "sans-serif";
border-radius: calc(20rem / 16);
background-color: var(--button-background);
color: var(--text-light);
background-color: var(--primary-accent);
color: var(--primary-background);
border: none;
outline: none;
transition-duration: 0.3s;

View File

@ -19,7 +19,7 @@ interface EventCardProps {
permaLink: string;
showDescription?: boolean;
children: ReactNode;
year: number;
year: string;
term: string;
slug: string;
titleLinked: boolean;

View File

@ -4,7 +4,7 @@
max-width: calc(540rem / 16);
padding: calc(24rem / 16);
border-radius: calc(20rem / 16);
background-color: var(--card-background);
background-color: var(--primary-background);
}
.poster {
@ -38,7 +38,7 @@
.setting {
margin: 0;
color: var(--link);
color: var(--primary-accent);
font-size: calc(14rem / 16);
font-weight: 600;
}

View File

@ -1,6 +1,6 @@
.footer {
box-sizing: border-box;
background: var(--footer-background);
background: var(--primary-heading);
padding: 1rem 0;
width: 100%;
}
@ -17,7 +17,7 @@
}
.text {
color: var(--text-light);
color: var(--primary-background);
font-style: normal;
text-align: center;
}

View File

@ -1,15 +1,11 @@
import Link from "next/link";
import React from "react";
import { Button } from "./Button";
import { SocialLinks } from "./SocialLinks";
import { useThemeContext } from "./Theme";
import styles from "./Footer.module.css";
export function Footer() {
const themeContext = useThemeContext();
return (
<footer className={styles.footer}>
<div className={styles.container}>
@ -19,16 +15,6 @@ export function Footer() {
<a className={styles.email}>exec@csclub.uwaterloo.ca</a>
</Link>
</div>
<Button
size="small"
onClick={() =>
themeContext?.theme.name === "dark"
? themeContext?.setTheme("light")
: themeContext?.setTheme("dark")
}
>
Toggle Theme
</Button>
<SocialLinks color="white" size="small" />
</div>
</footer>

View File

@ -1,5 +1,5 @@
.link {
color: var(--link);
color: var(--primary-accent);
transition-duration: 0.3s;
text-decoration: none;
white-space: normal;
@ -7,5 +7,5 @@
}
.link:hover {
color: var(--link-hover);
color: var(--secondary-accent);
}

View File

@ -2,11 +2,10 @@
box-sizing: border-box;
position: relative;
padding: calc(20rem / 16);
color: var(--text);
}
.darkBg {
background-color: var(--dark-card-background);
.card:nth-child(odd) {
background-color: var(--secondary-accent-light);
}
.name {
@ -62,15 +61,13 @@
fill: var(--primary-accent);
}
.card h1,
.card h2,
.card h3,
.card h4 {
font-size: calc(18rem / 16);
font-size: calc(16rem / 16);
margin-top: calc(24rem / 16);
margin-bottom: calc(8rem / 16);
color: var(--mini-event-card-text);
}
@media only screen and (max-width: calc(768rem / 16)) {

View File

@ -13,8 +13,7 @@ interface MiniEventCardProps {
location: string;
startDate: Date;
endDate?: Date;
background: "dark-bg" | "normal-bg";
year: number;
year: string;
term: string;
slug: string;
}
@ -27,15 +26,12 @@ export const MiniEventCard: React.FC<MiniEventCardProps> = ({
startDate,
endDate,
online,
background,
year,
term,
slug,
}) => {
const cardBackground =
background === "dark-bg" ? `${styles.darkBg} ${styles.card}` : styles.card;
return (
<details className={cardBackground}>
<details className={styles.card}>
<summary>
<div onClick={(event) => event.preventDefault()}>
<h2 className={styles.name}>

View File

@ -63,7 +63,7 @@
}
.navMenu a {
color: var(--primary-text);
color: var(--primary-heading);
text-decoration: none;
}
@ -219,14 +219,6 @@
cursor: pointer;
}
.icon line {
stroke: var(--icon);
}
.icon path {
fill: var(--icon);
}
.navMobileBackground {
position: fixed;
visibility: hidden;

View File

@ -98,7 +98,7 @@ const menu: Menu = [
},
{
name: "Internships",
route: "https://github.com/uwcsc/2023-internships",
route: "https://github.com/uwcsc/winter2022-internships",
},
],
},
@ -120,7 +120,7 @@ export function Navbar() {
className={styles.hamburger}
onClick={() => dispatch({ type: "open", route: router.pathname })}
>
<HamburgerSvg />
<Image src="/images/hamburger.svg" alt="Menu" />
</button>
<div
className={
@ -263,7 +263,7 @@ function NavItem(props: NavItemProps) {
}
onClick={() => props.onToggle(props.route)}
>
<DropdownSvg />
<Image src="/images/dropdown-icon.svg" alt="Dropdown Icon" />
</button>
<ul
className={
@ -348,64 +348,3 @@ function getMainRoute(route: string) {
}
return "/" + route.split("/")[1];
}
function HamburgerSvg() {
return (
<svg
width="30"
height="23"
viewBox="0 0 30 23"
className={styles.icon}
xmlns="http://www.w3.org/2000/svg"
>
<line
x1="28"
y1="2"
x2="2"
y2="2"
stroke="#2A2A62"
strokeWidth="4"
strokeLinecap="round"
strokeLinejoin="round"
/>
<line
x1="28"
y1="11.375"
x2="2"
y2="11.375"
stroke="#2A2A62"
strokeWidth="4"
strokeLinecap="round"
strokeLinejoin="round"
/>
<line
x1="28"
y1="20.75"
x2="2"
y2="20.75"
stroke="#2A2A62"
strokeWidth="4"
strokeLinecap="round"
strokeLinejoin="round"
/>
</svg>
);
}
function DropdownSvg() {
return (
<svg
width="14"
height="9"
viewBox="0 0 14 9"
fill="none"
className={styles.icon}
xmlns="http://www.w3.org/2000/svg"
>
<path
d="M7.75593 8.12713C7.35716 8.58759 6.64284 8.58759 6.24407 8.12713L0.638743 1.65465C0.0778675 1.00701 0.537921 0 1.39467 0L12.6053 0C13.4621 0 13.9221 1.00701 13.3613 1.65465L7.75593 8.12713Z"
fill="#2A2A62"
/>
</svg>
);
}

View File

@ -1,7 +1,7 @@
.card {
padding: calc(30rem / 16) calc(40rem / 16);
max-width: calc(524rem / 16);
background-color: var(--card-background);
background-color: var(--primary-background);
border-radius: calc(20rem / 16);
margin-bottom: 1rem;
}
@ -10,17 +10,15 @@
max-width: unset;
padding: unset;
border-radius: unset;
background-color: var(--primary-background);
}
.date {
font-size: calc(18rem / 16);
margin: 0;
color: var(--primary-subtitle);
}
.author {
color: var(--author-text);
color: var(--secondary-heading);
font-style: normal;
}

View File

@ -30,7 +30,7 @@
margin: calc(8rem / 16) calc(32rem / 16) calc(20rem / 16) 0;
height: calc(100vh - (44rem / 16));
color: var(--sidebar-text);
color: var(--primary-heading);
font-weight: 500;
}
@ -55,14 +55,10 @@
.selected {
background-color: var(--primary-accent-lightest);
color: var(--primary-heading);
color: var(--primary-accent);
font-weight: 700;
}
.selected div {
color: var(--primary-heading);
}
.readAll {
font-weight: 700;
}
@ -73,7 +69,7 @@
.selected .marker {
display: inline;
background-color: var(--marker);
background-color: var(--primary-accent);
height: calc(24rem / 16);
width: calc(4rem / 16);
margin-right: 1rem;

View File

@ -8,12 +8,12 @@
flex-direction: row;
align-items: flex-end;
padding-bottom: 1rem;
border-bottom: calc(1rem / 16) solid var(--border);
border-bottom: calc(1rem / 16) solid var(--primary-heading);
}
.header {
line-height: 1;
color: var(--primary-title);
color: var(--primary-heading);
font-size: calc(48rem / 16);
margin: 0 0 0 calc(36rem / 16);
text-align: center;

View File

@ -22,5 +22,5 @@
}
.white {
fill: var(--text-light);
fill: var(--primary-background);
}

View File

@ -77,7 +77,7 @@ function InstagramSvg(color: string) {
xmlns="http://www.w3.org/2000/svg"
>
<linearGradient id="bluegreen-gradient">
<stop offset="0%" stopColor="var(--blue-gradient)" />
<stop offset="0%" stopColor="#1481E3" />
<stop offset="100%" stopColor="#4ED4B2" />
</linearGradient>
<path
@ -101,7 +101,7 @@ function DiscordSvg(color: string) {
version="1.1"
>
<linearGradient id="bluegreen-gradient">
<stop offset="0%" stopColor="var(--blue-gradient)" />
<stop offset="0%" stopColor="#1481E3" />
<stop offset="100%" stopColor="#4ED4B2" />
</linearGradient>
<g id="surface1">
@ -125,7 +125,7 @@ function TwitchSvg(color: string) {
xmlns="http://www.w3.org/2000/svg"
>
<linearGradient id="bluegreen-gradient">
<stop offset="0%" stopColor="var(--blue-gradient)" />
<stop offset="0%" stopColor="#1481E3" />
<stop offset="100%" stopColor="#4ED4B2" />
</linearGradient>
<g clipPath="url(#clip0)">
@ -170,7 +170,7 @@ function FacebookSvg(color: string) {
xmlns="http://www.w3.org/2000/svg"
>
<linearGradient id="bluegreen-gradient">
<stop offset="0%" stopColor="var(--blue-gradient)" />
<stop offset="0%" stopColor="#1481E3" />
<stop offset="100%" stopColor="#4ED4B2" />
</linearGradient>
<path
@ -194,7 +194,7 @@ function LiberaSvg(color: string) {
xmlns="http://www.w3.org/2000/svg"
>
<linearGradient id="bluegreen-gradient">
<stop offset="0%" stopColor="var(--blue-gradient)" />
<stop offset="0%" stopColor="#1481E3" />
<stop offset="100%" stopColor="#4ED4B2" />
</linearGradient>
<path

View File

@ -7,7 +7,7 @@
}
.table thead tr {
background: var(--table-header);
background: var(--secondary-accent-light);
}
.table tbody tr {
@ -15,8 +15,8 @@
vertical-align: top;
}
.table tbody tr:nth-child(even) {
background: var(--table-section);
.table tbody tr:nth-child(odd) {
background: var(--primary-accent-lightest);
}
.table th {

View File

@ -6,13 +6,13 @@ import styles from "./TeamMember.module.css";
interface TeamMemberProps {
name: string;
role?: string;
role: string;
image: string;
}
export const TeamMember: React.FC<TeamMemberProps> = ({
name,
role = "",
role,
image,
}) => {
return (

View File

@ -8,14 +8,14 @@ import styles from "./TeamMemberCard.module.css";
export interface TeamMemberCardProps {
name: string;
role?: string;
role: string;
image: string;
children: React.ReactNode;
}
export function TeamMemberCard({
name,
role = "",
role,
image,
children,
}: TeamMemberCardProps) {
@ -48,12 +48,7 @@ export function TeamMemberCard({
);
}
function TeamMemberInfo({
name,
role = "",
image,
children,
}: TeamMemberCardProps) {
function TeamMemberInfo({ name, role, image, children }: TeamMemberCardProps) {
return (
<>
<div className={styles.picture}>
@ -74,13 +69,7 @@ interface PopupProps extends TeamMemberCardProps {
handleClick: () => void;
}
function ExecPopup({
name,
role = "",
image,
children,
handleClick,
}: PopupProps) {
function ExecPopup({ name, role, image, children, handleClick }: PopupProps) {
return (
<>
<div className={styles.popupBackground} onClick={handleClick} />

View File

@ -19,10 +19,6 @@ export const PALETTE_NAMES = [
"--primary-background",
"--secondary-background",
"--scrollbar-track",
"--scrollbar-thumb",
"--scrollbar-hover",
"--primary-accent",
"--primary-accent-soft",
"--primary-accent-light",
@ -33,17 +29,9 @@ export const PALETTE_NAMES = [
"--secondary-accent-light",
"--primary-heading",
"--secondary-heading",
"--primary-title",
"--primary-subtitle",
"--secondary-subtitle",
"--primary-text",
"--text",
"--text-light",
"--author-text",
"--sidebar-text",
"--mini-event-card-text",
"--form-invalid",
"--warning-background",
@ -53,24 +41,9 @@ export const PALETTE_NAMES = [
"--input-placeholder-text",
"--input-text",
"--icon",
"--code-background",
"--button-background",
"--footer-background",
"--card-background",
"--dark-card-background",
"--table-header",
"--table-section",
"--navbar-page-overlay",
"--link",
"--link-hover",
"--blue-gradient",
"--border",
"--marker",
] as const;
export const emptyPalette = PALETTE_NAMES.reduce(
@ -104,9 +77,15 @@ export function ThemeProvider(props: Props) {
const setTheme = (input: SetThemeInput) => {
if (typeof input === "string") {
PALETTE_NAMES.forEach((name) =>
document.body.style.setProperty(name, "var(--" + input + name + ")")
document.body.style.setProperty(name, "")
);
savePalette(getCurrentPalette(input));
if (input === "light") {
document.body.classList.remove("dark");
} else if (input === "dark") {
document.body.classList.add("dark");
}
setThemeName(input);
} else {
const properties = Object.keys(input) as PaletteNames[];
@ -128,14 +107,7 @@ export function ThemeProvider(props: Props) {
const customPalette = getSavedPalette();
if (customPalette == null) {
const prefersDark = window.matchMedia(
"(prefers-color-scheme: dark)"
).matches;
if (prefersDark) {
setTheme("dark");
} else {
setTheme("light");
}
setThemeName("light");
} else {
setTheme(customPalette);
setThemeName("custom");
@ -152,11 +124,11 @@ export function ThemeProvider(props: Props) {
theme: {
name: themeName,
get palette() {
return getCurrentPalette(themeName);
return getCurrentPalette();
},
},
setTheme,
save: () => savePalette(getCurrentPalette(themeName)),
save: () => savePalette(getCurrentPalette()),
clearSaved: clearSavedPalette,
}
}
@ -176,30 +148,13 @@ export type Palette = {
[key in PaletteNames]: string;
};
function themePropertyName(
name: PaletteNames,
themeName: BuiltInThemes
): string {
return `--${themeName}${name}`;
}
function getCurrentPalette(themeName: string) {
function getCurrentPalette() {
const styles = getComputedStyle(document.body);
if (themeName === "light" || themeName === "dark") {
return PALETTE_NAMES.reduce(
(partial, name) => ({
...partial,
[name]: styles
.getPropertyValue(themePropertyName(name, themeName))
.trim(),
}),
{} as Palette
);
}
return PALETTE_NAMES.reduce(
(partial, name) => ({
(partial, varName) => ({
...partial,
[name]: styles.getPropertyValue(name).trim(),
[varName]: styles.getPropertyValue(varName).trim(),
}),
{} as Palette
);

View File

@ -1,9 +1,8 @@
import { parse } from "date-fns";
import React from "react";
import { DATE_FORMAT, getLocalDateFromEST } from "@/utils";
import warnings from "../content/warnings/warnings.json";
import { DATE_FORMAT, getLocalDateFromEST } from "../utils";
import styles from "./WarningHeader.module.css";

View File

@ -1,14 +0,0 @@
[
"purpose",
"expected-behaviour",
"unacceptable-behaviour",
"experiencing-unacceptable-behaviour",
"consequences-of-inappropriate-behaviour",
"addressing-grievances",
"confidentiality",
"scope-and-spaces",
"contact-information",
"additional-information",
"license-information-and-attribution",
"revision"
]

View File

@ -1,5 +1,6 @@
---
title: Additional Information
index: 10
---
Additionally, the Executive Council are available to help Club members engage with local law enforcement or to otherwise help those experiencing unacceptable behaviour feel safe. In the context of in-person events, organizers will also provide escorts as desired by the person experiencing distress.

View File

@ -1,5 +1,6 @@
---
title: Addressing Grievances
index: 6
---
If either the complainant or the subject disagree with the decision made by the Handling Officer, they can appeal to the Officers, who can overturn the decision with a majority vote of all the Officers.

View File

@ -1,5 +1,6 @@
---
title: Confidentiality
index: 7
---
The Club recognizes that all members have a right to privacy, and will handle complaints confidentially.

View File

@ -1,5 +1,6 @@
---
title: Consequences of Inappropriate Behaviour
index: 5
---
After having done so, the Handling Officer shall use their best judgment to determine if the complaint is valid and, if so, determine with the relevant Officers the appropriate action to ensure that the complainant feels welcome in the Computer Science Club and to avoid a subsequent incident:

View File

@ -1,5 +1,6 @@
---
title: Contact Information
index: 9
---
- The Computer Science Club [Officers can be contacted as a whole](/about).

View File

@ -1,5 +1,6 @@
---
title: Expected Behaviour
index: 2
---
- Participate in an authentic and active way. In doing so, you contribute to the health and longevity of this Club.

View File

@ -1,5 +1,6 @@
---
title: Experiencing Unacceptable Behaviour
index: 4
---
_The Executive Council and Faculty Advisor are herein referred to as the Officers, or singularly as Officer._

View File

@ -1,5 +1,6 @@
---
title: License Information and Attribution
index: 11
---
- The Code of Conduct is distributed under a [Creative Commons Attribution-ShareAlike License](http://creativecommons.org/licenses/by-sa/3.0/), derived from the [Women in Computer Science Code of Conduct](http://wics.uwaterloo.ca/deprecated/code-of-conduct/), the [UW Amateur Radio Club Code of Conduct](http://uwarc.uwaterloo.ca/policies-procedures/code-of-conduct/), and the [FASS Code of Conduct](http://fass.uwaterloo.ca/fassconstitution).

View File

@ -1,5 +1,6 @@
---
title: Purpose
index: 1
---
One of the primary goals of the Computer Science Club of the University of Waterloo is the inclusion and support of all members of the University of Waterloo community who are interested in Computer Science. As such, we are committed to providing a friendly, safe and welcoming environment for all, regardless of gender, sex, sexual orientation, ability, ethnicity, socioeconomic status, age, and religion or lack thereof.

View File

@ -1,5 +1,6 @@
---
title: Revision
index: 12
---
Revision 1.3, adopted by the Computer Science Club of the University of Waterloo on 25 January 2018.

View File

@ -1,5 +1,6 @@
---
title: Scope and Spaces
index: 8
---
In cases where the Code of Conduct contradicts University policies, or applicable laws and bylaws, the Code of Conduct does not apply to the extent to which it conflicts.

View File

@ -1,5 +1,6 @@
---
title: Unacceptable Behaviour
index: 3
---
**Unacceptable behaviours include:**

View File

@ -1,16 +0,0 @@
[
"name",
"purpose",
"membership",
"officers",
"duties-of-officers",
"executive-council",
"committees",
"meetings",
"finances",
"amendments-and-procedures",
"dissolution",
"code-of-conduct",
"use-of-club-resources",
"revision"
]

View File

@ -1,9 +1,10 @@
---
title: Amendments and Procedures
index: 10
---
1. A constitutional amendment can be initiated by the Executive Council or any thirty (30) members. The initiation shall involve making the amendment available for viewing, including in the CSC office.
2. There shall be at least twenty-eight (28) days between the amendment's initiation and announcement of the finalized version. Members shall be provided an avenue to discuss the amendment throughout this time period.
3. The finalized version of the amendment shall be announced to all members, taking place through email to the members' mailing list.
4. A general meeting shall be held to consider the finalized version of the amendment at least seven (7) and no more than thirty (30) days after its announcement, which may be the regular meeting for the term, or a special meeting.
1. A proposed constitutional amendment can be initiated by the Executive Council or any ten (10) members.
2. The proposed amendment shall be announced to all members by email to the members' mailing list.
3. The proposed amendment shall be made available for viewing by all members in the Computer Science Club office.
4. A general meeting shall be held to consider the amendment at least seven (7) days after the announcement and no more than thirty (30) days after, which may be the regular meeting for the term, or a special meeting.
5. A constitutional amendment requires a 2/3 vote for adoption.

View File

@ -1,5 +1,6 @@
---
title: Code of Conduct
index: 12
---
1. The Club has a [Code of Conduct](/about/code-of-conduct).

View File

@ -1,5 +1,6 @@
---
title: Committees
index: 7
---
## Programme Committee
@ -7,27 +8,20 @@ title: Committees
1. The Programme Committee shall be a standing committee chaired by the Vice-President.
2. The Vice-President shall appoint and remove members to and from the Programme Committee as needed.
3. The Programme Committee shall plan and arrange the events of the Club.
4. The Programme Committee shall be responsible to the Executive Council and to the Vice-President.
4. The Programme committee shall be responsible to the Executive Council and to the Vice-President.
## Systems Committee
1. The Systems Committee (syscom) shall be a standing committee, chaired by the Systems Administrator (sysadmin).
2. New members to the Systems Committee shall be appointed at the Systems Administrators discretion. Members should only be appointed to the Systems Committee if they show interest and some existing ability in systems administration.
3. Members should only be removed from the Systems Committee with cause, or when they no longer show interest in systems administration.
4. When a member is added to or removed from the Systems Committee, the Systems Committee and the Executive must be notified via both mailing lists.
1. The Systems Committee will be a standing committee, chaired by the Systems Administrator.
2. The Systems Administrator shall appoint and remove members to and from the Systems Committee.
3. Members should only be appointed to the Systems Committee if they show interest and some existing ability in systems administration.
4. Members should only be removed from the Systems Committee with cause, or when they no longer show interest in systems administration.
5. The Systems Committee will collectively, under the leadership of the Systems Administrator,
1. operate any and all equipment in the possession of the Club.
1. maintain and upgrade the software on equipment that is operated by the Club.
1. facilitate the use of equipment that is operated by the Club.
6. Members of the Systems Committee shall have root access to the machines operated by the Club.
## Web Committee
1. The Web Committee (webcom) will be a standing committee, chaired by the Webmaster.
2. The Webmaster shall appoint and remove members to and from the Web Committee as needed.
3. The Web Committee shall maintain and develop the club website with infrastructure support from the Systems Committee, if necessary.
## Other Committees
1. The President, with approval of the Executive Council, may appoint such special committees as are deemed necessary.
1. The President, with approval of the executive council, may appoint such special committees as are deemed necessary.

View File

@ -1,5 +1,6 @@
---
title: Dissolution
index: 11
---
1. In the event of dissolution of the Club, all assets of the Club shall be transferred to the Mathematics Society of the University of Waterloo.

View File

@ -1,27 +1,27 @@
---
title: Duties of Officers
---
1. The duties of the President shall be:
1. to call and preside at all general, special, and executive meetings of the Club, except during the election of officers;
1. to appoint special committees of the Club and the membership and chairs of such committees, with the approval of the Executive Council;
1. to audit, or to appoint a representative to audit, the financial records of the club at the end of each academic term; and
1. with the approval of the Faculty Advisor, rule on any point of procedure under the constitution that arises outside of a meeting.
1. The duties of the Vice-President shall be:
1. to assume the duties of the President in the event of the President's absence;
1. to chair the Programme Committee;
1. to appoint members to and remove members from the Programme Committee;
1. to ensure that Club events are held regularly; and
1. to assume those duties of the President that are delegated to them by the President.
1. The duties of the Assistant Vice-President shall be:
1. to keep minutes of all Club meetings;
1. to care for all Club correspondence; and
1. to manage any persons appointed to internal positions by the Executive.
1. The duties of the Treasurer shall be:
1. to collect dues and maintain all financial and membership records; and
1. to produce a financial or membership statement when requested.
1. The duties of the System Administrator shall be:
1. to chair the Systems Committee;
1. to appoint members to and remove members from the Systems Committee;
1. to ensure that the duties of the Systems Committee are performed; and
1. to act as a liaison for the CSC with CSCF, IST, and similar organizations.
---
title: Duties of Officers
index: 5
---
1. The duties of the President shall be:
1. to call and preside at all general, special, and executive meetings of the Club, except during the election of officers;
1. to appoint special committees of the Club and the membership and chairs of such committees, with the approval of the Executive Council; and
1. to audit, or to appoint a representative to audit, the financial records of the club at the end of each academic term.
1. with the approval of the Faculty Advisor, rule on any point of procedure under the constitution that arises outside of a meeting.
1. The duties of the Vice-President shall be:
1. to assume the duties of the President in the event of the President's absence;
1. to chair the Programme Committee;
1. to appoint members to and remove members from the Programme Committee;
1. to ensure that Club events are held regularly; and
1. to assume those duties of the President that are delegated to them by the President.
1. The duties of the Secretary shall be:
1. to keep minutes of all Club meetings;
1. to care for all Club correspondence; and
1. manage any persons appointed to internal positions by the Executive.
1. The duties of the Treasurer shall be:
1. to collect dues and maintain all financial and membership records;
1. to produce a financial or membership statement when requested.
1. The duties of the System Administrator shall be:
1. to chair the Systems Committee;
1. to appoint members to and remove members from the Systems Committee.
1. to ensure that the duties of the Systems Committee are performed.

View File

@ -1,9 +1,10 @@
---
title: Executive Council
---
1. The Executive Council shall consist of the present officers of the Club and the Faculty Advisor (as a non-voting member) and has the power to run the affairs of this club within the limits of this constitution. This includes the power to overrule or issue directions to any officer.
2. The Executive Council may appoint people to various positions to help manage the Club.
3. If members provide any points of feedback to the Executive Council at a meeting, then the Executive Council shall respond to them.
4. The Executive Council can act by consensus achieved on their mailing list.
5. Minutes of the Executive Council meetings shall be made available for inspection by any member of the Club and shall be filed with the Club records. On request, a member shall be shown the archive of any thread on the Executive Council mailing list which resulted in a decision being made.
---
title: Executive Council
index: 6
---
1. The Executive Council shall consist of the present officers of the Club and the Faculty Advisor (as a non-voting member) and has the power to run the affairs of this club within the limits of this constitution. This includes the power to overrule or issue directions to any officer.
2. The Executive Council may appoint people to various positions to help manage the Club.
3. The Executive Council must obey any instructions given to it by the members at a meeting and can be overruled by them.
4. The Executive Council can act by consensus achieved on their mailing list.
5. Minutes of the Executive Council meetings shall be available for inspection by any member of the Club and shall be filed with the Club records. On request, a member shall be shown the archive of any thread on the Executive Council mailing list which resulted in a decision being made.

View File

@ -1,5 +1,6 @@
---
title: Finances
index: 9
---
1. The Treasurer shall, each term, present to the Executive a financial statement for the previous term. They shall, before the end of the current term, ensure that the records are in a good condition to make this task as easy as possible for the next Treasurer.

View File

@ -1,12 +1,13 @@
---
title: Meetings
index: 8
---
1. A regular meeting of the Club shall be held each term. This meeting shall be called by the CRO and shall be the election meeting for that term.
2. A special meeting for a motion to remove an executive from office may be called at any time deemed necessary by the Executive Council, by the Faculty Advisor, by any thirty (30) members, or by 1/3 of the Club membership if there are fewer than thirty (30) members.
2. Special meetings may be called at any time deemed necessary by the Executive Council, by the Faculty Advisor, or by any ten (10) members.
3. All members shall be notified at least two days prior to a forthcoming meeting of the meeting and of the business to be considered at that meeting. A message to the members' mailing list will be considered sufficient notification, though other forms of notification are also encouraged.
4. The Club shall hold meetings only in places that are open to all members of the Club.
5. The Club membership cannot act except at a general meeting.
6. A quorum necessary for the conduct of business is defined as twenty-five (25) full members or 2/3 of the full membership, whichever is smaller. If an election meeting lacks quorum, then the inquorate meeting can set a date and time for the elections, and can choose to either run the new elections with the same nominations or with a new nomination period (which does not need to meet the usual minimum requirement).
7. A motion to remove an officer, or to call new elections (except at a regular election meeting or in the case of vacancies), requires at least a week's notice; a quorum of fifty (50) full members or 2/3 of the full membership, whichever is smaller; and a 2/3 vote. Any other motion requires a majority vote.
6. A quorum necessary for the conduct of business is defined as fifteen (15) full members or 2/3 of the full membership, whichever is smaller. If an election meeting lacks quorum, then the inquorate meeting can set a date and time for the elections, and can choose to either run the new elections with the same nominations or with a new nomination period (which does not need to meet the usual minimum requirement).
7. A motion to remove an officer, or to call new elections (except at an election meeting), requires a 2/3 vote and at least a week's notice. Any other motion requires a majority vote.
8. If a motion is defeated, it cannot be brought again for sixty (60) days.

View File

@ -1,9 +1,10 @@
---
title: Membership
index: 3
---
1. In compliance with MathSoc regulations and in recognition of the club being primarily targeted at undergraduate students, full membership is open to all Social Members of the Mathematics Society and restricted to the same.
2. Affiliate membership in this Club shall be open to all members of the University community, including alumni. Affiliate members shall have all the rights of full members except for the rights of voting and holding executive office.
3. Membership shall be accounted for on a termly basis, where a term begins at the start of lectures in Winter or Spring, and at the start of Orientation Week in Fall.
4. A person is not a member until he or she has paid the current membership fee and has been enrolled in the member database. A person must only be enrolled after paying the current membership fee, unless they are not a current undergraduate student at the University and the Executive grants them honorary membership free of charge. The termly membership fee is set from time to time by the Executive. Under conditions approved by the Executive, a member who purchases a membership at the end of the current term may be given membership for both the current term and the next term. If the membership fee changes, then this does not affect the validity of any membership terms already paid for.
4. A person is not a member until he or she has paid the current membership fee and has been enrolled in the member database. The termly membership fee is set from time to time by the Executive. Under conditions approved by the Executive, a member who purchases a membership at the end of the current term may be given membership for both the current term and the next term. If the membership fee changes, then this does not affect the validity of any membership terms already paid for.
5. The Club may grant access to its systems, either free of charge or for a fee, to members of the University community in order to offer them services. This does not constitute membership.

View File

@ -1,5 +1,6 @@
---
title: Name
index: 1
---
The name of this organization shall be the "Computer Science Club of the University of Waterloo".

View File

@ -1,31 +1,30 @@
---
title: Officers
---
1. The officers of the Club shall be:
1. President
1. Vice-President
1. Assistant Vice-President
1. Treasurer
1. Systems Administrator
1. There shall additionally be a Faculty Advisor, selected by the Executive from time to time from among the faculty of the School of Computer Science. The Faculty Advisor shall be an ex-officio affiliate member of the Club.
1. The choice of officers shall be limited to full members of the Club.
1. All officers, other than the Systems Administrator, shall be elected at a meeting to be held no later than two weeks after the start of lectures in each term.
1. The election of officers shall be accomplished by the following procedure:
1. Before the end of the prior term, the then-Executive shall choose a willing Chief Returning Officer, who is responsible for carrying out elections according to this procedure.
1. The CRO shall set the date and time of the election meeting, and set the nomination period. The nomination shall be at least one week long and shall end at least 24 hours before the start of the election meeting.
1. Announcements of the election and the nomination procedure must be distributed to all members by the members' mailing list.
1. During the nomination period, the Chief Returning Officer (CRO) shall be available to receive nominations for the posts of officers of the club, either in person, by email, or by writing the nomination in a place in the CSC office to be specified by the CRO.
1. A nomination shall consist of the nominee's userid, and post(s) nominated for. Nominees must be full members of the Computer Science Club. A member may decline a nomination at any point prior to the taking of the vote.
1. Within 24 hours of the CRO receiving a nomination, the CRO must publicize the nomination, such as by writing it on the CSC office whiteboard.
1. Each nominee shall make a platform and submit it to the CRO. Within 24 hours of the CRO receiving a platform from a nominee, the CRO must publicize the platform. Each nominee is also encouraged to publicize their platform on their own.
1. The election shall commence with the offering of memberships for sale. After a reasonable time, control of the meeting is given to the CRO who will preside over the election of the President, Vice-President, Assistant Vice-President, and Treasurer, in that order.
1. All nominees shall present their platforms. If a position has no nominees, then the CRO shall take nominations from the floor. Any present, eligible member can be nominated.
1. Voting shall be by secret ballot, in a manner that is to be decided on by the CRO and agreed upon by the members at the meeting. A simple heads-down-hands-up method is considered acceptable.
1. The CRO shall not vote except to break a tie.
1. The CRO may, if feasible, accept absentee ballots from full members. No absentee vote from a member shall be counted if the member is present at the time the vote is taken. The CRO shall make a best effort to ensure that absentee ballots are compatible with the method of voting chosen; if this is not possible (for instance, if the CRO is overruled by the membership), then the absentee votes shall not be counted.
1. Immediately after the vote is taken, the CRO will announce the results of the election and the winner will be removed from subsequent contests. If, due to a lack of candidates (because there were no nominations, or candidates withdrew or were eliminated), there is no one elected to an office, then the members at the meeting will decide whether or not to hold extra elections in accordance with the procedure for vacancies. If they choose not to, this does not prevent the Executive or a group of members from calling extra elections later in the term in accordance with the usual vacancy provisions.
1. Following the elections, it is the responsibility of the new Executive to select a Systems Administrator. The selection of Systems Administrator must then be ratified by the members at the meeting. If a suitable Systems Administrator is not available, the duties of the Systems Administrator shall be carried out by the Systems Committee, with decisions made by consensus achieved on their mailing list.
1. Any two offices may be held by a single person with the approval of the President (if any), and the explicit approval of the members.
1. In the case of a resignation of an officer or officers, including the President, or if a vacancy occurs for any other reason, the Executive, members at a meeting, or any ten (10) members may call extra elections to replace such officer(s). If extra elections are held, they are held for all vacant offices.
1. Whenever extra elections are held, they shall follow the usual election procedure. If they are held after elections failed to elect an officer, then the nomination period may be shortened to less than a week in order to allow the extra elections to take place at the same date and time in the following week. The Executive (or the ten (10) members who called the election) may appoint a replacement CRO if the previous CRO is unwilling or unable to fulfill their duties.
---
title: Officers
index: 4
---
1. The officers of the Club shall be:
1. President
1. Vice-President
1. Secretary
1. Treasurer
1. System Administrator
1. There shall additionally be a Faculty Advisor, selected by the Executive from time to time from among the faculty of the School of Computer Science. The Faculty Advisor shall be an ex-officio affiliate member of the Club.
1. The choice of officers shall be limited to full members of the Club.
1. All officers, other than the System Administrator, shall be elected at a meeting to be held no later than two weeks after the start of lectures in each term.
1. The election of officers shall be accomplished by the following procedure:
1. Before the end of the prior term, the then-Executive shall choose a willing Chief Returning Officer, who is responsible for carrying out elections according to this procedure.
1. The CRO shall set the date and time of the election meeting, and set the nomination period. The nomination shall be at least one week long and shall end at least 24 hours before the start of the election meeting.
1. Announcements of the election and the nomination procedure must be distributed to all members by the members' mailing list, and should also be advertised by posters in the MC building.
1. During the nomination period, the Chief Returning Officer (CRO) shall be available to receive nominations for the posts of officers of the club, either in person, by email, by depositing nomination forms in the CSC's mailbox in the MathSoc office, or by writing the nomination in a place in the CSC office to be specified by the CRO.
1. A nomination shall consist of the nominee's userid, and post(s) nominated for. Nominees must be full members of the Computer Science Club. A member may decline a nomination at any point prior to the taking of the vote.
1. The election shall commence with the offering of memberships for sale. After a reasonable time, control of the meeting is given to the CRO who will preside over the election of the President, Vice-President, Treasurer, and Secretary, in that order.
1. During each election, if the position has no nominees, the CRO will take nominations from the floor. Any present, eligible member can be nominated.
1. Each election shall be carried out by secret vote, in a manner to be decided on by the CRO, with the approval of the members at the meeting. A simple heads-down-hands-up method is considered acceptable.
1. The CRO shall not vote except to break a tie.
1. The CRO may, if feasible, accept absentee ballots from full members. No absentee vote from a member shall be counted if the member is present at the time the vote is taken. The CRO shall make a best effort to ensure that absentee ballots are compatible with the method of voting chosen; if this is not possible (for instance, if the CRO is overruled by the membership), then the absentee votes shall not be counted.
1. Immediately after the vote is taken, the CRO will announce the results of the election and the winner will be removed from subsequent contests. If, due to lack of candidates (because there were no nominations, or candidates withdrew or were eliminated), there is no one elected to an office, then the members at the meeting will decide whether or not to hold extra elections in accordance with the procedure for vacancies. If they choose not to, this does not prevent the Executive or a group of members from calling extra elections later in the term in accordance with the usual vacancy provisions.
1. Following the elections, it is the responsibility of the new executive to select a System Administrator. The selection of System Administrator must then be ratified by the members at the meeting. If a suitable System Administrator is not available, then the executive may delay their selection until one becomes available. In this case the selection of System Administrator must be ratified at the next meeting of the Club.
1. Any two offices may be held by a single person with the approval of the President (if any), and the explicit approval of the members.
1. In the case of a resignation of an officer or officers, including the President, or if a vacancy occurs for any other reason, the Executive, members at a meeting, or any ten (10) members may call extra elections to replace such officer(s). If extra elections are held, they are held for all vacant offices.
1. Whenever extra elections are held, they shall follow the usual election procedure. If they are held after elections failed to elect an officer, then the nomination period may be shortened to less than a week in order to allow the extra elections to take place at the same date and time in the following week. The Executive (or the ten (10) members who called the election) may appoint a replacement CRO if the previous CRO is unwilling or unable to fulfill their duties.

View File

@ -1,5 +1,6 @@
---
title: Purpose
index: 2
---
1. The Club is organized and will be operated exclusively for educational and scientific purposes in furtherance of:

View File

@ -1,5 +1,6 @@
---
title: Revision
index: 14
---
The latest revision of the constitution is effective January 11, 2024.
The constitution was last revised on 25 January 2018.

View File

@ -1,5 +1,6 @@
---
title: Use of Club Resources
index: 13
---
1. All resources under control of the Club are to be used in accordance with the aims of the Club.

View File

@ -11,6 +11,7 @@ The [Mathematics Endowment Fund](https://uwaterloo.ca/math-endowment-fund/) ha
- A gigabit switch for the MathSoc offices (including ours)
- Academic talks
- Linux CDs for first-year students
- Caffeine, our primary server
- Various books for the CSC library
The Computer Science club graciously thanks the Mathematics Endowment Fund for their financial support.
@ -25,6 +26,6 @@ The [MathSoc Capital Improvements Fund](https://mathsoc.uwaterloo.ca/wp-content
## Student Life Endowment Fund
The [Student Life Endowment Fund](https://wusa.ca/about/your-money/funding/) has provided funding of new hardware:
The [Student Life Endowment Fund](https://feds.ca/funding#fund-slef) has provided funding of new hardware:
- Biloba, a server to improve CSC web hosting services

View File

@ -6,13 +6,12 @@ online: false
location: 'MC 4020'
---
Our current lineup includes:
- Ifaz Kabir: Efficient Type Inference with Union Find
Our current lineup includes: - Ifaz Kabir: Efficient Type Inference with Union Find
- Jordan Garside: GraphQL and APIs
- Ansley Peduru: Lessons Learned from Cross-Compiling Rust
- Sean Harrap: Implementing Structs Almost From Scratch
- Ashish Gaurav: Teaching Programs to play Simple Games
- Jennifer Zhou: Garbage Collection Concepts
- Lessons Learned from Cross-Compiling Rust
<!-- -->

View File

@ -1,23 +0,0 @@
---
name: 'Afterhours'
short: 'Come join us for chill, small-group discussions about a variety of topics, including relationships and friendships, maintaining routine, dealing with imposter syndrome and burnout, and any other topics youd like to bring into the conversation!'
startDate: 'December 3 2022 18:00'
endDate: 'December 3 2022 20:00'
online: false
location: 'SCL Multipurpose Room'
poster: 'images/events/2022/fall/Afterhours.png'
registerLink: https://forms.gle/cmNo2tbcof2UvEQ5A
---
📣 Afterhours is back!!
😌 Come join us for chill, small-group discussions about a variety of topics, including relationships and friendships, maintaining routine, dealing with imposter syndrome and burnout, and any other topics youd like to bring into the conversation!
🤩 As you rotate between different discussions, youll get the chance to hear personal stories from moderators and other attendees, as well as share your own experiences in a close-knit, non-judgmental environment.
🥰 Snacks and drinks will be provided. Hope to see you there 🙂
📆 Date: Saturday, December 3rd, 6-8 PM at the SLC Multipurpose Room
📝 Sign up for Afterhours through the form at the link, or feel free to simply drop in!
👉 The link to google form: https://forms.gle/cmNo2tbcof2UvEQ5A

View File

@ -1,23 +0,0 @@
---
name: "Alt-Tab"
short: "Join CSC for Alt-Tab, a lightning tech talk series presented by students!"
startDate: "November 29 2022 19:00"
endDate: "November 29 2022 21:00"
online: false
location: "MC 2035"
poster: "images/events/2022/fall/Alt-Tab.jpg"
---
🎙️ Join CSC for Alt-Tab, a lightning tech talk series presented by students! Alt-Tab consists of several ~15-minute talks about a variety of topics related to computer science and technology. Snacks will be provided.
⚡ Talk list:
- Tropical Semirings: General method to solve graph problems in a purely functional way - Simon Zeng
- A Deep Dive into Language Servers and Editors - Hamza Ali
- "Are Computers Conscious?" And Other Impractical Tech Philosophy - Justin Y.
- Dotfiles: Speeding up your shell experience - Raymond Li
- Networking 404: How to network as a person that doesn't know what networking means - Allen Q. Lu
- JITs in the Quest for Performance - Antonio Abbatangelo
- Turning the Calculator Factory Into a Calculator: C++ Template Metaprogramming - Evan Girardin
📅 Date: Tuesday, November 29, 2022 at 7 PM
📍 Location: MC 2035

View File

@ -1,18 +0,0 @@
---
name: 'CSC Beginning of Term Kickoff!'
short: 'Kick off the fall term with CSCs BOT event and meet others in the CS community!'
startDate: 'September 13 2022 20:00'
endDate: 'September 13 2022 22:00'
online: false
location: 'AHS EXP 1689'
poster: 'images/events/2022/fall/BOT.png'
registerLink: https://forms.gle/Y48k2p8ZX4JPcALx5
---
📢 Kick off the fall term 🍂with CSCs BOT event! Are you interested in attending upcoming CSC events? Want to meet others in the CS community? Come to our first event of this term!
🎉Come join us for a night of fun games, arts and crafts, and a WILD goose chase! Youll also be able to learn more about what CSC has planned for the year!
📆 When? September 13th 2022 at 8:00 - 10:00pm EST, in AHS EXP 1689
👉 Register from this link: https://forms.gle/Y48k2p8ZX4JPcALx5

View File

@ -1,22 +0,0 @@
---
name: 'Bootcamp Mock Interviews'
short: 'Come to practice your interview skills with experienced mentors!'
startDate: 'September 21 2022 18:00'
endDate: 'September 21 2022 22:00'
online: true
location: 'Discord'
poster: 'images/events/2022/fall/Bootcamp-Mentee-Applications.png'
registerLink: https://bit.ly/bootcamp-mentee-signups
---
📢 Applications for Bootcamp are now OPEN! 📢 CSC is bringing back Bootcamp to gear you up for your next recruiting season, partnered with @uwaterloodsc, @uwblueprint, @uwaterloowics, @uwaterloopm, @uw_ux, and @techplusuw! 💻 Mock interviews take place September 21st 6:00 - 10:00 PM EST.
💁‍♀️ Sign up as a mentee, and join our experienced mentors in Resume Reviews and Mock Interviews (virtual 1:1 sessions) to receive feedback from various tech backgrounds 📃 You will be paired with a mentor who is knowledgeable in the same or a similar career path to yours to ensure relevant feedback! 👌
A mentor will be paired with you based on your career interests to provide insightful feedback and advice to rock your job search - dont miss out! If youre interested, please sign up! We would love to help you feel ready and confident for the upcoming job hunt. After signing up, youll soon receive a link to the Discord server in which this event takes place. Our collaborating clubs are excited to bring you this opportunity to sharpen your job hunting skills 🧠 If youre interested, please apply!
👉 Apply using this link https://bit.ly/bootcamp-mentee-signups
Alternatively, you can email us at exec@csclub.uwaterloo.ca with the year and program youre in, along with interested job paths.
📅 Deadline to Apply: September 12th 2022, 11:59 PM EST

View File

@ -1,22 +0,0 @@
---
name: 'Bootcamp Resume Review'
short: "Come to receive insightful feedback and advice on your resume to rock your job search!"
startDate: 'September 14 2022 18:00'
endDate: 'September 14 2022 22:00'
online: true
location: 'Discord'
poster: 'images/events/2022/fall/Bootcamp-Mentee-Applications.png'
registerLink: https://bit.ly/bootcamp-mentee-signups
---
📢 Applications for Bootcamp are now OPEN! 📢 CSC is bringing back Bootcamp to gear you up for your next recruiting season, partnered with @uwaterloodsc, @uwblueprint, @uwaterloowics, @watonomous and @techplusuw! 💻 The drop-in resume review event takes place September 14th 6:00 - 10:00 PM EST.
💁‍♀️ Sign up as a mentee, and join our experienced mentors in Resume Reviews and Mock Interviews (virtual 1:1 sessions) to receive feedback from various tech backgrounds 📃 You will be paired with a mentor who is knowledgeable in a similar career path to yours to ensure relevant feedback! 👌
We would love to help you feel ready and confident for the upcoming job hunt. Our collaborating clubs are excited to bring you this opportunity to sharpen your job hunting skills. 🧠
👉 Apply using this link https://bit.ly/bootcamp-mentee-signups
Alternatively, you can email us at exec@csclub.uwaterloo.ca with the year and program youre in, along with interested job paths.
📅 Deadline to Apply for both: September 12th 2022, 11:59 PM EST

View File

@ -1,24 +0,0 @@
---
name: 'CSC Circles Kickoff'
short: 'Come to CSC Circles this term! You can meet new people and create recurring social circles based on your interest!'
startDate: 'October 6 2022 20:00'
endDate: 'October 6 2022 22:00'
online: false
location: 'DC 1351'
poster: 'images/events/2022/fall/CSC-Circles-Kickoff.jpg'
registerLink: 'https://forms.gle/ucTjXd1GN8Gn4PLr6'
---
📢 CSC will be kickstarting one of our most anticipated events: CSC Circles! Well be matching participants in groups of 4-6 to create recurring social circles based on your interests 🎮, availability ⏰, location 📍, and more!
👀 Members of CSC Circles will be a part of a vibrant community within CSC, in which you have the chance to build meaningful connections over the course of a semester and hopefully beyond 🚀 !
📌 If you sign up, your group will be revealed during our kickoff event, so if youre interested in participating, be sure to sign up and attend! Youll have the chance to ask questions, meet the coordinators, and socialize with your group for the first time. There will also be food 🍕
and boardgames 🎲!
📆 When? Oct 6th 2022 at 8-10pm EST, in DC 1351.
❗ Sign ups are due on September 30th, 2022.
👉 Register at https://forms.gle/ucTjXd1GN8Gn4PLr6 . Alternatively, you can also email us at exec@csclub.uwaterloo.ca to sign up.

View File

@ -1,19 +0,0 @@
---
name: 'Code Party'
short: 'Come to our first code party of the term! You can chill out, work on side-projects 💻, or finish up on homework and assignments 📚!'
startDate: 'October 5 2022 18:00'
endDate: 'October 5 2022 20:00'
online: false
location: 'STC 0060'
poster: 'images/events/2022/fall/Code-Party-1.png'
---
📣 📣 Come to our first code party of the term! You can chill out, work on side-projects 💻, or finish up on homework and assignments 📚. There will also be free pizza 🍕 while you are working away or playing board games 🎲 with a fellow CSC friend.
🗓️ Event date: October 5th from 6 pm - 8 pm
📌 Location: STC 0060
Registration is not required.
We hope to see you there!

View File

@ -1,21 +0,0 @@
---
name: 'Code Party'
short: 'Come to our second code party of the term! You can chill out, work on side-projects 💻, or finish up on homework and assignments 📚!'
startDate: 'November 15 2022 18:00'
endDate: 'November 15 2022 20:00'
online: false
location: 'STC 0020'
poster: 'images/events/2022/fall/Code-Party-2.png'
---
🎉 Code Party is back!
🍵 Come join us and work on assignments or side projects, or just hang out with your CSC friends!
🍩 You can also enjoy free snacks at our popup cafe!
🗓 Event date: November 15th at 6 - 8PM
📍Location: STC 0020
Registration is not required for this event. Hope you see you there!

View File

@ -1,24 +0,0 @@
---
name: 'CSC End of Term Event'
short: 'Come join us for a fun night of winter-themed activities with cool people!'
startDate: 'December 4 2022 19:00'
endDate: 'December 4 2022 22:00'
online: false
location: 'AHS EXP 1689'
poster: 'images/events/2022/fall/EOT.png'
registerLink: https://forms.gle/bCRpHrfyMQZJBhB99
---
🎊 Surprise, it's almost end of term!
🎉 Come join us for a fun night of winter-themed activities with cool people.
🔥 We will be playing Jeopardy, decorating gingerbread cookies, making goose paintings, playing hot chocolate/marshmallow pong, and ending the night with Christmas karaoke.
🥳 If you want to have some fun before exams, make sure to attend!
⭐ P.S There will be pizza and other free snacks 😄
📆 Event Date: December 4th, 7-10 PM at EXP 1689
👉 Sign up for EOT through https://forms.gle/bCRpHrfyMQZJBhB99 (so we can guarantee food/materials) or feel free to drop in!

View File

@ -1,14 +0,0 @@
---
name: 'Fall 2022 Elections and General Meeting'
short: 'CS Club will be holding elections for the Fall 2022 term on Monday, September 12th at 7:00 pm in MC 2017.'
startDate: 'September 12 2022 19:00'
online: false
location: 'MC 2017'
poster: 'images/events/2022/fall/F22-Elections-And-General-Meeting.png'
---
🗳 The CS Club will be holding elections for the Fall 2022 term on Monday, September 12 at 7:00PM in MC 2017.
👉 Come to learn more about CSC, sign up for membership, and vote on our new execs! The president, vice-president, treasurer, and assistant vice-president will be elected, and the sysadmin will be appointed.
❓If you have any questions about elections, please email cro@csclub.uwaterloo.ca.

View File

@ -1,22 +0,0 @@
---
name: 'First Year Orientation'
short: 'Come join us at CSCs first-ever incoming student orientation to meet your peers and learn what CSC is all about!'
startDate: 'September 15 2022 19:45'
endDate: 'September 15 2022 21:00'
online: false
location: 'DC 1351'
poster: 'images/events/2022/fall/First-Year-Orientation.png'
registerLink: 'https://bit.ly/f22-orientation'
---
📣 Hey incoming CS and Math students! Are you interested in discovering the University of Waterloo's student computing community? If so, come check out CSC's First-Year Orientation!
✨ Looking to make friends in the CS community and attend upcoming CSC events? CSCs First-Year Orientation will present to you an introduction about the club, followed by a casual social event, icebreakers, and more for students to meet each other! 🤩
🚀 CSC is an amazing community where you can attend various academic and social events, and build meaningful connections throughout the term and beyond. Make sure to come to CSCs First-Year Orientation!
📆 Event Date: Sept 15, 7:45 PM - 9:00 PM
📌 Location: DC 1351
👉 Sign-up through this link: https://bit.ly/f22-orientation

View File

@ -1,17 +0,0 @@
---
name: 'CSC x Google: Life of a SWE + Q&A'
short: "Join us as Googlers share day-in-the-life stories about their work and provide an inside look on what makes engineering at Google unique."
startDate: 'September 13 2022 18:00'
endDate: 'September 13 2022 19:30'
online: false
location: 'AHS EXP 1689'
poster: 'images/events/2022/fall/Google-Life-of-a-SWE.jpeg'
registerLink: https://goo.gle/3AKSOR6
---
📣 Interested in learning what is it like to be a software engineer at Google? Join us as Googlers share day-in-the-life stories about their work and provide an inside look on what makes engineering at Google unique.
👀 RSVP with the following link to confirm your spot: https://goo.gle/3AKSOR6
🗓️ Event Date: Tuesday September 13th from 6:00 PM - 7:30 PM ET
We are looking forward to connecting Google with the UWaterloo community! 🎉

View File

@ -1,14 +0,0 @@
---
name: 'CSC Karaoke'
short: 'CSC Karaoke is coming right up! This is the perfect opportunity to sing and gather around with friends to have fun!'
startDate: 'October 25 2022 19:00'
endDate: 'October 25 2022 21:00'
online: false
location: 'DC 1351'
poster: 'images/events/2022/fall/Karaoke.png'
registerLink: 'https://docs.google.com/forms/d/e/1FAIpQLSfKLHY_Yv3c3OFTNzGuss0WvF8PGDhWypbaRO49oPCdlGBvNA/viewform'
---
🎶 CSC Karaoke is coming right up! This is the perfect opportunity to sing and gather around with friends to have fun!
📍 The date is Tuesday, October 25th, from 7-9 PM in DC 1351. Make sure to come and express your creativity through singing! 🎤

View File

@ -1,17 +0,0 @@
---
name: "Prof talk with Prof Shi Cao"
short: "Join us for an informative talk about cognitive modelling, Al and human behavior."
startDate: "November 17 2022 17:00"
endDate: "November 17 2022 18:30"
online: false
location: "MC 5501"
poster: "images/events/2022/fall/Prof-Talk-Shi-Cao.png"
registerLink: "https://forms.gle/Rbptj4KhvK7dTSSH6e"
---
Prof. Shi Cao is giving an informative and interactive talk about cognitive modelling and how AI can predict human behavior. He will be talking about his research and the current state of the field.
Food will be served after the event. Come join to learn more about this field or simply learn something new! 💯
📍 Location: MC 5501
📅 Event Date: Thursday, Nov. 17th, 5:00PM - 6:30PM

View File

@ -1,20 +0,0 @@
---
name: 'Project Program Kickoff'
short: 'Project Program is back for Fall 2022, and were excited to see mentors support you to create a month-long project!'
startDate: 'September 28 2022 19:30'
endDate: 'September 28 2022 20:30'
online: false
location: 'STC 0020'
poster: 'images/events/2022/fall/Project-Program-Kickoff.png'
registerLink: 'https://forms.gle/jQrntPiNUi1CdwRj6'
---
📢 Project Program is back for Fall 2022, and were excited to see mentors support you to create a month-long project!
UW DSC, UW CSC, and Laurier CS are collaborating to help you create your side project by guiding your group of mentees through brainstorming project ideas, creating roadmaps with milestones and achievements, and finally presenting your project for the chance to win prizes! 🏆
📌 The details of the program will be discussed during this event, so if youre interested in participating, be sure to attend!
📅 Event Date: Wednesday, September 28th from ~~6:00-7:00pm~~ 7:30-8:30pm EDT in STC 0020.
👉 Register at https://forms.gle/jQrntPiNUi1CdwRj6 . Alternatively, you can also email us at exec@csclub.uwaterloo.ca to sign up as well.

View File

@ -1,18 +0,0 @@
---
name: 'Project Program Rust Workshop'
short: 'Join us to learn more about Rust, a new multi-paradigm, general-purpose programming language!'
startDate: 'November 17 2022 19:00'
endDate: 'November 17 2022 21:00'
online: false
location: 'PHY 150'
poster: 'images/events/2022/fall/Project-Program-Rust-Workshop.png'
---
🎉 We are organizing a Rust workshop for Project Program!
⌨️ What is Rust? Rust is a new multi-paradigm, general-purpose programming language. Youll be able to learn more about it if you havent heard of it before!
👉 In addition, you'll be learning about how to create a command line interface and will be able to create a command line interface program by the end of the workshop.
📅 Date: November 17th, from 7PM to 9PM
📍 Location: PHY 150 and also available remote on Zoom. The zoom link will be provided on the day on our social media and our discord.

View File

@ -1,22 +0,0 @@
---
name: 'Project Program Unity Workshop'
short: 'Join us to learn more about Unity, a 2D & 3D game engine that has been around since 2005!'
startDate: 'November 15 2022 19:00'
endDate: 'November 15 2022 21:00'
online: false
location: 'QNC 2502'
poster: 'images/events/2022/fall/Project-Program-Unity-Workshop.png'
---
🎉 We are organizing a Unity workshop for Project Program!
⌨️ What is Unity? Unity is a 2D & 3D game engine that has been around since 2005. Youll be able to learn more about it if you havent heard of it before!
👉 In addition, you'll be learning about how to create create a game like Rocket League!!
🗓️ Event date: November 15th
🕛 Time: 7PM to 9PM.
📍 Location: QNC 2502
Registration is not required for this event. Hope to see you there!

View File

@ -1,17 +0,0 @@
---
name: 'Rico Mariani - Ask Me Anything'
short: 'Want to hear from a software engineer at Meta and a former CSC president at Waterloo? Join us in CSCs Ask Me Anything where former CSC president Rico Mariani is coming in and taking questions!'
startDate: 'October 17 2022 16:00'
endDate: 'October 17 2022 18:00'
online: false
location: 'MC 4045'
poster: 'images/events/2022/fall/Rico-Ask-Me-Anything.png'
---
📢 Want to hear from a software engineer at Meta and a former CSC president at Waterloo? Join us in CSCs Ask Me Anything where former CSC president Rico Mariani is coming in and taking questions! 🤩 You will have the chance to hear the perspective of an alumni, as well as a CSC member from a different generation!
📆 Event Date: Oct 17, 2022 from 4-6 PM
📌 Location: MC 4045
See you then! 👋

View File

@ -1,21 +0,0 @@
---
name: 'Afterhours'
short: "If you want to talk about topics overlooked in the daily grind of university and co-op, come join us for CSC Afterhours."
startDate: 'July 19 2022 19:00'
endDate: 'July 19 2022 20:30'
online: false
location: 'SLC Multipurpose Room'
poster: 'images/events/2022/spring/Afterhours.png'
registerLink: https://forms.gle/qhEXgKrhL5XcdD4b7
---
📣 If you want to talk about topics overlooked in the daily grind of university and co-op, come join us for CSC Afterhours.
🤩 Afterhours is a space for CSC members to discuss topics ranging from happiness😃, finding ways to grow outside of uni/career🏫, becoming an adult, managing relationships, and avoiding academic/job search toxicity, and many more.
✨ If any of these topics have been weighing on your mind recently, we encourage you to come out, hear the stories of others, discuss your own thoughts, and feel a little less alone.
📌 Feel free to rotate between discussions in a close-knit, non-judgmental environment.
🗓 Date: July 19th, 7:00-8:30PM at SLC Multipurpose room.
👉 Sign up from this link: https://forms.gle/qhEXgKrhL5XcdD4b7

View File

@ -1,22 +0,0 @@
---
name: "Cali Panel"
short: "Are you struggling with finding a work-life balance? Or interested in how to build your career in the tech industry? Come to the Cali Panel!"
startDate: "July 23 2022 18:30"
endDate: "July 23 2022 20:30"
online: true
location: "Online"
poster: "images/events/2022/spring/Cali-Panel.png"
registerLink: "https://forms.gle/eZRruDdWhYtuGmj3A"
---
📣 Are you struggling with finding a work-life balance? Or interested in how to build your career in the tech industry? Come to the Cali Panel!
🚀 CSC is bringing together current and past students working for prestigious tech companies to talk about a variety of topics including career, networking, work-life balance, travelling for work, etc.
🤩 You will be able to get some insights into how to achieve your dream careers while having a work-life balance! Check out our panelists below.
📅 Event date: July 23rd, 6:30 PM - 8:30 PM.
📍This is an online event. Zoom link: https://us06web.zoom.us/j/86890664040?pwd=T3RxWFFXeTlQTER4L2hEaGl6Q3E0Zz09
👉 Sign up from this link: https://forms.gle/eZRruDdWhYtuGmj3A

View File

@ -1,13 +0,0 @@
---
name: 'Code Party: The Finale'
short: 'Come to our last Code Party of the term, to take a break between exams or to celebrate finishing them!'
startDate: 'August 11 2022 19:00'
endDate: 'August 11 2022 21:00'
online: false
location: 'STC 0060'
---
📣 The LAST Code Party of the term is on Thursday! 📣
🤩 Come out to enjoy a break from exams or to celebrate finishing them!
📅 Event date: August 11th, 7-9PM at STC 0060

View File

@ -1,17 +0,0 @@
---
name: 'Code Party; The Sequel'
short: 'CSC Code Party is Back!'
startDate: 'July 14 2022 19:00'
endDate: 'July 14 2022 21:00'
online: false
location: 'STC 0060'
poster: 'images/events/2022/spring/Code-Party-Sequel.png'
registerLink: 'https://forms.gle/txwwN6okM1FvYQtx5'
---
📣 CSC Code Party is Back!
💻 Are you looking for a chance to practice coding with friends and discover where your skills can improve? Come to Code Party: The Sequel to enjoy a fun coding session with your peers! Feel free to bring your projects and assignments to work on.
📅 This event is being held on July 14 7PM-9PM at STC 0060.
Sign up from this link: https://forms.gle/txwwN6okM1FvYQtx5

View File

@ -1,24 +0,0 @@
---
name: 'Code Party and Midterm Scream'
short: 'Come hang out and work on homework or side-projects at our first code party of this term! Featuring snacks and a stress relieving synchronized scream.'
startDate: 'June 17 2022 19:00'
endDate: 'June 17 2022 21:00'
online: false
location: 'STC 0060'
poster: 'images/events/2022/spring/Code-Party-Scream.png'
registerLink: https://bit.ly/s22-midtermscream-codeparty-signup
---
📣 Do you ever feel like screaming on the top of your lungs? 🙀 Then CSCs Code Party and Midterm Scream is where you need to be!
🤩 Come to our first code party of the term! You can chill out, work on side-projects, or finish up on homework and assignments. 📚 There will also be snacks while you are working away or just hanging out with a fellow CSC friend. At 9 PM we will head out to the Rock Garden to let out a synchronized, one-minute long scream to relieve midterm stress! 🥳
Code Party:
📆 Event Date: June 17th from 7 - 9 PM
📌 Location: STC 0060
🙀 The Midterm Scream will take place at 9 PM in the Rock Garden!
👉 Sign-up through this link: https://bit.ly/s22-midtermscream-codeparty-signup
We hope to see you there!

View File

@ -1,16 +0,0 @@
---
name: 'Capture The Flag Contest'
short: 'The CTF Club in association with CSC is running a Capture The Flag contest! '
startDate: 'July 15 2022 18:00'
endDate: 'July 17 2022 12:00'
online: true
location: 'Online'
poster: 'images/events/2022/spring/Ctf.png'
registerLink: 'https://ctf.uwaterloo.ca/s22'
---
👀 Looking for a challenge that may win you money?
🚩 The CTF Club in association with CSC is running a Capture The Flag contest this term! Participants will work individually or in teams of up to 3 (division-dependent) to solve information security (InfoSec), penetration testing (pentesting) and cryptography challenges.
🤩 There is a total of $110 of prize money to be won! Winners from the noob category can win $20 and the pros can win up to $90.
🗓 This contest will be held virtually from July 15th to 17th, so be sure to sign up from https://ctf.uwaterloo.ca/s22 !

View File

@ -1,24 +0,0 @@
---
name: "End Of Term + Speed Frending"
short: "Surprise, it's almost end of term!"
startDate: "July 21 2022 19:00"
endDate: "July 21 2022 21:00"
online: false
location: "DC 1351"
poster: "images/events/2022/spring/End-Of-Term.png"
registerLink: https://forms.gle/USNvFgAPCk8MR4me8
---
🎊 Surprise, it's almost end of term!
🎉 Join us from 7-9PM at DC 1351 for a fun night of speed-friending, games, painting & more!
🎲 Some potential games that we might play include: Tug of War, Red Light Green Light, etc.
🥳 If you want to socialize and have some fun before exams, make sure to attend!
📆 Event Date: July 21st from 7-9PM ET at DC 1351
P.S There's free food and Coco's vouchers! 🧋
👉 Register at the link: https://forms.gle/USNvFgAPCk8MR4me8

View File

@ -1,19 +0,0 @@
---
name: "Git Internals Talk"
short: "Have you heard of Git or used it in your past coop terms? Come join us for a deep dive under the hood!"
startDate: "July 25 2022 18:00"
endDate: "July 25 2022 19:00"
online: false
location: "MC 5479"
poster: "images/events/2022/spring/Git-Internals-Talk.png"
---
🚀 Have you heard of Git or used it in your past coop terms?
🖥️ Most software development these days is done using git. Git can seem very complex to use (and often is!). However, it turns out the core architecture behind git is quite simple and elegant.
🤔 We will explore how git works under the hood to understand this architecture, and demystify what commonly used git commands actually do. Afterwards, we will dive deeper into the implications of this architecture, both positive and negative, as well as how this knowledge can be useful day to day. We will end it off by answering the question: “Is git the first blockchain?” (spoiler: sort of!) There are drinks/snacks served at the event!
🗓 Event Date: July 25th, at MC 5479 from 6-7 PM
👉 Sign up is not required for this event!

View File

@ -1,22 +0,0 @@
---
name: 'CSC: Soiree: Movie Night'
short: "Bring your friends for this chill movie night with CSC!"
startDate: 'June 10 2022 19:00'
endDate: 'June 10 2022 22:00'
online: false
location: 'AL 116'
poster: 'images/events/2022/spring/MovieNight.png'
registerLink: https://bit.ly/s22-movienight-signup
---
📣 Looking to destress before midterm week starts? ✨CSC is hosting the perfect event for you! Come hang out at CSC Soiree: Movie Night! 🎬
🍿Bring your friends for this chill movie night from 7-10 PM! 👀 There will be time for a mini social afterwards so make sure to come if you want to meet other CSC members!
📆 Event Date: June 10 from 7 PM - 10 PM
📌 Location: AL 116
👉 Sign-up through this link: https://bit.ly/s22-movienight-signup
We cant wait to see you there!

View File

@ -1,17 +0,0 @@
---
name: 'Prof Talk with Anton Mosunov'
short: "Are you interested in learning more about parallel computation? CSC is hosting a Prof Talk with the amazing Professor Anton Mosunov to talk about his awe-inspiring research."
startDate: 'July 13 2022 17:00'
endDate: 'July 13 2022 18:30'
online: false
location: 'MC 5479'
poster: 'images/events/2022/spring/Prof-Talk-Anton-Mosunov.png'
registerLink: https://bit.ly/s22-prof-talks
---
📣 Are you interested in learning more about parallel computation? CSC is hosting a Prof Talk with the amazing Professor Anton Mosunov to talk about his awe-inspiring research. 🤩 He will deliver a captivating talk about parallel computation. If you dont yet know what that is yet or want to learn more about it, make sure to be there! 💻 Make sure to bring a laptop!
📆 Event Date: July 13th from 5 - 6:30 PM
📌 Location: ~~DC 1350~~ MC 5479
👉 Sign-up through this link: https://bit.ly/s22-prof-talks

View File

@ -1,18 +0,0 @@
---
name: 'Acing the Technical Interview w/ ICPC Coach Christian Lim'
short: 'Gain insight into the tech interview process directly from Christian Lim, a former Google software engineer and current ICPC coach at Columbia University!'
startDate: 'October 04 2023 18:00'
endDate: 'October 04 2023 19:30'
online: true
location: 'Zoom'
poster: 'images/events/2023/fall/1700095053678--Christian-Lim-Talk.png'
---
🚀 Want an inside scoop on how to ace the technical interview? Interested in learning about competitive programming? Then look no further! Join us for a workshop hosted by Christian Lim: former Google software engineer, Two Sigma quant developer, and current ICPC coach at Columbia University.
📢 Sign up via the link in our bio to register for the event and receive your invitation!
📆 When? October 4th, 2023 at 6:00 - 7:30pm EDT
📍 Where? Online via Zoom

View File

@ -1,19 +0,0 @@
---
name: 'Build Networks in Tech!'
short: 'Join us for an evening of connections, collaborations, and conversations that will elevate your professional journey with Scotia Bank, Eclipse Automation and more!'
startDate: 'November 23 2023 18:00'
endDate: 'November 23 2023 20:00'
online: false
location: 'TBD'
poster: 'images/events/2023/fall/1700094272182--Build-Networks-in-Tech.jpg'
registerLink: 'https://docs.google.com/forms/d/e/1FAIpQLSeSfDEHwUlyL17pgd0GrqckJ2RMh06m9CmUqB611H0NpJZ7gA/viewform'
---
💼 Are you hunting for co-op in the near future? Having a hard time finding ways to network with recruiters/alumni? Look no further! Join us at 'Building Networks in Tech', the CSC's exclusive Recruiter Panel Event, where several representatives and alumni from organizations such as Scotiabank, Eclipse Automation and more, deliver a mini-panel and answer your questions! Join us for an evening of connections, and conversations that will elevate your professional journey!
📢 Sign up via the link in our bio to register for the event!
📆 When? November 23rd, 2023 at 6:00pm - 8:00pm EST. (A schedule for the event will be emailed and updated on ig)
📍 Where? Room TBD check the email you used to register, as well as our Discord and Insta story for updates.

View File

@ -1,18 +0,0 @@
---
name: 'CSC Beginning of Term!'
short: 'Kick off the fall term with CSCs BOT event!'
startDate: 'September 19 2023 19:00'
endDate: 'September 19 2023 22:00'
online: false
location: 'STC 0010'
poster: 'images/events/2023/fall/1707083684169--CSC-BOT.jpg'
---
📢 Kick off the fall term with CSCs BOT event! Are you interested in attending upcoming CSC events? Want to meet others in the CS community? Want to have fun and eat food? You dont want to miss our first event of this term!
🎉Come join us for a night of speed-friending and fun games including IRL gartic phone, cup stacking, and extreme rock paper scissors!
📆 When? September 19th, 2023 at 7:00 - 10:00pm EST
📍 Where? STC 0010

View File

@ -1,20 +0,0 @@
---
name: 'CSC Codey-lympics'
short: 'Join us for a fun night of CS-themed challenges such as Code Your Friends, LeetCode Relay, Tech Skribbl.io, and more!'
startDate: 'October 18 2023 18:00'
endDate: 'October 18 2023 21:00'
online: false
location: 'TBD'
poster: 'images/events/2023/fall/1707695568525--Codeylympics.png'
---
🏃 Join us for a fun night of CS-themed challenges such as Code Your Friends, LeetCode Relay, Tech Skribbl.io, and more! Compete in teams as you complete these challenges to earn points for a chance to win some free CSC merch!
📢 Sign up via the link in our bio to register for the event either individually or with a team of friends! Those who sign up individually will be assigned teams on the day of the event.
📆 When? October 18th, 2023 at 6:00 - 9:00pm EST
📍 Where? Room TBD check the email you used to register, as well as our Discord and Insta story for updates

View File

@ -1,16 +0,0 @@
---
name: 'CSC Dodgeball Tournament'
short: 'Join us for CSCs very own Dodgeball Tournament!'
startDate: 'November 15 2023 17:00'
endDate: 'November 15 2023 19:30'
online: false
location: 'CIF Gym 3'
poster: 'images/events/2023/fall/1707694707467--CSC-Dodgeball.png'
---
📢 Join us for CSCs very own Dodgeball Tournament! Play in teams of 5 and compete to be crowned as CSCs Dodgeball Champions. Sign up via the link in our bio to register for the event either individually or with a team! Those who sign up individually will be assigned teams on the day of the event.
📆 Nov 15th, 5-7:30pm
📍 Where? CIF Gym 3

View File

@ -1,22 +0,0 @@
---
name: 'CSC End of Term'
short: "Surprise, it's almost end of term! Come join us for a fun night of winter-themed activities with cool people."
startDate: 'December 01 2023 18:00'
endDate: 'December 01 2023 21:00'
online: false
location: 'STC 0010 & STC 0020'
poster: 'images/events/2023/fall/1707694507458--CSC-EOT.png'
---
🎊 Surprise, it's almost end of term!
🎉 Come join us for a fun night of winter-themed activities with cool people.
🔥 We will be painting ornaments, having an official christmas tree decorating ceremony, decorating cookies, playing board games, and singing our hearts out with Christmas (and iconic songs) karaoke.
🥳 If you want to have some fun before exams, make sure to attend!
⭐ P.S There will be free snacks and hot chocolate :D
📆 Event Date: Friday, December 1st, 6-9 PM at STC 0010 and 0020

View File

@ -1,17 +0,0 @@
---
name: 'Escape MC Manor!'
short: 'Get into the spooky spirit with our Halloween-themed escape adventure in MC! Teams of four will "trick or "treat" across different challenges! Get ready to solve riddles, code through LeetCode challenges, and race to the ending room for a shot at CSC swag!'
startDate: 'October 31 2023 18:00'
endDate: 'October 31 2023 20:00'
online: false
location: 'MC 4020'
poster: 'images/events/2023/fall/1707443339373--Escape-MC-Manor.png'
---
🎃 Can you escape the MC Manor? Join us for a spooky night of challenges, tricks, and treats! Complete 4 distinct challenges with your friends and escape from MC first to earn some awesome CSC swag!
📢 Sign up via the link in our bio to register for the event either individually or with a team of friends! Those who sign up individually will be assigned teams on the day of the event.
📆 When? October 31th, 2023 at 6:00 - 8:00pm EST
📍 Where? MC 4020

View File

@ -1,19 +0,0 @@
---
name: 'Fall 2023 Elections'
short: 'The CS Club will be holding elections for the Fall 2023 term on Tuesday, September 12 at 6:00PM in MC 2035.'
startDate: 'September 12 2023 18:00'
online: false
location: 'MC 2035'
poster: 'images/events/2023/fall/1707695256725--F23-Elections.png'
---
🗳 The CS Club will be holding elections for the Fall 2023 term on Tuesday, September 12 at 6:00PM in MC 2035.
👉 Come to learn more about CSC, sign up for membership, and vote on our new execs! The president, vice-president, assistant vice-president, and treasurer will be elected, and the sysadmin will be appointed.
✋ If you'd like to run for any of these positions or nominate someone, you can send an email to cro@csclub.uwaterloo.ca, or present them in-person to the CRO, Sat Arora, or write your name on the whiteboard in the CSC office (MC 3036/3037). Nominations will close on September 11 at 6:00PM. Nominees will be reached out to for their platforms.
❗If you are unable to attend the elections in person, please email cro@csclub.uwaterloo.ca by September 11 at 11:59pm in order to request an absentee ballot and vote remotely.
❓ If you have any questions about elections, please email cro@csclub.uwaterloo.ca.

View File

@ -1,20 +0,0 @@
---
name: 'Neetcode Talk'
short: 'Neetcode will be talking about leetcode and coding interviews, as well as his career journey to Google'
startDate: 'October 27 2023 18:00'
endDate: 'October 27 2023 19:30'
online: false
location: 'RCH 301'
poster: 'images/events/2023/fall/1707680876581--neetcode_talk_poster.png'
registerLink: 'https://docs.google.com/forms/d/e/1FAIpQLSdns-sfeo35nweshqUSam25PyBaZNFBQ0Yg9XFwV6rWRB8CCA/viewform?usp=sharing '
---
🚀 Get ready to level up your Leetcode skills! Join our exclusive Q&A session with the founder of NeetCode.io and ex-Amazon, Google software engineer!
👨💻Ask anything about school, life, career, or Leetcode. Food and snacks will be provided to UW CSC and GDSC members only.
📢 Sign up with link in bio!
📆 When? October 27th, 2023 at 6:00 - 7:30pm ET
📍 Where? RCH 301

View File

@ -1,17 +0,0 @@
---
name: 'November Code Party'
short: 'Midterm destress and come socialize! Free food and drink will be provided.'
startDate: 'November 17 2023 19:00'
endDate: 'November 17 2023 21:00'
online: false
location: 'STC 0040'
poster: 'images/events/2023/fall/1707681572946--november_code_party.png'
---
Attention CSC members!
Code party is back! Come join us and work on assignments or side projects, study, or just hang out with your friends :D 🌭
Were serving free Chung Chun rice dogs for those who come to hang out (first come first serve, must be a CSC member!)
📆 Event Date: Friday November 17, 7-9pm
📌 Location: STC 0040

View File

@ -1,17 +0,0 @@
---
name: 'Trivia Night'
short: 'Join us for a trivia single elimination bracket with over 400$ in prizes!'
startDate: 'November 22 2023 18:00'
endDate: 'November 22 2023 20:00'
online: false
location: 'STC 0050'
poster: 'images/events/2023/fall/1707443520699--CSC-Trivia-Night.png'
---
🚀 Calling all tech wizards and code connoisseurs! UWCSC presents an epic Trivia Night, where over $400 in prizes await the cleverest minds! 🤖💻 Join the coding quest, solve mind-bending puzzles, and emerge victorious to claim your tech-tastic rewards. It's not just trivia, it's a byte-sized battle for glory! 🏆✨ Let the games begin! 🌟
👉 Register at the link in our bio. See you there!
📆 Event Date: November 22nd, 6-8PM
📌 Location: STC0050

View File

@ -1,21 +0,0 @@
---
name: 'Afterhours'
short: 'Take part in candid conversations on topics that university students typically overlook.'
startDate: 'August 01 2023 20:00'
endDate: 'August 01 2023 22:00'
online: false
location: 'SLC Black & Gold Room'
poster: 'images/events/2023/spring/Afterhours.png'
---
📣 Afterhours is back!!
😌 Come join us for a chill, informal group discussion about a variety of topics, including finding balance, building self-confidence, dealing with imposter syndrome and burnout, and any other topics youd like to bring into the conversation!
🤩 Youll get the chance to hear personal stories from moderators and other attendees, as well as share your own experiences in a close-knit, non-judgmental environment.
🥰 Snacks and drinks will be provided for CSC members.
📆 Date: Tuesday, August 1st, 8-10 PM, in the SLC Black and Gold Room
Hope to see you all there!

View File

@ -1,15 +0,0 @@
---
name: 'BOT Bonfire'
short: 'Join CSC and WiCS in kicking off the term with a bang! Come out to have some fun with a night of amazing games, speed friending and smores!'
startDate: 'May 23 2023 19:00'
endDate: 'May 23 2023 21:00'
online: false
location: 'Columbia Lake Fire Pit'
poster: 'images/events/2023/spring/bonfire_BOT.png'
---
☀️ Kick off the summer term with CSCs BOT Bonfire event! Are you interested in attending upcoming CSC events? Want to meet others in the CS community? Come to our beginning of term event!
🎉 Come join us for a night of fun games, a painting station, speed friending, as well as snacks including smores, pizza, drinks, and freezies! Be sure to dress warm, bring bug spray, and bring your own instrument, frisbee, skewer or blanket!
📆 When? Tuesday May 23rd 2023 at 7:00 - 9:00pm EST, in Columbia Lake Fire Pit.

View File

@ -1,23 +0,0 @@
---
name: 'Bootcamp Mock Interviews'
short: 'Get valuable feedback on resumes and mock interviews as a mentee, or help others in the tech community with job search as a mentor!'
startDate: 'May 13 2023 18:00'
endDate: 'May 14 2023 22:00'
online: true
location: 'Discord'
poster: 'images/events/2023/spring/Bootcamp.jpg'
---
CSC is joined by Tech Plus, Data Science Club, Women in Computer Science, and Blueprint to help you put your best foot forward in your next co-op hunt.
⭐️ As a Bootcamp mentee, you will be able to receive valuable feedback on your resume and sharpen your interviewing skills through our mock interviews. You will be matched by field/career interest with one of our many experienced mentors to bring you guidance from various backgrounds!
⭐️ As a Bootcamp mentor, you will have the opportunity to provide resume critiques and/or conduct mock interviews with students to prepare them for their job search. It's a great chance to give back to the student community and share your knowledge!
📅 The Resume Reviews will take place on the weekend of May 13th and 14th, 2023 from 6:00-10:00 p.m. ET both days, and the Mock Interviews will take place on the weekend of May 20th and 21st, 2023 from 6:00-10:00 p.m. ET both days. Both events will be held virtually on our Bootcamp Discord Server.
⏳ The Resume Reviews and Mock Interviews are both drop-in events, which means you can show up at whichever times work best for you within the event period!
⚠️ The deadline to sign up is May 11th, 2023 at 11:59 p.m. ET.
🤩 Dont miss out on this amazing opportunity! We hope to see you at Bootcamp!!

View File

@ -1,23 +0,0 @@
---
name: 'Bootcamp Resume Reviews'
short: 'Get valuable feedback on resumes and mock interviews as a mentee, or help others in the tech community with job search as a mentor!'
startDate: 'May 20 2023 18:00'
endDate: 'May 21 2023 22:00'
online: true
location: 'Discord'
poster: 'images/events/2023/spring/Bootcamp.jpg'
---
CSC is joined by Tech Plus, Data Science Club, Women in Computer Science, and Blueprint to help you put your best foot forward in your next co-op hunt.
⭐️ As a Bootcamp mentee, you will be able to receive valuable feedback on your resume and sharpen your interviewing skills through our mock interviews. You will be matched by field/career interest with one of our many experienced mentors to bring you guidance from various backgrounds!
⭐️ As a Bootcamp mentor, you will have the opportunity to provide resume critiques and/or conduct mock interviews with students to prepare them for their job search. It's a great chance to give back to the student community and share your knowledge!
📅 The Resume Reviews will take place on the weekend of May 13th and 14th, 2023 from 6:00-10:00 p.m. ET both days, and the Mock Interviews will take place on the weekend of May 20th and 21st, 2023 from 6:00-10:00 p.m. ET both days. Both events will be held virtually on our Bootcamp Discord Server.
⏳ The Resume Reviews and Mock Interviews are both drop-in events, which means you can show up at whichever times work best for you within the event period!
⚠️ The deadline to sign up is May 11th, 2023 at 11:59 p.m. ET.
🤩 Dont miss out on this amazing opportunity! We hope to see you at Bootcamp!!

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