diff --git a/.babelrc b/.babelrc
deleted file mode 100644
index ac1f184..0000000
--- a/.babelrc
+++ /dev/null
@@ -1,4 +0,0 @@
-{
- 'presets': ['env'
- ]
-}
\ No newline at end of file
diff --git a/.gitignore b/.gitignore
index aebec00..1437c53 100644
--- a/.gitignore
+++ b/.gitignore
@@ -1,5 +1,34 @@
-node_modules
-node_modules/*
-dist/
-dist/*
+# See https://help.github.com/articles/ignoring-files/ for more about ignoring files.
+
+# dependencies
+/node_modules
+/.pnp
+.pnp.js
+
+# testing
+/coverage
+
+# next.js
+/.next/
+/out/
+
+# production
+/build
+
+# misc
.DS_Store
+*.pem
+
+# debug
+npm-debug.log*
+yarn-debug.log*
+yarn-error.log*
+
+# local env files
+.env.local
+.env.development.local
+.env.test.local
+.env.production.local
+
+# vercel
+.vercel
diff --git a/source/CNAME b/CNAME
similarity index 100%
rename from source/CNAME
rename to CNAME
diff --git a/README.md b/README.md
index cb33de6..4b5c883 100644
--- a/README.md
+++ b/README.md
@@ -1,2 +1,30 @@
-# weceweb
-Code for WECE website
+This is a [Next.js](https://nextjs.org/) project bootstrapped with [`create-next-app`](https://github.com/vercel/next.js/tree/canary/packages/create-next-app).
+
+## Getting Started
+
+First, run the development server:
+
+```bash
+npm run dev
+# or
+yarn dev
+```
+
+Open [http://localhost:3000](http://localhost:3000) with your browser to see the result.
+
+You can start editing the page by modifying `pages/index.js`. The page auto-updates as you edit the file.
+
+## Learn More
+
+To learn more about Next.js, take a look at the following resources:
+
+- [Next.js Documentation](https://nextjs.org/docs) - learn about Next.js features and API.
+- [Learn Next.js](https://nextjs.org/learn) - an interactive Next.js tutorial.
+
+You can check out [the Next.js GitHub repository](https://github.com/vercel/next.js/) - your feedback and contributions are welcome!
+
+## Deploy on Vercel
+
+The easiest way to deploy your Next.js app is to use the [Vercel Platform](https://vercel.com/import?utm_medium=default-template&filter=next.js&utm_source=create-next-app&utm_campaign=create-next-app-readme) from the creators of Next.js.
+
+Check out our [Next.js deployment documentation](https://nextjs.org/docs/deployment) for more details.
diff --git a/components/boardcard.jsx b/components/boardcard.jsx
new file mode 100644
index 0000000..7c01b7d
--- /dev/null
+++ b/components/boardcard.jsx
@@ -0,0 +1,56 @@
+import styles from "../styles/Boardcard.module.css";
+
+export default function BoardCard({
+ name,
+ role,
+ major,
+ year,
+ spiritAnimal,
+ hobbies,
+ quote,
+ img,
+}) {
+ const flipCard = (event) => {
+ const card = event.currentTarget;
+ if (card.classList.contains(styles["active"])) {
+ card.classList.remove(styles["active"]);
+ } else {
+ card.classList.add(styles["active"]);
+ }
+ };
+
+ return (
+
+ In 2002, WECE was founded to promote and inspire women in
+ Electrical and Computer Engineering. Our objective is not only
+ to encourage women to pursue a degree in ECE, but to also be a
+ source of assistance in reaching academic and career goals. The
+ WECE organization provides members with opportunities to make
+ social connections within the department, advance technical
+ skills, and network professionally.
+
+
+ Involvement with WECE gives members a chance to make new friends
+ and contacts within the department. WECE hosts a number of
+ social events such as the Fall Banquet and Spring Semi Formal as
+ well as other regular social meetings. Whether you are an
+ incoming freshman or graduate student, being a part of a
+ community of people that supports women in ECE is a powerful
+ tool in furthering your personal and academic success.
+
+
+ Along with the social aspect, WECE is also committed to
+ assisting the development of our member’s technical skills. WECE
+ organizes various events each year including technical workshops
+ and tech talks by companies such as Square and Google. We
+ recognize the importance of having well-rounded, technical
+ knowledge and strive to help our members gain as much relevant
+ experience as possible.
+
+
+ WECE helps its members form valuable professional connections.
+ It can sometimes be difficult to attain positions in the
+ corporate world, which is why WECE makes it a priority to
+ establish relationships with companies in order to help members
+ do the same. This includes hosting guest speakers and organizing
+ luncheons with influential people in the field who support women
+ in ECE. We also work in cooperation with various companies, such
+ as Microsoft and Goldman Sachs, to provide our members with as
+ many internship and job prospects as possible.
+
+
+
+
+
+
+ );
+}
diff --git a/pages/api/hello.js b/pages/api/hello.js
new file mode 100644
index 0000000..5b77ec0
--- /dev/null
+++ b/pages/api/hello.js
@@ -0,0 +1,6 @@
+// Next.js API route support: https://nextjs.org/docs/api-routes/introduction
+
+export default (req, res) => {
+ res.statusCode = 200
+ res.json({ name: 'John Doe' })
+}
diff --git a/pages/board.jsx b/pages/board.jsx
new file mode 100644
index 0000000..429a7a5
--- /dev/null
+++ b/pages/board.jsx
@@ -0,0 +1,39 @@
+import BoardCard from "../components/boardcard";
+import BoardData from "../data/boarddata";
+import Layout from "../components/layout";
+import SectionHead from "../components/sectionhead";
+import styles from "../styles/Board.module.css";
+
+import Container from "react-bootstrap/Container";
+import Row from "react-bootstrap/Row";
+
+export default function Board() {
+ return (
+
+
+
+ );
+}
diff --git a/pages/committees.jsx b/pages/committees.jsx
new file mode 100644
index 0000000..60f34ab
--- /dev/null
+++ b/pages/committees.jsx
@@ -0,0 +1,191 @@
+import Layout from "../components/layout";
+import SectionBody from "../components/sectionbody";
+import SectionButton from "../components/sectionbutton";
+import SectionHead from "../components/sectionhead";
+import styles from "../styles/Committees.module.css";
+
+import Container from "react-bootstrap/Container";
+
+export default function Committees() {
+ return (
+
+
+
+
+
+
+ WECE has seven great committees you can join and participate in!
+ Read more to find out what each of them do :) If you would like to
+ join, fill out your committee preferences below!
+
+
+
+
+
+
Academic
+
+
+
+
+ Saisita Maddirala
+
+
+ The Academic Committee organizes and hosts workshops and
+ panels catered to improving academic success for ECE
+ students.
+
+
+
+
+
+
+
+
Infrastructure
+
+
+
+
+ Eugenia Chen
+
+
+ The Infrastructure Commitee develops and updates the WECE
+ website as well as sends weekly newsletters. In addition, we
+ are always looking to improve the workflow of WECE through
+ developing ways to manage our data better!
+
+
+
+
+
+
+
+
Marketing
+
+
+
+
+ Aditi Panwar
+
+
+ The Marketing Committee advertises WECE events and
+ creatively supports the events through banners, posters and
+ logos. We help expand WECE's presence on campus through
+ social media by showcasing the wonderful events we have to
+ help students academically, professionally and personally.
+ We also oversee the design of WECE logo, apparel, newsletter
+ and the website.
+
+
+
+
+
+
+
+
Mentorship
+
+
+
+
+ Kelly Dunleavy
+
+
+ The WECE Mentorship Committee strives to build a welcoming
+ and supportive community within ECE! We foster mentorship
+ through a Peer Mentorship Program, Lean In Discussions, a
+ Professional Mentorship Program and Graduate Student
+ mentorship.
+
+
+
+
+
+
+
+
Outreach
+
+
+
+
+ Elisa Krause
+
+
+ The outreach committee works with the surrounding community
+ to teach kids about ECE!
+
+
+
+
+
+
+
+
Social
+
+
+
+
+ Maram Safi
+
+
+ Social Committee is all about fostering relationships.
+ Whether those relationships are friendships or professional
+ connections, we are here to get to know each other and
+ social committee is a great way to do that!
+
+
+
+
+
+
+
+
Technical
+
+
+
+
+ Pakhi Gupta
+
+
+
+ Sarah Angelbeck
+
+
+ The WECE technical committee works on a project which is
+ presented at the Engineering Open House in March. The
+ technical committee also organizes technical workshops to
+ teach skills relevant in the industry. We aim to provide
+ valuable technical experiences for promoting involvement and
+ building resume.
+
+
+
+
+
+
+
+
+ );
+}
diff --git a/pages/contactus.jsx b/pages/contactus.jsx
new file mode 100644
index 0000000..f566ec5
--- /dev/null
+++ b/pages/contactus.jsx
@@ -0,0 +1,79 @@
+import Layout from "../components/layout";
+import SectionBody from "../components/sectionbody";
+import SectionHead from "../components/sectionhead";
+import styles from "../styles/Contactus.module.css";
+
+import Container from "react-bootstrap/Container";
+
+export default function ContactUs() {
+ return (
+
+
+
+
+
+
Email us!
+
+ Contact us with any questions at wece.uiuc@gmail.com
+
+
+
+
+
+
+ Visit us on Facebook!
+
+
Give us a like :)
+
+
+
+
+
+
+
+
+ Join our Facebook group!
+
+
+
+
+
+
+
+
+
+ Follow us on Instagram!
+
+
+
+
+
+
+
+
+ );
+}
diff --git a/pages/index.jsx b/pages/index.jsx
new file mode 100644
index 0000000..fcaa0e7
--- /dev/null
+++ b/pages/index.jsx
@@ -0,0 +1,127 @@
+import EventCarousel from "../components/carousel";
+import Layout from "../components/layout";
+import LinesSvg from "../components/lines.svg";
+import SectionBody from "../components/sectionbody";
+import SectionButton from "../components/sectionbutton";
+import SectionHead from "../components/sectionhead";
+import styles from "../styles/Home.module.css";
+
+import { useEffect } from "react";
+import Container from "react-bootstrap/Container";
+import Image from "react-bootstrap/Image";
+
+export default function Home() {
+ useEffect(() => {
+ window.onscroll = function () {
+ scrollFunction();
+ };
+
+ function scrollFunction() {
+ var pic_popup = document.getElementById("staff-pic-popup");
+ if (pic_popup != null) {
+ var offset = pic_popup.offsetTop - 250;
+ if (
+ document.body.scrollTop >= offset ||
+ document.documentElement.scrollTop >= offset
+ ) {
+ document.getElementById("staff-pic").style.visibility = "visible";
+ document.getElementById("staff-pic").style.opacity = 1;
+ } else {
+ document.getElementById("staff-pic").style.visibility = "hidden";
+ document.getElementById("staff-pic").style.opacity = 0;
+ }
+ }
+ }
+ });
+ return (
+
+
+
+
+
+
+
+
+
+
+
+ Women in Electrical and Computer Engineering
+
+
+ University of Illinois Urbana-Champaign
+
+
+
+
+
+
+
+
+
+
+
+ We are WECE
+ {" "}
+ - a student organization at the University of Illinois at
+ Urbana-Champaign dedicated to supporting women within the
+ Electrical and Computer Engineering department. We welcome members
+ of all genders to be active in the group, and we strive to build
+ communities amongst ourselves by hosting social, technical,
+ outreach, and professional events.
+
+
+
+
+
+
+
+
+
+
+ WECE has SEVEN different committees you can join and be a part of!
+ Get involved with technical projects, mentor elementary students,
+ plan fun events, and more!
+
+
+
+
+
+
+ If you are interested in learning more about WECE, fill out the
+ form below to get added to our mailing list! An email with events
+ and updates will be sent out every week.
+
- In 2002, WECE was founded to promote and inspire women in Electrical and Computer Engineering. Our objective is not only
- to encourage women to pursue a degree in ECE, but to also be a source of assistance in reaching academic and
- career goals. The WECE organization provides members with opportunities to make social connections within the
- department, advance technical skills, and network professionally.
-
-
- Involvement with WECE gives members a chance to make new friends and contacts within the department. WECE hosts a number
- of social events such as the Fall Banquet and Spring Semi Formal as well as other regular social meetings. Whether
- you are an incoming freshman or graduate student, being a part of a community of people that supports women in
- ECE is a powerful tool in furthering your personal and academic success.
-
-
- Along with the social aspect, WECE is also committed to assisting the development of our member’s technical skills. WECE
- organizes various events each year including technical workshops and tech talks by companies such as Square and
- Google. We recognize the importance of having well-rounded, technical knowledge and strive to help our members
- gain as much relevant experience as possible.
-
-
- WECE helps its members form valuable professional connections. It can sometimes be difficult to attain positions in the corporate
- world, which is why WECE makes it a priority to establish relationships with companies in order to help members
- do the same. This includes hosting guest speakers and organizing luncheons with influential people in the field
- who support women in ECE. We also work in cooperation with various companies, such as Microsoft and Goldman Sachs,
- to provide our members with as many internship and job prospects as possible.
-
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/source/html/board.html b/source/html/board.html
deleted file mode 100644
index 0f1dc3a..0000000
--- a/source/html/board.html
+++ /dev/null
@@ -1,416 +0,0 @@
-
-
-
-
-
-
- Women in ECE | University of Illinois at Urbana-Champaign
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
Meet the Board_
-
-
-
-
-
-
-
-
-
Electrical Engineering
-
Senior
-
-
About Me
-
- Spirit Animal: panda bear
-
- Hobbies: dancing, singing, and photography
-
- Favorite inspirational quote: "You're allowed to scream, you're allowed
- to cry, but do not
- give up."
-
-
-
-
-
-
Richa Vijayvergiya
-
President
-
-
-
-
-
-
-
-
-
-
Computer Engineering
-
Senior
-
-
About Me
-
- Spirit Animal: deer
-
- Hobbies: reading and watching shows on Netflix
-
- Favorite inspirational quote: “The woods are lovely, dark and deep, But I have promises
- to keep And miles to go before I sleep.”
-
-
-
-
-
-
Pooja Kankani
-
Co-Corporate Relations Vice President
-
-
-
-
-
-
-
-
-
-
Computer Engineering
-
Senior
-
-
About Me
-
- Spirit Animal: koala
-
- Hobbies: baking, guitar, rock climbing, table tennis, reading
-
- Favorite inspirational quote: "The man who fears losing has already lost. Fear cuts deeper than swords." - George R.R. Martin (A Song of Ice and Fire)
-
-
-
-
-
-
Akriti Jain
-
Co-Corporate Relations Vice President
-
-
-
-
-
-
-
-
-
-
Computer Engineering
-
Senior
-
-
About Me
-
- Spirit Animal: horse
-
- Hobbies: dancing, badminton, and traveling
-
- Favorite inspirational quote: “Every story is unique and different, not worthy of comparison”
-
-
-
-
-
-
Anusha Kandula
-
Internal Vice President
-
-
-
-
-
-
-
-
-
-
Electrical Engineering
-
Junior
-
-
About Me
-
- Spirit Animal: wolf
-
- Hobbies: biking, playing card games, and watching movies
-
- Favorite inspirational quote: “Today was good. Today was fun. Tomorrow is
- another one” –
- Dr. Seuss
- Hobbies: jamming out with friends, graphic design, and baking
-
- Favorite inspirational quote: "You are braver than you believe, stronger than you seem,
- and smarter than you think." - Winnie the Pooh
-
-
-
-
-
-
Eugenia Chen
-
Infrastructure Director
-
-
-
-
-
-
-
-
-
-
Computer Engineering
-
Senior
-
-
About Me
-
- Spirit Animal: cat
-
- Hobbies: dancing, reading, creative space organising, taking aesthetic pictures
-
- Favorite inspirational quote: “And one day she discovered that she was fierce, and strong, and full of fire, and that not even she could hold herself
- back because her passion burned brighter than her fears.” ― Mark Anthony
-
-
-
-
-
-
Aditi Panwar
-
Marketing Director
-
-
-
-
-
-
-
-
-
-
Electrical Engineering
-
Sophomore
-
-
About Me
-
- Spirit Animal: sloth
-
- Hobbies: running, coffee brewing, watching The Office
-
- Favorite inspirational quote: "Kindness is the language which the deaf can hear and the blind can see" - Mark Twain
-
-
-
-
-
-
Kelly Dunleavy
-
Mentorship Director
-
-
-
-
-
-
-
-
-
-
Electrical Engineering
-
Sophomore
-
-
About Me
-
- Spirit Animal: panda
-
- Hobbies: running
-
- Favorite inspirational quote: "You don't have to be great to start, but you have to start to be great." -Zig Ziglar
-
-
-
-
-
-
Elisa Krause
-
Outreach Director
-
-
-
-
-
-
-
-
-
-
Electrical Engineering
-
Sophomore
-
-
About Me
-
- Spirit Animal: blue whale
-
- Hobbies: cooking, running, reading
-
- Favorite inspirational quote: "A rose is a rose is a rose"
- Favorite inspirational quote: ""'You miss 100 percent of the shots you don't take'- Wayne Gretzky"-Michael Scott" - Sarah Angelbeck
-
-
-
-
-
-
-
Sarah Angelbeck
-
Technical Co-Director
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/source/html/calendar.html b/source/html/calendar.html
deleted file mode 100644
index 5446177..0000000
--- a/source/html/calendar.html
+++ /dev/null
@@ -1,87 +0,0 @@
-
-
-
-
-
- Women in ECE | University of Illinois at Urbana-Champaign
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
Events_
-
-
-
-
-
-
-
-
diff --git a/source/html/committees.html b/source/html/committees.html
deleted file mode 100644
index dd25fb0..0000000
--- a/source/html/committees.html
+++ /dev/null
@@ -1,218 +0,0 @@
-
-
-
-
-
- Women in ECE | University of Illinois at Urbana-Champaign
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
Committees_
-
-
-
- WECE has seven great committees you can join and participate in!
- Read more to find out what each of them do :) If you would like to
- join, fill out your committee preferences below!
-
- The Academic Committee organizes and hosts workshops and
- panels catered to improving academic success for ECE students.
-
-
-
-
-
-
-
Infrastructure
-
-
-
- Eugenia Chen
-
-
- The Infrastructure Commitee develops and updates the WECE
- website as well as sends weekly newsletters. In addition, we
- are always looking to improve the workflow of WECE through
- developing ways to manage our data better!
-
-
-
-
-
-
-
Marketing
-
-
-
- Aditi Panwar
-
-
- The Marketing Committee advertises WECE events and creatively
- supports the events through banners, posters and logos. We
- help expand WECE's presence on campus through social media by
- showcasing the wonderful events we have to help students
- academically, professionally and personally. We also oversee
- the design of WECE logo, apparel, newsletter and the website.
-
-
-
-
-
-
-
Mentorship
-
-
-
- Kelly Dunleavy
-
-
- The WECE Mentorship Committee strives to build a welcoming and
- supportive community within ECE! We foster mentorship through
- a Peer Mentorship Program, Lean In Discussions, a Professional
- Mentorship Program and Graduate Student mentorship.
-
-
-
-
-
-
-
Outreach
-
-
-
- Elisa Krause
-
-
- The outreach committee works with the surrounding community to
- teach kids about ECE!
-
-
-
-
-
-
-
Social
-
-
-
- Maram Safi
-
-
- Social Committee is all about fostering relationships. Whether
- those relationships are friendships or professional
- connections, we are here to get to know each other and social
- committee is a great way to do that!
-
-
-
-
-
-
-
Technical
-
-
-
- Pakhi Gupta
-
-
-
- Sarah Angelbeck
-
-
- The WECE technical committee works on a project which is
- presented at the Engineering Open House in March. The
- technical committee also organizes technical workshops to
- teach skills relevant in the industry. We aim to provide
- valuable technical experiences for promoting involvement and
- building resume.
-
-
-
-
-
-
-
-
-
-
diff --git a/source/html/contactus.html b/source/html/contactus.html
deleted file mode 100644
index 7666bec..0000000
--- a/source/html/contactus.html
+++ /dev/null
@@ -1,91 +0,0 @@
-
-
-
-
-
-
- Women in ECE | University of Illinois at Urbana-Champaign
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/source/html/e4c55894e40edfda35d3e576f9f0e7904c8728e3/ResumeBookWECE.pdf b/source/html/e4c55894e40edfda35d3e576f9f0e7904c8728e3/ResumeBookWECE.pdf
deleted file mode 100644
index cad7d2d..0000000
Binary files a/source/html/e4c55894e40edfda35d3e576f9f0e7904c8728e3/ResumeBookWECE.pdf and /dev/null differ
diff --git a/source/html/e4c55894e40edfda35d3e576f9f0e7904c8728e3/footer.html b/source/html/e4c55894e40edfda35d3e576f9f0e7904c8728e3/footer.html
deleted file mode 100644
index a365adf..0000000
--- a/source/html/e4c55894e40edfda35d3e576f9f0e7904c8728e3/footer.html
+++ /dev/null
@@ -1,14 +0,0 @@
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/source/html/e4c55894e40edfda35d3e576f9f0e7904c8728e3/navbar.html b/source/html/e4c55894e40edfda35d3e576f9f0e7904c8728e3/navbar.html
deleted file mode 100644
index 1b6663b..0000000
--- a/source/html/e4c55894e40edfda35d3e576f9f0e7904c8728e3/navbar.html
+++ /dev/null
@@ -1,63 +0,0 @@
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/source/html/e4c55894e40edfda35d3e576f9f0e7904c8728e3/resumebook.html b/source/html/e4c55894e40edfda35d3e576f9f0e7904c8728e3/resumebook.html
deleted file mode 100644
index 5ed6d00..0000000
--- a/source/html/e4c55894e40edfda35d3e576f9f0e7904c8728e3/resumebook.html
+++ /dev/null
@@ -1,70 +0,0 @@
-
-
-
-
-
-
- Women in ECE | University of Illinois at Urbana-Champaign
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
Resume Book_
-
-
-
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/source/html/events.html b/source/html/events.html
deleted file mode 100644
index 9f09984..0000000
--- a/source/html/events.html
+++ /dev/null
@@ -1,74 +0,0 @@
-
-
-
-
-
-
- Women in ECE | University of Illinois at Urbana-Champaign
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
Events_
-
-
-
Leetcode Sessions
-
Academic Committee
-
-
-
-
Peer Mentorship Craft Night
-
Mentorship Committee
-
-
-
-
Next Generation School Outreach Event
-
Outreach Committee
-
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/source/html/footer.html b/source/html/footer.html
deleted file mode 100644
index 9297339..0000000
--- a/source/html/footer.html
+++ /dev/null
@@ -1,11 +0,0 @@
-
-
-
-
-
-
diff --git a/source/html/index.html b/source/html/index.html
deleted file mode 100644
index 8806c97..0000000
--- a/source/html/index.html
+++ /dev/null
@@ -1,159 +0,0 @@
-
-
-
-
-
-
- Women in ECE | University of Illinois at Urbana-Champaign
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
Women in Electrical and Computer Engineering
-
University of Illinois Urbana-Champaign
-
-
-
-
-
-
-
-
-
About_
-
-
-
-
-
- We are WECE
- - a student organization at the University of Illinois at Urbana-Champaign dedicated to supporting women within the Electrical and Computer Engineering department. We welcome members of all genders
- to be active in the group, and we strive to build communities amongst ourselves by hosting social, technical, outreach, and professional events.
-
WECE has SEVEN different committees you can join and be a part of! Get involved with technical projects, mentor elementary students, plan fun events, and more!
If you are interested in learning more about WECE, fill out the form below to get added to our mailing list! An email with events and updates will be sent out every week.
- Come out to the first GM of the Spring Semester. We will be looking back at what we accomplished in the Fall and what we
- can look forward to in the Spring. As always, food will be provided.
-
- Learn more about the work they do at Viasat and opportunities they have to offer. Interact directly with recruiters and
- engineers from Viasat!
-
-
-
-
-
-
-
-
Next Generation School Camp Day
-
February 17, 9:30-11am OR 1:30-3pm
-
ECEB 3002
-
- Come help students build telegraphs! We'll also be teaching them how to use the telegraphs to communicate with Morse
- Code! Additional training will be necessary to volunteer; more information about the training will be posted when a date
- for the training has been decided.
-
- If you are an alumni, we would love to stay in contact with
- you! If you would like to help WECE with professional
- development and help our current members, please fill out
- this form!
-
-
-
Interested in making websites?
-
- If you are interested in helping with our WECE website or
- learning more about web applications or web design, fill out
- this form
- to get involved!
-
-
-
Sign up for committees!
-
- Sign up for the committees you would like to join
- here.
-
-
-
Resume Book
-
- If you're still looking for internships or full-time
- opportunities, submit your resume to the WECE Resume Book
- here
- to have your resume sent out to companies!
-
-
-
Join our group on Campus Groups
-
- Join WECE on campus groups to get notifications for all our
- events and to RVSP and check-in to receive membership points
- here!
-
-
-
Join our WECE Slack Workspace
-
- WECE uses Slack as a way to streamline communication between
- WECE members and committees, as well as a place for
- important announcements and upcoming events! Join our
- general channel
- here.
-
Welcome back from break! Come to our January GM to find out what WECE has been up to and what we have planned for the upcoming semester. As always, there will be free food :)
-
Come join WECE at our first Lean In of 2019 as we discuss Mental Health. We will have a group discussion about anxiety and self-care. Together, let's create a better community in ECE. All are welcome! Also,
- Maize will be provided :)
-
Grace Hopper Celebration is the world's largest gathering of women technologists. Any WECE member can apply and more than likely, if it’s done early enough, can get approved for up to $500 in support from
- the ECE department to travel to the Grace Hopper Conference.
-
-
Come to this career event for electrical engineering, computer engineering, and computer science candidates looking for full-time positions, co-ops, or internships. The event will be a relaxed and informal
- reception, where company representatives and students can mix and mingle. Please register at the link below!
-
Looking for an internship, co-op, or full-time position? Come to the spring engineering career fair! Over 200 employers will be looking for candidates with on-campus interviews happening days after this
- event.
-
See what is going on in the AI space! Companies including Google, John Deere, Synchrony and more will be presenting. Network with company representatives as well! This event is free and open to any student.
- Please register at the link below!
-
Come practice your programming skills through a series of algorithmic programming contests organized by ACM SIG-ICPC. Beginners welcome! Not to forget, we provide FREE PIZZA and $1200 prize pool for top
- 5 contestants in each division!
-
IBM would like to share development internship job opportunities which have been exclusively tagged to WECE. If you are looking for summer internships, by applying within the next two weeks, your resumes
- and application will be flagged as VIP and expedited through IBM's recruiting process.
-
Sign up for the committees you would like to join
- here.
-
-
-
-
Tune into CodeNewbie Podcast
-
CodeNewbie has joined up with Vaidehi Joshi to turn her blog series into an awesome podcast, the Basecs Podcast. They cover binary, hexes, algorithms, and more. Join them
- here for Season 3.
-
-
-
-
Join our WECE Slack Workspace
-
WECE uses Slack as a way to streamline communication between WECE members and committees, as well as a place for important announcements and upcoming events! Join our general channel
- here.
-
-
-
Resume Book
-
Career fair season is here again! If you're still looking for internships or full-time opportunities, submit your resume to the WECE Resume Book
- here to have your resume sent out to companies!
-
-
-
-
\ No newline at end of file
diff --git a/source/html/newsletterarchive/012218.html b/source/html/newsletterarchive/012218.html
deleted file mode 100644
index 6c7cce3..0000000
--- a/source/html/newsletterarchive/012218.html
+++ /dev/null
@@ -1,182 +0,0 @@
-
-
-
-
-
-
- WECE Newsletter - Month Day Year
-
-
-
-
-
-
-
-
-
-
-
-
- JANUARY 22 - 29
-
-
- NEWS
-
New Board Members
-
- Please welcome our new Spring 2018 board members!
- Treasurer: Carolyn Nye
-
- Creative Design Director: Crystal Wu
-
-
-
Tasty Thursdays Survey(0.5 points)
-
- Please fill out this form to help us decide on a new Tasty Thursday date and time for this semester!
-
-
Back to Campus Survey (0.5 points)
-
- Welcome back to campus! Please fill in this form telling us about the classes you're taking, and whether you would be interested in tutoring for the classes you have already taken in the past. You can also add any more suggestions that you have for WECE, or something you'd like to see, or bring to WECE this semester.
-
-
-
-
-
- EVENTS
-
-
January General Meeting (2 points)
-
- Come out to our first general meeting of the semester to learn how you can get more involved with WECE this spring! Enjoy some food with us, pick up a WECE shirt, and see what you can look forward to this semester. RSVP to the Facebook event herehere.
-
- Come and volunteer with WECE for a high school soldering workshop. We will be helping high school students learn how to solder and build a flashing LED heart. If you have soldering experience and would like to volunteer, please send an email to kankani2@illinois.edu
-
Deloitte Consulting Undergraduate Case Competition
-
- Are you interested in learning more about Technology, Human Capital and/or Strategy and Operations Consulting? Do you enjoy working in an interactive team to solve real-life business challenges? If so, we invite you to participate in the Deloitte Consulting Undergraduate Case Competition! Teams should consist of up to 4 current undergraduate students (freshmen or sophomores only, please). To learn more about the competition and to apply, please submit an application online here for your team by 01/24/2018.
-
-
-
-
-
Goldman Sachs Exploratory Program
-
- Goldman Sachs' exploratory programs are a great way to learn more about their people, culture, offices and business. They are designed to provide exposure to career paths available in the financial services industry and explore future opportunities. Click here to learn more about their programs.
-
-
-
-
-
9th Power and Energy Conference at Illinois (PECI)
-
- The Power and Energy Systems group at the University of Illinois at Urbana-Champaign cordially invites you to attend and present at the 9th Power and Energy Conference at Illinois (PECI) which will be held in the I-Hotel at UIUC on February 22-23, 2018. Graduate student-organized and led, PECI fosters discourse broadly across the electric power and energy disciplines which include, but are not limited to: Power Electronics, Electric Power Systems, Energy Markets, Renewable Energy Technologies, Electric Machines and Drives, System Reliability and Control. More detailed information is available here.
-
-
-
- Where: I-Hotel
-
- When: February 22nd-23rd, 2018
-
-
-
-
-
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/source/html/newsletterarchive/012319.html b/source/html/newsletterarchive/012319.html
deleted file mode 100644
index 2735c3d..0000000
--- a/source/html/newsletterarchive/012319.html
+++ /dev/null
@@ -1,1160 +0,0 @@
-
-
-
-
-
-
-
-
- WECE Announcement - January 23, 2019
-
-
-
-
-
-
Welcome back from break! Come to our January General Meeting TONIGHT to find out what WECE has been up to and what we have planned for the upcoming semester. As always, there will be free food :)
-
Sign up for the committees you would like to join
- here.
-
-
-
-
Tune into CodeNewbie Podcast
-
CodeNewbie has joined up with Vaidehi Joshi to turn her blog series into an awesome podcast, the Basecs Podcast. They cover binary, hexes, algorithms, and more. Join them
- here for Season 3.
-
-
-
-
Join our WECE Slack Workspace
-
WECE uses Slack as a way to streamline communication between WECE members and committees, as well as a place for important announcements and upcoming events! Join our general channel
- here.
-
-
-
Resume Book
-
Career fair season is here again! If you're still looking for internships or full-time opportunities, submit your resume to the WECE Resume Book
- here to have your resume sent out to companies!
-
- Tasty Tuesdays is a chill space for you to stop by hang out with friends, do homework, and of course, grab some food ;)
- Whether it's for ten minutes or two hours, drop on by! We will also have our social committee meetings there every week,
- if you would like to meet the board or plan events with us :)
-
- Learn more about the work they do at Viasat and opportunities they have to offer. Interact
- directly with recruiters and
- engineers from Viasat!
-
-
-
-
-
-
-
-
Mentorship Committee Meeting
-
January 31, 4-5pm
-
- Want to learn more about the WECE Mentorship Programs? Interested in helping plan Peer Mentorship, Professional
- Mentorship, Graduate Student Mentorship or Lean In Discussions? If so, join us! Contact kellypd2@illinois.edu with questions.
-
-
-
-
-
Technical Committee Meeting
-
February 2, 1-3pm
-
ECEB
-
- Come work on the EOH project (Robo Painter Dog) and gain hands on experience and technical skills! Join the #Technical Slack channel for more information.
-
-
-
-
-
-
-
-
WECE Galentine's Day
-
February 13, 5-7pm
-
TBA
-
- Hey Girls Hey! It's almost Valentine's Day and what better way to celebrate than with your favorite tech ladies. Come
- out and enjoy a night of laughs and love
-
- Come help students build telegraphs! We'll also be teaching them how to use the telegraphs to communicate with Morse
- Code! Additional training will be necessary to volunteer; more information about the training will be posted when a date
- for the training has been decided.
-
- The Society of Women Engineers is having a Men As Diversity Partners Event on Thursday, January 30th. There will
- be a
- panel consisting of two female and two male engineers from John Deere's Diversity Partners Program speaking on
- their
- time as students and in industry.
-
-
-
-
-
-
Research Opportunity in Computational Imaging Group
-
- Great research opportunity in the machine learning, computer vision and optimization space. More information can be
- found here at the link below (use Illinois account).
-
Bailey Undergraduate Scholarship for Cause-Driven Leadership
-
Application deadline: February 16
-
- The Bailey Undergraduate awards are $3000 awards ($1500/semester) given each year to undergraduate students at the
- University of Illinois who have demonstrated positive impact and commitment as a result of service, community
- involvement, leadership, and action. Financial need and academic achievement will also be considered. University of
- Illinois - Urbana campus undergraduate students in all programs are eligible to apply.
-
- The BridgeUP: STEM program at the AMNH is excited to announce that the application for the Helen Fellowship is now open.
- This fellowship is a one-year residency for post-baccalaureate self-identifying women to devote time immersed in
- computational scientific research and educational outreach at the AMNH. This fellowship is an initiative at the AMNH
- dedicated to increasing the diversity of the talent pipeline by providing underrepresented students access to the skills
- and tools required for the 21st Century.
-
On February 4th, 2020, ECE Pulse will be cohosting the third annual 'Women in Tech Day' with WCS and WECE. Interested in
- helping make this the best 'Women in Tech Day' yet? If so, fill out this google form to volunteer! All help is greatly
- appreciated, and we hope to see you at Women in Tech Day 2020! Please reach out to kellypd2@illinois.edu with questions.
-
-
Looking for ECE 120 and 210 UAs
-
- If you are qualified to become a UA for ECE 120 and/or 210 please email: smaddi4@illinois.edu. You would be doing office
- hours for WECE for these classes. Great for your resume!
-
-
-
Alumni Database
-
- If you are an alumni, we would love to stay in contact with
- you! If you would like to help WECE with professional
- development and help our current members, please fill out
- this form!
-
-
-
Interested in making websites?
-
- If you are interested in helping with our WECE website or
- learning more about web applications or web design, fill out
- this form
- to get involved!
-
-
-
Sign up for committees!
-
- Sign up for the committees you would like to join
- here.
-
-
-
Resume Book
-
- If you're still looking for internships or full-time
- opportunities, submit your resume to the WECE Resume Book
- here
- to have your resume sent out to companies!
-
-
-
Join our group on Campus Groups
-
- Join WECE on campus groups to get notifications for all our
- events and to RVSP and check-in to receive membership points
- here!
-
-
-
Join our WECE Slack Workspace
-
- WECE uses Slack as a way to streamline communication between
- WECE members and committees, as well as a place for
- important announcements and upcoming events! Join our
- general channel
- here.
-
Come join WECE at our first Lean In of 2019 as we discuss Mental Health. We will have a group discussion about anxiety and self-care. Together, let's create a better community in ECE. All are welcome! Also,
- Maize will be provided :)
-
Come to the Outreach committee meeting to hear about our Engineering Open House project and how you can get involved! No previous experience is necessary, and everyone is welcome to join. Please contact
- Shannon Lin at the link below for more information :)
-
Be sure to attend this HTML + CSS workshop to gain some experience in web development, learn skills to make a personal website, and enhance your resume! No previous experience required :)
-
-
-
-
-
-
Women In Tech Day
-
February 5
-
In partnership with Pulse and WCS, the 2nd annual Women In Tech Day at University of Illinois at Urbana Champaign is here! It is a celebration of accomplishments and contributions of women to the technology
- industry. This day-long event is an advocation for a strong community of support among the women in technology.
-
Mentorship Committee is looking for a Grad Liaison. Your responsibilities would include contacting graduate students in ECE and holding events such as coffee chats, presentations, and panels. Please contact
- Richa Vijayvergiya for an interview below.
-
Grace Hopper Celebration is the world's largest gathering of women technologists. Any WECE member can apply and more than likely, if it’s done early enough, can get approved for up to $500 in support from
- the ECE department to travel to the Grace Hopper Conference.
-
-
Come to this career event for electrical engineering, computer engineering, and computer science candidates looking for full-time positions, co-ops, or internships. The event will be a relaxed and informal
- reception, where company representatives and students can mix and mingle. Please register at the link below!
-
Looking for an internship, co-op, or full-time position? Come to the spring engineering career fair! Over 200 employers will be looking for candidates with on-campus interviews happening days after this
- event.
-
See what is going on in the AI space! Companies including Google, John Deere, Synchrony and more will be presenting. Network with company representatives as well! This event is free and open to any student.
- Please register at the link below!
-
Come practice your programming skills through a series of algorithmic programming contests organized by ACM SIG-ICPC. Beginners welcome! Not to forget, we provide FREE PIZZA and $1200 prize pool for top
- 5 contestants in each division!
-
IBM would like to share development internship job opportunities which have been exclusively tagged to WECE. If you are looking for summer internships, by applying within the next two weeks, your resumes
- and application will be flagged as VIP and expedited through IBM's recruiting process.
-
Sign up for the committees you would like to join
- here.
-
-
-
-
Tune into CodeNewbie Podcast
-
CodeNewbie has joined up with Vaidehi Joshi to turn her blog series into an awesome podcast, the Basecs Podcast. They cover binary, hexes, algorithms, and more. Join them
- here for Season 3.
-
-
-
-
Join our WECE Slack Workspace
-
WECE uses Slack as a way to streamline communication between WECE members and committees, as well as a place for important announcements and upcoming events! Join our general channel
- here.
-
-
-
Resume Book
-
Career fair season is here again! If you're still looking for internships or full-time opportunities, submit your resume to the WECE Resume Book
- here to have your resume sent out to companies!
-
-
-
-
\ No newline at end of file
diff --git a/source/html/newsletterarchive/012918.html b/source/html/newsletterarchive/012918.html
deleted file mode 100644
index babbf15..0000000
--- a/source/html/newsletterarchive/012918.html
+++ /dev/null
@@ -1,259 +0,0 @@
-
-
-
-
-
-
- WECE Newsletter - Month Day Year
-
-
-
-
-
-
-
-
-
-
-
-
- JANUARY 29 - FEBRUARY 5
-
-
- NEWS
-
Women in Tech (WIT) Day
-
- Come out to the first-ever Women in Tech (WIT) Day celebrations on Tuesday, January 30th! WIT Day is a joint collaboration between WCS, WECE, and Pulse and it celebrates the accomplishments of women in technology through a full day of events featuring incredible professors, students, and employees. In addition, there will be "women in tech" swag at all events! More information below
-
-
-
Spring 2018 WECE Leadership Opportunities
-
- Looking to get more involved with WECE? Apply for spring positions here! In particular, we're seeking a mentorship program lead. Everyone is welcome to apply. Applications are due on Thursday, February 1st. Contact Stephanie Wang at swang166@illinois.edu if you have any questions.
-
-
WECE Resume Book (1 point)
-
- Career fair season is coming up again! If you're still looking for internships or full-time opportunities, submit your resume to the WECE Resume Book here! This will be distributed to interested companies that reach out to WECE.
-
-
Back to School Academic Survey (1 point)
-
- Welcome back to campus! Please fill in this form telling us about the classes you're taking, and whether you would be interested in tutoring for the classes you have already taken in the past. You can also add any more suggestions that you have for WECE, or something you'd like to see, or bring to WECE this semester.
-
-
-
E-Week Interest Form
-
- EWEEK is a week-long celebration from Friday, February 16 to Saturday, February 24 that highlights the contributions to society that engineers make. If you'd be interested in joining a WECE team to participate in fun EWEEK activites, please fill out this form
-
-
-
- EVENTS
-
-
- Join WCS x WECE for a special Lean-In event where we'll discuss self-care in the technology industry and ways to support women in tech. Check out the Facebook event here.
-
- What does it feel like to be a woman in tech? Come to our lightning talks where several incredible UIUC researchers, professors, and graduate students share their stories and their work. Bring your curiosity and an open mind to see their perspective! Check out the Facebook event here.
-
- It takes more than technical knowledge to become a leader in the male-dominated tech industry. It takes a warrior's heart, weapons, and armor. In "Warrior Women", you'll hear their stories and the most important lessons they shared. Through this talk, you'll be inspired and prepared to ignite your power, reach your potential and start dreaming about the ways that you can use tech to change the world.
-
- About the Speaker: Terri Brax is the founder and CEO of TeacherCare, a national education agency, and Women Tech Founders, a leadership organization for Women in Tech. She has been published in Forbes, Chicago Women's Magazine and featured in the Tribune, Crain's and Entrepreneur Magazine, and leads volunteer activities for Children's Charities with her family. Check out the Facebook event here.
-
- If you were there at last semester's Android Development workshop, come out to this next one to build upon what you've already learned. If you weren't there, come out anyway and gain mobile development experience! Topic is yet to be determined, but will definitely be new!
-
- Hack Illinois is just around the corner! It's the perfect time to learn how to set up and use a Raspberry Pi. Join us in this workshop tailored to help you get started on the coolest hack yet. Attendees will have a chance to win a Raspberry Pi!
-
- Pulse is an annual student-run conference held at Illinois that showcases innovation in electrical and computer engineering technologies that starts on January 29th. During this year’s conference, PULSE will be hosting a set of competitions that you can compete in for a chance to win some great prizes. The first prompt will be an ideathon hosted by Texas Instruments, and the second prompt will be a design competition hosted by us. Both competitions will run during the week of the conference. For more info, visit pulse.ece.illinois.edu.
-
-
-
-
-
Capital One Tabling
-
- Come meet our engineers over coffee, bagels, and snacks. Learn how Capital One is transforming into a cutting edge technology company - and maybe even pick up some cool swag!
-
-
- Where: Siebel Center Lobby
-
- When: Tuesday, January 30th 10:00AM-2:00PM
-
-
-
-
-
Capital One Tech Talk
-
- With events such as the Equifax breach, the Target takeover, and all the information we have about ourselves online, identity fraud is an increasing problem in the financial industry. To combat this, Capital One has developed a Machine Learning Framework to detect fraudsters. Using parallel processing, machine learning models, and an actor system, we are able to make real time decisions. Come learn how fraud happens, how to think through design decisions, and investigate new technology such as AKKA, Scala, and Docker. Dinner will be provided!
-
- This semester, EXPO and ECS are working together organize one Engineering Career Fair. We have over 200 companies already registered! This career fair will be taking place from Feb. 6 - Feb. 8. In order for this event to be successful for both students and companies alike, we need your help! Students will assist staff with the execution of the Spring 2018 Engineering Career Fair. There are a variety of tasks that students can volunteer for to ensure the Engineering Career Fair runs smoothly. Students will have the opportunity to connect with employers before, during and after the fair! If you have community service requirements to fulfill, this is a great opportunity to do so! Students can sign up here.
-
-
-
Southwest Research Institute Job Openings
-
- Southwest Research Institute, founded in 1947, is an independent, nonprofit, applied engineering and physical sciences research and development organization dedicated to technology development and transfer. As an international center of excellence in applied research, SwRI® employs highly skilled and trained personnel and offers opportunities for bachelor, master and doctoral level scientists and engineers as well as a large summer internship program. Additionally, they offer entry level and experienced clerical positions and technical support opportunities for individuals with craft, electronics, chemistry, and mechanical skills. Southwest Research Institute has a vigorous recruitment program and they will be visiting UIUC for the career fair on February 7th and follow up on-campus interviews with students February 8th.
-
-
-
Goldman Sachs Exploratory Program
-
- Goldman Sachs' exploratory programs are a great way to learn more about their people, culture, offices and business. They are designed to provide exposure to career paths available in the financial services industry and explore future opportunities. Click here to learn more about their programs.
-
-
-
9th Power and Energy Conference at Illinois (PECI)
-
- The Power and Energy Systems group at the University of Illinois at Urbana-Champaign cordially invites you to attend and present at the 9th Power and Energy Conference at Illinois (PECI) which will be held in the I-Hotel at UIUC on February 22-23, 2018. Graduate student-organized and led, PECI fosters discourse broadly across the electric power and energy disciplines which include, but are not limited to: Power Electronics, Electric Power Systems, Energy Markets, Renewable Energy Technologies, Electric Machines and Drives, System Reliability and Control. More detailed information is available here.
-
-
- Where: I-Hotel
-
- When: February 22nd-23rd, 2018
-
-
-
CS@Illinois Sail
-
- Sail is an event that brings high school students to experience CS@ILLINOIS for a day, and it needs students like YOU to teach awesome classes! Register as a teacher online here.
-
-
-
-
-
-
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/source/html/newsletterarchive/020219.html b/source/html/newsletterarchive/020219.html
deleted file mode 100644
index 908d506..0000000
--- a/source/html/newsletterarchive/020219.html
+++ /dev/null
@@ -1,1223 +0,0 @@
-
-
-
-
-
-
-
-
- WECE Announcement - February 2, 2019
-
-
-
-
-
-
The second annual 'Women in Tech Day' is coming up on Tuesday, February 5th! Created through a collaboration between Pulse, WECE, and WCS, 'Women in Tech Day' is a day dedicated towards celebrating the accomplishments
- of women in technology and research. We aim to bring together bright minds through a variety of events to foster inspiration and celebration about gender diversity and provoke conversations that matter. Our 'Women
- in Tech Day' events this year include a networking luncheon, Lean-in session, lightning talks, and a keynote. Links to the Facebook events are included below.
-
-
-
-
-
Networking Luncheon
-
February 5th, 11am-1pm
-
EECEB 3002
-
Come out to the Women in Tech (WIT) Networking Luncheon where prominent women in STEM from the industry and the university will be networking with students over lunch. Food will be provided.
-
Join us for a special Lean-In event where we will be having casual discussions with prominent women in STEM about how to build strong communities and ways to support women. Snacks will be provided.
-
Join us for our lightning talks where several incredible industry professionals and researchers share their stories and their work. Bring your curiosity and an open mind to see their perspective! Look forward
- to our distinguished speakers:
- Holly Wilper (Manager in Systems Software Engineering at Nvidia)
- Ritu Raman (AAAS L’Oréal USA For Women in Science postdoctoral fellow at MIT, Forbes 30 Under 30 for Science)
- KC Lemson (Senior Director of Program Managers at Microsoft)
-
Join us for the Women in Tech Day keynote with Laura Butler, the VP of OneNote and first female Technical Fellow at Microsoft. Come hear insider stories, useful suggestions, and bad-ass Jedi mind-meld tricks
- that will help you to become a world-class technologist. It begins with what engineering is really about and why you are uniquely set up to innovate and succeed. Be prepared to laugh, learn, be energized,
- and leave motivated. Dinner will be provided.
-
Sign up for the committees you would like to join
- here.
-
-
-
-
Tune into CodeNewbie Podcast
-
CodeNewbie has joined up with Vaidehi Joshi to turn her blog series into an awesome podcast, the Basecs Podcast. They cover binary, hexes, algorithms, and more. Join them
- here for Season 3.
-
-
-
-
Join our WECE Slack Workspace
-
WECE uses Slack as a way to streamline communication between WECE members and committees, as well as a place for important announcements and upcoming events! Join our general channel
- here.
-
-
-
Resume Book
-
Career fair season is here again! If you're still looking for internships or full-time opportunities, submit your resume to the WECE Resume Book
- here to have your resume sent out to companies!
-
- Come out to Women in Tech Day co-hosted by WECE, WCS, and Pulse! This year's events are:
-
-
- Networking Luncheon: 11am-1pm at ECEB 3002
-
- Prominent women in STEM from the industry and the university will be networking with students over lunch. Food will be
- provided. No registration is needed. Feel free to come in casual attire.
-
- Lean-In "Challenging Gender Bias": 2-3pm at ECEB 3002
-
- Come to discuss gender bias and how to properly combat it. Food will be provided.
-
- Lightning Talks: 3:30-5pm at ECEB 1015
-
- Come hear several incredible industry professionals and researchers who will be sharing their stories and their work.
-
- Keynote: 5-7pm at ECEB 3002
-
- Shobana Radhakrishnan, Director of Engineering, Android TV at Google will be speaking.
-
-
-
-
-
-
-
-
Tasty Tuesdays
-
February 4, 2-3pm
-
ECEB 2015
-
- Tasty Tuesdays is a chill space for you to stop by hang out with friends, do homework, and
- of course, grab some food ;)
- Whether it's for ten minutes or two hours, drop on by! We will also have our social
- committee meetings there every week,
- if you would like to meet the board or plan events with us :)
-
- Want to learn more about the WECE Mentorship Programs? Interested in helping plan Peer
- Mentorship, Professional
- Mentorship, Graduate Student Mentorship or Lean In Discussions? If so, join us! Contact
- kellypd2@illinois.edu with questions.
-
-
-
-
-
Technical Committee Meeting
-
February 9, 1-3pm
-
ECEB
-
- Come work on the EOH project (Robo Painter Dog) and gain hands on experience and technical
- skills! Join the #Technical Slack channel for more information.
-
-
-
-
-
-
-
-
WECE Lean In: Healthy Relationships
-
February 12, 4-5:30pm
-
ECEB 2013
-
- Come join WECE for our Healthy Relationships Lean In! Lean Ins are a safe space for group discussion to create
- a supportive community in ECE. Come to discuss and learn how to maintain or develop healthy relationships
- with your peers! All are welcome!
-
- Hey Girls Hey! It's almost Valentine's Day and what better way to celebrate than with your
- favorite tech ladies. Come
- out and enjoy a night of laughs and love
-
- Join Peer Mentorship at our first event of the semester! This is an opportunity to meet everyone else involved in the
- program. Come and play games, eat food, and hang with some really great people!
-
WECE is holding office hours for ECE 220! We are also looking for a UA for ECE 120 and/or 210. Please email
- smaddi4@illinois.edu if you are interested.
-
-
-
-
-
-
-
-
Next Generation School Camp Day
-
February 17, 9:30-11am OR 1:30-3pm
-
ECEB 3002
-
- Come help students build telegraphs! We'll also be teaching them how to use the telegraphs
- to communicate with Morse
- Code! Additional training will be necessary to volunteer; more information about the
- training will be posted when a date
- for the training has been decided.
-
- The Nexus Fellowship at DE Shaw & Co is a unique program that gives students insight into our firm and industry.
- Over three days in March at our New York City headquarters, fellows will participate in
- interactive case studies and seminars led by notable speakers and the firm’s analysts. They’ll also spend time with
- senior leaders of the firm, discuss career paths in finance with recent hires and long-tenured employees, and develop
- relationships with students from schools around the country. We provide a $1,500 stipend, accommodations, and travel to
- and from New York City to ensure an immersive experience at our firm.
-
Research Opportunity in Computational Imaging Group
-
- Great research opportunity in the machine learning, computer vision and optimization space.
- More information can be
- found here at the link below (use Illinois account).
-
Bailey Undergraduate Scholarship for Cause-Driven Leadership
-
Application deadline: February 16
-
- The Bailey Undergraduate awards are $3000 awards ($1500/semester) given each year to
- undergraduate students at the
- University of Illinois who have demonstrated positive impact and commitment as a result of
- service, community
- involvement, leadership, and action. Financial need and academic achievement will also be
- considered. University of
- Illinois - Urbana campus undergraduate students in all programs are eligible to apply.
-
- The BridgeUP: STEM program at the AMNH is excited to announce that the application for the
- Helen Fellowship is now open.
- This fellowship is a one-year residency for post-baccalaureate self-identifying women to
- devote time immersed in
- computational scientific research and educational outreach at the AMNH. This fellowship is
- an initiative at the AMNH
- dedicated to increasing the diversity of the talent pipeline by providing underrepresented
- students access to the skills
- and tools required for the 21st Century.
-
On February 4th, 2020, ECE Pulse will be cohosting the third annual 'Women in Tech Day' with WCS
- and WECE. Interested in
- helping make this the best 'Women in Tech Day' yet? If so, fill out this google form to volunteer! All help is greatly
- appreciated, and we hope to see you at Women in Tech Day 2020! Please reach out to
- kellypd2@illinois.edu with questions.
-
-
Looking for ECE 120 and 210 UAs
-
- If you are qualified to become a UA for ECE 120 and/or 210 please email: smaddi4@illinois.edu. You
- would be doing office
- hours for WECE for these classes. Great for your resume!
-
-
-
Alumni Database
-
- If you are an alumni, we would love to stay in contact with
- you! If you would like to help WECE with professional
- development and help our current members, please fill out
- this form!
-
-
-
Interested in making websites?
-
- If you are interested in helping with our WECE website or
- learning more about web applications or web design, fill out
- this form
- to get involved!
-
-
-
Sign up for committees!
-
- Sign up for the committees you would like to join
- here.
-
-
-
Resume Book
-
- If you're still looking for internships or full-time
- opportunities, submit your resume to the WECE Resume Book
- here
- to have your resume sent out to companies!
-
-
-
Join our group on Campus Groups
-
- Join WECE on campus groups to get notifications for all our
- events and to RVSP and check-in to receive membership points
- here!
-
-
-
Join our WECE Slack Workspace
-
- WECE uses Slack as a way to streamline communication between
- WECE members and committees, as well as a place for
- important announcements and upcoming events! Join our
- general channel
- here.
-
Be sure to attend this HTML + CSS workshop to gain some experience in web development, learn skills to make a personal website, and enhance your resume! No previous experience required :) Insomnia cookies
- provided!
-
Interested in getting involved with Engineering Open House? Come out to see what Outreach has planned for an interactive project - no previous experience is necessary, and everyone is welcome to join. Please
- contact Shannon Lin at the link below for more information :)
-
In partnership with Pulse and WCS, the 2nd annual Women In Tech Day at University of Illinois at Urbana Champaign is here! It is a celebration of accomplishments and contributions of women to the technology
- industry. This day-long event is an advocation for a strong community of support among the women in technology.
-
This session will help you with questions asked on technical interviews by most top companies! You will gain worthy coding experience as we will be going over these questions and discussing the concepts
- and algorithms behind them. Insomnia cookies provided!
-
-
Last semester's WECE Wednesdays are back in the form of Foodie Fridays! This week, join us for some chips and dip to ring in the new semester! Stop by and hang out with friends, do homework, and of course,
- grab some food ;) Whether it's for ten minutes or two hours, drop on by!
-
WECE is holding office hours for ECE 120 and 220 starting this week with a CA (Gauri Konanoor)!
-
-
-
-
-
-
-
-
Grad Liaison Chair Opening, Mentorship Committee
-
Mentorship Committee is looking for a Grad Liaison. Your responsibilities would include contacting graduate students in ECE and holding events such as coffee chats, presentations, and panels. Please contact
- Richa Vijayvergiya for an interview below.
-
Grace Hopper Celebration is the world's largest gathering of women technologists. Any WECE member can apply and more than likely, if it’s done early enough, can get approved for up to $500 in support from
- the ECE department to travel to the Grace Hopper Conference.
-
-
See what is going on in the AI space! Companies including Google, John Deere, Synchrony and more will be presenting. Network with company representatives as well! This event is free and open to any student.
- Please register at the link below!
-
Come practice your programming skills through a series of algorithmic programming contests organized by ACM SIG-ICPC. Beginners welcome! Not to forget, we provide FREE PIZZA and $1200 prize pool for top
- 5 contestants in each division!
-
HackIllinois 2019 is just one month away! Apply now at hackillinois.org for your chance to contribute to open source projects like NPM, Node.js, and Rust with amazing mentors. Hope to see you there!
-
Sign up for the committees you would like to join
- here.
-
-
-
-
Tune into CodeNewbie Podcast
-
CodeNewbie has joined up with Vaidehi Joshi to turn her blog series into an awesome podcast, the Basecs Podcast. They cover binary, hexes, algorithms, and more. Join them
- here for Season 3.
-
-
-
-
Join our WECE Slack Workspace
-
WECE uses Slack as a way to streamline communication between WECE members and committees, as well as a place for important announcements and upcoming events! Join our general channel
- here.
-
-
-
Resume Book
-
Career fair season is here again! If you're still looking for internships or full-time opportunities, submit your resume to the WECE Resume Book
- here to have your resume sent out to companies!
-
-
-
-
\ No newline at end of file
diff --git a/source/html/newsletterarchive/020518.html b/source/html/newsletterarchive/020518.html
deleted file mode 100644
index 5ee657f..0000000
--- a/source/html/newsletterarchive/020518.html
+++ /dev/null
@@ -1,248 +0,0 @@
-
-
-
-
-
-
- WECE Newsletter - Month Day Year
-
-
-
-
-
-
-
-
-
-
-
-
- FEBRUARY 5 - 12
-
-
- NEWS
-
-
- Career fair season is here again! If you're still looking for internships or full-time opportunities, submit your resume to the WECE Resume Book here to have your resume sent out to companies!
-
-
-
E-Week Interest Form
-
- EWEEK is a week-long celebration from Friday, February 16 to Saturday, February 24 that highlights the contributions to society that engineers make. If you'd be interested in joining a WECE team to participate in fun EWEEK activites, please fill out this form.
-
-
-
-
-
-
- EVENTS
-
-
Technical Committee Meeting (2 points)
-
- Come out to our technical committee meeting to help plan tech workshops and gain resume-worthy technical experience through completing hardware and software-centered projects with WECE!
-
- If you were there at last semester's Android Development workshop, come out to this next one to build upon what you've already learned. If you weren't there, come out anyway and gain mobile development experience!
-
- Hack Illinois is just around the corner! It's the perfect time to learn how to set up and use a Raspberry Pi. Join us in this workshop tailored to help you get started on the coolest hack yet. Attendees will have a chance to win a Raspberry Pi!
-
- It takes more than technical knowledge to become a leader in the male-dominated tech industry. It takes a warrior's heart, weapons, and armor. In "Warrior Women", you'll hear their stories and the most important lessons they shared. Through this talk, you'll be inspired and prepared to ignite your power, reach your potential and start dreaming about the ways that you can use tech to change the world.
-
- About the Speaker: Terri Brax is the founder and CEO of TeacherCare, a national education agency, and Women Tech Founders, a leadership organization for Women in Tech. She has been published in Forbes, Chicago Women's Magazine and featured in the Tribune, Crain's and Entrepreneur Magazine, and leads volunteer activities for Children's Charities with her family. Check out the Facebook event here.
-
- If you were there at last semester's Android Development workshop, come out to this next one to build upon what you've already learned. If you weren't there, come out anyway and gain mobile development experience! Topic is yet to be determined, but will definitely be new!
-
- Hack Illinois is just around the corner! It's the perfect time to learn how to set up and use a Raspberry Pi. Join us in this workshop tailored to help you get started on the coolest hack yet. Attendees will have a chance to win a Raspberry Pi!
-
- Pulse is an annual student-run conference held at Illinois that showcases innovation in electrical and computer engineering technologies that starts on January 29th. During this year’s conference, PULSE will be hosting a set of competitions that you can compete in for a chance to win some great prizes. The first prompt will be an ideathon hosted by Texas Instruments, and the second prompt will be a design competition hosted by us. Both competitions will run during the week of the conference. For more info, visit pulse.ece.illinois.edu.
-
-
-
-
-
Capital One Tabling
-
- Come meet our engineers over coffee, bagels, and snacks. Learn how Capital One is transforming into a cutting edge technology company - and maybe even pick up some cool swag!
-
-
- Where: Siebel Center Lobby
-
- When: Tuesday, January 30th 10:00AM-2:00PM
-
-
-
-
-
Capital One Tech Talk
-
- With events such as the Equifax breach, the Target takeover, and all the information we have about ourselves online, identity fraud is an increasing problem in the financial industry. To combat this, Capital One has developed a Machine Learning Framework to detect fraudsters. Using parallel processing, machine learning models, and an actor system, we are able to make real time decisions. Come learn how fraud happens, how to think through design decisions, and investigate new technology such as AKKA, Scala, and Docker. Dinner will be provided!
-
- This semester, EXPO and ECS are working together organize one Engineering Career Fair. We have over 200 companies already registered! This career fair will be taking place from Feb. 6 - Feb. 8. In order for this event to be successful for both students and companies alike, we need your help! Students will assist staff with the execution of the Spring 2018 Engineering Career Fair. There are a variety of tasks that students can volunteer for to ensure the Engineering Career Fair runs smoothly. Students will have the opportunity to connect with employers before, during and after the fair! If you have community service requirements to fulfill, this is a great opportunity to do so! Students can sign up here.
-
-
-
Southwest Research Institute Job Openings
-
- Southwest Research Institute, founded in 1947, is an independent, nonprofit, applied engineering and physical sciences research and development organization dedicated to technology development and transfer. As an international center of excellence in applied research, SwRI® employs highly skilled and trained personnel and offers opportunities for bachelor, master and doctoral level scientists and engineers as well as a large summer internship program. Additionally, they offer entry level and experienced clerical positions and technical support opportunities for individuals with craft, electronics, chemistry, and mechanical skills. Southwest Research Institute has a vigorous recruitment program and they will be visiting UIUC for the career fair on February 7th and follow up on-campus interviews with students February 8th.
-
-
-
Goldman Sachs Exploratory Program
-
- Goldman Sachs' exploratory programs are a great way to learn more about their people, culture, offices and business. They are designed to provide exposure to career paths available in the financial services industry and explore future opportunities. Click here to learn more about their programs.
-
-
-
9th Power and Energy Conference at Illinois (PECI)
-
- The Power and Energy Systems group at the University of Illinois at Urbana-Champaign cordially invites you to attend and present at the 9th Power and Energy Conference at Illinois (PECI) which will be held in the I-Hotel at UIUC on February 22-23, 2018. Graduate student-organized and led, PECI fosters discourse broadly across the electric power and energy disciplines which include, but are not limited to: Power Electronics, Electric Power Systems, Energy Markets, Renewable Energy Technologies, Electric Machines and Drives, System Reliability and Control. More detailed information is available here.
-
-
- Where: I-Hotel
-
- When: February 22nd-23rd, 2018
-
-
-
CS@Illinois Sail
-
- Sail is an event that brings high school students to experience CS@ILLINOIS for a day, and it needs students like YOU to teach awesome classes! Register as a teacher online here.
-
-
-
-
-
-
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/source/html/newsletterarchive/021020.html b/source/html/newsletterarchive/021020.html
deleted file mode 100644
index ae7731e..0000000
--- a/source/html/newsletterarchive/021020.html
+++ /dev/null
@@ -1,1559 +0,0 @@
-
-
-
-
-
-
-
-
- WECE Newsletter: February 10, 2020
-
-
-
-
-
-
- Tasty Tuesdays is a chill space for you to stop by hang out with friends, do homework, and
- of course, grab some food ;)
- Whether it's for ten minutes or two hours, drop on by! We will also have our social
- committee meetings there every week,
- if you would like to meet the board or plan events with us :)
-
- Come join WECE for our Healthy Relationships Lean In! Lean Ins are a safe space for group discussion to create
- a supportive community in ECE. Come to discuss and learn how to maintain or develop healthy relationships
- with your peers! All are welcome!
-
WECE is holding office hours for ECE 220! We are also looking for a UA for ECE 120 and/or 210. Please email
- smaddi4@illinois.edu if you are interested.
-
-
-
-
-
-
WECE Galentine's Day
-
February 13, 5-7pm
-
TBA
-
- Hey Girls Hey! It's almost Valentine's Day and what better way to celebrate than with your
- favorite tech ladies. Come
- out and enjoy a night of laughs and love
-
- Want to learn more about the WECE Mentorship Programs? Interested in helping plan Peer
- Mentorship, Professional
- Mentorship, Graduate Student Mentorship or Lean In Discussions? If so, join us! Contact
- kellypd2@illinois.edu with questions.
-
-
-
-
-
-
-
Technical Committee Meeting
-
February 16, 1-3pm
-
ECEB
-
- Come work on the EOH project (Robo Painter Dog) and gain hands on experience and technical
- skills! Join the #Technical Slack channel for more information.
-
-
-
-
-
-
Next Generation School Camp Day
-
February 17, 9:30-11am OR 1:30-3pm
-
ECEB 3002
-
- Come help students build telegraphs! We'll also be teaching them how to use the telegraphs
- to communicate with Morse
- Code! No training is necessary!
-
- Come join the WECE Exec board to learn and discuss fun topics for personal and professional growth! This week we are
- talking about time management. Food will be provided!
-
- Join Peer Mentorship at our first event of the semester! This is an opportunity to meet everyone else involved in
- the
- program. Come and play games, eat food, and hang with some really great people!
-
- Learn more about RISE, Capgemini's Summer leadership program, over casual conversation and breakfast!
-
-
-
-
-
-
Getting to Know Research Park
-
February 24, 12-1:30pm
-
- Want to get to know the Research Park Employers? Maybe you want to learn the ins and outs about getting a job at
- research park? Come to our event where you can ask the employers at RP any questions you want AND get a chance to
- network with them. Free lunch will also be served!
-
- The Nexus Fellowship at DE Shaw & Co is a unique program that gives students insight into our firm and industry.
- Over three days in March at our New York City headquarters, fellows will participate in
- interactive case studies and seminars led by notable speakers and the firm’s analysts. They’ll also spend time with
- senior leaders of the firm, discuss career paths in finance with recent hires and long-tenured employees, and develop
- relationships with students from schools around the country. We provide a $1,500 stipend, accommodations, and travel to
- and from New York City to ensure an immersive experience at our firm.
-
Bailey Undergraduate Scholarship for Cause-Driven Leadership
-
Application deadline: February 16
-
- The Bailey Undergraduate awards are $3000 awards ($1500/semester) given each year to
- undergraduate students at the
- University of Illinois who have demonstrated positive impact and commitment as a result of
- service, community
- involvement, leadership, and action. Financial need and academic achievement will also be
- considered. University of
- Illinois - Urbana campus undergraduate students in all programs are eligible to apply.
-
- The BridgeUP: STEM program at the AMNH is excited to announce that the application for the
- Helen Fellowship is now open.
- This fellowship is a one-year residency for post-baccalaureate self-identifying women to
- devote time immersed in
- computational scientific research and educational outreach at the AMNH. This fellowship is
- an initiative at the AMNH
- dedicated to increasing the diversity of the talent pipeline by providing underrepresented
- students access to the skills
- and tools required for the 21st Century.
-
- If you are qualified to become a UA for ECE 120 and/or 210 please email: smaddi4@illinois.edu. You
- would be doing office
- hours for WECE for these classes. Great for your resume!
-
-
-
Alumni Database
-
- If you are an alumni, we would love to stay in contact with
- you! If you would like to help WECE with professional
- development and help our current members, please fill out
- this form!
-
-
-
Interested in making websites?
-
- If you are interested in helping with our WECE website or
- learning more about web applications or web design, fill out
- this form
- to get involved!
-
-
-
Sign up for committees!
-
- Sign up for the committees you would like to join
- here.
-
-
-
Resume Book
-
- If you're still looking for internships or full-time
- opportunities, submit your resume to the WECE Resume Book
- here
- to have your resume sent out to companies!
-
-
-
Join our group on Campus Groups
-
- Join WECE on campus groups to get notifications for all our
- events and to RVSP and check-in to receive membership points
- here!
-
-
-
Join our WECE Slack Workspace
-
- WECE uses Slack as a way to streamline communication between
- WECE members and committees, as well as a place for
- important announcements and upcoming events! Join our
- general channel
- here.
-
Interested in getting involved with Engineering Open House? Come out to see what Outreach has planned for an interactive project - no previous experience is necessary, and everyone is welcome to join. Please
- contact Shannon Lin at the link below for more information :)
-
Need a date for Valentines? Come be ours! For reference, we enjoy dogs, chocolate, and long walks on the beach ;) Bring your girl friends and join us for a showing of Legally Blonde! Chocolate, snacks, and
- great company provided ❤️💝💖
-
Foodie Fridays is a chill space for you to stop by hang out with friends, do homework, and of course, grab some food ;) Whether it's for ten minutes or two hours, drop on by!
-
WECE is holding office hours for ECE 120 and 220 starting this week with a CA (Gauri Konanoor)!
-
-
-
-
-
-
-
-
WECE Lean In: Impostor Syndrome
-
February 27, 5-6:30pm
-
ECEB 2013
-
Come join WECE for our February Lean In as we discuss Impostor Syndrome! Lean Ins are group discussions about the set topic. They're purpose is to help you talk to your peers to create a better community
- in ECE. For this Lean In, WECE is focusing on Impostor Syndrome!
-
Mentorship Committee is looking for a Grad Liaison. Your responsibilities would include contacting graduate students in ECE and holding events such as coffee chats, presentations, and panels. Please contact
- Richa Vijayvergiya for an interview below.
-
Grace Hopper Celebration is the world's largest gathering of women technologists. Any WECE member can apply and more than likely, if it’s done early enough, can get approved for up to $500 in support from
- the ECE department to travel to the Grace Hopper Conference.
-
-
See what is going on in the AI space! Companies including Google, John Deere, Synchrony and more will be presenting. Network with company representatives as well! This event is free and open to any student.
- Please register at the link below!
-
Come practice your programming skills through a series of algorithmic programming contests organized by ACM SIG-ICPC. Beginners welcome! Not to forget, we provide FREE PIZZA and $1200 prize pool for top
- 5 contestants in each division!
-
HackIllinois 2019 is just one month away! Apply now at hackillinois.org for your chance to contribute to open source projects like NPM, Node.js, and Rust with amazing mentors. Hope to see you there!
-
Sign up for the committees you would like to join
- here.
-
-
-
-
Tune into CodeNewbie Podcast
-
CodeNewbie has joined up with Vaidehi Joshi to turn her blog series into an awesome podcast, the Basecs Podcast. They cover binary, hexes, algorithms, and more. Join them
- here for Season 3.
-
-
-
-
Join our WECE Slack Workspace
-
WECE uses Slack as a way to streamline communication between WECE members and committees, as well as a place for important announcements and upcoming events! Join our general channel
- here.
-
-
-
Resume Book
-
Career fair season is here again! If you're still looking for internships or full-time opportunities, submit your resume to the WECE Resume Book
- here to have your resume sent out to companies!
-
Interested in getting involved with Engineering Open House? Come out to see what Outreach has planned for an interactive project - no previous experience is necessary, and everyone is welcome to join. Please
- contact Shannon Lin at the link below for more information :)
-
Connect with mentors and mentees in WECE's peer mentorship program in a relaxed, one-on-one session. If you are not in peer mentorship and are interested in joining, feel free to come as well! We will have
- coffee and other food items.
-
Foodie Fridays is a chill space for you to stop by hang out with friends, do homework, and of course, grab some food ;) Whether it's for ten minutes or two hours, drop on by!
-
WECE is holding office hours for ECE 120 and 220 this week with a CA (Gauri Konanoor)!
-
-
-
-
-
-
-
-
WECE Lean In: Impostor Syndrome
-
February 27, 5-6:30pm
-
ECEB 2013
-
Come join WECE for our February Lean In as we discuss Impostor Syndrome! Lean Ins are group discussions about the set topic. They're purpose is to help you talk to your peers to create a better community in
- ECE. For this Lean In, WECE is focusing on Impostor Syndrome!
-
Jump Labs has partnered up with WECE to organize a tour in research park and give you a chance to interact with the director, and others working in Jump. Please fill out the interest form below if you are interested
- in learning more! Food will be provided :)
-
Mentorship Committee is looking for a Grad Liaison. Your responsibilities would include contacting graduate students in ECE and holding events such as coffee chats, presentations, and panels. Please contact
- Richa Vijayvergiya for an interview below.
-
Grace Hopper Celebration is the world's largest gathering of women technologists. Any WECE member can apply and more than likely, if it’s done early enough, can get approved for up to $500 in support from the
- ECE department to travel to the Grace Hopper Conference.
-
-
See what is going on in the AI space! Companies including Google, John Deere, Synchrony and more will be presenting. Network with company representatives as well! This event is free and open to any student.
- Please register at the link below!
-
Come practice your programming skills through a series of algorithmic programming contests organized by ACM SIG-ICPC. Beginners welcome! Not to forget, we provide FREE PIZZA and $1200 prize pool for top 5 contestants
- in each division!
-
Sign up for the committees you would like to join
- here.
-
-
-
-
Tune into CodeNewbie Podcast
-
CodeNewbie has joined up with Vaidehi Joshi to turn her blog series into an awesome podcast, the Basecs Podcast. They cover binary, hexes, algorithms, and more. Join them
- here for Season 3.
-
-
-
-
Join our WECE Slack Workspace
-
WECE uses Slack as a way to streamline communication between WECE members and committees, as well as a place for important announcements and upcoming events! Join our general channel
- here.
-
-
-
Resume Book
-
Career fair season is here again! If you're still looking for internships or full-time opportunities, submit your resume to the WECE Resume Book
- here to have your resume sent out to companies!
-
- Tasty Tuesdays is a chill space for you to stop by hang out with friends, do homework, and
- of course, grab some food ;)
- Whether it's for ten minutes or two hours, drop on by! We will also have our social
- committee meetings there every week,
- if you would like to meet the board or plan events with us :)
-
- BP is hosting a tech talk on Campus! Their VP for Digital Transformation will be on campus on February 18th and will be
- giving a talk in the ECEB about BP's aims and ambitions this year! Don't miss this great networking opportunity. Food
- will be provided!
-
- Join Peer Mentorship at our first event of the semester! This is an opportunity to meet
- everyone else involved in
- the
- program. Come and play games, eat food, and hang with some really great people!
-
WECE is holding office hours for ECE 220! We are also looking for a UA for ECE 120 and/or
- 210. Please email
- smaddi4@illinois.edu if you are interested.
-
- Want to learn more about the WECE Mentorship Programs? Interested in helping plan Peer
- Mentorship, Professional
- Mentorship, Graduate Student Mentorship or Lean In Discussions? If so, join us! Contact
- kellypd2@illinois.edu with questions.
-
-
-
-
-
-
-
Technical Committee Meeting
-
February 23, 1-3pm
-
ECEB
-
- Come work on the EOH project (Robo Painter Dog) and gain hands on experience and technical
- skills! Join the #Technical Slack channel for more information.
-
-
-
-
-
-
-
-
Skyworks Solutions, Inc. Tech Talk & Interviews
-
February 24, 5:30-6:30pm
-
ECEB 1013
-
- Skyworks Solutions, Inc representatives will be on campus to talk about the company, their technologies and
- career
- opportunities that they have! They will be interviewing candidates the next day and the tech talk and networking
- time
- after might be a great opportunity to get an interview! Please carry your resume if you're interested. Food will
- be
- provided!
-
- Come out to our February GM! Learn all about our upcoming events and what we have been up to this semester, as well as
- how to get more involved. Food from Maize will be provided!
-
- Want to nail your tech interviews?
-
- Want a head start on LeetCode practice?
-
- Then come out!!!!
-
- An upperclassman will teach you basic strategies and algorithms
- commonly asked by most Fortune 500 companies.
-
- No experience required!
-
- Learn more about RISE, Capgemini's Summer leadership program, over casual conversation and
- breakfast!
-
-
-
-
-
-
Getting to Know Research Park
-
February 24, 12-1:30pm
-
- Want to get to know the Research Park Employers? Maybe you want to learn the ins and outs
- about getting a job at
- research park? Come to our event where you can ask the employers at RP any questions you
- want AND get a chance to
- network with them. Free lunch will also be served!
-
- The BridgeUP: STEM program at the AMNH is excited to announce that the application for the
- Helen Fellowship is now open.
- This fellowship is a one-year residency for post-baccalaureate self-identifying women to
- devote time immersed in
- computational scientific research and educational outreach at the AMNH. This fellowship is
- an initiative at the AMNH
- dedicated to increasing the diversity of the talent pipeline by providing underrepresented
- students access to the skills
- and tools required for the 21st Century.
-
- If you are qualified to become a UA for ECE 120 and/or 210 please email: smaddi4@illinois.edu. You
- would be doing office
- hours for WECE for these classes. Great for your resume!
-
-
-
Alumni Database
-
- If you are an alumni, we would love to stay in contact with
- you! If you would like to help WECE with professional
- development and help our current members, please fill out
- this form!
-
-
-
Interested in making websites?
-
- If you are interested in helping with our WECE website or
- learning more about web applications or web design, fill out
- this form
- to get involved!
-
-
-
Sign up for committees!
-
- Sign up for the committees you would like to join
- here.
-
-
-
Resume Book
-
- If you're still looking for internships or full-time
- opportunities, submit your resume to the WECE Resume Book
- here
- to have your resume sent out to companies!
-
-
-
Join our group on Campus Groups
-
- Join WECE on campus groups to get notifications for all our
- events and to RVSP and check-in to receive membership points
- here!
-
-
-
Join our WECE Slack Workspace
-
- WECE uses Slack as a way to streamline communication between
- WECE members and committees, as well as a place for
- important announcements and upcoming events! Join our
- general channel
- here.
-
- Skyworks Solutions, Inc representatives will be on campus to talk about the company, their
- technologies and
- career
- opportunities that they have! They will be interviewing candidates the next day and the tech
- talk and networking
- time
- after might be a great opportunity to get an interview! Please carry your resume if you're
- interested. Food will
- be
- provided!
-
- Come out to our February GM! Learn all about our upcoming events and what we have been up to this semester, as well as
- how to get more involved. Food from Maize will be provided!
-
- Tasty Tuesdays is a chill space for you to stop by hang out with friends, do homework, and
- of course, grab some food ;)
- Whether it's for ten minutes or two hours, drop on by! We will also have our social
- committee meetings there every week,
- if you would like to meet the board or plan events with us :)
-
- Want to nail your tech interviews?
-
- Want a head start on LeetCode practice?
-
- Then come out!!!!
-
- An upperclassman will teach you basic strategies and algorithms
- commonly asked by most Fortune 500 companies.
-
- No experience required!
-
- Want to learn more about the WECE Mentorship Programs? Interested in helping plan Peer
- Mentorship, Professional
- Mentorship, Graduate Student Mentorship or Lean In Discussions? If so, join us! Contact
- kellypd2@illinois.edu with questions.
-
-
-
-
-
Technical Committee Meeting
-
March 1, 1-3pm
-
ECEB
-
- Come work on the EOH project (Robo Painter Dog) and gain hands on experience and technical
- skills! Join the #Technical Slack channel for more information.
-
-
-
-
-
-
-
-
Next Generation School Camp Day 1
-
March 12, 9-10:30am
-
ECEB 2015
-
- Come help teach young students how to code! They will be working with Edison robots, which are basically small
- programmable cars!
-
- Want to get to know the Research Park Employers? Maybe you want to learn the ins and outs
- about getting a job at
- research park? Come to our event where you can ask the employers at RP any questions you
- want AND get a chance to
- network with them. Free lunch will also be served!
-
- The BridgeUP: STEM program at the AMNH is excited to announce that the application for the
- Helen Fellowship is now open.
- This fellowship is a one-year residency for post-baccalaureate self-identifying women to
- devote time immersed in
- computational scientific research and educational outreach at the AMNH. This fellowship is
- an initiative at the AMNH
- dedicated to increasing the diversity of the talent pipeline by providing underrepresented
- students access to the skills
- and tools required for the 21st Century.
-
Career & Life Coaching from Women at Stanford Business School
-
We’re 2020 Career & Life Coaching: 2nd year
- MBA students at the Stanford Graduate School of Business.
- We have experience in consulting, product, marketing, and entrepreneurship. We have screened resumes, negotiated salaries, and conducted
- interviews at companies where you may apply.
-
- We offer a safe space to chat, just friend to friend.
-
- Here are some things we can help with:
- Finding Internships & Jobs: Can you help me with my resume, cover letter, interview prep, etc.?
- Internship & Job Offers: How do I understand and negotiate offers so I can make sure I make a fair salary?
- Career Path: I have a job lined up after graduation, but...WTF is a career path?
- Academics: Should I go to business school, and if so, what are the tradeoffs?
- Real Life Adulting: What to think through when moving to a new city after college, how to file your taxes (without an
- accountant), and more.
-
- Special price: $20 for a 30-minute virtual or live session until February 28. Learn more and
- schedule a session here.
- We would love to work with you!
-
-
-
-
-
-
-
-
-
Alumni Database
-
- If you are an alumni, we would love to stay in contact with
- you! If you would like to help WECE with professional
- development and help our current members, please fill out
- this form!
-
-
-
Interested in making websites?
-
- If you are interested in helping with our WECE website or
- learning more about web applications or web design, fill out
- this form
- to get involved!
-
-
-
Sign up for committees!
-
- Sign up for the committees you would like to join
- here.
-
-
-
Resume Book
-
- If you're still looking for internships or full-time
- opportunities, submit your resume to the WECE Resume Book
- here
- to have your resume sent out to companies!
-
-
-
Join our group on Campus Groups
-
- Join WECE on campus groups to get notifications for all our
- events and to RVSP and check-in to receive membership points
- here!
-
-
-
Join our WECE Slack Workspace
-
- WECE uses Slack as a way to streamline communication between
- WECE members and committees, as well as a place for
- important announcements and upcoming events! Join our
- general channel
- here.
-
Come join WECE for our February Lean In as we discuss Impostor Syndrome! Lean Ins are group
- discussions about the set topic. They're purpose is to help you talk to your peers to create
- a
- better community in
- ECE. For this Lean In, WECE is focusing on Impostor Syndrome!
-
Foodie Fridays is a chill space for you to stop by hang out with friends, do homework, and
- of
- course, grab some food ;) Whether it's for ten minutes or two hours, drop on by!
-
Looking for outreach opportunities? Projects to get involved in? Mentorship? Friends? Well
- look no further, because you
- can find out about all of these at our March GM! Hear about what WECE has been up to and what
- we have planned. Also
- we'll have free Chipotle :)
-
WECE is holding office hours for ECE 220 this week with a CA (Gauri Konanoor)!
-
-
-
-
-
-
-
-
WECE x Jump Labs Tour
-
2nd week of March
-
Jump Labs @ Research Park
-
Jump Labs has partnered up with WECE to organize a tour in research park and give you a
- chance
- to interact with the director, and others working in Jump. Please fill out the interest form
- below if you are interested
- in learning more! Food will be provided :)
-
Mentorship Committee is looking for a Grad Liaison. Your responsibilities would include
- contacting graduate students in ECE and holding events such as coffee chats, presentations,
- and
- panels. Please contact
- Richa Vijayvergiya for an interview below.
-
Grace Hopper Celebration is the world's largest gathering of women technologists. Any WECE
- member can apply and more than likely, if it’s done early enough, can get approved for up
- to
- $500 in support from the
- ECE department to travel to the Grace Hopper Conference.
-
-
Come practice your programming skills through a series of algorithmic programming contests
- organized by ACM SIG-ICPC. Beginners welcome! Not to forget, we provide FREE PIZZA and
- $1200
- prize pool for top 5 contestants
- in each division!
-
Filify 3D creates recycled 3D
- filament from failed prints
- to make the 3D printing industry more environmentally sustainable.
-
- We are looking for exciting problem solvers who want to gain experience in a range of fields
- from business development
- to a variety of engineering disciplines.
- Submit an application at the link below!
-
Sign up for the committees you would like to join
- here.
-
-
-
-
Tune into CodeNewbie Podcast
-
CodeNewbie has joined up with Vaidehi Joshi to turn her blog series into an awesome podcast, the
- Basecs Podcast. They cover binary, hexes, algorithms, and more. Join them
- here for Season 3.
-
-
-
-
Join our WECE Slack Workspace
-
WECE uses Slack as a way to streamline communication between WECE members and committees, as well
- as
- a place for important announcements and upcoming events! Join our general channel
- here.
-
-
-
Resume Book
-
Career fair season is here again! If you're still looking for internships or full-time
- opportunities, submit your resume to the WECE Resume Book
- here
- to have your resume sent out to companies!
-
- WECE's Exec wants to get to know YOU! Come out and learn about different topics to apply to
- your personal and
- professional life. Topics change weekly!
-
- Tasty Tuesdays is a chill space for you to stop by hang out with friends, do homework, and
- of course, grab some food ;)
- Whether it's for ten minutes or two hours, drop on by! We will also have our social
- committee meetings there every week,
- if you would like to meet the board or plan events with us :)
-
- Want to learn more about the WECE Mentorship Programs? Interested in helping plan Peer
- Mentorship, Professional
- Mentorship, Graduate Student Mentorship or Lean In Discussions? If so, join us! Contact
- kellypd2@illinois.edu with questions.
-
-
-
-
-
-
-
Technical Committee Meeting
-
March 8, 1-3pm
-
ECEB
-
- Come work on the EOH project (Robo Painter Dog) and gain hands on experience and technical
- skills! Join the #Technical Slack channel for more information.
-
-
-
-
-
-
Behavioral Interview Panel
-
March 9, 1-2pm
-
ECEB 2015
-
- Come join us as a panel of experienced ECE students go over common behavioral type
- questions asked in interviews and
- how to answer them as well as their experience with interviews in general.
- And get free food! We'll have Potbelly sandwiches :)
-
-
-
-
-
-
-
-
Next Generation School Camp Day 1
-
March 12, 9-10:30am
-
ECEB 2015
-
- Come help teach young students how to code! They will be working with Edison robots, which
- are basically small
- programmable cars!
-
- In this lab, we will introduce the importance of LinkedIn and how to build an interesting
- and attractive LinkedIn page!
- If you want to get your LinkedIn page look over, or see some examples of great pages, please
- come to the event.
-
-
-
-
-
-
Peer Mentorship Craft Night
-
March 12, 5:30-7pm
-
ECEB 2017
-
- Come get crafty with WECE Peer Mentorship! We'll have all the supplies (and food!), so just
- bring yourself and your
- creativity.
-
- HKN is hosting a ECE Rant Session. If
- you have any critiques about
- the ECE department, please come out and express your concerns. These are compiled and sent
- directly to the ECE
- department heads. Some of the questions that were addressed at the previous rant session
- will be addressed at the ECE
- Town Hall on Wednesday from 5-7pm.
-
Grainger College of Engineering Scholarship Application
-
Deadline: March 9, 5pm
-
- Grainger Engineering
- Undergraduate Programs Office is
- accepting applications for available scholarships for the academic year Fall 2020 and Spring
- 2021.
-
- Eligibility - Engineering undergraduates with at least one semester of grades
- received in
- engineering at the University
- of Illinois. Students should not be graduating in May or summer 2020. Scholarships are for
- the next academic year (Fall
- 20 - Spring 21).
-
- Qualifications - Scholarships for engineering undergraduate students are merit-based
- but
- looking for well-rounded
- students, both academically and professionally.
-
- Application Process - Engineering undergraduates will fill out one application to be
- considered for all qualifying
- scholarships available. Engineering undergraduates will also have to provide a resume and
- two references - at least one
- from a University of Illinois.
-
- The BridgeUP: STEM program at the AMNH is excited to announce that the application for the
- Helen Fellowship is now open.
- This fellowship is a one-year residency for post-baccalaureate self-identifying women to
- devote time immersed in
- computational scientific research and educational outreach at the AMNH. This fellowship is
- an initiative at the AMNH
- dedicated to increasing the diversity of the talent pipeline by providing underrepresented
- students access to the skills
- and tools required for the 21st Century.
-
Career & Life Coaching from Women at Stanford Business School
-
We’re 2020 Career & Life Coaching: 2nd year
- MBA students at the Stanford Graduate School of Business.
- We have experience in consulting, product, marketing, and entrepreneurship. We have
- screened resumes, negotiated salaries, and conducted
- interviews at companies where you may apply.
-
- We offer a safe space to chat, just friend to friend.
-
- Here are some things we can help with:
- Finding Internships & Jobs: Can you help me with my resume, cover letter, interview
- prep, etc.?
- Internship & Job Offers: How do I understand and negotiate offers so I can make sure I
- make a fair salary?
- Career Path: I have a job lined up after graduation, but...WTF is a career path?
- Academics: Should I go to business school, and if so, what are the tradeoffs?
- Real Life Adulting: What to think through when moving to a new city after college, how
- to file your taxes (without an
- accountant), and more.
-
- Special price: $20 for a 30-minute virtual or live session until February 28. Learn
- more and
- schedule a session here.
- We would love to work with you!
-
-
-
-
-
-
-
-
-
WECE Spring Banquet
-
- We're having a banquet at the end of the Spring Semester! If you have been an active member of
- WECE, you are invited to
- celebrate the end of a great year with board and alumni! There's still time to become an active
- member, so be sure to
- check-in on CampusGroups for all the events you attend! To be an active member, you have to have
- attended:
- 3 GMs per year
- OR 2 GMs and 1 general event
- OR 3 general events.
-
-
-
Alumni Database
-
- If you are an alumni, we would love to stay in contact with
- you! If you would like to help WECE with professional
- development and help our current members, please fill out
- this form!
-
-
-
Interested in making websites?
-
- If you are interested in helping with our WECE website or
- learning more about web applications or web design, fill out
- this form
- to get involved!
-
-
-
Sign up for committees!
-
- Sign up for the committees you would like to join
- here.
-
-
-
Resume Book
-
- If you're still looking for internships or full-time
- opportunities, submit your resume to the WECE Resume Book
- here
- to have your resume sent out to companies!
-
-
-
Join our group on Campus Groups
-
- Join WECE on campus groups to get notifications for all our
- events and to RVSP and check-in to receive membership points
- here!
-
-
-
Join our WECE Slack Workspace
-
- WECE uses Slack as a way to streamline communication between
- WECE members and committees, as well as a place for
- important announcements and upcoming events! Join our
- general channel
- here.
-
Interested in getting involved with Engineering Open House? Come out to see what Outreach
- has planned for an
- interactive project - no previous experience is necessary, and everyone is welcome to join.
- Please contact Shannon Lin
- at the link below for more information :)
-
Looking for outreach opportunities? Projects to get involved in? Mentorship? Friends? Well
- look no further, because you
- can find out about all of these at our March GM! Hear about what WECE has been up to and what
- we have planned. Also
- we'll have free Chipotle :)
-
Sign up to represent WECE at Engineering Open House this year! Interact with various
- audiences as you present this
- year's project: Race Through the Track. Time slots will be a minimum of 30 minutes, but
- feel free to sign up for a
- longer slot and / or multiple times if you can. There is a minimum of 2 volunteers and a
- maximum of 4 volunteers per
- slot. Full instruction will be given later this week through email. Click on the link below
- to participate!
-
Foodie Fridays is a chill space for you to stop by hang out with friends, do homework, and
- of
- course, grab some food ;) Whether it's for ten minutes or two hours, drop on by!
-
WECE is holding office hours for ECE 120 and 220 this week with a CA (Gauri Konanoor)!
-
-
-
-
-
-
-
-
-
WECE x Jump Labs Tour
-
2nd week of March
-
Jump Labs @ Research Park
-
Jump Labs has partnered up with WECE to organize a tour in research park and give you a
- chance
- to interact with the director, and others working in Jump. Please fill out the interest form
- below if you are interested
- in learning more! Food will be provided :)
-
Grace Hopper Celebration is the world's largest gathering of women technologists. Any WECE
- member can apply and more than likely, if it’s done early enough, can get approved for up
- to
- $500 in support from the
- ECE department to travel to the Grace Hopper Conference.
-
-
We will be having a panel of students from different ECE RSO's who have done an internship
- at a company over the summer
- to have a discussion about their experiences. Insomnia cookies will be provided!
-
-
-
-
-
-
Illinois Programming League
-
Mondays, 5-7pm
-
Siebel 0224
-
Come practice your programming skills through a series of algorithmic programming contests
- organized by ACM SIG-ICPC. Beginners welcome! Not to forget, we provide FREE PIZZA and
- $1200
- prize pool for top 5 contestants
- in each division!
-
Filify 3D creates recycled 3D
- filament from failed prints
- to make the 3D printing industry more environmentally sustainable.
-
- We are looking for exciting problem solvers who want to gain experience in a range of
- fields
- from business development
- to a variety of engineering disciplines.
- Submit an application at the link below!
-
Sign up for the committees you would like to join
- here.
-
-
-
-
Tune into CodeNewbie Podcast
-
CodeNewbie has joined up with Vaidehi Joshi to turn her blog series into an awesome podcast, the
- Basecs Podcast. They cover binary, hexes, algorithms, and more. Join them
- here for Season 3.
-
-
-
-
Join our WECE Slack Workspace
-
WECE uses Slack as a way to streamline communication between WECE members and committees, as
- well
- as
- a place for important announcements and upcoming events! Join our general channel
- here.
-
-
-
Resume Book
-
Career fair season is here again! If you're still looking for internships or full-time
- opportunities, submit your resume to the WECE Resume Book
- here
- to have your resume sent out to companies!
-
Looking for outreach opportunities? Projects to get involved in? Mentorship? Friends? Well
- look no further, because you
- can find out about all of these at our March GM! Hear about what WECE has been up to and what
- we have planned. Also
- we'll have free Manolo's :)
-
Sign up for the committees you would like to join
- here.
-
-
-
-
Join our WECE Slack Workspace
-
WECE uses Slack as a way to streamline communication between WECE members and committees, as
- well
- as
- a place for important announcements and upcoming events! Join our general channel
- here.
-
-
-
Resume Book
-
Career fair season is here again! If you're still looking for internships or full-time
- opportunities, submit your resume to the WECE Resume Book
- here
- to have your resume sent out to companies!
-
- Come join us as a panel of experienced ECE students go over common behavioral type
- questions asked in interviews and
- how to answer them as well as their experience with interviews in general.
- And get free food! We'll have Potbelly sandwiches :)
-
-
-
-
-
-
Tasty Tuesdays
-
March 10, 2-3pm
-
ECEB 2015
-
- Tasty Tuesdays is a chill space for you to stop by hang out with friends, do homework, and
- of course, grab some food ;)
- Whether it's for ten minutes or two hours, drop on by! We will also have our social
- committee meetings there every week,
- if you would like to meet the board or plan events with us :)
-
- Come join WECE and SHPE for our Mindfulness Lean In! Lean Ins are a safe space for group
- discussion to create a
- supportive community in ECE. Come to discuss and learn about relaxation strategies, the
- benefits of sleep, and self-care
- in general.
-
- Come help us work on our EOH project! EOH is just around the corner, and we're working on
- putting together all the
- different elements of the design.
-
- In this lab, we will introduce the importance of LinkedIn and how to build an interesting
- and attractive LinkedIn page!
- If you want to get your LinkedIn page look over, or see some examples of great pages, please
- come to the event.
-
WECE is holding office hours for ECE 220 and ECE 120!
-
-
-
-
-
-
Mentorship Committee Meeting
-
March 13, 4-5pm
-
- Want to learn more about the WECE Mentorship Programs? Interested in helping plan Peer
- Mentorship, Professional
- Mentorship, Graduate Student Mentorship or Lean In Discussions? If so, join us! Contact
- kellypd2@illinois.edu with questions.
-
-
-
-
-
-
-
March General Meeting
-
March 24, 7-8pm
-
ECEB 2013
-
- Come out to our March GM! Learn all about our past and upcoming events, as well as how
- to get more involved in our committees and EOH projects! Board
- applications are also coming up. Food from Chopstix will be provided.
-
- WECE alumni Christina Ernst will be sharing her experiences interning,
- navigating the career fair and her transition to a full-time career as a Software Engineer
- at Google. Christina
- graduated from UIUC in the Class of 2019 with a degree in Computer Engineering.
-
Grainger College of Engineering Scholarship Application
-
Deadline: March 9, 5pm
-
- Grainger Engineering
- Undergraduate Programs Office is
- accepting applications for available scholarships for the academic year Fall 2020 and Spring
- 2021.
-
- Eligibility - Engineering undergraduates with at least one semester of grades
- received in
- engineering at the University
- of Illinois. Students should not be graduating in May or summer 2020. Scholarships are for
- the next academic year (Fall
- 20 - Spring 21).
-
- Qualifications - Scholarships for engineering undergraduate students are merit-based
- but
- looking for well-rounded
- students, both academically and professionally.
-
- Application Process - Engineering undergraduates will fill out one application to be
- considered for all qualifying
- scholarships available. Engineering undergraduates will also have to provide a resume and
- two references - at least one
- from a University of Illinois.
-
- Applications are now open for the Illinois Cyber Security Scholars Program (ICSSP) for Fall
- 2020! ICSSP is a
- Scholarship for Service program sponsored by the National Science Foundation open to qualified
- students in the College
- of Engineering and School of Information Sciences. The scholarship lasts up to three years and
- benefits include a full
- tuition waiver and stipend. With cybercrimes on the rise and a shortage of professionals,
- cybersecurity is a growing
- field that offers great career opportunities.
-
- To apply, you must already be admitted as a full-time, on-campus student at the University of
- Illinois at
- Urbana-Champaign. Graduate students applying for Fall 2020 must be already admitted to a
- graduate program in College of
- Engineering or Information Science focusing on information Security/Privacy. You must also be
- a U.S. citizen or
- permanent resident.
-
- If you have any questions, contact Prof. Masooda Bashir at
- mnb@illinois.edu.
-
- We're having a banquet at the end of the Spring Semester! If you have been an active member of
- WECE, you are invited to
- celebrate the end of a great year with board and alumni! There's still time to become an active
- member, so be sure to
- check-in on CampusGroups for all the events you attend! To be an active member, you have to have
- attended:
- 3 GMs per year
- OR 2 GMs and 1 general event
- OR 3 general events.
-
-
-
Exec Applications
-
- Applications for Exec Board 2020-21 are now open! If you have been consistently involved and
- contributing to WECE and
- want to help further develop the community we have, apply! Preferred experience on WECE Board or
- recommendation from a
- current board member. Application deadline is March 25, 5pm. Fill out the application here.
-
-
-
Alumni Database
-
- If you are an alumni, we would love to stay in contact with
- you! If you would like to help WECE with professional
- development and help our current members, please fill out
- this form!
-
-
-
Interested in making websites?
-
- If you are interested in helping with our WECE website or
- learning more about web applications or web design, fill out
- this form
- to get involved!
-
-
-
Sign up for committees!
-
- Sign up for the committees you would like to join
- here.
-
-
-
Resume Book
-
- If you're still looking for internships or full-time
- opportunities, submit your resume to the WECE Resume Book
- here
- to have your resume sent out to companies!
-
-
-
Join our group on Campus Groups
-
- Join WECE on campus groups to get notifications for all our
- events and to RVSP and check-in to receive membership points
- here!
-
-
-
Join our WECE Slack Workspace
-
- WECE uses Slack as a way to streamline communication between
- WECE members and committees, as well as a place for
- important announcements and upcoming events! Join our
- general channel
- here.
-
- We will be having a panel of students from different
- ECE RSO's who have done an internship at a company
- over the summer to have a discussion about their
- experiences. Insomnia cookies will be provided!
-
- Foodie Fridays is a chill space for you to stop by
- hang out with friends, do homework, and of course,
- grab some food ;) Whether it's for ten minutes or
- two hours, drop on by!
-
- Come join WECE for our March Lean In as we discuss
- Microaggressions! Microaggressions are verbal or
- nonverbal forms of communication that act to target
- an individual based upon their involvement in a
- marginalized group. Come to discuss and gain insight
- on how to respond.
-
- Chevron representatives will be here to help you
- with tips to get the best resume! They will be doing
- a short presentation followed by individual resume
- reviews for everybody.
-
- WECE is holding office hours for ECE 220 this week
- with a CA (Gauri Konanoor)!
-
-
-
-
-
-
GHC Sponsorship Application
-
- Grace Hopper Celebration is the world's largest
- gathering of women technologists. Any WECE member
- can apply and more than likely, if it’s done early
- enough, can get approved for up to $500 in support
- from the ECE department to travel to the Grace
- Hopper Conference.
-
- Come practice your programming skills through a series
- of algorithmic programming contests organized by ACM
- SIG-ICPC. Beginners welcome! Not to forget, we provide
- FREE PIZZA and $1200 prize pool for top 5 contestants
- in each division!
-
- Filify 3D creates recycled 3D filament from failed
- prints to make the 3D printing industry more
- environmentally sustainable. We are looking for
- exciting problem solvers who want to gain experience
- in a range of fields from business development to a
- variety of engineering disciplines. Submit an
- application at the link below!
-
- Sign up for the committees you would like to join
- here.
-
-
-
Tune into CodeNewbie Podcast
-
- CodeNewbie has joined up with Vaidehi Joshi to turn her blog
- series into an awesome podcast, the Basecs Podcast. They
- cover binary, hexes, algorithms, and more. Join them
- here for
- Season 3.
-
-
-
Join our WECE Slack Workspace
-
- WECE uses Slack as a way to streamline communication between
- WECE members and committees, as well as a place for
- important announcements and upcoming events! Join our
- general channel
- here.
-
-
-
Resume Book
-
- Career fair season is here again! If you're still looking
- for internships or full-time opportunities, submit your
- resume to the WECE Resume Book
- here
- to have your resume sent out to companies!
-
- You are invited to WECE's Alumnae Luncheon. Three
- alumnae will be visiting campus as part of our
- luncheon where you can meet and mingle with these
- established professionals. The luncheon will consist
- of roundtable discussions where the alumnae will be
- rotating between tables to answer your questions.
- The dress code is business casual and lunch will be
- provided. The time for the event is subject to
- change and you will be informed closer to the event.
- Space will be limited so please RSVP as soon as
- possible!
-
- Sign up for the committees you would like to join
- here.
-
-
-
Join our WECE Slack Workspace
-
- WECE uses Slack as a way to streamline communication between
- WECE members and committees, as well as a place for
- important announcements and upcoming events! Join our
- general channel
- here.
-
-
-
Resume Book
-
- Career fair season is here again! If you're still looking
- for internships or full-time opportunities, submit your
- resume to the WECE Resume Book
- here
- to have your resume sent out to companies!
-
- Hello everyone,
-
-
- In light of all that has happened, we wanted to let you guys know about the updates we have
- as well as how WECE will
- move forward this semester. In order to comply with the university’s policies and to
- exercise safety, we will be
- cancelling all in-person events. We're working on creating some virtual or online sessions,
- so we can all stay in
- contact with each other.
-
-
- The following events are CANCELLED:
-
- March General Meeting - slides will be sent out via email
-
- Blockchain Summit
-
- ECE Bar Crawl
-
- Engineering Open House
-
-
- Other updates:
-
- Board interviews are STILL ON and will be done through video call.
-
-
- Please feel free to reach out to us for any questions that you may have regarding events and
- ideas moving forward. We
- truly appreciate everyone’s hard work and efforts in planning for this semester! Stay safe
- and healthy wherever you go,
- and hang in there guys.
-
-
- Thanks,
-
-
- Shannon, Richa, Akriti, Anusha, Pooja (WECE Exec)
-
-
-
-
-
-
-
-
Covid-19 Precautions and Safety PSA
-
- In light of the current health and safety precautions the university has taken, we want
- to give you all resources to
- keep you safe and healthy during this time.
-
-
- For university responses, use
- covid19.illinois.edu. Please follow
- the CDC for
- updates on travel and health precautions. We
- know this is a tough time and online classes are not ideal, but this is for your benefit.
- Social distancing is one of
- the biggest ways that you can prevent the virus from spreading.
-
-
- The most effective things you can do is to wash your hands for 20 seconds with soap and
- water, cover your mouth when you
- cough and sneeze, and make sure to disinfect all surfaces. For reference,
- this
- npr article
- gives a good
- explanation. You can also check out washyourlyrics
- which
- generates 20-sec song lyrics you
- can sing as you wash your
- hands.
-
-
- Try not to panic or stock up on supplies of dry goods and toilet paper.
- Remember those who are struggling just to get by and may be negatively impacted by our
- panic. Be aware of the
- elderly and people with
- compromised immune systems, and try to help out if you can. By taking precautions to
- keep yourself healthy, you are also
- preventing the spread of
- virus getting to the most vulnerable and susceptible. We're all going to be ok, and WECE
- hopes you stay healthy and
- safe.
-
-
-
-
-
-
External Opportunities
-
-
-
-
Illinois Cyber Security Scholars Program
-
Deadline: April 15
-
- Applications are now open for the Illinois Cyber Security Scholars Program (ICSSP) for Fall
- 2020! ICSSP is a
- Scholarship for Service program sponsored by the National Science Foundation open to
- qualified
- students in the College
- of Engineering and School of Information Sciences. The scholarship lasts up to three years
- and
- benefits include a full
- tuition waiver and stipend. With cybercrimes on the rise and a shortage of professionals,
- cybersecurity is a growing
- field that offers great career opportunities.
-
- To apply, you must already be admitted as a full-time, on-campus student at the University
- of
- Illinois at
- Urbana-Champaign. Graduate students applying for Fall 2020 must be already admitted to a
- graduate program in College of
- Engineering or Information Science focusing on information Security/Privacy. You must also
- be
- a U.S. citizen or
- permanent resident.
-
- If you have any questions, contact Prof. Masooda Bashir at
- mnb@illinois.edu.
-
- Applications for Exec Board 2020-21 are open! If you have been consistently involved and
- contributing to WECE and
- want to help further develop the community we have, apply! Preferred experience on WECE Board or
- recommendation from a
- current board member. Application deadline is March 25, 5pm. Fill out the application here.
-
-
-
Alumni Database
-
- If you are an alumni, we would love to stay in contact with
- you! If you would like to help WECE with professional
- development and help our current members, please fill out
- this form!
-
-
-
Interested in making websites?
-
- If you are interested in helping with our WECE website or
- learning more about web applications or web design, fill out
- this form
- to get involved!
-
-
-
Sign up for committees!
-
- Sign up for the committees you would like to join
- here.
-
-
-
Resume Book
-
- If you're still looking for internships or full-time
- opportunities, submit your resume to the WECE Resume Book
- here
- to have your resume sent out to companies!
-
-
-
Join our group on Campus Groups
-
- Join WECE on campus groups to get notifications for all our
- events and to RVSP and check-in to receive membership points
- here!
-
-
-
Join our WECE Slack Workspace
-
- WECE uses Slack as a way to streamline communication between
- WECE members and committees, as well as a place for
- important announcements and upcoming events! Join our
- general channel
- here.
-
- Come join WECE as we discuss Microaggressions!
- Microaggressions are verbal or nonverbal forms of
- communication that act to target an individual based
- upon their involvement in a marginalized group. Come
- to discuss and gain insight on how to respond.
-
- Chevron representatives will be here to help you
- with tips to get the best resume! They will be doing
- a short presentation followed by individual resume
- reviews for everybody.
-
- Grad Presentation: Systems for Graph Processing
-
-
March 27, 5-6pm
-
ECEB 2013
-
- WECE's first grad student presentation is an
- excellent opportunity to learn about an interesting
- ECE topic while also networking with a graduate
- student!
-
- Azin Heidarshenas, a 2nd year PhD student working
- with Prof. Josep Torrellas, will be presenting an
- overview of her research. Her research mainly
- involves synchronization and communication in
- multicore and manycore processors, with an emphasis
- on graph processing workloads.
-
- Whether this topic already interests you, or you
- want to learn about different ECE research areas, or
- you just want to meet an awesome grad, you don't
- want to miss Azin's talk!
-
- P.S. food will be provided ;)
-
-
-
-
-
-
-
-
WECE x SWE Little Sisters Weekend Workshop
-
March 29, 4:30-5:30pm
-
location TBD
-
- Interested in helping out high school students with
- soldering? WECE is holding a soldering workshop this
- Friday for SWE's Little Sister's weekend! Little
- Sister's weekend is an event for female students
- admitted to UIUC Engineering, and WECE is hosting
- this class for the event this week. Please fill out
- this form to sign up and volunteer! Questions?
- Contact Shannon Lin at
-
- slin81@illinois.edu .
-
- WECE is holding office hours for ECE 120 and 220
- this week with a CA (Gauri Konanoor)!
-
-
-
-
-
-
Foodie Fridays
-
March 29, 1-3pm
-
ECEB 3015
-
- Foodie Fridays is a chill space for you to stop by
- hang out with friends, do homework, and of course,
- grab some food ;) Whether it's for ten minutes or
- two hours, drop on by!
-
- Come practice your programming skills through a series
- of algorithmic programming contests organized by ACM
- SIG-ICPC. Beginners welcome! Not to forget, we provide
- FREE PIZZA and $1200 prize pool for top 5 contestants
- in each division!
-
- Filify 3D creates recycled 3D filament from failed
- prints to make the 3D printing industry more
- environmentally sustainable. We are looking for
- exciting problem solvers who want to gain experience
- in a range of fields from business development to a
- variety of engineering disciplines. Submit an
- application at the link below!
-
- Sign up for the committees you would like to join
- here.
-
-
-
Tune into CodeNewbie Podcast
-
- CodeNewbie has joined up with Vaidehi Joshi to turn her blog
- series into an awesome podcast, the Basecs Podcast. They
- cover binary, hexes, algorithms, and more. Join them
- here for
- Season 3.
-
-
-
Join our WECE Slack Workspace
-
- WECE uses Slack as a way to streamline communication between
- WECE members and committees, as well as a place for
- important announcements and upcoming events! Join our
- general channel
- here.
-
-
-
Resume Book
-
- Career fair season is here again! If you're still looking
- for internships or full-time opportunities, submit your
- resume to the WECE Resume Book
- here
- to have your resume sent out to companies!
-
- You are invited to WECE's Alumnae Luncheon! Please
- RSVP if you have not done so already.
-
-
- Three alumnae will be visiting campus as part of our
- luncheon where you can meet and mingle with these
- established professionals. The luncheon will consist
- of roundtable discussions where the alumnae will be
- rotating between tables to answer your questions.
- The dress code is business casual and lunch will be
- provided. The time for the event is subject to
- change and you will be informed closer to the event.
- Space will be limited so please RSVP as soon as
- possible!
-
- Sign up for the committees you would like to join
- here.
-
-
-
Join our WECE Slack Workspace
-
- WECE uses Slack as a way to streamline communication between
- WECE members and committees, as well as a place for
- important announcements and upcoming events! Join our
- general channel
- here.
-
-
-
Resume Book
-
- Career fair season is here again! If you're still looking
- for internships or full-time opportunities, submit your
- resume to the WECE Resume Book
- here
- to have your resume sent out to companies!
-
- Applications for WECE Exec Board positions 2019-2020 are now
- live! Apply to be a part of WECE to gain leadership
- experience, spearhead initiative, build your network, and
- make an impact on our growing community. The process will be
- as follows:
-
- Round 1: Executive Board (President, Treasurer,
- Internal VP, External VP) applications live now until
- 11:59PM, April 5th.
-
- Round 2: Board of Directors (Outreach, Social,
- Marketing, etc) applications will be made available after
- April 15th.
-
-
- Apply and share with your friends who might be interested!
- We can’t wait to see what impact you will have on WECE. Any
- questions regarding the application or eligibility should be
- emailed to the current WECE President at
- mpathak2@illinois.edu.
-
- Sign up for the committees you would like to join
- here.
-
-
-
Join our WECE Slack Workspace
-
- WECE uses Slack as a way to streamline communication between
- WECE members and committees, as well as a place for
- important announcements and upcoming events! Join our
- general channel
- here.
-
-
-
Resume Book
-
- Career fair season is here again! If you're still looking
- for internships or full-time opportunities, submit your
- resume to the WECE Resume Book
- here
- to have your resume sent out to companies!
-
- Applications for WECE Exec Board positions 2019-2020
- are now live! Apply to be a part of WECE to gain
- leadership experience, spearhead initiative, build
- your network, and make an impact on our growing
- community. The process will be as follows:
-
- Round 1: Executive Board (President,
- Treasurer, Internal VP, External VP) applications
- live now until 11:59PM, April 5th.
-
- Round 2: Board of Directors (Outreach,
- Social, Marketing, etc) applications will be made
- available after April 15th.
-
-
- Apply and share with your friends who might be
- interested! We can’t wait to see what impact you
- will have on WECE. Any questions regarding the
- application or eligibility should be emailed to the
- current WECE President at
- mpathak2@illinois.edu.
-
- You are invited to WECE's Alumnae Luncheon! Please
- RSVP if you have not done so already.
-
-
- Three alumnae will be visiting campus as part of our
- luncheon where you can meet and mingle with these
- established professionals. The luncheon will consist
- of roundtable discussions where the alumnae will be
- rotating between tables to answer your questions.
- The dress code is business casual and lunch will be
- provided. The time for the event is subject to
- change and you will be informed closer to the event.
- Space will be limited so please RSVP as soon as
- possible!
-
- WECE is holding office hours for ECE 120 and 220
- this week with a CA (Gauri Konanoor)!
-
-
-
-
-
-
Foodie Fridays
-
April 5, 1-3pm
-
ECEB 3015
-
- Foodie Fridays is a chill space for you to stop by
- hang out with friends, do homework, and of course,
- grab some food ;) Whether it's for ten minutes or
- two hours, drop on by!
-
- Sign up for the committees you would like to join
- here.
-
-
-
Join our WECE Slack Workspace
-
- WECE uses Slack as a way to streamline communication between
- WECE members and committees, as well as a place for
- important announcements and upcoming events! Join our
- general channel
- here.
-
-
-
Resume Book
-
- Career fair season is here again! If you're still looking
- for internships or full-time opportunities, submit your
- resume to the WECE Resume Book
- here
- to have your resume sent out to companies!
-
- Come join us discuss what outreach will be doing for the rest of the semester! Also, if you
- have any suggestions, be
- sure to bring them! The password for the meeting is "wece".
-
- WECE has chosen its new Executive Board!
-
-
- President: Maram Safi
-
- Internal Vice President: Kelly Dunleavy
-
- Co-External Vice Presidents: Saaniya Kapur and Sarah Angelbeck
-
- Treasurer: Shannon Lin
-
-
- Thank you to everyone who applied and congratulations to our new Exec Board! We look
- forward
- to all the things you will
- accomplish.
-
-
-
-
-
-
-
-
March GM Slides
- Take a look at our GM slides for our announcements and some upcoming events at the link
- below.
-
- Applications are now open! If you have been involved
- and
- want to help further develop the community we have, consider applying! We are looking for
- directors for our committees:
- Academic, Infrastructure, Marketing, Mentorship, Outreach, Social, and Technical.
-
- Please fill out this google doc to send some love and appreciation to the Facilities Team at
- ECEB for all the hard work
- that they do for us. We will compile all of your notes and make an online poster out of it
- that will be sent to each
- member of the team along with an e-Card!
-
- Applications are now open for the Illinois Cyber Security Scholars Program (ICSSP) for
- Fall
- 2020! ICSSP is a
- Scholarship for Service program sponsored by the National Science Foundation open to
- qualified
- students in the College
- of Engineering and School of Information Sciences. The scholarship lasts up to three
- years
- and
- benefits include a full
- tuition waiver and stipend. With cybercrimes on the rise and a shortage of
- professionals,
- cybersecurity is a growing
- field that offers great career opportunities.
-
- To apply, you must already be admitted as a full-time, on-campus student at the
- University
- of
- Illinois at
- Urbana-Champaign. Graduate students applying for Fall 2020 must be already admitted to a
- graduate program in College of
- Engineering or Information Science focusing on information Security/Privacy. You must
- also
- be
- a U.S. citizen or
- permanent resident.
-
- If you have any questions, contact Prof. Masooda Bashir at
- mnb@illinois.edu.
-
- April 1, 2020 was Census Day. States have until the end of the year to count, so make sure you
- do
- so before then! Please read Chancellor Jones's email here for more
- information about how to be
- counted as a student.
-
-
-
Alumni Database
-
- If you are an alumni, we would love to stay in contact with
- you! If you would like to help WECE with professional
- development and help our current members, please fill out
- this form!
-
-
-
Interested in making websites?
-
- If you are interested in helping with our WECE website or
- learning more about web applications or web design, fill out
- this form
- to get involved!
-
-
-
Sign up for committees!
-
- Sign up for the committees you would like to join
- here.
-
-
-
Resume Book
-
- If you're still looking for internships or full-time
- opportunities, submit your resume to the WECE Resume Book
- here
- to have your resume sent out to companies!
-
-
-
Join our group on Campus Groups
-
- Join WECE on campus groups to get notifications for all our
- events and to RVSP and check-in to receive membership points
- here!
-
-
-
Join our WECE Slack Workspace
-
- WECE uses Slack as a way to streamline communication between
- WECE members and committees, as well as a place for
- important announcements and upcoming events! Join our
- general channel
- here.
-
- You are invited to WECE's Alumnae Luncheon! Please
- RSVP if you have not done so already.
-
-
- Three alumnae will be visiting campus as part of our
- luncheon where you can meet and mingle with these
- established professionals. The luncheon will consist
- of roundtable discussions where the alumnae will be
- rotating between tables to answer your questions.
- The dress code is business casual and lunch will be
- provided. The time for the event is subject to
- change and you will be informed closer to the event.
- Space will be limited so please RSVP as soon as
- possible!
-
- This session will help you with questions asked on
- technical interviews by most top companies! You will
- gain worthy coding experience as we will be going
- over these questions and discussing the concepts and
- algorithms behind them. Chipotle will be provided!
-
- Join WECE & HKN for our last Lean In of the
- semester! We will discuss and collaborate feedback
- for the ECE Department to build a more positive
- community! All are welcome!
-
- WECE is holding office hours for ECE 120 and 220
- this week with a CA (Gauri Konanoor)!
-
-
-
-
-
-
Foodie Fridays
-
April 12, 1-3pm
-
ECEB 3015
-
- Foodie Fridays is a chill space for you to stop by
- hang out with friends, do homework, and of course,
- grab some food ;) Whether it's for ten minutes or
- two hours, drop on by!
-
- The ECE Department is sponsoring several travel awards
- for the Grace Hopper Celebration in October, 2019
- (https://ghc.anitab.org/). The event will take place
- on October 2-4, 2019 in Orlando, FL. Award recipients
- will be fully covered for registration, airfare,
- accommodation and meals. Those who received the travel
- award will be assigned shifts in the department
- sponsored booth during the event.
-
- Sign up for the committees you would like to join
- here.
-
-
-
Join our WECE Slack Workspace
-
- WECE uses Slack as a way to streamline communication between
- WECE members and committees, as well as a place for
- important announcements and upcoming events! Join our
- general channel
- here.
-
-
-
Resume Book
-
- Career fair season is here again! If you're still looking
- for internships or full-time opportunities, submit your
- resume to the WECE Resume Book
- here
- to have your resume sent out to companies!
-
-
- The ECE Department would like to make an appreciation event for all graduating seniors to make
- up for the unfortunate
- circumstances we are in right now. If you would like to participate, please email me at
- kandula2@illinois.edu and I will
- forward all the details to you!
-
-
-
-
-
-
-
WECE Board Application 2020-2021
-
Deadline: April 20, 11:59pm
- Applications are now open! If you have been involved
- and
- want to help further develop the community we have, consider applying! We are looking for
- directors for our committees:
- Academic, Infrastructure, Marketing, Mentorship, Outreach, Social, and Technical.
-
- Please fill out this google doc to send some love and appreciation to the Facilities Team at
- ECEB for all the hard work
- that they do for us. We will compile all of your notes and make an online poster out of it
- that will be sent to each
- member of the team along with an e-Card!
-
- Applications are now open for the Illinois Cyber Security Scholars Program (ICSSP) for
- Fall
- 2020! ICSSP is a
- Scholarship for Service program sponsored by the National Science Foundation open to
- qualified
- students in the College
- of Engineering and School of Information Sciences. The scholarship lasts up to three
- years
- and
- benefits include a full
- tuition waiver and stipend. With cybercrimes on the rise and a shortage of
- professionals,
- cybersecurity is a growing
- field that offers great career opportunities.
-
- To apply, you must already be admitted as a full-time, on-campus student at the
- University
- of
- Illinois at
- Urbana-Champaign. Graduate students applying for Fall 2020 must be already admitted to a
- graduate program in College of
- Engineering or Information Science focusing on information Security/Privacy. You must
- also
- be
- a U.S. citizen or
- permanent resident.
-
- If you have any questions, contact Prof. Masooda Bashir at
- mnb@illinois.edu.
-
- April 1, 2020 was Census Day. States have until the end of the year to count, so make sure you
- do
- so before then! Please read Chancellor Jones's email here for more
- information about how to be
- counted as a student.
-
-
-
Alumni Database
-
- If you are an alumni, we would love to stay in contact with
- you! If you would like to help WECE with professional
- development and help our current members, please fill out
- this form!
-
-
-
Interested in making websites?
-
- If you are interested in helping with our WECE website or
- learning more about web applications or web design, fill out
- this form
- to get involved!
-
-
-
Sign up for committees!
-
- Sign up for the committees you would like to join
- here.
-
-
-
Resume Book
-
- If you're still looking for internships or full-time
- opportunities, submit your resume to the WECE Resume Book
- here
- to have your resume sent out to companies!
-
-
-
Join our group on Campus Groups
-
- Join WECE on campus groups to get notifications for all our
- events and to RVSP and check-in to receive membership points
- here!
-
-
-
Join our WECE Slack Workspace
-
- WECE uses Slack as a way to streamline communication between
- WECE members and committees, as well as a place for
- important announcements and upcoming events! Join our
- general channel
- here.
-
- Come eat lunch on us at 11:30am and then learn more
- about how to use CSS to create drawings and
- animations from 12-1pm! Add them to your websites
- for a personal touch. Please bring a laptop! No
- experience in HTML or CSS is necessary xD
-
- Join WECE & HKN for our last Lean In of the
- semester! We will discuss and collaborate feedback
- for the ECE Department to build a more positive
- community! All are welcome!
-
- Peer Mentorship is going to the Japan Gardens on
- April 27th at 3pm. Come on down, and bring your
- mentor/mentee to celebrate the end of the school
- year!
-
-
-
-
-
-
WECE Office Hours
-
April 18, 3pm for 220
-
ECEB 3081
-
- WECE is holding office hours for ECE 220 this week
- with a CA (Gauri Konanoor)!
-
-
-
-
-
-
-
-
Foodie Fridays
-
April 19, 1-3pm
-
ECEB 3015
-
- Foodie Fridays is a chill space for you to stop by
- hang out with friends, do homework, and of course,
- grab some food ;) Whether it's for ten minutes or
- two hours, drop on by!
-
- The ECE Department is sponsoring several travel awards
- for the Grace Hopper Celebration in October, 2019
- (https://ghc.anitab.org/). The event will take place
- on October 2-4, 2019 in Orlando, FL. Award recipients
- will be fully covered for registration, airfare,
- accommodation and meals. Those who received the travel
- award will be assigned shifts in the department
- sponsored booth during the event.
-
- Sign up for the committees you would like to join
- here.
-
-
-
Join our WECE Slack Workspace
-
- WECE uses Slack as a way to streamline communication between
- WECE members and committees, as well as a place for
- important announcements and upcoming events! Join our
- general channel
- here.
-
-
-
Resume Book
-
- Career fair season is here again! If you're still looking
- for internships or full-time opportunities, submit your
- resume to the WECE Resume Book
- here
- to have your resume sent out to companies!
-
-
-
Alumni Database Form
-
- If you are graduating this semester, please fill out
- this form
- to be added to the WECE alumni database! We would love to
- stay in contact with you and provide you with information
- about our alumni events and opportunities!
-
- The WECE Officer Board 2019-2020 Application is now open!
-
-
- Apply to be a part of WECE to gain leadership experience,
- spearhead initiative, build your network, and make an impact
- on our growing community.
- Applications are due on Friday, April 26th, 2019.
- Apply and share with your friends who might be interested!
-
-
- We're so excited to see the impact you will make. Any
- questions regarding the application or eligibility should be
- emailed to the 2019-2020 President at vijayve2@illinois.edu.
-
-
- Hello WECE Members!
-
-
- We hope you and your loved ones are all fairing well during this unprecedented pandemic.
- This is an email letting you know that the board application deadline has been
- POSTPONED to April 24th, 2020 at 11:59
- PM. All board positions are open for application, so if you have been involved and want
- to help further develop the
- community we have, consider applying!
-
- Also please remember that the WECE community is here for you during this time and if you
- should need anything, please do
- not hesitate to reach out!
-
- April 1, 2020 was Census Day. States have until the end of the year to count, so make sure you
- do
- so before then! Please read Chancellor Jones's email here for more
- information about how to be
- counted as a student.
-
-
-
Alumni Database
-
- If you are an alumni, we would love to stay in contact with
- you! If you would like to help WECE with professional
- development and help our current members, please fill out
- this form!
-
-
-
Interested in making websites?
-
- If you are interested in helping with our WECE website or
- learning more about web applications or web design, fill out
- this form
- to get involved!
-
-
-
Sign up for committees!
-
- Sign up for the committees you would like to join
- here.
-
-
-
Resume Book
-
- If you're still looking for internships or full-time
- opportunities, submit your resume to the WECE Resume Book
- here
- to have your resume sent out to companies!
-
-
-
Join our group on Campus Groups
-
- Join WECE on campus groups to get notifications for all our
- events and to RVSP and check-in to receive membership points
- here!
-
-
-
Join our WECE Slack Workspace
-
- WECE uses Slack as a way to streamline communication between
- WECE members and committees, as well as a place for
- important announcements and upcoming events! Join our
- general channel
- here.
-
- Join WECE & HKN for our last Lean In of the
- semester! We will discuss and collaborate feedback
- for the ECE Department to build a more positive
- community! All are welcome!
-
- Come to WECE's final GM to celebrate all that we
- have done this year! In addition to the year in
- review, we will also be welcoming WECE's new Exec
- Board! Maize will be provided!
-
- Peer Mentorship is going to the Japan Gardens on
- April 27th at 3pm. Come on down, and bring your
- mentor/mentee to celebrate the end of the school
- year!
-
-
-
-
-
-
-
-
WECE Office Hours
-
April 22, 5pm for 120
-
ECEB 2022
-
-
April 25, 3pm for 220
-
ECEB 3081
-
- WECE is holding office hours for ECE 120 and 220
- this week with a CA (Gauri Konanoor)!
-
-
-
-
-
-
LAST Foodie Friday
-
April 26, 1-3pm
-
ECEB 3015
-
- Foodie Fridays is a chill space for you to stop by
- hang out with friends, do homework, and of course,
- grab some food ;) Whether it's for ten minutes or
- two hours, drop on by! Come join us for our LAST one
- of the year with ice cream!
-
- Sign up for the committees you would like to join
- here.
-
-
-
Join our WECE Slack Workspace
-
- WECE uses Slack as a way to streamline communication between
- WECE members and committees, as well as a place for
- important announcements and upcoming events! Join our
- general channel
- here.
-
-
-
Resume Book
-
- Career fair season is here again! If you're still looking
- for internships or full-time opportunities, submit your
- resume to the WECE Resume Book
- here
- to have your resume sent out to companies!
-
-
-
Alumni Database Form
-
- If you are graduating this semester, please fill out
- this form
- to be added to the WECE alumni database! We would love to
- stay in contact with you and provide you with information
- about our alumni events and opportunities!
-
- Come join WECE for our Mental Health Lean In! Lean Ins are a safe space for group discussion
- to create a supportive
- community in ECE. Come to our Lean In to discuss how to take care of your well-being, cope
- with stress, maintain
- connections, and get support in these strange times! All are welcome & we hope to see you!
-
-
- The ECE Department would like to make an appreciation event for all graduating seniors to make
- up for the unfortunate
- circumstances we are in right now. If you would like to participate, please email me at
- kandula2@illinois.edu and I will
- forward all the details to you!
-
-
-
-
-
Facilities Team Appreciation
- Please fill out this google doc to send some love and appreciation to the Facilities Team at
- ECEB for all the hard work
- that they do for us. We will compile all of your notes and make an online poster out of it
- that will be sent to each
- member of the team along with an e-Card!
-
- April 1, 2020 was Census Day. States have until the end of the year to count, so make sure you
- do
- so before then! Please read Chancellor Jones's email here for more
- information about how to be
- counted as a student.
-
-
-
Alumni Database
-
- If you are an alumni, we would love to stay in contact with
- you! If you would like to help WECE with professional
- development and help our current members, please fill out
- this form!
-
-
-
Interested in making websites?
-
- If you are interested in helping with our WECE website or
- learning more about web applications or web design, fill out
- this form
- to get involved!
-
-
-
Sign up for committees!
-
- Sign up for the committees you would like to join
- here.
-
-
-
Resume Book
-
- If you're still looking for internships or full-time
- opportunities, submit your resume to the WECE Resume Book
- here
- to have your resume sent out to companies!
-
-
-
Join our group on Campus Groups
-
- Join WECE on campus groups to get notifications for all our
- events and to RVSP and check-in to receive membership points
- here!
-
-
-
Join our WECE Slack Workspace
-
- WECE uses Slack as a way to streamline communication between
- WECE members and committees, as well as a place for
- important announcements and upcoming events! Join our
- general channel
- here.
-
- Welcome our new board of directors and exec for the
- 2019-20 year!
-
-
- President: Richa Vijayvergiya
-
- Tresurer: Shannon Lin
-
- IVP: Anusha Kandula EVP: Akriti
- Jain & Pooja Kankani
- Infrastructure: Eugenia Chen
- Technical: Sarah Angelbeck & Pakhi Gupta
- Academic: Saisita Maddirala
- Social: Maram Safi
- Mentorship: Kelly Dunleavy
- Outreach: Elisa Krause
- Marketing: Aditi Panwar
-
-
-
-
-
-
External Opportunities
-
-
-
-
- 6th Annual China-U.S. Young Maker Competition:
- Co-Making The Future!
-
-
- Deadline: May 26
-
-
- Hackster and The Chinese Ministry of Education
- present the 6th annual China-U.S. Young Maker
- Competition: Co-Making The Future! Young
- makers (18-40 years old) are encouraged to submit
- their innovative projects with a focus on areas of
- community development, education, environmental
- protection, health & fitness, energy, transportation
- and other areas of sustainable development. These
- projects can be either focused on hardware or
- software, and all students are encouraged to
- participate. $41,000+ in prizes! The top ten
- US projects (semi-finalists) will be selected to
- compete in the Finals in Beijing, China with an all
- expenses paid trip. The judging panel includes Adam
- Benzion, Founder and CEO of Hackster, Bill Luan,
- Senior Program Manager of the Google Corral team,
- and Aimin Zhu, University Relations Manager, Google
- China.
-
- Grace Hopper Celebration is the world's largest
- gathering of women technologists. GHC'19 will be Oct.
- 1–4 in Orlando, FL. Keep an eye out for the different
- company scholarships
- here
- and apply before the deadline. Good luck!
-
-
-
-
-
-
Join our WECE Slack Workspace
-
- WECE uses Slack as a way to streamline communication between
- WECE members and committees, as well as a place for
- important announcements and upcoming events! Join our
- general channel
- here.
-
-
-
Resume Book
-
- Career fair season is here again! If you're still looking
- for internships or full-time opportunities, submit your
- resume to the WECE Resume Book
- here
- to have your resume sent out to companies!
-
-
-
Alumni Database Form
-
- If you are graduating this semester, please fill out
- this form
- to be added to the WECE alumni database! We would love to
- stay in contact with you and provide you with information
- about our alumni events and opportunities!
-
- As we went remote for the end of last semester, Women in ECE was not able give out our t-shirts in person at our events. However, we are excited to announce that we are shipping our 2019-2020 t-shirts to our members! This will be on a first come, first serve basis as we have limited stock available. Please fill out the form below by August 19 if you would like to receive a t-shirt!
-
- If you are an alumni, we would love to stay in contact with
- you! If you would like to help WECE with professional
- development and help our current members, please fill out
- this form!
-
-
-
Join our WECE Slack Workspace
-
- WECE uses Slack as a way to streamline communication between
- WECE members and committees, as well as a place for
- important announcements and upcoming events! Join our
- general channel
- here.
-
-
-
-
\ No newline at end of file
diff --git a/source/html/newsletterarchive/082817.html b/source/html/newsletterarchive/082817.html
deleted file mode 100644
index 26c3218..0000000
--- a/source/html/newsletterarchive/082817.html
+++ /dev/null
@@ -1,115 +0,0 @@
-
-
-
-
-
-
- WECE Newsletter: August 28, 2017 - September 4, 2017
-
-
-
-
-
-
-
-
-
-
- AUGUST 28 - SEPTEMBER 4
- EVENTS
-
WECE GENERAL MEETING #1
-
- Come join us for our first general meeting to learn about all of our committees and events and find out how you can get involved. Food will be provided! More information at our Facebook event here.
-
Join us for our first general meeting of the year! Come mix and mingle with
- WECE members and enjoy food on us. Hear about our new committees and
- get involved!
-
Nervous about the upcoming career fair? Join us for our panel where upperclassmen will share
- their secrets about how they prepared for the career fair and succeeded in getting a
- job they loved. Empanadas will be provided.
-
-
-
Join our WECE Slack Workspace
-
WECE uses Slack as a way to streamline communication between WECE members and committees,
- as well as a place for important announcements and upcoming events! Join our general
- channel
- here.
-
-
-
-
-
Resume Book
-
Career fair season is here again! If you're still looking for internships or full-time opportunities,
- submit your resume to the WECE Resume Book
- here to have your resume sent out to companies!
-
Join us for our first general meeting of the year! We welcome all new students
- who are interested. Come mix and mingle with WECE members and enjoy Noodles
- & Company on us. Hear about our new committees and get involved!
-
Career fair season is here again! If you're still looking for internships or full-time opportunities,
- submit your resume to the WECE Resume Book
- here to have your resume sent out to companies! Note: please sign in with your @illinois.edu
- email!
-
Join us for our first general meeting of the year! Come mix and mingle with
- WECE members and enjoy Noodles & Company on us. Hear about our new
- committees and get involved!
-
Nervous about the upcoming career fair? Join us for our panel where upperclassmen
- will share their secrets about how they prepared for the career fair
- and succeeded in getting a job they loved. Empanadas will be provided.
-
Chevron is currently looking for students majoring in Chemical Engineering,
- Civil Engineering, Electrical Engineering, Mechanical Engineering, and
- Materials Engineering.
-
-
-
-
-
-
SocialFuse
-
- September 13, 5-7pm
-
-
Loomis Room 151
-
SocialFuse is a pitching and networking event that brings people together
- from a variety of majors and backgrounds and fuses them through skills,
- ideas, and entrepreneurial ambition. Attendees can pitch their startup
- ideas, find teammates, improve presentation skills, and get feedback.
- RSVP
- here.
-
Eligibility: juniors or sophomores; Pursuing a 2019 summer internship; Black,
- Hispanic/Latino or Native American.
-
This scholarship recognizes outstanding students and is an integral part
- of diversity recruiting efforts at Goldman Sachs. Recipients will receive
- up to $15,000 towards tuituion and academic expenses.
-
-
-
-
-
-
Fresh Prints and Kaplan Test Prep Scholarship
-
Deadline: September 30, 2018
-
Eligibility: must be a college student in the fall of 2018 semester; can't
- work for Fresh Prints or Kaplan Test Prep.
-
Win a $5000 scholarship towards your academic plans. Fill out a form and
- write a short essay about your dreams.
-
CodeNewbie has joined up with Vaidehi Joshi to turn her blog series into an awesome podcast,
- the Basecs Podcast. They cover binary, hexes, algorithms, and more. Join them
- here for Season 3 launching on August 22.
-
-
-
-
Join our WECE Slack Workspace
-
WECE uses Slack as a way to streamline communication between WECE members and committees,
- as well as a place for important announcements and upcoming events! Join our general
- channel
- here.
-
-
-
Resume Book
-
Career fair season is here again! If you're still looking for internships or full-time opportunities,
- submit your resume to the WECE Resume Book
- here to have your resume sent out to companies!
-
-
-
-
\ No newline at end of file
diff --git a/source/html/newsletterarchive/090417.html b/source/html/newsletterarchive/090417.html
deleted file mode 100644
index 0c2a49f..0000000
--- a/source/html/newsletterarchive/090417.html
+++ /dev/null
@@ -1,211 +0,0 @@
-
-
-
-
-
-
- WECE Newsletter: September 4, 2017 - September 11, 2017
-
-
-
-
-
-
-
-
-
-
- SEPTEMBER 4 - SEPTEMBER 11
- NEWS
-
JOIN A COMMITTEE
-
- Apply here if you're interested in becoming more involved with any of the amazing committees in WECE. The application closes on Friday, September 8th.
-
-
-
DESIGN ASSISTANT OPENING
-
- If you are interested in learning more about design, we have an opening for a design assistant to our Creative Design Director. This is a role comparable to a committee member however there is only one opening. We are looking for someone to shadow the Creative Design Director position and collaborate on design work. There will be a lot of inter-committee collaborations because of the nature of the design role and, while prior design software experience is desirable, it is not required. Please contact Ying Chen at ychen250@illinois.edu for more information.
-
-
-
- EVENTS
-
LGS INNOVATIONS TECH TALK
-
- WECE would like to invite you to the LGS Innovation Binary Software Update Tech Talk presented by the LGS interns from UIUC!
-
- "LGS Innovations delivers mission-critical communications products, R&D, and supporting services to U.S. defense, intelligence, and civilian agencies, state and local governments, critical infrastructure operators, telecommunications and service providers, and other commercial customers around the world. We create advanced solutions in wireless communications, signals processing and analysis, optical networking, photonics, routing and switching, and spectrum management."
-
- Papa Dels will be served! Find out more on our Facebook event here.
-
- Come hang out with WECE and meet other new members! This is a great way to kick off the new year and make friends that you will see time and time again at WECE events and in your committees. We will have an assortment of board games, cards, and pizza!
-
- Do you like coding, teamwork, games, pizza? Workiva is sponsoring a fun Mini Adventure Coding Jam for teams of 1-3 people. They can try their hand at an online coding game and compete for a drone and other prizes. Food will be provided. Bring your laptop or tablet!
-
- Come hang out with WECE in an informal setting. Do your homework, paint your nails, build a robot… the possibilities are endless. Snacks provided! Please fill out this WhenIsGood form to figure out the best time for everyone!
-
- Netflix and chill with WECE. Movies with be decided by attendees (as long as it's sci-fi and on Netflix, it's fair game!) Popcorn and other movie snacks provided!
-
-
- Where: TBD
-
- When: Thursday, September 14th, 5PM-8PM
-
-
-
SOLDERING WORKSHOP: CRITTER CREATIONS
-
- Interested in soldering but don't know where to start? Come learn this crucial hardware skill with WECE! In the process, you will get the opportunity to create a fun crawling critter! Beginners encouraged to attend!
-
-
- Where: TBD
-
- When: Monday, September 18th, 6PM-7PM
-
-
-
54 STARTUP WEEKEND
-
- Are you passionate about solving problems? Are you looking for a platform to collaborate with people on the next best idea? Founders' annual startup weekend, 54, is back for its 5th year! It is a 3-day event where students from all across campus come together to pitch ideas, form teams, and spend the weekend turning those ideas into startups. Join us from September 22nd - September 24th at Thomas. M. Siebel Center for Computer Science for a weekend full of inspirational ideas, networking with professionals from the industry/VC firms and academia, and cash prizes, food, drinks, and more! You take care of your startup idea, we will take care of you. Apply at http://bit.ly/2vj4jPl and find out more at www.54.io. Applications are due by Friday, September 15th. Questions? Email us at team@54.io.
-
-
- Where: Thomas. M. Siebel Center for Computer Science
-
- When: Friday, September 22nd - Sunday, September 24th
-
-
-
BE PROFESSIONAL
-
- Please join us for a night of food, networking, and professional workshops at SWE's annual Be Professional dinner, co-hosted by SHPE and WECE. This year's event will take place on September 25th from 5-8pm in the Illini Union Ballroom and will feature representatives from Molex, BP, and John Deere. Registration is now open here and runs through Wednesday, September 20th. For further information, please contact April Shewry at ashewry2@illinois.edu. We look forward to seeing you there!
-
-
- Where: Illini Union Ballroom
-
- When: Monday, September 25th, 5PM-8PM
-
-
-
ENGINEERING EMPLOYMENT EXPO
-
- The Fall Engineering Employment EXPO will take place September 25-26 from 10am-4pm at the ARC. Representatives from various companies will be on campus to speak to candidates for internships, co-ops, and full time positions! This is an event you do not want to miss! Need more info? Check out our website OR check out our Facebook page for constant updates.
-
-
-
\ No newline at end of file
diff --git a/source/html/newsletterarchive/091117.html b/source/html/newsletterarchive/091117.html
deleted file mode 100644
index 1e885a0..0000000
--- a/source/html/newsletterarchive/091117.html
+++ /dev/null
@@ -1,213 +0,0 @@
-
-
-
-
-
-
- WECE Newsletter: September 11, 2017 - September 18, 2017
-
-
-
-
-
-
-
-
-
-
- SEPTEMBER 11 - SEPTEMBER 18
- NEWS
-
KEEP IN TOUCH WITH WECE!
-
- WECE is constantly working on technical, professional, social, and outreach initiatives, so keep in touch and get involved! Check out the WECE @ Illinois website. Like our Facebook page and join the Facebook Student Group to join the community. Don't forget to check out our Instagram.
-
-
- EVENTS
-
TASTY THURSDAY
-
- Come hang out with WECE in an informal setting. Do your homework, paint your nails, build a robot… the possibilities are endless. Snacks will be provided!
-
- Netflix and chill with WECE. Movies will be decided by the attendees (as long as it's sci-fi and on Netflix, it's fair game!) Popcorn and other movie snacks provided!
-
- Interested in soldering but don't know where to start? Come learn this crucial hardware skill with WECE! In the process, you will get the opportunity to create a fun crawling critter! Beginners encouraged to attend! Kits are limited so please sign up here to reserve your spot.
-
-
- Where: TBD
-
- When: Monday, September 18th, 6PM-7PM
-
-
-
BE PROFESSIONAL
-
- Please join us for a night of food, networking, and professional workshops at SWE's annual Be Professional dinner, co-hosted by SHPE and WECE. This year's event will take place on September 25th from 5-8pm in the Illini Union Ballroom and will feature representatives from Molex, BP, and John Deere. Registration is now open here and runs through Wednesday, September 20th. For further information, please contact April Shewry at ashewry2@illinois.edu. We look forward to seeing you there!
-
-
- Where: Illini Union Ballroom
-
- When: Monday, September 25th, 5PM-8PM
-
-
-
SANDIA NATIONAL LABS TECH TALK
-
- For more than 60 years, Sandia has delivered essential science and technology to resolve the nation's most challenging security issues...A strong science, technology, and engineering foundation enables Sandia's mission through a capable research staff working at the forefront of innovation, collaborative research with universities and companies, and discretionary research projects with significant potential impact.
-
- Apple will be presenting a keynote presentation titled “Why Apple” which covers multiple aspects of the Apple culture, what its like to work for Apple, etc. Lunch will be provided and space will most likely be limited. Please email cchoi18@illinois.edu to reserve your spot. First come, first serve!
-
KPMG ADVISORY AND EVS INFORMATION NETWORKING SESSION
-
- Are you interested in learning about the various Advisory and EVS practices we are actively recruiting for at KPMG? If so, come learn more on Monday September 11th at Alice Campbell Alumni Center from 6:30 PM – 8:30 PM (open house). KPMG professionals will be there to give a better description of the practices and for you to network with them!
-
-
- Where: Alice Campbell Alumni Center
-
- When: Monday, September 11th, 6:30PM-8:30PM
-
-
-
BAXTER INFO SESSION
-
- In addition to being at the career fair on Wednesday, Baxter will be holding a virtual reality/networking/product presentation. 11:00 AM – 4:00 PM at the John Deere Pavilion in MEL. There will be a virtual reality booth, product demonstration, and we will be accepting resumes (internships, co-ops, fulltime, rotational program). There will also be DD Coffee, Curtis Apple Orchard Donuts, Cider, Apples, and Apple Fritters!
-
-
- Where: John Deere Pavilion in MEL
-
- When: Wednesday, September 13th, 11AM-4PM
-
-
-
54 STARTUP WEEKEND
-
- Are you passionate about solving problems? Are you looking for a platform to collaborate with people on the next best idea? Founders' annual startup weekend, 54, is back for its 5th year! It is a 3-day event where students from all across campus come together to pitch ideas, form teams, and spend the weekend turning those ideas into startups. Join us from September 22nd - September 24th at Thomas. M. Siebel Center for Computer Science for a weekend full of inspirational ideas, networking with professionals from the industry/VC firms and academia, and cash prizes, food, drinks, and more! You take care of your startup idea, we will take care of you. Apply at http://bit.ly/2vj4jPl and find out more at www.54.io. Applications are due by Friday, September 15th. Questions? Email us at team@54.io.
-
-
- Where: Thomas. M. Siebel Center for Computer Science
-
- When: Friday, September 22nd - Sunday, September 24th
-
-
-
-
ENGINEERING EMPLOYMENT EXPO
-
- The Fall Engineering Employment EXPO will take place September 25-26 from 10am-4pm at the ARC. Representatives from various companies will be on campus to speak to candidates for internships, co-ops, and full time positions! This is an event you do not want to miss! Need more info? Check out our website OR check out our Facebook page for constant updates.
-
Lean In Circles are small groups that meet to share and learn together. Join
- WECE, SWE, and WCS and Facebook for a round of good conversation. You
- must RSVP at the link below! If you have any questions, contact
- Richa Vijayvergiya.
-
Our first meeting would serve as a general information session and as an
- opportunity to find out about the chair positions available! If you have
- questions, contact Anusha Kandula at the link below!
-
Come through to the first Technical Committee meeting of the semester to
- brainstorm interesting projects and workshop ideas. Learn about ways
- to get involved in the committee! Contact Pragya Aneja at the link below
- for more information.
-
Listen to tech talks from across the industry, participate in a programming
- competition, solve puzzles, and attend our job and startup fairs. The
- conference is free and open to anyone. Register
- here.
-
Meet Silicon Valley’s biggest players in entrepreneurship, innovation, and
- venture capital. Spend a week visiting startups and leading tech conpanies
- while networking with prominent, entrepreneurial alumni.
-
Eligibility: juniors or sophomores; Pursuing a 2019 summer internship; Black,
- Hispanic/Latino or Native American.
-
This scholarship recognizes outstanding students and is an integral part of diversity
- recruiting efforts at Goldman Sachs. Recipients will receive up to $15,000
- towards tuituion and academic expenses.
-
-
-
-
-
-
-
-
-
Sign up for committees!
-
Missed the September General Meeting? Sign up for the committees you would like to join
- here.
-
-
-
-
Tune into CodeNewbie Podcast
-
CodeNewbie has joined up with Vaidehi Joshi to turn her blog series into an awesome podcast,
- the Basecs Podcast. They cover binary, hexes, algorithms, and more. Join them
- here for Season 3 launching on August 22.
-
-
-
-
Join our WECE Slack Workspace
-
WECE uses Slack as a way to streamline communication between WECE members and committees,
- as well as a place for important announcements and upcoming events! Join our general
- channel
- here.
-
-
-
Resume Book
-
Career fair season is here again! If you're still looking for internships or full-time opportunities,
- submit your resume to the WECE Resume Book
- here to have your resume sent out to companies!
-
-
-
-
\ No newline at end of file
diff --git a/source/html/newsletterarchive/091817.html b/source/html/newsletterarchive/091817.html
deleted file mode 100644
index 5f2abba..0000000
--- a/source/html/newsletterarchive/091817.html
+++ /dev/null
@@ -1,231 +0,0 @@
-
-
-
-
-
-
- WECE Newsletter: September 18, 2017 - September 25, 2017
-
-
-
-
-
-
-
-
-
-
- SEPTEMBER 18 - SEPTEMBER 25
- NEWS
-
KEEP IN TOUCH WITH WECE!
-
- WECE is constantly working on technical, professional, social, and outreach initiatives, so keep in touch and get involved! Check out the WECE @ Illinois website. Like our Facebook page and join the Facebook Student Group to join the community. Don't forget to check out our Instagram.
-
-
- EVENTS
-
OUTREACH COMMITTEE MEETING
-
- Come join us for our first Outreach Committee meeting as we discuss any outreach event ideas that committee members might have and would like WECE to do this semester. We will also be discussing the upcoming outreach event that WECE has in collaboration with HKN and ECESAC. This would be a great opportunity for all those who want to volunteer!
-
- Come hang out with WECE in an informal setting. Do your homework, paint your nails, build a robot… the possibilities are endless. Snacks will be provided!
-
- Join the WECE Engineering Open House team and help us brainstorm and shape ideas for Engineering Open House, the largest student-run event at our university. We are planning on working on multiple technical projects throughout the year and integrating them into our final EOH Project. Come and build with us something that excites you!
-
- Interested in soldering but don't know where to start? Come learn this crucial hardware skill with WECE! In the process, you will get the opportunity to create a fun crawling critter! Beginners encouraged to attend! Kits are limited so please sign up here to reserve your spot.
-
- Please join us for a night of food, networking, and professional workshops at SWE's annual Be Professional dinner, co-hosted by SHPE and WECE. This year's event will take place on September 25th from 5-8pm in the Illini Union Ballroom and will feature representatives from Molex, BP, and John Deere. Registration is now open here and runs through Wednesday, September 20th. For further information, please contact April Shewry at ashewry2@illinois.edu. We look forward to seeing you there!
-
-
- Where: Illini Union Ballroom
-
- When: Monday, September 25th, 5PM-8PM
-
-
-
SANDIA NATIONAL LABS TECH TALK
-
- For more than 60 years, Sandia has delivered essential science and technology to resolve the nation's most challenging security issues...A strong science, technology, and engineering foundation enables Sandia's mission through a capable research staff working at the forefront of innovation, collaborative research with universities and companies, and discretionary research projects with significant potential impact.
-
- Apple will be presenting a keynote presentation titled “Why Apple” which covers multiple aspects of the Apple culture, what its like to work for Apple, etc. Lunch will be provided!
-
- WECE is currently working with ECESAC and HKN on a freshman mentoring program! The program consists of meetings during the semester, as well as an online communication platform. In the meetings, freshman have dinner (which we provide) with student mentors and get some advice about courses, clubs, etc. The online communication platform will provide a means for them to ask questions anytime that mentors can respond to. The plan for the mentoring program consists of 2 parts: (1) large group meeting(s) in the ECEB 3002 ballroom and (2) an online communication portal (like Piazza).
-
- iHelp is run by Student Alumni Ambassadors and is an annual day of service for the school. We're looking to sign a group of people up for iHelp and there's signups for 3 hour shifts (9:00am-12:00pm, 10:00am-1:00pm, 11:00am-2:00pm). We will be partnering up with IEEE for this event so if you are interested, please email kankani2@illinois.edu with the shift you'd be willing to volunteer in.
-
-
- When: Saturday, September 30th, 9AM-2PM
-
-
- EXTERNAL EVENTS
-
54 STARTUP WEEKEND
-
- Are you passionate about solving problems? Are you looking for a platform to collaborate with people on the next best idea? Founders' annual startup weekend, 54, is back for its 5th year! It is a 3-day event where students from all across campus come together to pitch ideas, form teams, and spend the weekend turning those ideas into startups. Join us from September 22nd - September 24th at Thomas. M. Siebel Center for Computer Science for a weekend full of inspirational ideas, networking with professionals from the industry/VC firms and academia, and cash prizes, food, drinks, and more! You take care of your startup idea, we will take care of you. Apply at http://bit.ly/2vj4jPl and find out more at www.54.io. Applications are due by Friday, September 15th. Questions? Email us at team@54.io.
-
-
- Where: Thomas. M. Siebel Center for Computer Science
-
- When: Friday, September 22nd - Sunday, September 24th
-
-
-
ENGINEERING EMPLOYMENT EXPO
-
- The Fall Engineering Employment EXPO will take place September 25-26 from 10am-4pm at the ARC. Representatives from various companies will be on campus to speak to candidates for internships, co-ops, and full time positions! This is an event you do not want to miss! Need more info? Check out our website OR check out our Facebook page for constant updates.
-
- We are extending you an exclusive invitation to sign up for the upcoming UIUC Datathon as there are a limited number of spots remaining and we would love to have you. To be eligible to participate in the event, please sign up and complete the registration process prior to the deadline at 11:59pm on September 27th. If you are curious to see what a Datathon looks like, we encourage you to view this brief clip from our past event in Dublin! The UIUC Datathon is hosted by Citadel LLC and Citadel Securities in partnership with Correlation One. The event will take place on Saturday, October 7th from 7AM-7PM in UIUC ECEB Room 3002.
-
Lean In Circles are small groups that meet to share and learn together. Join
- WECE, SWE, and WCS and Facebook for a round of good conversation. You
- must RSVP at the link below! If you have any questions, contact
- Richa Vijayvergiya.
-
Our first meeting would serve as a general information session and as an
- opportunity to find out about the chair positions available! If you have
- questions, contact Anusha Kandula at the link below!
-
Come through to the first Technical Committee meeting of the semester to
- brainstorm interesting projects and workshop ideas. Learn about ways
- to get involved in the committee! Contact Pragya Aneja at the link below
- for more information.
-
Listen to tech talks from across the industry, participate in a programming
- competition, solve puzzles, and attend our job and startup fairs. The
- conference is free and open to anyone. Register
- here.
-
Meet Silicon Valley’s biggest players in entrepreneurship, innovation, and
- venture capital. Spend a week visiting startups and leading tech conpanies
- while networking with prominent, entrepreneurial alumni.
-
Eligibility: juniors or sophomores; Pursuing a 2019 summer internship; Black,
- Hispanic/Latino or Native American.
-
This scholarship recognizes outstanding students and is an integral part of diversity
- recruiting efforts at Goldman Sachs. Recipients will receive up to $15,000
- towards tuituion and academic expenses.
-
-
-
-
-
-
-
-
-
Sign up for committees!
-
Missed the September General Meeting? Sign up for the committees you would like to join
- here.
-
-
-
-
Tune into CodeNewbie Podcast
-
CodeNewbie has joined up with Vaidehi Joshi to turn her blog series into an awesome podcast,
- the Basecs Podcast. They cover binary, hexes, algorithms, and more. Join them
- here for Season 3 launching on August 22.
-
-
-
-
Join our WECE Slack Workspace
-
WECE uses Slack as a way to streamline communication between WECE members and committees,
- as well as a place for important announcements and upcoming events! Join our general
- channel
- here.
-
-
-
Resume Book
-
Career fair season is here again! If you're still looking for internships or full-time opportunities,
- submit your resume to the WECE Resume Book
- here to have your resume sent out to companies!
-
What are your goals for this school year? What do you need to
- accomplish them? Join WECE to discuss your objectives with fellow
- peers and brainstorm ways to achieve them! Food will be provided!
-
Apple is bringing ~20 engineers to UIUC and is looking forward to
- meeting engineering students!
-
- If you plan to attend, register via this link
- and choose your
- preferred time slot. Questions? Email us at the link below.
-
Meet Silicon Valley’s biggest players in entrepreneurship,
- innovation, and
- venture capital. Spend a week visiting startups and leading tech
- conpanies
- while networking with prominent, entrepreneurial alumni.
-
Eligibility: juniors or sophomores; Pursuing a 2019 summer internship;
- Black,
- Hispanic/Latino or Native American.
-
This scholarship recognizes outstanding students and is an integral part
- of diversity
- recruiting efforts at Goldman Sachs. Recipients will receive up to
- $15,000
- towards tuituion and academic expenses.
-
-
-
-
-
-
-
-
-
Sign up for committees!
-
Missed the September General Meeting? Sign up for the committees you would like to
- join
- here.
-
-
-
-
Tune into CodeNewbie Podcast
-
CodeNewbie has joined up with Vaidehi Joshi to turn her blog series into an awesome
- podcast,
- the Basecs Podcast. They cover binary, hexes, algorithms, and more. Join them
- here for Season 3 launching on
- August 22.
-
-
-
-
Join our WECE Slack Workspace
-
WECE uses Slack as a way to streamline communication between WECE members and
- committees,
- as well as a place for important announcements and upcoming events! Join our
- general
- channel
- here.
-
-
-
Resume Book
-
Career fair season is here again! If you're still looking for internships or
- full-time opportunities,
- submit your resume to the WECE Resume Book
- here to have your resume sent out to companies!
-
-
-
-
\ No newline at end of file
diff --git a/source/html/newsletterarchive/092517.html b/source/html/newsletterarchive/092517.html
deleted file mode 100644
index 2a23e8f..0000000
--- a/source/html/newsletterarchive/092517.html
+++ /dev/null
@@ -1,195 +0,0 @@
-
-
-
-
-
-
- WECE Newsletter: September 25, 2017 - October 2, 2017
-
-
-
-
-
-
-
-
-
-
- SEPTEMBER 25 - OCTOBER 2
- HIGHLIGHTS
-
APPLE LUNCHEON
-
- Apple will be presenting a keynote presentation titled “Why Apple” which covers multiple aspects of the Apple culture, what its like to work for Apple, etc. Recruiters will be collecting resumes and lunch will be provided! Please reserve your spot here. If you have any questions, please email uiuc@apple.com
-
- Come out to the first technical committee meeting of the year to learn about the opportunities we have for personal growth, leadership, and technical skills!
-
- Please join us for a night of food, networking, and professional workshops at SWE's annual Be Professional dinner, co-hosted by SHPE and WECE. This year's event will take place on September 25th from 5-8pm in the Illini Union Ballroom and will feature representatives from Molex, BP, and John Deere. Registration is now open here and runs through Wednesday, September 20th. For further information, please contact April Shewry at ashewry2@illinois.edu. We look forward to seeing you there!
-
-
- Where: Illini Union Ballroom
-
- When: Monday, September 25th, 5PM-8PM
-
-
-
SANDIA NATIONAL LABS TECH TALK
-
- For more than 60 years, Sandia has delivered essential science and technology to resolve the nation's most challenging security issues...A strong science, technology, and engineering foundation enables Sandia's mission through a capable research staff working at the forefront of innovation, collaborative research with universities and companies, and discretionary research projects with significant potential impact.
-
- Come hang out with WECE in an informal setting. Do your homework, paint your nails, build a robot… the possibilities are endless. Snacks will be provided!
-
- WECE is currently working with ECESAC and HKN on a freshman mentoring program! The program consists of meetings during the semester, as well as an online communication platform. In the meetings, freshman have dinner (which we provide) with student mentors and get some advice about courses, clubs, etc. The online communication platform will provide a means for them to ask questions anytime that mentors can respond to. If you're interested in becoming a mentor this semester, please fill out this form by Wednesday, September 27th at 11:59 PM.
-
- iHelp is run by Student Alumni Ambassadors and is an annual day of service for the school. We're looking to sign a group of people up for iHelp and there's signups for 3 hour shifts (9:00am-12:00pm, 10:00am-1:00pm, 11:00am-2:00pm). We will be partnering up with IEEE for this event so if you are interested, please email kankani2@illinois.edu with the shift you'd be willing to volunteer in.
-
-
- When: Saturday, September 30th, 9AM-2PM
-
-
- EXTERNAL EVENTS
-
ENGINEERING EMPLOYMENT EXPO
-
- The Fall Engineering Employment EXPO will take place September 25-26 from 10am-4pm at the ARC. Representatives from various companies will be on campus to speak to candidates for internships, co-ops, and full time positions! This is an event you do not want to miss! Need more info? Check out our website OR check out our Facebook page for constant updates.
-
- We are extending you an exclusive invitation to sign up for the upcoming UIUC Datathon as there are a limited number of spots remaining and we would love to have you. To be eligible to participate in the event, please sign up and complete the registration process prior to the deadline at 11:59pm on September 27th. If you are curious to see what a Datathon looks like, we encourage you to view this brief clip from our past event in Dublin! The UIUC Datathon is hosted by Citadel LLC and Citadel Securities in partnership with Correlation One. The event will take place on Saturday, October 7th from 7AM-7PM in UIUC ECEB Room 3002.
-
WECE Wednesdays is a chill space for you to stop by hang out with
- friends, do homework, and of course, grab some food :) Whether it's
- for ten minutes or two hours, drop on by!
-
This session will help you with your technical interviews and
- gain worthy coding experience as we will be going over
- questions and algorithms usually asked by most top companies!
-
The Design Assistant is a role comparable to a committee chair. We
- are looking for someone to
- shadow the Public Image Director position and collaborate
- on design work. There will be a lot of inter-committee
- collaborations. Prior design software experience is desirable, but
- it is not required.
-
Apple is bringing ~20 engineers to UIUC and is looking forward
- to
- meeting engineering students!
-
- If you plan to attend, register via this link
- and choose your
- preferred time slot. Questions? Email us at the link below.
-
Meet Silicon Valley’s biggest players in entrepreneurship,
- innovation, and
- venture capital. Spend a week visiting startups and leading
- tech
- conpanies
- while networking with prominent, entrepreneurial alumni.
-
Eligibility: juniors or sophomores; Pursuing a 2019 summer
- internship;
- Black,
- Hispanic/Latino or Native American.
-
This scholarship recognizes outstanding students and is an integral
- part
- of diversity
- recruiting efforts at Goldman Sachs. Recipients will receive up to
- $15,000
- towards tuituion and academic expenses.
-
-
-
-
-
-
-
-
-
Sign up for committees!
-
Missed the September General Meeting? Sign up for the committees you would like to
- join
- here.
-
-
-
-
Tune into CodeNewbie Podcast
-
CodeNewbie has joined up with Vaidehi Joshi to turn her blog series into an awesome
- podcast,
- the Basecs Podcast. They cover binary, hexes, algorithms, and more. Join them
- here for Season 3 launching on
- August 22.
-
-
-
-
Join our WECE Slack Workspace
-
WECE uses Slack as a way to streamline communication between WECE members and
- committees,
- as well as a place for important announcements and upcoming events! Join our
- general
- channel
- here.
-
-
-
Resume Book
-
Career fair season is here again! If you're still looking for internships or
- full-time opportunities,
- submit your resume to the WECE Resume Book
- here to have your resume sent out to companies!
-
-
-
-
\ No newline at end of file
diff --git a/source/html/newsletterarchive/100217.html b/source/html/newsletterarchive/100217.html
deleted file mode 100644
index 3c2b75c..0000000
--- a/source/html/newsletterarchive/100217.html
+++ /dev/null
@@ -1,146 +0,0 @@
-
-
-
-
-
-
- WECE Newsletter: October 2, 2017 - October 9, 2017
-
-
-
-
-
-
-
-
-
-
- OCTOBER 2 - OCTOBER 9
- EVENTS
-
OUTREACH COMMITTEE MEETING
-
- Come join us for our Outreach Committee meeting as we discuss any outreach event ideas that committee members might have and would like WECE to do this semester. This would be a great opportunity for all those who want to volunteer!
-
-
- Where: TBD
-
- When: TBD
-
-
-
TASTY THURSDAY
-
- Come hang out with WECE in an informal setting. Do your homework, paint your nails, build a robot… the possibilities are endless. Snacks will be provided!
-
- Interested in getting involved with research or going to graduate school? Join us as our panel of distinguished, female ECE graduate students and professors give advice and share their experience on several areas, including the application process, selecting a graduate school, letters of recommendation, and trending research fields at the moment.
-
- We are extending you an exclusive invitation to sign up for the upcoming UIUC Datathon as there are a limited number of spots remaining and we would love to have you. To be eligible to participate in the event, please sign up and complete the registration process prior to the deadline at 11:59pm on September 27th. If you are curious to see what a Datathon looks like, we encourage you to view this brief clip from our past event in Dublin! The UIUC Datathon is hosted by Citadel LLC and Citadel Securities in partnership with Correlation One. The event will take place on Saturday, October 7th from 7AM-7PM in UIUC ECEB Room 3002.
-
WECE Wednesdays is a chill space for you to stop by hang out with
- friends, do homework, and of course, grab some food :) Whether it's
- for ten minutes or two hours, drop on by! This week, we will be
- having Dunkin' Donuts!
-
Come out to learn more about an upcoming outreach event and also see
- how you can get involved! If you have any questions, please contact
- Shannon Lin using the link below.
-
Midterms stressing you out? No problem! WECE will have
- study spaces to help you get in your groove – one quiet and one
- with light music. Brain food will be
- provided.
- Bring yourself, your books, and your friends, and hunker in!
-
This session will help you with your technical interviews and
- gain worthy coding experience as we will be going over
- questions and algorithms usually asked by most top companies!
-
Want some cute WECE merch but don't know where to get it? Then join
- us with our collab with AOE and make your own WECE swag! Just bring
- yourself and your friends and enjoy your time!
-
The Design Assistant is a role comparable to a committee chair. We
- are looking for someone to
- shadow the Public Image Director position and collaborate
- on design work. There will be a lot of inter-committee
- collaborations. Prior design software experience is desirable, but
- it is not required.
-
Eligibility: juniors or sophomores; Pursuing a 2019 summer
- internship;
- Black,
- Hispanic/Latino or Native American.
-
This scholarship recognizes outstanding students and is an integral
- part
- of diversity
- recruiting efforts at Goldman Sachs. Recipients will receive up to
- $15,000
- towards tuituion and academic expenses.
-
-
-
-
-
-
-
-
-
Sign up for committees!
-
Missed the September General Meeting? Sign up for the committees you would like to
- join
- here.
-
-
-
-
Tune into CodeNewbie Podcast
-
CodeNewbie has joined up with Vaidehi Joshi to turn her blog series into an awesome
- podcast,
- the Basecs Podcast. They cover binary, hexes, algorithms, and more. Join them
- here for Season 3 launching on
- August 22.
-
-
-
-
Join our WECE Slack Workspace
-
WECE uses Slack as a way to streamline communication between WECE members and
- committees,
- as well as a place for important announcements and upcoming events! Join our
- general
- channel
- here.
-
-
-
Resume Book
-
Career fair season is here again! If you're still looking for internships or
- full-time opportunities,
- submit your resume to the WECE Resume Book
- here to have your resume sent out to companies!
-
-
-
-
\ No newline at end of file
diff --git a/source/html/newsletterarchive/100917.html b/source/html/newsletterarchive/100917.html
deleted file mode 100644
index b7f40bb..0000000
--- a/source/html/newsletterarchive/100917.html
+++ /dev/null
@@ -1,155 +0,0 @@
-
-
-
-
-
-
- WECE Newsletter: October 9, 2017 - October 16, 2017
-
-
-
-
-
-
-
-
-
-
- OCTOBER 9 - OCTOBER 16
- EVENTS
-
OUTREACH COMMITTEE MEETING
-
- Come join us for our Outreach Committee meeting as we discuss any outreach event ideas that committee members might have and would like WECE to do this semester. This would be a great opportunity for all those who want to volunteer!
-
- Interested in getting involved with research or going to graduate school? Join us as our panel of distinguished, female ECE graduate students and professors give advice and share their experience on several areas, including the application process, selecting a graduate school, letters of recommendation, and trending research fields at the moment.
-
- Come hang out with WECE in an informal setting. Do your homework, paint your nails, build a robot… the possibilities are endless. Snacks will be provided!
-
- Join us for our October GM! We've got an exciting one coming at you. You will meet our new faculty advisor, check out this year's Women in ECE @ Illinois shirts, and learn about the new membership point system (and perks). As always, all are welcome to join us and dinner will be catered. RSVP to the Facebook event here. See you there!
-
- Come to our first Lean In meeting to meet new people, have great discussions about important topics, and build a community of support among the women in tech. Food will be provided.
-
-
- Where: TBD
-
- When: Wednesday, October 25th, 6PM-7PM
-
-
-
-
-
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/source/html/newsletterarchive/101518.html b/source/html/newsletterarchive/101518.html
deleted file mode 100644
index 091fabf..0000000
--- a/source/html/newsletterarchive/101518.html
+++ /dev/null
@@ -1,1337 +0,0 @@
-
-
-
-
-
-
-
-
- WECE Newsletter - October 15-21, 2018
-
-
-
-
-
-
Come learn more about infrastructure and meet new people at our
- first committee meeting! Contact Eugenia Chen at the link below for
- more information and to join the committee groupchat.
-
WECE Wednesdays is a chill space for you to stop by hang out with
- friends, do homework, and of course, grab some food :) Whether it's
- for ten minutes or two hours, drop on by!
-
Want some cute WECE merch but don't know where to get it? Then join
- us with our collab with AOE and make your own WECE swag! Just bring
- yourself and your friends and enjoy your time!
-
Peer Mentorship is a new program in WECE. Sign up as a mentor or a
- mentee to share thoughts or ask questions about ECE & Illinois
- life! There will be monthly bonding events for mentors and mentees.
- It’s a great way to meet new people within WECE!
-
Eligibility: juniors or sophomores; Pursuing a 2019 summer
- internship;
- Black,
- Hispanic/Latino or Native American.
-
This scholarship recognizes outstanding students and is an integral
- part
- of diversity
- recruiting efforts at Goldman Sachs. Recipients will receive up to
- $15,000
- towards tuituion and academic expenses.
-
-
-
-
-
-
-
-
-
Design Assistant Opening
-
The Design Assistant is a role comparable to a committee chair. We
- are looking for someone to shadow the Public Image Director position and
- collaborate on design work. There will be a lot of inter-committee
- collaborations. Prior design software experience is desirable, but
- it is not required. Contact
- Krystal.
-
-
-
Sign up for committees!
-
Missed the September General Meeting? Sign up for the committees you would like to
- join
- here.
-
-
-
-
Tune into CodeNewbie Podcast
-
CodeNewbie has joined up with Vaidehi Joshi to turn her blog series into an awesome
- podcast,
- the Basecs Podcast. They cover binary, hexes, algorithms, and more. Join them
- here for Season 3 launching on
- August 22.
-
-
-
-
Join our WECE Slack Workspace
-
WECE uses Slack as a way to streamline communication between WECE members and
- committees,
- as well as a place for important announcements and upcoming events! Join our
- general
- channel
- here.
-
-
-
Resume Book
-
Career fair season is here again! If you're still looking for internships or
- full-time opportunities,
- submit your resume to the WECE Resume Book
- here to have your resume sent out to companies!
-
-
-
-
\ No newline at end of file
diff --git a/source/html/newsletterarchive/101617.html b/source/html/newsletterarchive/101617.html
deleted file mode 100644
index 5fa8226..0000000
--- a/source/html/newsletterarchive/101617.html
+++ /dev/null
@@ -1,192 +0,0 @@
-
-
-
-
-
-
- WECE Newsletter: October 16, 2017 - October 23, 2017
-
-
-
-
-
-
-
-
-
-
- OCTOBER 16 - OCTOBER 23
- EVENTS
-
OUTREACH COMMITTEE MEETING
-
- Come join us for our Outreach Committee meeting as we discuss any outreach event ideas that committee members might have and would like WECE to do this semester. This would be a great opportunity for all those who want to volunteer!
-
- Join us for our October GM! We've got an exciting one coming at you. You will meet our new faculty advisor, check out this year's Women in ECE @ Illinois shirts, and learn about the new membership point system (and perks). As always, all are welcome to join us and dinner will be catered. RSVP to the Facebook event here. See you there!
-
- Come hang out with WECE in an informal setting. Do your homework, paint your nails, build a robot… the possibilities are endless. Snacks will be provided!
-
- Come to our first Lean In meeting to meet new people, have great discussions about important topics, and build a community of support among the women in tech. Food will be provided.
-
-
- Where: TBD
-
- When: Wednesday, October 25th, 6PM-7PM
-
-
-
WECE x WCS HALLOWEEN PARTY
-
- Come out for an unBOOlievable evening with and WECE and WCS! There will be pumpkin painting, face painting, and a photobooth! There will also be a bunch of spook-tacular foods so definitely come to Trick or Treat yo' self!! (Also, sorry you can't skele-run from our skele-puns!)
-
-
- Where: TBD
-
- When: Tuesday, October 31st, 6PM-8PM
-
-
- EXTERNAL EVENTS
-
THINKCHICAGO ROADSHOW
-
- The ThinkChicago Roadshow is coming to campus! At this event, you will have the opportunity to meet with 30 tech companies from Chicago that are looking to speak with our students about the Innovation Ecosystem in the city. There will also be student demos and a panel discussion. This will all be taking place October 24th, from 3-7pm, in Grainger Auditorium in the ECE Building. Learn more about the ThinkChicago here. RSVP on Handshake and make sure you don't miss out on this awesome event!
-
- Our October SocialFuse is coming up! If you weren't aware, SocialFuse is a pitching and networking event meant to bring together students with new venture ideas and those that have the skills to help make these ideas a reality. If you have a startup idea that you would like to pitch, apply here by October 19th. SocialFuse will be taking place October 26th from 6-8pm in the Ikenberry SDRP, 2025A Scott Multipurpose Room. Learn more about SocialFuse here.
-
- The National Center for Women in Information and Technology (NCWIT) $10,000 Collegiate Award applications are open until Oct. 30! The prize is for an individual woman undergraduate or graduate student in CS or related degree. Please note that all UIUC students automatically meet the criteria of being a member “of the NCWIT Aspirations in Computing Community” because the university is an institutional member. To learn more about and apply for the award, visit this link. If you have any questions, please contact Stephanie Wang.
-
-
-
-
9TH POWER AND ENERGY CONFERENCE AT ILLINOIS (PECI)
-
- The Power and Energy Systems group at the University of Illinois at Urbana-Champaign cordially invites you to attend and present at the 9th Power and Energy Conference at Illinois (PECI) which will be held in the I-Hotel at UIUC on February 22-23, 2018. Graduate student-organized and led, PECI fosters discourse broadly across the electric power and energy disciplines which include, but are not limited to: Power Electronics, Electric Power Systems, Energy Markets, Renewable Energy Technologies, Electric Machines and Drives, System Reliability and Control. Undergraduates who are involved in research are welcomed to present their work. Deadline for poster abstract submission is Nov 30, 2017. Registration for conference participation will be opened soon. More detailed information is available at http://peci.ece.illinois.edu or contact peci-publicity@illinois.edu.
-
-
- Where: I-Hotel
-
- When: February 22nd-23rd
-
-
-
-
-
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/source/html/newsletterarchive/102218.html b/source/html/newsletterarchive/102218.html
deleted file mode 100644
index 425ca5b..0000000
--- a/source/html/newsletterarchive/102218.html
+++ /dev/null
@@ -1,1357 +0,0 @@
-
-
-
-
-
-
-
-
- WECE Newsletter - October 22-28, 2018
-
-
-
-
-
-
WECE Wednesdays is a chill space for you to stop by hang out with
- friends, do homework, and of course, grab some food :) Whether it's
- for ten minutes or two hours, drop on by!
-
Want some cute WECE merch but don't know where to get it? Then join
- us with our collab with AOE and make your own WECE swag! Just bring
- yourself and your friends and enjoy your time!
-
Are you afraid of clowns? Do you fear the dark? Are you scared of
- squirrels? Join WECE for our "Fear" Lean-In. Whether
- you want to reminisce on your childhood or present fear, come to
- this Lean-In for good conversation, good company and spooktacular
- (trick-or) TREATS!
-
Peer Mentorship is a new program in WECE. Sign up as a mentor or a
- mentee to share thoughts or ask questions about ECE & Illinois
- life! There will be monthly bonding events for mentors and mentees.
- It’s a great way to meet new people within WECE!
-
Eligibility: juniors or sophomores; Pursuing a 2019 summer
- internship;
- Black,
- Hispanic/Latino or Native American.
-
This scholarship recognizes outstanding students and is an integral
- part
- of diversity
- recruiting efforts at Goldman Sachs. Recipients will receive up to
- $15,000
- towards tuituion and academic expenses.
-
-
-
-
-
-
-
-
-
Design Assistant Opening
-
The Design Assistant is a role comparable to a committee chair. We
- are looking for someone to shadow the Public Image Director position and
- collaborate on design work. There will be a lot of inter-committee
- collaborations. Prior design software experience is desirable, but
- it is not required. Contact
- Krystal.
-
-
-
Sign up for committees!
-
Missed the September General Meeting? Sign up for the committees you would like to
- join
- here.
-
-
-
-
Tune into CodeNewbie Podcast
-
CodeNewbie has joined up with Vaidehi Joshi to turn her blog series into an awesome
- podcast,
- the Basecs Podcast. They cover binary, hexes, algorithms, and more. Join them
- here for Season 3 launching on
- August 22.
-
-
-
-
Join our WECE Slack Workspace
-
WECE uses Slack as a way to streamline communication between WECE members and
- committees,
- as well as a place for important announcements and upcoming events! Join our
- general
- channel
- here.
-
-
-
Resume Book
-
Career fair season is here again! If you're still looking for internships or
- full-time opportunities,
- submit your resume to the WECE Resume Book
- here to have your resume sent out to companies!
-
-
-
-
\ No newline at end of file
diff --git a/source/html/newsletterarchive/102317.html b/source/html/newsletterarchive/102317.html
deleted file mode 100644
index 5c4a6a5..0000000
--- a/source/html/newsletterarchive/102317.html
+++ /dev/null
@@ -1,211 +0,0 @@
-
-
-
-
-
-
- WECE Newsletter: October 23, 2017 - October 30, 2017
-
-
-
-
-
-
-
-
-
-
- OCTOBER 23 - OCTOBER 30
- NEWS
-
JOIN OUR SLACK CHANNEL
-
- WECE now has a Slack channel! This will be a way to streamline communication between WECE members and committees, as well as a place for important announcements and upcoming events! Join our general channel here. Directors will be sending out more information to their committees about their committee channel.
-
-
-
-
WECE STUDY GROUPS
-
- Want to find other people in your classes to study with? Join WECE study groups as we create Slack channels for common classes that our members are taking. Fill out this form here about your class schedule this semester by Friday, October 27th and more information about joining the groups will be sent out shortly!
-
-
-
-
WECE IN THE NEWS
-
- WECE was given a nice shoutout in the news by UIUC alumni Paula-Angela Mariano, who says she joined WECE because "they understood exactly what I was going through in one of the most male-dominated fields in engineering here, and we needed to be supportive of one another…they were a great community for me to join and be a part of." Check out the article here!
-
-
-
- EVENTS
-
GOLDMAN SACH WOMEN IN ENGINEERING BREAKFAST
-
- CALLING ALL WOMEN IN ENGINEERING! Curious about what it's like to be a woman in the engineering field? Come have breakfast with Goldman Sachs' engineers to discuss their experiences, hear advice, and get more information on the GS Engineering Division! Cracked will be served! Fill out this form to reserve your seat. More information can be found on our Facebook event here. If you have any questions or concerns, contact cchoi18@illinois.edu.
-
- Come to our first Lean In meeting to meet new people, have great discussions about important topics, and build a community of support among the women in tech. Food will be provided.
-
- Come hang out with WECE in an informal setting. This week, we will be providing advice on course selection to get you ready for next semester! Insomnia cookies will be provided!
-
- Come out for an unBOOlievable evening with and WECE and WCS! There will be pumpkin painting, face painting, and a photobooth! There will also be a bunch of spook-tacular foods so definitely come to Trick or Treat yo' self!! (Also, sorry you can't skele-run from our skele-puns!)
-
-
- Where: TBD
-
- When: Tuesday, October 31st, 6PM-8PM
-
-
-
TECNICAL COMMITTEE MEETING
-
- Come out to our technical committtee meeting to help plan tech workshops and gain resume-worthy technical experience through completing hardware and software-centered projects with WECE!
-
- The ThinkChicago Roadshow is coming to campus! At this event, you will have the opportunity to meet with 30 tech companies from Chicago that are looking to speak with our students about the Innovation Ecosystem in the city. There will also be student demos and a panel discussion. This will all be taking place October 24th, from 3-7pm, in Grainger Auditorium in the ECE Building. Learn more about the ThinkChicago here. RSVP on Handshake and make sure you don't miss out on this awesome event!
-
- Our October SocialFuse is coming up! If you weren't aware, SocialFuse is a pitching and networking event meant to bring together students with new venture ideas and those that have the skills to help make these ideas a reality. If you have a startup idea that you would like to pitch, apply here by October 19th. SocialFuse will be taking place October 26th from 6-8pm in the Ikenberry SDRP, 2025A Scott Multipurpose Room. Learn more about SocialFuse here.
-
- The National Center for Women in Information and Technology (NCWIT) $10,000 Collegiate Award applications are open until Oct. 30! The prize is for an individual woman undergraduate or graduate student in CS or related degree. Please note that all UIUC students automatically meet the criteria of being a member “of the NCWIT Aspirations in Computing Community” because the university is an institutional member. To learn more about and apply for the award, visit this link. If you have any questions, please contact Stephanie Wang.
-
-
-
-
9TH POWER AND ENERGY CONFERENCE AT ILLINOIS (PECI)
-
- The Power and Energy Systems group at the University of Illinois at Urbana-Champaign cordially invites you to attend and present at the 9th Power and Energy Conference at Illinois (PECI) which will be held in the I-Hotel at UIUC on February 22-23, 2018. Graduate student-organized and led, PECI fosters discourse broadly across the electric power and energy disciplines which include, but are not limited to: Power Electronics, Electric Power Systems, Energy Markets, Renewable Energy Technologies, Electric Machines and Drives, System Reliability and Control. Undergraduates who are involved in research are welcomed to present their work. Deadline for poster abstract submission is Nov 30, 2017. Registration for conference participation will be opened soon. More detailed information is available at http://peci.ece.illinois.edu or contact peci-publicity@illinois.edu.
-
-
- Where: I-Hotel
-
- When: February 22nd-23rd
-
-
-
-
-
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/source/html/newsletterarchive/102518.html b/source/html/newsletterarchive/102518.html
deleted file mode 100644
index ae99119..0000000
--- a/source/html/newsletterarchive/102518.html
+++ /dev/null
@@ -1,1197 +0,0 @@
-
-
-
-
-
-
-
-
- WECE Announcement - October 25, 2018
-
-
-
-
-
-
Join us TODAY for our October general meeting! Come and get more
- involved in WECE! We'll enjoy Maize as we get to
- know one another and get updates on our past, present, and future
- events.
-
WECE uses Slack as a way to streamline communication between WECE members and
- committees,
- as well as a place for important announcements and upcoming events! Join our
- general
- channel
- here.
-
-
-
Resume Book
-
Career fair season is here again! If you're still looking for internships or
- full-time opportunities,
- submit your resume to the WECE Resume Book
- here to have your resume sent out to companies! Note:
- please sign in with your @illinois.edu
- email!
-
- WECE is collabing with Built By Girls to have the
- spookiest Halloween party ever! Join us for a
- spooktacular night! Forget your frightening homework
- and Trick or Treat yo'self with Papa Del's Pizza!
-
- Foodie Fridays is a chill space for you to stop by
- hang out with friends, do homework, and of course,
- grab some food ;) Whether it's for ten minutes or
- one hour, drop on by! We will also have our social
- committee meetings there every week, if you would
- like to meet the board or plan events with us :)
-
- Want to nail your tech interviews? Need that push to
- polish up your coding skills? Then come out to
- WECE's LeetCode practice!!!! Upperclassmen will
- teach you basic strategies and algorithms commonly
- asked by most Fortune 500 companies. No experience
- required!
-
- Come out and help WECE with our first fundraiser! We
- will be serving Apple Cider and sugar cookies. Sign
- up on the sheet below to let us know when you can
- man the table!
-
- All of the ECE RSOs you know and love are having a
- mega bonding night!! Come out and get to know people
- in your department and network the night away
-
- Office hours are held weekly! Come get help with
- classes at our WECE-hosted office hours.
-
-
-
-
-
-
-
External Announcements
-
-
-
-
TEC Form
-
- CUBE, a student-run consulting RSO, is working on a
- project that measures the awareness of
- entrepreneurship and the TEC. Please fill out the
- google form to help them collect some useful data!
-
- Hear from women who have participated in our signature
- program-Cozad New Venture Challenge. Cozad helps you
- launch your startup idea by providing the resources
- you need through workshops, funding, mentoring, and
- more!
-
- Sign up for the seventh annual Big Data Summit. This
- interactive conference offers participants the
- opportunity to learn and share knowledge about key
- aspects of big data and its business applications
- through dynamic panels, inspiring keynote
- presentations, and networking opportunities.
-
- If you are an alumni, we would love to stay in contact with
- you! If you would like to help WECE with professional
- development and help our current members, please fill out
- this form!
-
-
-
Interested in making websites?
-
- If you are interested in helping with our WECE website or
- learning more about web applications or web design, fill out
- this form
- to get involved!
-
-
-
Sign up for committees!
-
- Sign up for the committees you would like to join
- here.
-
-
-
Resume Book
-
- If you're still looking for internships or full-time
- opportunities, submit your resume to the WECE Resume Book
- here
- to have your resume sent out to companies!
-
-
-
Join our group on Campus Groups
-
- Join WECE on campus groups to get notifications for all our
- events and to RVSP and check-in to receive membership points
- here!
-
-
-
Join our WECE Slack Workspace
-
- WECE uses Slack as a way to streamline communication between
- WECE members and committees, as well as a place for
- important announcements and upcoming events! Join our
- general channel
- here.
-
Are you afraid of clowns? Do you fear the dark? Are you scared of
- squirrels? Join WECE for our "Fear" Lean-In. Whether
- you want to reminisce on your childhood or present fear, come to
- this Lean-In for good conversation, good company and spooktacular
- (trick-or) TREATS!
-
Stop by the WECE table in the atrium to ask any questions about
- registration. We can help with choosing elective classes, which
- professors we recommend, and more!
-
-
-
-
-
-
-
-
-
WECE Wednesdays
-
October 31, 1-3pm
-
ECEB 3013
-
WECE Wednesdays is a chill space for you to stop by hang out with
- friends, do homework, and of course, grab some food :) Whether it's
- for ten minutes or two hours, drop on by!
-
Join us for a spooktacular evening with face, mask, skull, and
- pumpkin painting, as well as some Halloween treats! Dressing up is
- encouraged but not required.
-
Are you scared of the future? Find out whether grad school or research
- are right for you by attending this panel hosted by WECE. Four esteemed
- graduate students will be sharing their experiences and answering your
- questions.
-
Come help elementary school kids with their engineering project! Rides
- will be
- provided at Illini Union Circle Drive at 3:50pm on both days, and we
- will be back around 5:10pm. Only 4 spots are available so it will be a
- first come, first serve basis.
-
Peer Mentorship is a new program in WECE. Sign up as a mentor or a
- mentee to share thoughts or ask questions about ECE & Illinois
- life! There will be monthly bonding events for mentors and mentees.
- It’s a great way to meet new people within WECE!
-
Eligibility: juniors or sophomores; Pursuing a 2019 summer
- internship;
- Black,
- Hispanic/Latino or Native American.
-
This scholarship recognizes outstanding students and is an integral
- part
- of diversity
- recruiting efforts at Goldman Sachs. Recipients will receive up to
- $15,000
- towards tuituion and academic expenses.
-
-
-
-
-
-
-
-
-
Sign up for committees!
-
Missed the October General Meeting? Sign up for the committees you would like to
- join
- here.
-
-
-
-
Tune into CodeNewbie Podcast
-
CodeNewbie has joined up with Vaidehi Joshi to turn her blog series into an awesome
- podcast,
- the Basecs Podcast. They cover binary, hexes, algorithms, and more. Join them
- here for Season 3 launching on
- August 22.
-
-
-
-
Join our WECE Slack Workspace
-
WECE uses Slack as a way to streamline communication between WECE members and
- committees,
- as well as a place for important announcements and upcoming events! Join our
- general
- channel
- here.
-
-
-
Resume Book
-
Career fair season is here again! If you're still looking for internships or
- full-time opportunities,
- submit your resume to the WECE Resume Book
- here to have your resume sent out to companies!
-
-
-
-
\ No newline at end of file
diff --git a/source/html/newsletterarchive/103017.html b/source/html/newsletterarchive/103017.html
deleted file mode 100644
index a392bec..0000000
--- a/source/html/newsletterarchive/103017.html
+++ /dev/null
@@ -1,177 +0,0 @@
-
-
-
-
-
-
- WECE Newsletter: October 30, 2017 - November 6, 2017
-
-
-
-
-
-
-
-
-
-
- OCTOBER 30 - NOVEMBER 6
- NEWS
-
JOIN OUR SLACK CHANNEL
-
- WECE now has a Slack channel! This will be a way to streamline communication between WECE members and committees, as well as a place for important announcements and upcoming events! Join our general channel here. Directors will be sending out more information to their committees about their committee channel.
-
-
-
-
WECE STUDY GROUPS
-
- Want to find other people in your classes to study with? Join WECE study groups as we create Slack channels for common classes that our members are taking. Fill out this form here about your class schedule this semester by Friday, October 27th and more information about joining the groups will be sent out shortly!
-
-
-
- EVENTS
-
WECE x WCS HALLOWEEN PARTY
-
- Come out for an unBOOlievable evening with and WECE and WCS! There will be pumpkin painting, face painting, and a photobooth! There will also be a bunch of spook-tacular foods so definitely come to Trick or Treat yo' self!! (Also, sorry you can't skele-run from our skele-puns!)
-
- Come hang out with WECE in an informal setting. This week, we will be providing advice on course selection to get you ready for next semester! Insomnia cookies will be provided!
-
- Come out to our technical committtee meeting to help plan tech workshops and gain resume-worthy technical experience through completing hardware and software-centered projects with WECE!
-
- Come test your coding skills in Halite! Halite is an open source artificial intelligence programming challenge, created by Two Sigma, where players build bots using the coding language of their choice to battle on a two-dimensional virtual board. Register with your Github account to begin playing! Two Sigma has also created a virtual hackathon specifically for UIUC students running until November 15 that can be accessed with this access code: 6791620b231d42ee8aab67243c562856
-
-
-
-
VERILY SUMMER INTERNSHIP
-
- Verily will be accepting applications for summer internships from October 30th until February 28th. Apply directly at verily.com/careers. If you have any other questions, please email verily-students@google.com.
-
-
-
-
NCWIT $10,000 COLLEGIATE AWARD APPLICATIONS
-
- The National Center for Women in Information and Technology (NCWIT) $10,000 Collegiate Award applications are open until Oct. 30! The prize is for an individual woman undergraduate or graduate student in CS or related degree. Please note that all UIUC students automatically meet the criteria of being a member “of the NCWIT Aspirations in Computing Community” because the university is an institutional member. To learn more about and apply for the award, visit this link. If you have any questions, please contact Stephanie Wang.
-
-
-
-
9TH POWER AND ENERGY CONFERENCE AT ILLINOIS (PECI)
-
- The Power and Energy Systems group at the University of Illinois at Urbana-Champaign cordially invites you to attend and present at the 9th Power and Energy Conference at Illinois (PECI) which will be held in the I-Hotel at UIUC on February 22-23, 2018. Graduate student-organized and led, PECI fosters discourse broadly across the electric power and energy disciplines which include, but are not limited to: Power Electronics, Electric Power Systems, Energy Markets, Renewable Energy Technologies, Electric Machines and Drives, System Reliability and Control. Undergraduates who are involved in research are welcomed to present their work. Deadline for poster abstract submission is Nov 30, 2017. Registration for conference participation will be opened soon. More detailed information is available at http://peci.ece.illinois.edu or contact peci-publicity@illinois.edu.
-
-
- Where: I-Hotel
-
- When: February 22nd-23rd
-
-
-
-
-
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/source/html/newsletterarchive/103118.html b/source/html/newsletterarchive/103118.html
deleted file mode 100644
index ca7d7dc..0000000
--- a/source/html/newsletterarchive/103118.html
+++ /dev/null
@@ -1,1256 +0,0 @@
-
-
-
-
-
-
-
-
- WECE Announcement - October 31, 2018
-
-
-
-
-
-
CTO and VP of Cloud Infrastructure, IBM Hybrid Cloud
-
MAKING AI WORK FOR REAL
-
- Whether it’s voice recognition on our phones or auto-tagging of
- friends’ faces on social media posts, AI is in use all around us.
- Many futurists have forecast that “movie AI” will take over, but we
- somehow seem far from that. This talk will provide a view of the
- challenges and solutions needed as AI progresses - from
- computational improvements to accountability, fairness, and bias
- considerations for AI creation and deployment. Cutting edge
- research will be highlighted in each of these areas and we’ll talk
- about how the IBM-Illinois C3SR Center for Cognitive Computing
- Systems Research is making AI work.
-
Missed the October General Meeting? Sign up for the committees you would like to
- join
- here.
-
-
-
-
Tune into CodeNewbie Podcast
-
CodeNewbie has joined up with Vaidehi Joshi to turn her blog series into an awesome
- podcast,
- the Basecs Podcast. They cover binary, hexes, algorithms, and more. Join them
- here for Season 3 launching on
- August 22.
-
-
-
-
Join our WECE Slack Workspace
-
WECE uses Slack as a way to streamline communication between WECE members and
- committees,
- as well as a place for important announcements and upcoming events! Join our
- general
- channel
- here.
-
-
-
Resume Book
-
If you're still looking for internships or
- full-time opportunities,
- submit your resume to the WECE Resume Book
- here to have your resume sent out to companies!
-
- Want to nail your tech interviews? Need that push to
- polish up your coding skills? Then come out to
- WECE's LeetCode practice!!!! Upperclassmen will
- teach you basic strategies and algorithms commonly
- asked by most Fortune 500 companies. No experience
- required!
-
- Come join WECE for our Mental Health Lean In! Lean Ins are a safe space for group discussion to create a supportive
- community in ECE. Come to our Lean In to discuss and learn how to prioritize healthy eating and recognize your good and
- bad habits! All are welcome and we hope to see you on November 5th!
-
-
-
-
-
-
-
-
Outreach Committee Meeting
-
November 6, 6-7pm
-
ECEB 2015
-
- Come help plan for the upcoming Champaign Public Library Teen Lounge in December! The theme is challenges, so we'll be
- designing a course for the Edison robots.
-
- Foodie Fridays is a chill space for you to stop by hang out with friends, do homework, and of course, grab some food ;)
- Whether it's for ten minutes or one hour, drop on by! We will also have our social committee meetings there every week,
- if you would like to meet the board or plan events with us :)
-
- Come out and help WECE with our first fundraiser! We
- will be serving Apple Cider and sugar cookies. Sign
- up on the sheet below to let us know when you can
- man the table!
-
- Office hours are held weekly! Come get help with
- classes at our WECE-hosted office hours.
-
-
-
-
-
-
-
External Announcements
-
-
-
-
TEC Form
-
- CUBE, a student-run consulting RSO, is working on a
- project that measures the awareness of
- entrepreneurship and the TEC. Please fill out the
- google form to help them collect some useful data!
-
- Sign up for the seventh annual Big Data Summit. This
- interactive conference offers participants the
- opportunity to learn and share knowledge about key
- aspects of big data and its business applications
- through dynamic panels, inspiring keynote
- presentations, and networking opportunities.
-
- If you are an alumni, we would love to stay in contact with
- you! If you would like to help WECE with professional
- development and help our current members, please fill out
- this form!
-
-
-
Interested in making websites?
-
- If you are interested in helping with our WECE website or
- learning more about web applications or web design, fill out
- this form
- to get involved!
-
-
-
Sign up for committees!
-
- Sign up for the committees you would like to join
- here.
-
-
-
Resume Book
-
- If you're still looking for internships or full-time
- opportunities, submit your resume to the WECE Resume Book
- here
- to have your resume sent out to companies!
-
-
-
Join our group on Campus Groups
-
- Join WECE on campus groups to get notifications for all our
- events and to RVSP and check-in to receive membership points
- here!
-
-
-
Join our WECE Slack Workspace
-
- WECE uses Slack as a way to streamline communication between
- WECE members and committees, as well as a place for
- important announcements and upcoming events! Join our
- general channel
- here.
-
WECE Wednesdays is a chill space for you to stop by hang out with
- friends, do homework, and of course, grab some food :) Whether it's
- for ten minutes or two hours, drop on by! This week, grab a donut
- and study with us!
-
Come help elementary school kids with their engineering project!
- Rides
- will be
- provided at Illini Union Circle Drive at 3:50pm on both days, and
- we
- will be back around 5:10pm. Only 4 spots are available so it will
- be a
- first come, first serve basis.
-
Are you a freshman looking to reflect on your progress so far at
- UIUC? Are you past freshman year and want to share your wisdom of
- your freshman year experience? If so, join us on November 15th for
- our Freshman Lean In! Panera is provided.
-
Come practice your programming skills through a series
- of algorithmic
- programming contests organized by ACM SIG-ICPC. Beginners welcome!
- Not to forget, we provide FREE PIZZA and $1200 prize pool for top 5
- contestants in each division!
-
Eligibility: juniors or sophomores; Pursuing a 2019 summer
- internship;
- Black,
- Hispanic/Latino or Native American.
-
This scholarship recognizes outstanding students and is an integral
- part
- of diversity
- recruiting efforts at Goldman Sachs. Recipients will receive up to
- $15,000
- towards tuituion and academic expenses.
-
-
-
-
-
-
-
-
-
Sign up for committees!
-
Missed the October General Meeting? Sign up for the committees you would like to
- join
- here.
-
-
-
-
Tune into CodeNewbie Podcast
-
CodeNewbie has joined up with Vaidehi Joshi to turn her blog series into an awesome
- podcast,
- the Basecs Podcast. They cover binary, hexes, algorithms, and more. Join them
- here for Season 3 launching on
- August 22.
-
-
-
-
Join our WECE Slack Workspace
-
WECE uses Slack as a way to streamline communication between WECE members and
- committees,
- as well as a place for important announcements and upcoming events! Join our
- general
- channel
- here.
-
-
-
Resume Book
-
Career fair season is here again! If you're still looking for internships or
- full-time opportunities,
- submit your resume to the WECE Resume Book
- here to have your resume sent out to companies!
-
-
-
-
\ No newline at end of file
diff --git a/source/html/newsletterarchive/110617.html b/source/html/newsletterarchive/110617.html
deleted file mode 100644
index aedbc92..0000000
--- a/source/html/newsletterarchive/110617.html
+++ /dev/null
@@ -1,201 +0,0 @@
-
-
-
-
-
-
- WECE Newsletter: October 6, 2017 - November 13, 2017
-
-
-
-
-
-
-
-
-
-
- NOVEMBER 6 - NOVEMBER 13
- NEWS
-
JOIN OUR SLACK CHANNEL
-
- WECE now has a Slack channel! This will be a way to streamline communication between WECE members and committees, as well as a place for important announcements and upcoming events! Join our general channel here. Directors will be sending out more information to their committees about their committee channel.
-
-
-
- EVENTS
-
OUTREACH COMMITTEE MEETING
-
- Come to the WECE Outreach Committee meeting to help finalize the details for our upcoming WECE Outreach event! We are working with a few high schools in the area to have students come over to the ECEB and learn about what being in tech is like.
-
- Come hang out with WECE in an informal setting. Do your homework, paint your nails, build a robot… the possibilities are endless. Snacks will be provided!
-
- Come out to our technical committtee meeting to help plan tech workshops and gain resume-worthy technical experience through completing hardware and software-centered projects with WECE!
-
- The University Team at Pandora will be in Chicago on November 7th and we would love to invite you to our open house! We are enthusiastic about students who would:
-
- Be excited about the prospect of working with us on compelling projects for 10 weeks during the summer
- Loves music and the thought of working for a music and tech company
- Interested in working in the fantastic, culturally rich city of Oakland, CA
-
- If you are interested, please RSVP here. The event details are available in the invite.
-
-
-
-
THIEL FELLOWSHIP
-
- The Thiel Fellowship is a two-year program for young people who are building new things. The program offers $100,000 in an equity free grant, and allows the Thiel fellows the freedom to work on their company full time outside of school. To be eligible, one must be 22 or younger and without a college degree. For more information, please contact program manager Katy Strupp.
-
-
-
-
OPTIVER FULL-TIME AND INTERNSHIP OPPORTUNITIES
-
- Optiver is a derivatives trading firm in Chicago and we are currently looking for students in EE and CE who may be interested in an FPGA role. Both entry level and internship positions are available for this role. At Optiver, you will have the opportunity to:
-
- Plan and deliver new high speed FPGA designs
- Accelerate network infrastructure
- Identify new low-latency techniques for trading systems
-
- If you’re interested, take the leap today and APPLY!
-
-
-
-
HALITE PROGRAMMING COMPETITION
-
- Come test your coding skills in Halite! Halite is an open source artificial intelligence programming challenge, created by Two Sigma, where players build bots using the coding language of their choice to battle on a two-dimensional virtual board. Register with your Github account to begin playing! Two Sigma has also created a virtual hackathon specifically for UIUC students running until November 15 that can be accessed with this access code: 6791620b231d42ee8aab67243c562856
-
-
-
-
VERILY SUMMER INTERNSHIP
-
- Verily will be accepting applications for summer internships from October 30th until February 28th. Apply directly at verily.com/careers. If you have any other questions, please email verily-students@google.com.
-
-
-
-
NCWIT $10,000 COLLEGIATE AWARD APPLICATIONS
-
- The National Center for Women in Information and Technology (NCWIT) $10,000 Collegiate Award applications are open until Oct. 30! The prize is for an individual woman undergraduate or graduate student in CS or related degree. Please note that all UIUC students automatically meet the criteria of being a member “of the NCWIT Aspirations in Computing Community” because the university is an institutional member. To learn more about and apply for the award, visit this link. If you have any questions, please contact Stephanie Wang.
-
-
-
-
9TH POWER AND ENERGY CONFERENCE AT ILLINOIS (PECI)
-
- The Power and Energy Systems group at the University of Illinois at Urbana-Champaign cordially invites you to attend and present at the 9th Power and Energy Conference at Illinois (PECI) which will be held in the I-Hotel at UIUC on February 22-23, 2018. Graduate student-organized and led, PECI fosters discourse broadly across the electric power and energy disciplines which include, but are not limited to: Power Electronics, Electric Power Systems, Energy Markets, Renewable Energy Technologies, Electric Machines and Drives, System Reliability and Control. Undergraduates who are involved in research are welcomed to present their work. Deadline for poster abstract submission is Nov 30, 2017. Registration for conference participation will be opened soon. More detailed information is available at http://peci.ece.illinois.edu or contact peci-publicity@illinois.edu.
-
-
- Where: I-Hotel
-
- When: February 22nd-23rd
-
-
-
-
-
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/source/html/newsletterarchive/111218.html b/source/html/newsletterarchive/111218.html
deleted file mode 100644
index 4538b62..0000000
--- a/source/html/newsletterarchive/111218.html
+++ /dev/null
@@ -1,1379 +0,0 @@
-
-
-
-
-
-
-
-
- WECE Newsletter - November 12-18, 2018
-
-
-
-
-
-
WECE Wednesdays is a chill space for you to stop by hang out with
- friends, do homework, and of course, grab some food :) Whether it's
- for ten minutes or two hours, drop on by! This week, grab a cookie
- and study with us!
-
Are you a freshman looking to reflect on your progress so far at
- UIUC? Are you past freshman year and want to share your wisdom of
- your freshman year experience? If so, join us on November 15th for
- our Freshman Lean In! Noodles & Company will be provided.
-
Grace Hopper Celebration is the world's largest gathering of
- women technologists. Any WECE member can apply and more than
- likely, if it’s done early enough, can get approved for up to
- $500 in support from the ECE department to travel to the Grace
- Hopper Conference.
-
-
Come practice your programming skills through a series
- of algorithmic
- programming contests organized by ACM SIG-ICPC. Beginners
- welcome!
- Not to forget, we provide FREE PIZZA and $1200 prize pool for
- top 5
- contestants in each division!
-
Optiver has a few spots left in their intern and graduate summer
- 2019 programs. There are positions for
- software engineering and
- quantitative trading. To contact a
- recruiter and email your resume, click the link below.
-
Eligibility: juniors or sophomores; Pursuing a 2019 summer
- internship;
- Black,
- Hispanic/Latino or Native American.
-
This scholarship recognizes outstanding students and is an integral
- part
- of diversity
- recruiting efforts at Goldman Sachs. Recipients will receive up to
- $15,000
- towards tuituion and academic expenses.
-
-
-
-
-
-
-
-
-
Sign up for committees!
-
Missed the October General Meeting? Sign up for the committees you would like to
- join
- here.
-
-
-
-
Tune into CodeNewbie Podcast
-
CodeNewbie has joined up with Vaidehi Joshi to turn her blog series into an awesome
- podcast,
- the Basecs Podcast. They cover binary, hexes, algorithms, and more. Join them
- here for Season 3.
-
-
-
-
Join our WECE Slack Workspace
-
WECE uses Slack as a way to streamline communication between WECE members and
- committees,
- as well as a place for important announcements and upcoming events! Join our
- general
- channel
- here.
-
-
-
Resume Book
-
Career fair season is here again! If you're still looking for internships or
- full-time opportunities,
- submit your resume to the WECE Resume Book
- here to have your resume sent out to companies!
-
- Come to this years friendsgiving and be thankful to
- get away from those homework assignments! Join Women
- in Electrical and Computer Engineering and Women in
- Cyber Security in this years potluck and eat
- goooodddd!!
-
- We are going to work on our activity for the
- Champaign Public Library Teen Lounge and start
- brainstorming for our EOH project! Come with ideas
- and we'll try to finish up early so you can also go
- to Friendsgiving!
-
- Foodie Fridays is a chill space for you to stop by
- hang out with friends, do homework, and of course,
- grab some food ;) Whether it's for ten minutes or
- one hour, drop on by! We will also have our social
- committee meetings there every week, if you would
- like to meet the board or plan events with us :)
-
- Come to the technical committee's weekly meeting to
- work on the WECE EOH project.
-
-
-
-
-
-
-
-
- CyberSecurity FBI Agent Talk with Becky Passmore
-
-
November 21, 5:30pm
-
ECEB 2017
-
- Located in Little Rock Arizona, Becky has worked for
- the FBI for over 22 years and currently heads the
- Digital Forensics CyberSecurity Training for the
- FBI's Forensic Examiners. She will be
- video-conferencing with us for an in-depth
- discussion about the future of cybersecurity in law
- enforcement, what the cybersecurity field looks like
- inside a government agency, and opportunities for
- students (including internships). We are very
- excited to welcome Becky to our UIUC culture and
- engage with her in dialogue!
-
-
-
-
-
-
-
-
Champaign Public Library Teen Lounge
-
December 5, 2:30-4:30pm
-
Champaign Public Library
-
- Come and help teach teenagers how to program Edison
- robots! The theme is "leveling up" and we'll have
- Cheetos as incentives for the kids who complete the
- challenges!
-
- Office hours are held weekly! Come get help with
- classes at our WECE-hosted office hours.
-
-
-
-
-
-
-
External Announcements
-
-
-
-
TEC Form
-
- CUBE, a student-run consulting RSO, is working on a
- project that measures the awareness of
- entrepreneurship and the TEC. Please fill out the
- google form to help them collect some useful data!
-
- If you are an alumni, we would love to stay in contact with
- you! If you would like to help WECE with professional
- development and help our current members, please fill out
- this form!
-
-
-
Interested in making websites?
-
- If you are interested in helping with our WECE website or
- learning more about web applications or web design, fill out
- this form
- to get involved!
-
-
-
Sign up for committees!
-
- Sign up for the committees you would like to join
- here.
-
-
-
Resume Book
-
- If you're still looking for internships or full-time
- opportunities, submit your resume to the WECE Resume Book
- here
- to have your resume sent out to companies!
-
-
-
Join our group on Campus Groups
-
- Join WECE on campus groups to get notifications for all our
- events and to RVSP and check-in to receive membership points
- here!
-
-
-
Join our WECE Slack Workspace
-
- WECE uses Slack as a way to streamline communication between
- WECE members and committees, as well as a place for
- important announcements and upcoming events! Join our
- general channel
- here.
-
- WECE now has a Slack channel! This will be a way to streamline communication between WECE members and committees, as well as a place for important announcements and upcoming events! Join our general channel here. Directors will be sending out more information to their committees about their committee channel.
-
-
-
- EVENTS
-
TASTY THURSDAY
-
- Come hang out with WECE in an informal setting. Do your homework, paint your nails, build a robot… the possibilities are endless. Snacks will be provided!
-
- Come out to our technical committtee meeting to help plan tech workshops and gain resume-worthy technical experience through completing hardware and software-centered projects with WECE!
-
- Are you a student in STEM seeking real-world experience? Do you want to gain new skills, network with professionals, and experience life at a federal laboratory? Register for the Laboratory Internships Virtual Event today! L.I.V.E is sponsored by the U.S. Department of Energy’s Office of Science and will take place on Nov. 28th from 12 noon – 4:00 pm EST. The U.S. Department of Energy’s (DOE) Office of Science is a vital agency for science and technology in the United States. DOE Office of Science is the largest supporter of research in the physical sciences and energy nationally, and manages ten national laboratories. DOE Office of Science is recruiting STEM students now for internships now! This event will take place at a computer or mobile device near you. Get excited about your career in STEM! Register today!
-
-
-
-
THIEL FELLOWSHIP
-
- The Thiel Fellowship is a two-year program for young people who are building new things. The program offers $100,000 in an equity free grant, and allows the Thiel fellows the freedom to work on their company full time outside of school. To be eligible, one must be 22 or younger and without a college degree. For more information, please contact program manager Katy Strupp.
-
-
-
-
OPTIVER FULL-TIME AND INTERNSHIP OPPORTUNITIES
-
- Optiver is a derivatives trading firm in Chicago and we are currently looking for students in EE and CE who may be interested in an FPGA role. Both entry level and internship positions are available for this role. At Optiver, you will have the opportunity to:
-
- Plan and deliver new high speed FPGA designs
- Accelerate network infrastructure
- Identify new low-latency techniques for trading systems
-
- If you’re interested, take the leap today and APPLY!
-
-
-
-
HALITE PROGRAMMING COMPETITION
-
- Come test your coding skills in Halite! Halite is an open source artificial intelligence programming challenge, created by Two Sigma, where players build bots using the coding language of their choice to battle on a two-dimensional virtual board. Register with your Github account to begin playing! Two Sigma has also created a virtual hackathon specifically for UIUC students running until November 15 that can be accessed with this access code: 6791620b231d42ee8aab67243c562856
-
-
-
-
VERILY SUMMER INTERNSHIP
-
- Verily will be accepting applications for summer internships from October 30th until February 28th. Apply directly at verily.com/careers. If you have any other questions, please email verily-students@google.com.
-
-
-
-
9TH POWER AND ENERGY CONFERENCE AT ILLINOIS (PECI)
-
- The Power and Energy Systems group at the University of Illinois at Urbana-Champaign cordially invites you to attend and present at the 9th Power and Energy Conference at Illinois (PECI) which will be held in the I-Hotel at UIUC on February 22-23, 2018. Graduate student-organized and led, PECI fosters discourse broadly across the electric power and energy disciplines which include, but are not limited to: Power Electronics, Electric Power Systems, Energy Markets, Renewable Energy Technologies, Electric Machines and Drives, System Reliability and Control. Undergraduates who are involved in research are welcomed to present their work. Deadline for poster abstract submission is Nov 30, 2017. Registration for conference participation will be opened soon. More detailed information is available at http://peci.ece.illinois.edu or contact peci-publicity@illinois.edu.
-
-
- Where: I-Hotel
-
- When: February 22nd-23rd
-
-
-
-
-
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/source/html/newsletterarchive/111819.html b/source/html/newsletterarchive/111819.html
deleted file mode 100644
index 4f5fd01..0000000
--- a/source/html/newsletterarchive/111819.html
+++ /dev/null
@@ -1,1482 +0,0 @@
-
-
-
-
-
-
-
- WECE Newsletter: November 18, 2019
-
-
-
-
-
-
- Come join WECE Peer Mentorship as we take a trip to
- the Krannert Art Museum on campus. Newly opened this
- year, the museum has free admission, and features
- exhibits from around the world as well as student
- work. We'll meet inside Espresso Royale (inside the
- museum)!
-
- Come help us finish preparing for the upcoming
- Champaign Public Library Teen Lounge! We will also
- be deciding what we are doing for our EOH project!
-
- CyberSecurity FBI Agent Talk with Becky Passmore
-
-
November 21, 5:30pm
-
ECEB 2017
-
- Located in Little Rock Arizona, Becky has worked for
- the FBI for over 22 years and currently heads the
- Digital Forensics CyberSecurity Training for the
- FBI's Forensic Examiners. She will be
- video-conferencing with us for an in-depth
- discussion about the future of cybersecurity in law
- enforcement, what the cybersecurity field looks like
- inside a government agency, and opportunities for
- students (including internships). We are very
- excited to welcome Becky to our UIUC culture and
- engage with her in dialogue!
-
-
-
-
-
-
-
-
Champaign Public Library Teen Lounge
-
December 5, 2:30-4:30pm
-
Champaign Public Library
-
- Come and help teach teenagers how to program Edison
- robots! The theme is "leveling up" and we'll have
- Cheetos as incentives for the kids who complete the
- challenges!
-
- Office hours are held weekly! Come get help with
- classes at our WECE-hosted office hours.
-
-
-
-
-
-
-
-
WECE x WCS Finals Study Day
-
December 14, 10am-4pm
-
ECEB 3002
-
- Need motivation and resources for your first set of
- finals? Come to our finals study day! Get free lunch
- AND a final's care package and leave feeling
- confident for your finals! We are currently looking
- for CAs/UAs/TAs for ECE 120, 220, 110, 210 to help
- students prepare for these finals! You would be
- working for one hour! Please email
- smaddi4@illinois.edu if you are able to help out!
-
-
-
-
-
-
-
-
-
Alumni Database
-
- If you are an alumni, we would love to stay in contact with
- you! If you would like to help WECE with professional
- development and help our current members, please fill out
- this form!
-
-
-
Interested in making websites?
-
- If you are interested in helping with our WECE website or
- learning more about web applications or web design, fill out
- this form
- to get involved!
-
-
-
Sign up for committees!
-
- Sign up for the committees you would like to join
- here.
-
-
-
Resume Book
-
- If you're still looking for internships or full-time
- opportunities, submit your resume to the WECE Resume Book
- here
- to have your resume sent out to companies!
-
-
-
Join our group on Campus Groups
-
- Join WECE on campus groups to get notifications for all our
- events and to RVSP and check-in to receive membership points
- here!
-
-
-
Join our WECE Slack Workspace
-
- WECE uses Slack as a way to streamline communication between
- WECE members and committees, as well as a place for
- important announcements and upcoming events! Join our
- general channel
- here.
-
- WECE now has a Slack channel! This will be a way to streamline communication between WECE members and committees, as well as a place for important announcements and upcoming events! Join our general channel here. Directors will be sending out more information to their committees about their committee channel.
-
-
-
- EVENTS
-
NOVEMBER GENERAL MEETING
-
- Join us for our final WECE GM of the fall semester! Come pick up a Women in ECE @ Illinois shirt and hear what WECE has planned for the upcoming weeks. As always, all are welcome to attend and there will be food. RSVP to the Facebook event here. Questions? Contact Stephanie Wang.
-
- Come hang out with WECE in an informal setting. Do your homework, paint your nails, build a robot… the possibilities are endless. Snacks will be provided!
-
- Come out to our technical committtee meeting to help plan tech workshops and gain resume-worthy technical experience through completing hardware and software-centered projects with WECE!
-
- Join us for our monthly Lean In event! Lean In is a group where we support each other by discussing issues that we're dealing with and how to overcome them. This month's topic will be stress management, in light of the busy upcoming end of semester.
-
- Come join us for our Introduction to Android Development workshop where we will cover some basic theory and coding for those who are interested in learning Android Studio. No coding background required.
-
- Are you a student in STEM seeking real-world experience? Do you want to gain new skills, network with professionals, and experience life at a federal laboratory? Register for the Laboratory Internships Virtual Event today! L.I.V.E is sponsored by the U.S. Department of Energy’s Office of Science and will take place on Nov. 28th from 12 noon – 4:00 pm EST. The U.S. Department of Energy’s (DOE) Office of Science is a vital agency for science and technology in the United States. DOE Office of Science is the largest supporter of research in the physical sciences and energy nationally, and manages ten national laboratories. DOE Office of Science is recruiting STEM students now for internships now! This event will take place at a computer or mobile device near you. Get excited about your career in STEM! Register today!
-
-
-
-
THIEL FELLOWSHIP
-
- The Thiel Fellowship is a two-year program for young people who are building new things. The program offers $100,000 in an equity free grant, and allows the Thiel fellows the freedom to work on their company full time outside of school. To be eligible, one must be 22 or younger and without a college degree. For more information, please contact program manager Katy Strupp.
-
-
-
-
OPTIVER FULL-TIME AND INTERNSHIP OPPORTUNITIES
-
- Optiver is a derivatives trading firm in Chicago and we are currently looking for students in EE and CE who may be interested in an FPGA role. Both entry level and internship positions are available for this role. At Optiver, you will have the opportunity to:
-
- Plan and deliver new high speed FPGA designs
- Accelerate network infrastructure
- Identify new low-latency techniques for trading systems
-
- If you’re interested, take the leap today and APPLY!
-
-
-
-
VERILY SUMMER INTERNSHIP
-
- Verily will be accepting applications for summer internships from October 30th until February 28th. Apply directly at verily.com/careers. If you have any other questions, please email verily-students@google.com.
-
-
-
-
9TH POWER AND ENERGY CONFERENCE AT ILLINOIS (PECI)
-
- The Power and Energy Systems group at the University of Illinois at Urbana-Champaign cordially invites you to attend and present at the 9th Power and Energy Conference at Illinois (PECI) which will be held in the I-Hotel at UIUC on February 22-23, 2018. Graduate student-organized and led, PECI fosters discourse broadly across the electric power and energy disciplines which include, but are not limited to: Power Electronics, Electric Power Systems, Energy Markets, Renewable Energy Technologies, Electric Machines and Drives, System Reliability and Control. Undergraduates who are involved in research are welcomed to present their work. Deadline for poster abstract submission is Nov 30, 2017. Registration for conference participation will be opened soon. More detailed information is available at http://peci.ece.illinois.edu or contact peci-publicity@illinois.edu.
-
-
- Where: I-Hotel
-
- When: February 22nd-23rd
-
-
-
-
-
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/source/html/newsletterarchive/112718.html b/source/html/newsletterarchive/112718.html
deleted file mode 100644
index 2222171..0000000
--- a/source/html/newsletterarchive/112718.html
+++ /dev/null
@@ -1,1450 +0,0 @@
-
-
-
-
-
-
-
-
- WECE Newsletter - November 27-December 2, 2018
-
-
-
-
-
-
WECE Wednesdays is a chill space for you to stop by hang out with
- friends, do homework, and of course, grab some food :) Whether it's
- for ten minutes or two hours, drop on by!
-
This is our first event for WECE's Peer Mentorship Program! Come
- meet your mentor(s)/mentee(s) for board game night at the Union. If
- you signed up to participate, and did not receive your pairing, or
- have any questions, contact Abby and Amalia here!
-
Be sure to attend this HTML + CSS workshop to gain some experience
- in web development, learn skills to make a personal website, and
- enhance your resume! No previous experience
- required and Insomnia cookies will be provided.
-
This session will help you with questions asked on technical
- interviews by most top companies! You will gain worthy coding
- experience as we will be going over these questions and discussing
- the concepts and algorithms behind them.
-
Lean In is a concept created by Sheryl Sandberg to help bring people
- together to have important discussions on personal and professional
- topics. Come join us for our last Lean In of the semester, where we
- will be talking about healthy studying habits and how to finish the
- semester strong.
-
Grace Hopper Celebration is the world's largest gathering of
- women technologists. Any WECE member can apply and more than
- likely, if it’s done early enough, can get approved for up to
- $500 in support from the ECE department to travel to the Grace
- Hopper Conference.
-
-
Come practice your programming skills through a series
- of algorithmic
- programming contests organized by ACM SIG-ICPC. Beginners
- welcome!
- Not to forget, we provide FREE PIZZA and $1200 prize pool for
- top 5
- contestants in each division!
-
Optiver has a few spots left in their intern and graduate summer
- 2019 programs. There are positions for
- software engineering and
- quantitative trading. To contact a
- recruiter and email your resume, click the link below.
-
Eligibility: juniors or sophomores; Pursuing a 2019 summer
- internship;
- Black,
- Hispanic/Latino or Native American.
-
This scholarship recognizes outstanding students and is an integral
- part
- of diversity
- recruiting efforts at Goldman Sachs. Recipients will receive up to
- $15,000
- towards tuituion and academic expenses.
-
-
-
-
-
-
-
-
-
Sign up for committees!
-
Missed the October General Meeting? Sign up for the committees you would like to
- join
- here.
-
-
-
-
Tune into CodeNewbie Podcast
-
CodeNewbie has joined up with Vaidehi Joshi to turn her blog series into an awesome
- podcast,
- the Basecs Podcast. They cover binary, hexes, algorithms, and more. Join them
- here for Season 3.
-
-
-
-
Join our WECE Slack Workspace
-
WECE uses Slack as a way to streamline communication between WECE members and
- committees,
- as well as a place for important announcements and upcoming events! Join our
- general
- channel
- here.
-
-
-
Resume Book
-
Career fair season is here again! If you're still looking for internships or
- full-time opportunities,
- submit your resume to the WECE Resume Book
- here to have your resume sent out to companies!
-
- Come and help teach teenagers how to program Edison
- robots! The theme is "leveling up" and we'll have
- Cheetos as incentives for the kids who complete the
- challenges!
-
- Come join us for a WECE Lean In on Healthy Studying.
- Lean Ins are a safe space for group discussion to
- create a supportive community in ECE. All are
- welcome & we hope to see you on December 6th!
-
- Office hours are held weekly! Come get help with
- classes at our WECE-hosted office hours.
-
-
-
-
-
-
-
-
-
WECE x WCS Finals Study Day
-
December 14, 10am-4pm
-
ECEB 3002
-
- Need motivation and resources for your first set of
- finals? Come to our finals study day! Get free lunch
- AND a final's care package and leave feeling
- confident for your finals! We are currently looking
- for CAs/UAs/TAs for ECE 120, 220, 110, 210 to help
- students prepare for these finals! You would be
- working for one hour! Please email
- smaddi4@illinois.edu if you are able to help out!
-
-
-
-
-
-
-
-
-
Alumni Database
-
- If you are an alumni, we would love to stay in contact with
- you! If you would like to help WECE with professional
- development and help our current members, please fill out
- this form!
-
-
-
Interested in making websites?
-
- If you are interested in helping with our WECE website or
- learning more about web applications or web design, fill out
- this form
- to get involved!
-
-
-
Sign up for committees!
-
- Sign up for the committees you would like to join
- here.
-
-
-
Resume Book
-
- If you're still looking for internships or full-time
- opportunities, submit your resume to the WECE Resume Book
- here
- to have your resume sent out to companies!
-
-
-
Join our group on Campus Groups
-
- Join WECE on campus groups to get notifications for all our
- events and to RVSP and check-in to receive membership points
- here!
-
-
-
Join our WECE Slack Workspace
-
- WECE uses Slack as a way to streamline communication between
- WECE members and committees, as well as a place for
- important announcements and upcoming events! Join our
- general channel
- here.
-
Be sure to attend this HTML + CSS workshop to gain some experience
- in web development, learn skills to make a personal website, and
- enhance your resume! No previous experience
- required and Insomnia cookies will be provided.
-
This session will help you with questions asked on technical
- interviews by most top companies! You will gain worthy coding
- experience as we will be going over these questions and discussing
- the concepts and algorithms behind them.
-
Lean In is a concept created by Sheryl Sandberg to help bring people
- together to have important discussions on personal and professional
- topics. Come join us for our last Lean In of the semester, where we
- will be talking about healthy studying habits and how to finish the
- semester strong.
-
It's the most wonderful time of the year - amidst finals
- and the last weeks of classes. Celebrate the holidays with
- your
- WECE and WCS family with movies, songs and games. HOT
- CHOCOLATE PROVIDED. Bring yourself, your friends and your holiday
- spirit!
-
Grace Hopper Celebration is the world's largest gathering of
- women technologists. Any WECE member can apply and more than
- likely, if it’s done early enough, can get approved for up to
- $500 in support from the ECE department to travel to the Grace
- Hopper Conference.
-
-
Come practice your programming skills through a series
- of algorithmic
- programming contests organized by ACM SIG-ICPC. Beginners
- welcome!
- Not to forget, we provide FREE PIZZA and $1200 prize pool for
- top 5
- contestants in each division!
-
Eligibility: juniors or sophomores; Pursuing a 2019 summer
- internship;
- Black,
- Hispanic/Latino or Native American.
-
This scholarship recognizes outstanding students and is an integral
- part
- of diversity
- recruiting efforts at Goldman Sachs. Recipients will receive up to
- $15,000
- towards tuituion and academic expenses.
-
-
-
-
-
-
-
-
-
Sign up for committees!
-
Missed the October General Meeting? Sign up for the committees you would like to
- join
- here.
-
-
-
-
Tune into CodeNewbie Podcast
-
CodeNewbie has joined up with Vaidehi Joshi to turn her blog series into an awesome
- podcast,
- the Basecs Podcast. They cover binary, hexes, algorithms, and more. Join them
- here for Season 3.
-
-
-
-
Join our WECE Slack Workspace
-
WECE uses Slack as a way to streamline communication between WECE members and
- committees,
- as well as a place for important announcements and upcoming events! Join our
- general
- channel
- here.
-
-
-
Resume Book
-
Career fair season is here again! If you're still looking for internships or
- full-time opportunities,
- submit your resume to the WECE Resume Book
- here to have your resume sent out to companies!
-
-
-
-
\ No newline at end of file
diff --git a/source/html/newsletterarchive/120417.html b/source/html/newsletterarchive/120417.html
deleted file mode 100644
index e0ee977..0000000
--- a/source/html/newsletterarchive/120417.html
+++ /dev/null
@@ -1,153 +0,0 @@
-
-
-
-
-
-
- WECE Newsletter: December 4, 2017 - December 11, 2017
-
-
-
-
-
-
-
-
-
-
- DECEMBER 4 - DECEMBER 11
- EVENTS
-
TASTY THURSDAY
-
- Come hang out with WECE in an informal setting. Do your homework, paint your nails, build a robot… the possibilities are endless. Snacks will be provided!
-
- Come out to our technical committtee meeting to help plan tech workshops and gain resume-worthy technical experience through completing hardware and software-centered projects with WECE!
-
- The Thiel Fellowship is a two-year program for young people who are building new things. The program offers $100,000 in an equity free grant, and allows the Thiel fellows the freedom to work on their company full time outside of school. To be eligible, one must be 22 or younger and without a college degree. For more information, please contact program manager Katy Strupp.
-
-
-
-
9TH POWER AND ENERGY CONFERENCE AT ILLINOIS (PECI)
-
- The Power and Energy Systems group at the University of Illinois at Urbana-Champaign cordially invites you to attend and present at the 9th Power and Energy Conference at Illinois (PECI) which will be held in the I-Hotel at UIUC on February 22-23, 2018. Graduate student-organized and led, PECI fosters discourse broadly across the electric power and energy disciplines which include, but are not limited to: Power Electronics, Electric Power Systems, Energy Markets, Renewable Energy Technologies, Electric Machines and Drives, System Reliability and Control. Undergraduates who are involved in research are welcomed to present their work. Deadline for poster abstract submission is Nov 30, 2017. Registration for conference participation will be opened soon. More detailed information is available at http://peci.ece.illinois.edu or contact peci-publicity@illinois.edu.
-
-
- Where: I-Hotel
-
- When: February 22nd-23rd
-
-
-
-
-
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/source/html/newsletterarchive/120919.html b/source/html/newsletterarchive/120919.html
deleted file mode 100644
index f6f7063..0000000
--- a/source/html/newsletterarchive/120919.html
+++ /dev/null
@@ -1,1318 +0,0 @@
-
-
-
-
-
-
-
-
- WECE Newsletter: December 9, 2019
-
-
-
-
-
-
- Office hours are held weekly! Come get help with
- classes at our WECE-hosted office hours.
-
-
-
-
-
-
-
-
-
WECE x WCS Finals Study Day
-
December 14, 10am-4pm
-
ECEB 3002
-
- Need motivation and resources for your first set of
- finals? Come to our finals study day! Get free lunch
- AND a final's care package and leave feeling
- confident for your finals! We are currently looking
- for CAs/UAs/TAs for ECE 120, 220, 110, 210 to help
- students prepare for these finals! You would be
- working for one hour! Please email
- smaddi4@illinois.edu if you are able to help out!
-
-
-
-
-
-
-
-
-
Alumni Database
-
- If you are an alumni, we would love to stay in contact with
- you! If you would like to help WECE with professional
- development and help our current members, please fill out
- this form!
-
-
-
Interested in making websites?
-
- If you are interested in helping with our WECE website or
- learning more about web applications or web design, fill out
- this form
- to get involved!
-
-
-
Sign up for committees!
-
- Sign up for the committees you would like to join
- here.
-
-
-
Resume Book
-
- If you're still looking for internships or full-time
- opportunities, submit your resume to the WECE Resume Book
- here
- to have your resume sent out to companies!
-
-
-
Join our group on Campus Groups
-
- Join WECE on campus groups to get notifications for all our
- events and to RVSP and check-in to receive membership points
- here!
-
-
-
Join our WECE Slack Workspace
-
- WECE uses Slack as a way to streamline communication between
- WECE members and committees, as well as a place for
- important announcements and upcoming events! Join our
- general channel
- here.
-
It's the most wonderful time of the year - amidst finals and the last weeks of classes. Celebrate the holidays with your WECE and WCS family with movies, songs and games. HOT CHOCOLATE PROVIDED. Bring yourself,
- your friends and your holiday spirit!
-
Grace Hopper Celebration is the world's largest gathering of women technologists. Any WECE member can apply and more than likely, if it’s done early enough, can get approved for up to $500 in support from
- the ECE department to travel to the Grace Hopper Conference.
-
-
Come practice your programming skills through a series of algorithmic programming contests organized by ACM SIG-ICPC. Beginners welcome! Not to forget, we provide FREE PIZZA and $1200 prize pool for top
- 5 contestants in each division!
-
Eligibility: juniors or sophomores; Pursuing a 2019 summer internship; Black, Hispanic/Latino or Native American.
-
This scholarship recognizes outstanding students and is an integral part of diversity recruiting efforts at Goldman Sachs. Recipients will receive up to $15,000 towards tuituion and academic expenses.
-
-
-
-
-
-
-
-
-
Sign up for committees!
-
Missed the October General Meeting? Sign up for the committees you would like to join
- here.
-
-
-
-
Tune into CodeNewbie Podcast
-
CodeNewbie has joined up with Vaidehi Joshi to turn her blog series into an awesome podcast, the Basecs Podcast. They cover binary, hexes, algorithms, and more. Join them
- here for Season 3.
-
-
-
-
Join our WECE Slack Workspace
-
WECE uses Slack as a way to streamline communication between WECE members and committees, as well as a place for important announcements and upcoming events! Join our general channel
- here.
-
-
-
Resume Book
-
Career fair season is here again! If you're still looking for internships or full-time opportunities, submit your resume to the WECE Resume Book
- here to have your resume sent out to companies!
-
- Come out to our technical committtee meeting to help plan tech workshops and gain resume-worthy technical experience through completing hardware and software-centered projects with WECE!
-
DELOITTE CONSULTING UNDERGRADUATE CASE COMPETITION
-
- Are you interested in learning more about Technology, Human Capital and/or Strategy and Operations Consulting? Do you enjoy working in an interactive team to solve real-life business challenges? If so, we invite you to participate in the Deloitte Consulting Undergraduate Case Competition! Teams should consist of up to 4 current undergraduate students (freshmen or sophomores only, please). To learn more about the competition and to apply, please submit an application online here for your team by 01/24/2018.
-
-
-
-
THIEL FELLOWSHIP
-
- The Thiel Fellowship is a two-year program for young people who are building new things. The program offers $100,000 in an equity free grant, and allows the Thiel fellows the freedom to work on their company full time outside of school. To be eligible, one must be 22 or younger and without a college degree. For more information, please contact program manager Katy Strupp.
-
-
-
-
9TH POWER AND ENERGY CONFERENCE AT ILLINOIS (PECI)
-
- The Power and Energy Systems group at the University of Illinois at Urbana-Champaign cordially invites you to attend and present at the 9th Power and Energy Conference at Illinois (PECI) which will be held in the I-Hotel at UIUC on February 22-23, 2018. Graduate student-organized and led, PECI fosters discourse broadly across the electric power and energy disciplines which include, but are not limited to: Power Electronics, Electric Power Systems, Energy Markets, Renewable Energy Technologies, Electric Machines and Drives, System Reliability and Control. Undergraduates who are involved in research are welcomed to present their work. Deadline for poster abstract submission is Nov 30, 2017. Registration for conference participation will be opened soon. More detailed information is available at http://peci.ece.illinois.edu or contact peci-publicity@illinois.edu.
-
-
- Where: I-Hotel
-
- When: February 22nd-23rd
-
-
-
-
-
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/source/html/newsletterarchive/images/Aeroportal.ttf b/source/html/newsletterarchive/images/Aeroportal.ttf
deleted file mode 100644
index 06ea70d..0000000
Binary files a/source/html/newsletterarchive/images/Aeroportal.ttf and /dev/null differ
diff --git a/source/html/newsletterarchive/images/fb.png b/source/html/newsletterarchive/images/fb.png
deleted file mode 100644
index 1e0e4b0..0000000
Binary files a/source/html/newsletterarchive/images/fb.png and /dev/null differ
diff --git a/source/html/newsletterarchive/images/footer.png b/source/html/newsletterarchive/images/footer.png
deleted file mode 100644
index 3d47458..0000000
Binary files a/source/html/newsletterarchive/images/footer.png and /dev/null differ
diff --git a/source/html/newsletterarchive/images/header.png b/source/html/newsletterarchive/images/header.png
deleted file mode 100644
index b9faa9d..0000000
Binary files a/source/html/newsletterarchive/images/header.png and /dev/null differ
diff --git a/source/html/newsletterarchive/images/link.png b/source/html/newsletterarchive/images/link.png
deleted file mode 100644
index 20357fb..0000000
Binary files a/source/html/newsletterarchive/images/link.png and /dev/null differ
diff --git a/source/html/newsletterarchive/images/unsubscribe.png b/source/html/newsletterarchive/images/unsubscribe.png
deleted file mode 100644
index fe36f38..0000000
Binary files a/source/html/newsletterarchive/images/unsubscribe.png and /dev/null differ
diff --git a/source/html/newsletters.html b/source/html/newsletters.html
deleted file mode 100644
index 0c5b1f9..0000000
--- a/source/html/newsletters.html
+++ /dev/null
@@ -1,64 +0,0 @@
-
-
-
-
-
-
- Women in ECE | University of Illinois at Urbana-Champaign
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
Newsletters_
-
-
-
-
-
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/source/html/newslettersubmit.html b/source/html/newslettersubmit.html
deleted file mode 100644
index d1ef6cc..0000000
--- a/source/html/newslettersubmit.html
+++ /dev/null
@@ -1,65 +0,0 @@
-
-
-
-
-
-
- Women in ECE | University of Illinois at Urbana-Champaign
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
Newsletter Submit_
-
-
-
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/source/html/resumebook.html b/source/html/resumebook.html
deleted file mode 100644
index 5aec9ea..0000000
--- a/source/html/resumebook.html
+++ /dev/null
@@ -1,162 +0,0 @@
-
-
-
-
-
-
- Women in ECE | University of Illinois at Urbana-Champaign
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
Resume Book Login
-
-
-
wrong password
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/source/html/sponsors.html b/source/html/sponsors.html
deleted file mode 100644
index ef90871..0000000
--- a/source/html/sponsors.html
+++ /dev/null
@@ -1,101 +0,0 @@
-
-
-
-
-
-
- Women in ECE | University of Illinois at Urbana-Champaign
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-