forked from ucbsweweb/ucb_swe_public_html
-
Notifications
You must be signed in to change notification settings - Fork 0
/
involved.html
executable file
·778 lines (736 loc) · 45.6 KB
/
involved.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<meta name="description" content="">
<meta name="author" content="">
<title>Get Involved | UC Berkeley SWE</title>
<!-- Bootstrap core CSS -->
<link href="vendor/bootstrap/css/bootstrap.min.css" rel="stylesheet">
<!-- Custom fonts for this template -->
<link href="vendor/fontawesome-free/css/all.min.css" rel="stylesheet" type="text/css">
<link href='https://fonts.googleapis.com/css?family=Lora:400,700,400italic,700italic' rel='stylesheet' type='text/css'>
<link href='https://fonts.googleapis.com/css?family=Open+Sans:300italic,400italic,600italic,700italic,800italic,400,300,600,700,800' rel='stylesheet' type='text/css'>
<link href='https://fonts.googleapis.com/css?family=Lato:300,400,700,900' rel='stylesheet' type='text/css'>
<link href='https://fonts.googleapis.com/css?family=Raleway:300,400,500,600,700,800,900' rel='stylesheet' type='text/css'>
<!-- Custom styles for this template -->
<link href="css/clean-blog.css" rel="stylesheet">
<link rel="icon" href="img/favicon.png">
</head>
<body>
<!-- Navigation -->
<nav class="navbar navbar-expand-lg navbar-light fixed-top" id="submainNav">
<div class="container">
<a class="navbar-brand" href="index.html">
<div class="fadeInMove"><img src="img/swewhite.png" alt="SWE logo" height="38"></div>
</a>
<button class="navbar-toggler navbar-toggler-right" type="button" data-toggle="collapse" data-target="#navbarResponsive" aria-controls="navbarResponsive" aria-expanded="false" aria-label="Toggle navigation">
Menu
<i class="fas fa-bars"></i>
</button>
<div class="collapse navbar-collapse" id="navbarResponsive">
<ul class="navbar-nav ml-auto">
<li class="nav-item">
<a class="nav-link" href="about.html"><div class="fadeInMove">About</div></a>
</li>
<li class="nav-item">
<a class="nav-link" href="officers.html"><div class="fadeInMove">Officers</div></a>
</li>
<li class="nav-item">
<a class="nav-link" href="calendar.html"><div class="fadeInMove">Calendar</div></a>
</li>
<li class="nav-item">
<a class="nav-link" href="involved.html"><div class="fadeInMove">Get Involved</div></a>
</li>
<li class="nav-item">
<a class="nav-link" href="outreach.html"><div class="fadeInMove">Outreach</div></a>
</li>
<li class="nav-item">
<a class="nav-link" href="corporate.html"><div class="fadeInMove">Corporate</div></a>
</li>
<li class="nav-item">
<a class="nav-link" href="https://ucb-swe.medium.com/" target="_"><div class="fadeInMove">Blog</div></a>
</li>
</ul>
</div>
</div>
</nav>
<!-- Page Header -->
<header class="masthead" style="background-image: url('img/involved/cover.png')">
<div class="overlay"></div>
<div class="container">
<div class="row">
<div class="col-lg-8 col-md-10 mx-auto">
<div class="site-heading">
<div class="fadeIn"><h1>Get Involved</h1></div>
<div class="fadeInAfter"><span class="subheading">We have many ways to get involved with SWE for both students and alumni. We offer a variety of committees and apprenticeships, and events for our alumni.</span></div>
<br>
</div>
</div>
</div>
</div>
</header>
<nav class="navbar navbar-expand-lg navbar-light bg-light">
<button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#navbarNav" aria-controls="navbarNav" aria-expanded="false" aria-label="Toggle navigation">
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse" id="navbarNav">
<ul class="navbar-nav mx-auto">
<li class="nav-item px-4">
<a class="nav-link" href="#student">For Students</a>
</li>
<li class="nav-item px-4">
<a class="nav-link" href="#alumni">For Alumni</a>
</li>
<li class="nav-item px-4">
<a class="nav-link" href="#national">Become a National Member</a>
</li>
</ul>
</div>
</nav>
<div id="student"></div>
<br>
<br>
<!-- Main Content -->
<div class="container">
<h2 class="post-title">For Students</h2>
<hr>
<!-- <h4 class="text-center"><strong><a href="https://tinyurl.com/swefa21officerapp" target="_">Fall 2021 officer applications</a></strong> are now open!<br>They are due <strong>Sunday, April 11 at 11:59 PM PT</strong>.<br> View <strong><a href= "https://tinyurl.com/swefa21officerdesc" target="_">officer descriptions</a></strong> to learn more about each position!</h4>
<br>
<h4 class="text-center">Not sure which role to apply to? Try our "Which SWE Officer are you?" <strong><a href="fallofficerquiz.html" target="_">quiz!</a></strong></h4> -->
<h4 class="text-center">Our Fall 2021 Committee/Apprentice Applications are now open!
<br/>To learn more about each position, view role <strong><a href="https://bit.ly/swefa21committeedesc" target="_">descriptions.</a></strong>
<br/><strong><a href="https://bit.ly/swefa21committeeapp" target="_">Apply</a></strong> by <strong>09/17 at 11:59 PM PST!</strong></h4>
<br>
<!-- <h4 class="text-center">Not sure which role to apply to? Try our "Which SWE Committee are you?" <strong><a href="fallcommquiz.html" target="_">quiz.</a></strong></h4> -->
<!-- <p class="text-center">__________________________</p> -->
<p class="text-center">For students, the best way to get involved in SWE at UC Berkeley is to become a general member, join a committee, or become an apprentice. In addition, we have a variety of social and professional events we host for students, as well as volunteering opportunities. Every month, we have a general meeting which is open to all students which serves as a great way to meet the officers and learn more about the SWE community. Officer positions open at the end of each semester for those who are interested in applying.</p>
<p class="text-center"> If you would like to join one of SWE's committees, check back in at the beginning of the semester for committee applications. Applications will be released after the first general meeting of the semester, which is Thursday, September 9th from 6-7pm in 290 Hearst Memorial Mining Building. More information about each committee can be found below.</p>
<!-- <p class="text-center">To stay connected, sign up for our weekly <strong><a href= "https://forms.gle/yeQi733Qkx42S9gF8" target="_">SWEMails</a></strong>, like our <strong><a href= "https://www.facebook.com/ucberkeleyswe
" target="_">Facebook page</a></strong>, and follow us on </a><strong><a href= "https://www.instagram.com/ucb_swe/" target="_">Instagram.</a></strong></p> -->
<p class="text-center">To stay connected, check out our platforms below!</p>
<h4>Our Platforms</h4>
<br>
<div class="accordion" id="societal-com">
<div class="card">
<div class="card-header" id="headingThree">
<h5 class="mb-0"><a href="https://bit.ly/ucbswe2122member" target="_blank">
<button class="btn btn-link collapsed" type="button">Become a SWE General Member
</button>
</a></h5>
</div>
</div>
<div class="card">
<div class="card-header" id="headingThree">
<h5 class="mb-0"><a href="https://tinyurl.com/fa21joinswemail" target="_">
<button class="btn btn-link collapsed" type="button">
Join our Mailing List
</button>
</a></h5>
</div>
</div>
<div class="card">
<div class="card-header" id="headingThree">
<h5 class="mb-0"><a href="https://tinyurl.com/ucbswecal" target="_">
<button class="btn btn-link collapsed" type="button">
Join our calendar
</button>
</a></h5>
</div>
</div>
<div class="card">
<div class="card-header" id="headingThree">
<h5 class="mb-0"><a href="https://tinyurl.com/ucbsweslack" target="_">
<button class="btn btn-link collapsed" type="button">
Join our Slack
</button>
</a></h5>
</div>
</div>
<div class="card">
<div class="card-header" id="headingThree">
<h5 class="mb-0"><a href="https://www.facebook.com/ucberkeleyswe" target="_">
<button class="btn btn-link collapsed" type="button">
Like our Facebook Page
</button>
</a></h5>
</div>
</div>
<div class="card">
<div class="card-header" id="headingThree">
<h5 class="mb-0"><a href="https://www.instagram.com/ucb_swe/" target="_">
<button class="btn btn-link collapsed" type="button">
Follow us on Instagram
</button>
</a></h5>
</div>
</div>
<div class="card">
<div class="card-header" id="headingThree">
<h5 class="mb-0"><a href="https://twitter.com/UCB_SWE" target="_">
<button class="btn btn-link collapsed" type="button">
Follow us on Twitter
</button>
</a></h5>
</div>
</div>
<div class="card">
<div class="card-header" id="headingThree">
<h5 class="mb-0"><a href="https://www.tiktok.com/@ucb_swe" target="_">
<button class="btn btn-link collapsed" type="button">
Follow us on Tiktok
</button>
</a></h5>
</div>
</div>
<div class="card">
<div class="card-header" id="headingThree">
<h5 class="mb-0"><a href="https://www.youtube.com/user/BerkeleySWE" target="_">
<button class="btn btn-link collapsed" type="button">
Subscribe to our YouTube Channel
</button>
</a></h5>
</div>
</div>
<div class="card">
<div class="card-header" id="headingThree">
<h5 class="mb-0"><a href="https://tinyurl.com/swepod" target="_">
<button class="btn btn-link collapsed" type="button">
Listen to the SWE Podcast
</button>
</a></h5>
</div>
</div>
<div class="card">
<div class="card-header" id="headingThree">
<h5 class="mb-0"><a href="https://www.linkedin.com/company/uc-berkeley-swe" target="_">
<button class="btn btn-link collapsed" type="button">
Follow us on LinkedIn
</button>
</a></h5>
</div>
</div>
<div class="card">
<div class="card-header" id="headingThree">
<h5 class="mb-0"><a href="https://www.linkedin.com/groups/12462059/" target="_">
<button class="btn btn-link collapsed" type="button">
Follow us on our LinkedIn Group <br> (Jobs & Opportunities)
</button>
</a></h5>
</div>
</div>
</div>
<br>
<br>
<!-- Societal Committees -->
<h4>Societal Committees</h4>
<br>
<div class="accordion" id="societal-com">
<div class="card">
<div class="card-header" id="headingThree">
<h5 class="mb-0">
<button class="btn btn-link collapsed" type="button" data-toggle="collapse" data-target="#collapseThree" aria-expanded="false" aria-controls="collapseThree">
Advocacy
</button>
</h5>
</div>
<div id="collapseThree" class="collapse" aria-labelledby="headingThree" data-parent="#societal-com">
<div class="card-body">
<strong>Officer: Sharicka Zutshi</strong><br><br>
Interested in politics, policy, and social justice? The Advocacy Committee is dedicated to bridging the gap between the scientific community and politics. The committee’s goal is to provide a platform for students in STEM and the broader campus community to interact with international and domestic policy issues.
<br/><br/>
This semester, we will focus on the implications of the 2020 elections, the COVID-19 pandemic, Identity politics, and the widening ideology gap in the United States. Under the advocacy committee, you will have the opportunity to hold events, learn about lobbying, and engage in public and individual advocacy. In previous semesters, we have collaborated with Vote co. to increase voter engagement, participated in a congressional outreach program in DC, held workshops to educate voters about policies such as the propositions, raised awareness about campus climate, and published policy spotlights. This semester, our tasks will entail running a Women in Policy speaker series, civic awareness workshops, and collaborating with campus organizations to raise awareness about pressing issues in policy.
</div>
</div>
</div>
<div class="card">
<div class="card-header" id="headingFour">
<h5 class="mb-0">
<button class="btn btn-link collapsed" type="button" data-toggle="collapse" data-target="#collapseFour" aria-expanded="false" aria-controls="collapseFour">
Equity & Inclusion
</button>
</h5>
</div>
<div id="collapseFour" class="collapse" aria-labelledby="headingFour" data-parent="#societal-com">
<div class="card-body">
<strong>Officer: Thena Guttieri</strong><br><br>
Are you passionate about gender equity and inclusion and want to take measures in tackling the challenges faced by women in STEM? Want to learn how to engage with your peers and professionals to advocate for a more inclusive environment? Apply to be a part of the Equity and Inclusion Committee! This would be an amazing opportunity for you to gain key communication and professional skills and more importantly, make the move towards creating a more inclusive environment for us all!
</div>
</div>
</div>
<div class="card">
<div class="card-header" id="headingFourteen">
<h5 class="mb-0">
<button class="btn btn-link collapsed" type="button" data-toggle="collapse" data-target="#collapseFourteen" aria-expanded="false" aria-controls="collapseFourteen">
Mentorship
</button>
</h5>
</div>
<div id="collapseFourteen" class="collapse" aria-labelledby="headingFourteen" data-parent="#societal-com">
<div class="card-body">
<strong>Officer: Andrea Palomo</strong><br><br>
The Mentorship Committee will help the Liaison organize Mentor/Mentee Kickoffs, guide the mentees to make productive use of all mentor sessions, and foster a attitude of communal growth. Mentorship hosts both the professional Mentorship and the SWEster program, and thus committee members will be responsible for managing the logistics, publicity, and personal relations of each event. You'll be emailing dozens of professional women in the Bay Area, and this is a fantastic opportunity to expand your network and learn more about what engineering looks like from your peers and beyond. If you're interested in supporting women in engineering, you're in the right place!
</div>
</div>
</div>
<div class="card">
<div class="card-header" id="headingTwentyThree">
<h5 class="mb-0">
<button class="btn btn-link collapsed" type="button" data-toggle="collapse" data-target="#collapseTwentyThree" aria-expanded="false" aria-controls="collapseTwentyThree">
Transfer Outreach
</button>
</h5>
</div>
<div id="collapseTwentyThree" class="collapse" aria-labelledby="headingTwentyThree" data-parent="#societal-com">
<div class="card-body">
<strong>Officer: Leena Elzeiny</strong><br><br>
The Transfer Outreach committee is dedicated to supporting junior and senior transfers in Cal, and hosting events for this community. Transfer students often come with their own stories, so our mission is to help immerse transfer students into Berkeley, but also enrich Cal with their experiences. This semester, we hope to start an affiliated SWE section in a community college, as well as host events for the admitted transfer class of 2021. No experience required and you don't need to be a transfer student to apply--definitely looking for apprentices who will bring their unique and diverse ideas and perspectives!
</div>
</div>
</div>
<!-- <div class="card">
<div class="card-header" id="headingFive">
<h5 class="mb-0">
<button class="btn btn-link collapsed" type="button" data-toggle="collapse" data-target="#collapseFive" aria-expanded="false" aria-controls="collapseFive">
New Admit Online Host Program
</button>
</h5>
</div>
<div id="collapseFive" class="collapse" aria-labelledby="headingFive" data-parent="#societal-com">
<div class="card-body">
<strong>Officers: Ashley Chu & Sierra Dean</strong><br>
Term: Spring <br>
Email: <strong><a href="mailto:ucb.swe.admit@gmail.com" target="_">ucb.swe.admit@gmail.com</a></strong><br><br>
The Online Host Program Committee is responsible for overseeing the virtual week-long program that gives incoming female engineers their first experience as a UC Berkeley Engineer. Responsibilities range from inviting professors to events, matching admitted and current engineering students, designing admit packages, and organizing activities for incoming admits! This is a wonderful opportunity if you have been positively affected by OHP yourself and/or are looking for a way to give back to the community that made you feel a part of the College of Engineering your freshman year. We look forward to meeting you and working with you as part of the SWE OHP committee.
</div>
</div>
</div> -->
<div class="card">
<div class="card-header" id="headingOne">
<h5 class="mb-0">
<button class="btn btn-link collapsed" type="button" data-toggle="collapse" data-target="#collapseOne" aria-expanded="false" aria-controls="collapseOne">
Public Relations
</button>
</h5>
</div>
<div id="collapseOne" class="collapse" aria-labelledby="headingOne" data-parent="#societal-com">
<div class="card-body">
<strong>Officers: Elle Tran & Lily Sai</strong><br><br>
The Public Relations Committee helps keep everyone informed about SWE’s events and opportunities. Members of the committee will be helping to create and facilitate weekly SWEmail, Facebook events and covers, flyers, and design workshops. Consider joining the PR Committee if you have an interest in design, communications, or anything public relations related! Experience with Adobe Illustrator or other relevant tools is preferred but not at all required.
</div>
</div>
</div>
<div class="card">
<div class="card-header" id="headingTwo">
<h5 class="mb-0">
<button class="btn btn-link collapsed" type="button" data-toggle="collapse" data-target="#collapseTwo" aria-expanded="false" aria-controls="collapseTwo">
Social Media
</button>
</h5>
</div>
<div id="collapseTwo" class="collapse" aria-labelledby="headingTwo" data-parent="#societal-com">
<div class="card-body">
<strong>Officer: Esther Shin</strong><br><br>
The Social Media Committee takes photos and videos of members and activities at SWE events (both online and in-person). This means maintaining photo albums and managing all SWE social media. There may be opportunities throughout the semester to create videos and work on our very own SWE Podcast! No experience is required.
</div>
</div>
</div>
<div class="card">
<div class="card-header" id="headingSeven">
<h5 class="mb-0">
<button class="btn btn-link collapsed" type="button" data-toggle="collapse" data-target="#collapseSeven" aria-expanded="false" aria-controls="collapseSeven">
Web
</button>
</h5>
</div>
<div id="collapseSeven" class="collapse" aria-labelledby="headingSeven" data-parent="#societal-com">
<div class="card-body">
<strong>Officer: Kuhu Sharma</strong><br><br>
Join SWE's web committee to help out with updating and maintaining our website and Piazza page! Our work will mainly consist of HTML, CSS, JavaScript, and Bootstrap elements. It'll be a great learning opportunity if you're interested in web development. A little experience is preferred, but everyone is encouraged to apply!
</div>
</div>
</div>
<div class="card">
<div class="card-header" id="headingSix">
<h5 class="mb-0">
<button class="btn btn-link collapsed" type="button" data-toggle="collapse" data-target="#collapseSix" aria-expanded="false" aria-controls="collapseSix">
Team Tech
</button>
</h5>
</div>
<div id="collapseSix" class="collapse" aria-labelledby="headingSix" data-parent="#societal-com">
<div class="card-body">
<strong>Officers: Phoebe Chang & Renee Francisco </strong><br>
Term: Fall and Spring<br><br>
Team Tech is a national competition run by SWE and sponsored by Boeing in which a team at school works with an industry partner on a project. The company and project is of each team’s choosing. Teams are evaluated both on the end product quality and the ability of the team to work together. Project proposals may be submitted during the fall semester after which teams may begin their work. The final report is due at the end of the spring semester, and the presentations occur at the SWE fall conference.
</div>
</div>
</div>
</div>
<br>
<br>
<!-- Professional Committees -->
<h4>Professional Committees</h4>
<br>
<div class="accordion" id="professional-com">
<div class="card">
<div class="card-header" id="headingFifteen">
<h5 class="mb-0">
<button class="btn btn-link collapsed" type="button" data-toggle="collapse" data-target="#collapseFifteen" aria-expanded="false" aria-controls="collapseFifteen">
Shadow An Engineer
</button>
</h5>
</div>
<div id="collapseFifteen" class="collapse" aria-labelledby="headingFifteen" data-parent="#professional-com">
<div class="card-body">
<strong>Officers: Joelle Siong Sin</strong><br><br>
The Shadow an Engineer program matches students to an externship over winter break with a company that matches their professional interests. Companies include Accenture Labs, Cisco Systems, TurnItIn, and more innovative companies in a range of fields! No experience required and snacks included! Roles include corporate relations, student relations, and public relations.
</div>
</div>
</div>
<!-- <div class="card">
<div class="card-header" id="headingSixteen">
<h5 class="mb-0">
<button class="btn btn-link collapsed" type="button" data-toggle="collapse" data-target="#collapseSixteen" aria-expanded="false" aria-controls="collapseSixteen">
Startup Spring
</button>
</h5>
</div>
<div id="collapseSixteen" class="collapse" aria-labelledby="headingSixteen" data-parent="#professional-com">
<div class="card-body">
<strong>Officers: Elle Tran & Michelle Ramirez</strong><br>
Term: Spring<br><br>
Startup Spring is a series of career and recruiting events connecting startups with students interested in working in the startup environment. We are partnering with organizations to promote women founders and women in tech. As part of our committee you’ll be able to gain event planning experience, expose yourself to the Startup environment, and network with organizations, from startups to accelerators.
</div>
</div>
</div>
<div class="card">
<div class="card-header" id="headingSeventeen">
<h5 class="mb-0">
<button class="btn btn-link collapsed" type="button" data-toggle="collapse" data-target="#collapseSeventeen" aria-expanded="false" aria-controls="collapseSeventeen">
Career Options
</button>
</h5>
</div>
<div id="collapseSeventeen" class="collapse" aria-labelledby="headingSeventeen" data-parent="#professional-com">
<div class="card-body">
<strong>Officers: Kirthi Kumar & Sarina Xin</strong><br>
Term: Spring<br><br>
The Career Options Committee aims to expose engineering students to career paths other than traditional engineering roles in industry. We will be hosting a series of events throughout the spring semester, each covering an alternative career path (i.e. consulting, entrepreneurship, etc). Committee members will be responsible for corporate relations, organizing logistics, and PR for their event. We are looking for enthusiastic members who are interested in exploring their own options for their career path as well as members who are interested in event planning and personal/professional development.
</div>
</div>
</div> -->
<div class="card">
<div class="card-header" id="headingEighteen">
<h5 class="mb-0">
<button class="btn btn-link collapsed" type="button" data-toggle="collapse" data-target="#collapseEighteen" aria-expanded="false" aria-controls="collapseEighteen">
Evening With Industry
</button>
</h5>
</div>
<div id="collapseEighteen" class="collapse" aria-labelledby="headingEighteen" data-parent="#professional-com">
<div class="card-body">
<strong>Officers: Hana Meroth & Kirthi Kumar</strong><br>
Term: Fall <br><br>
EWI is our premier networking event, and last year, we hosted more than 130 of UC Berkeley's best and brightest engineering students to meet with companies from all different engineering disciplines. EWI connect employers to students on a more personal and professional level through a career fair and a sit-down dinner. Join the EWI committee!
</div>
</div>
</div>
<div class="card">
<div class="card-header" id="headingNineteen">
<h5 class="mb-0">
<button class="btn btn-link collapsed" type="button" data-toggle="collapse" data-target="#collapseNineteen" aria-expanded="false" aria-controls="collapseNineteen">
Professional Development Month
</button>
</h5>
</div>
<div id="collapseNineteen" class="collapse" aria-labelledby="headingNineteen" data-parent="#professional-com">
<div class="card-body">
<strong>Officers: Jennifer Zhou & Priya Sriram</strong><br>
Term: Fall <br><br>
The Professional Development Month Committee is responsible for organizing Professional Development Month, a month long series of career development workshops (each partnered with an engineering company) aimed to prepare students seeking career experience. Committee members will be responsible for managing the logistics, publicity, and corporate relations of each event. We highly recommend this committee to anyone interested in event planning (you will be responsible for managing specific events as "day heads") and corporate relations!
</div>
</div>
</div>
</div>
<br>
<br>
<!-- Outreach Committees -->
<h4>Outreach Committees</h4>
<br>
<div class="accordion" id="outreach-com">
<div class="card">
<div class="card-header" id="headingZero">
<h5 class="mb-0">
<button class="btn btn-link" type="button" data-toggle="collapse" data-target="#collapseZero" aria-expanded="false" aria-controls="collapseZero">
Mini University
</button>
</h5>
</div>
<div id="collapseZero" class="collapse" aria-labelledby="headingZero" data-parent="#outreach-com">
<div class="card-body">
<strong>Officer: Katherine Wang</strong><br>
Email: <strong><a href="mailto:swe.miniu@gmail.com" target="_">swe.miniu@gmail.com</a></strong><br><br>
Mini-University is a free event designed to encourage underserved high school students in the Bay Area to pursue careers in STEM. The event is open to all genders and will be held virtually this semester from March 8th to March 10th, lasting approximately two hours each day with hands-on engineering activities, faculty talks and student panels. If you are interested in helping to organize the event or in sharing your engineering experiences with high school students, please reach out to volunteer or join the Mini-U committee!
</div>
</div>
</div>
<div class="card">
<div class="card-header" id="headingEight">
<h5 class="mb-0">
<button class="btn btn-link collapsed" type="button" data-toggle="collapse" data-target="#collapseEight" aria-expanded="false" aria-controls="collapseEight">
SWENext
</button>
</h5>
</div>
<div id="collapseEight" class="collapse" aria-labelledby="headingEight" data-parent="#outreach-com">
<div class="card-body">
<strong>Officers: Anvisha Saxena & Manasi Gowda</strong><br>
Email: <strong><a href="mailto:swenext.berkeley@gmail.com" target="_">swenext.berkeley@gmail.com</a></strong><br><br>
SWENext aims to encourage high school females to explore STEM and consider a STEM career by helping them establish SWENext clubs at their high schools. We provide students with resources to help them navigate high school, college, and career planning. We also have a mentorship program that connects high schoolers with undergraduate mentors to advise, support, and inspire them to pursue their interests in STEM. Join SWENext committee to be part of a community that works with youth to increase representation in STEM fields! This year, we will be splitting into the following subcommittees: website development, mentorship, social media, activities, and SWENext Day (in the spring). If you are interested in any of the areas, please reach out to us to apply.
</div>
</div>
</div>
<!-- <div class="card">
<div class="card-header" id="headingNine">
<h5 class="mb-0">
<button class="btn btn-link collapsed" type="button" data-toggle="collapse" data-target="#collapseNine" aria-expanded="false" aria-controls="collapseNine">
SWE Science Saturdays
</button>
</h5>
</div>
<div id="collapseNine" class="collapse" aria-labelledby="headingNine" data-parent="#outreach-com">
<div class="card-body">
<strong>Officers: Alexia Camacho & Manasi Gowda</strong><br><br>
SWE Science is a hands-on engineering program held from 10AM to 11:30AM on Saturday mornings. The program is divided into two sections: SWE Science Saturdays for 4th-5th grade and SWE Science Scholars for 6th-8th grade students. During these sessions, students will engage in engineering challenges designed to allow students to not only practice foundational STEM principles but also to develop their intellectual curiosities and creativity. Previous activities have included cardboard vehicles, flotation devices, and plastic parachutes. If you are interested in planning and volunteering for our events this semester, please reach out!
</div>
</div>
</div> -->
<div class="card">
<div class="card-header" id="headingTen">
<h5 class="mb-0">
<button class="btn btn-link collapsed" type="button" data-toggle="collapse" data-target="#collapseTen" aria-expanded="false" aria-controls="collapseTen">
High School Engineering Program
</button>
</h5>
</div>
<div id="collapseTen" class="collapse" aria-labelledby="headingTen" data-parent="#outreach-com">
<div class="card-body">
<strong>Officers: Jin Yu & Catherine Hwu</strong><br>
Email: <strong><a href="mailto:swe.highschool.outreach@gmail.com" target="_">swe.highschool.outreach@gmail.com</a></strong><br><br>
HSEP (High School Engineering Program) works to enrich high school students' understanding and range of experience with different engineering disciplines and inspire them to continue to pursue STEM in the future. This program is run online for 10 weeks on Saturdays from 10 AM to 1 PM starting from September 12th (only the first meeting is Sunday) to November 20th for Fall 2021.
</div>
</div>
</div>
<div class="card">
<div class="card-header" id="headingEleven">
<h5 class="mb-0">
<button class="btn btn-link collapsed" type="button" data-toggle="collapse" data-target="#collapseEleven" aria-expanded="false" aria-controls="collapseEleven">
SWE++
</button>
</h5>
</div>
<div id="collapseEleven" class="collapse" aria-labelledby="headingEleven" data-parent="#outreach-com">
<div class="card-body">
<strong>Officers: Elaine Qian & Kellie Chan</strong><br><br>
SWE++ is a 10 week course that aims to provide introductory programming skills to 30 local middle girls. The first 9 weeks covers an interactive curriculum in Scratch and Python that our teachers and volunteers create and teach. The final week of the course is a full day of coding and engineer workshops called Tech Day. Unlike the previous 9 weeks, Tech Day is open to up to 100 girls in the area, allowing more girls access to a hands-on experience with technology.
</div>
</div>
</div>
<div class="card">
<div class="card-header" id="headingTwelve">
<h5 class="mb-0">
<button class="btn btn-link collapsed" type="button" data-toggle="collapse" data-target="#collapseTwelve" aria-expanded="false" aria-controls="collapseTwelve">
Engineering Day
</button>
</h5>
</div>
<div id="collapseTwelve" class="collapse" aria-labelledby="headingTwelve" data-parent="#outreach-com">
<div class="card-body">
<strong>Officer: Jennifer Toy</strong><br>
Term: Fall <br>
Email: <strong><a href="mailto:swe.engineering.day@gmail.com" target="_">swe.engineering.day@gmail.com</a></strong><br><br>
Engineering Day is a fun Halloween-themed outreach event in October for K-3rd graders. This event features various hands-on science activities for the students and their parents/guardians to try out themselves, exploring many science and engineering concepts. Due to the virtual setting of this year’s Engineering Day, around 50 students (as well as their chaperones) are expected, who will be able to follow along (at home) through the virtually guided activities.
</div>
</div>
</div>
</div>
<br>
<br>
<!-- Apprentices -->
<h4>Apprentices</h4>
<br>
<div class="accordion" id="apprentice">
<div class="card">
<div class="card-header" id="headingTwenty">
<h5 class="mb-0">
<button class="btn btn-link" type="button" data-toggle="collapse" data-target="#collapseTwenty" aria-expanded="false" aria-controls="collapseTwenty">
Social
</button>
</h5>
</div>
<div id="collapseTwenty" class="collapse" aria-labelledby="headingTwenty" data-parent="#apprentice">
<div class="card-body">
<strong>Officer: Hadar Gamliel</strong><br>
Email: <strong><a href="mailto:ucb.swe.social@gmail.com" target="_">ucb.swe.social@gmail.com</a></strong><br><br>
Do you want an opportunity to get more involved in SWE by giving back to its members? Being an apprentice for the social committee allows you the opportunity to foster a stress-free environment, with guaranteed laughter and smiles. Help coordinate fun activities with the Membership Director. It is a great stepping stone into becoming a more active SWEster and be able to see a behind-the-scene glimpse in the planning process.
</div>
</div>
</div>
<div class="card">
<div class="card-header" id="headingTwentyOne">
<h5 class="mb-0">
<button class="btn btn-link collapsed" type="button" data-toggle="collapse" data-target="#collapseTwentyOne" aria-expanded="false" aria-controls="collapseTwentyOne">
Intersocietal
</button>
</h5>
</div>
<div id="collapseTwentyOne" class="collapse" aria-labelledby="headingTwentyOne" data-parent="#apprentice">
<div class="card-body">
<strong>Officer: Kavya Marrapu</strong><br><br>
The Intersocietal Apprentice will help the Intersocietal Chair organize and implement creative social events for SWE and between other engineering organizations. The Intersocietal Apprentice and Intersocietal Chair will work together to foster an attitude of communal growth and work to maintain SWE’s social presence in the engineering community. Some events that the apprentice will be responsible for planning with the Chair will include the Professor’s Lunch, an intersocietal trivia night, and other fun intersocietal events, such as a potential DIY Boba Bar! This apprenticeship will be a great way to obtain invaluable event planning experience, while having fun and meeting fellow engineers, as well!
</div>
</div>
</div>
</div>
</div>
<br><br><br><br><br>
<div class="container-fluid" id="alumni" style="background-color: #F5F5F5">
<br>
<br>
<div class="container">
<h2 class="post-title">For Alumni</h2>
<hr>
<br>
<div class="row">
<div class="col-lg-6 col-md-6 col-sm-12">
<img class="img-fluid" src="img/alumni/alumni1.jpg" alt="Alumnis posing together at brunch.">
</div>
<div class="col-lg-6 col-md-6 col-sm-12">
<img class="img-fluid" src="img/alumni/alumni2.jpg" alt="Group picture of current and graduated SWE members.">
</div>
</div>
<p class="text-center">
Our alumni go on to successful careers in all fields of engineering, and become role models and mentors for current undergraduate students. Alumni can stay in touch with UCB SWE through our alumni newsletter, our <strong><a target="_blank" href="https://www.linkedin.com/groups/6944499/">LinkedIn presence</a></strong>, and more. Alumni near Berkeley are also invited to the several alumni socials we hold each semester. In addition, many alumni choose to stay involved with the national Society of Women Engineers as professional members.
</p>
<br>
<h5 class="text-center">
<a href="http://eepurl.com/daGT9X" target="_blank">Sign up for the Alumni Newsletter</a>
</h5>
<br>
<h5 class="text-center">
<a href="https://docs.google.com/spreadsheets/d/14vr8lsk0XgKt2UOC5KLc4ltxGL8X0XGDWbt0C0mWGAQ/edit?usp=sharing" target="_blank">Check out the Alumni Mentorship Database</a>
</h5>
</div>
<br>
<br>
<br>
</div>
<div id="national"></div>
<div class="container">
<br>
<br>
<h2 class="post-title">Become a <a href="http://societyofwomenengineers.swe.org/membership" target="_">National Member</a></h2>
<hr>
<div class="row">
<div class="col-lg-6 col-md-6 col-sm-12">
<img class="img-fluid mx-auto d-block" style="height: 290px" src="img/involved/membership.png" alt="Membership card graphic">
<h5>Perks</h5>
<h6>
<ul>
<li>Discounts on SWE events and apparel</li>
<li>Ability to attend SWE National Conference</li>
<li>Ability to attend SWE Local Conferences</li>
<li>Access to Webinars</li>
<li>Applicable to apply to SWE scholarships</li>
<li>Strong network of women engineers from academia, government and industry, corporate representatives, government officials, etc.
</li>
</ul>
</h6>
</div>
<div class="col-lg-6 col-md-6 col-sm-12">
<br><br><br>
<h5>Collegiate to Career (C2C)</h5>
<h6>For a one-time $50 payment, collegiate members can secure a SWE membership for their collegiate years through the first year they qualify for professional grade membership.</h6>
<h5>Collegiate</h5>
<h6>SWE Membership is available for $20 to college students majoring in engineering and must be renewed annually to obtain membership benefits.</h6>
<h5>Joint</h5>
<h6>Take advantage of a reduced joint membership rate when you join SWE and one of these three professional organizations: The American Indian Science and Engineering Society (AISES), the National Society of Black Engineers (NSBE), and the Society of Hispanic Professional Engineers (SHPE).</h6>
</div>
</div>
</div>
<div class="morewhitespace"></div>
<!-- Footer -->
<footer>
<div class="container">
<div class="row">
<div class="col-lg-8 col-md-10 mx-auto">
<ul class="list-inline text-center">
<li class="list-inline-item">
<a href="https://www.facebook.com/SWE-UC-Berkeley-110515020740706/" target="_">
<span class="fa-stack fa-lg">
<i class="fas fa-circle fa-stack-2x"></i>
<i class="fab fa-facebook-f fa-stack-1x fa-inverse"></i>
</span>
</a>
</li>
<li class="list-inline-item">
<a href="https://www.instagram.com/ucb_swe" target="_">
<span class="fa-stack fa-lg">
<i class="fas fa-circle fa-stack-2x"></i>
<i class="fab fa-instagram fa-stack-1x fa-inverse"></i>
</span>
</a>
</li>
<li class="list-inline-item">
<a href="https://twitter.com/UCB_SWE" target="_">
<span class="fa-stack fa-lg">
<i class="fas fa-circle fa-stack-2x"></i>
<i class="fab fa-twitter fa-stack-1x fa-inverse"></i>
</span>
</a>
</li>
<li class="list-inline-item">
<a href="https://www.youtube.com/user/BerkeleySWE" target="_">
<span class="fa-stack fa-lg">
<i class="fas fa-circle fa-stack-2x"></i>
<i class="fab fa-youtube fa-stack-1x fa-inverse"></i>
</span>
</a>
</li>
<li class="list-inline-item">
<a href="https://open.spotify.com/show/7N32339d1A3GtiO2jz4T8I" target="_">
<span class="fa-stack fa-lg">
<i class="fas fa-circle fa-stack-2x"></i>
<i class="fab fa-spotify fa-stack-1x fa-inverse"></i>
</span>
</a>
</li>
<li class="list-inline-item">
<a href="https://www.redbubble.com/people/ucbswe/shop" target="_">
<span class="fa-stack fa-lg">
<i class="fas fa-circle fa-stack-2x"></i>
<i class="fa fa-shopping-bag fa-stack-1x fa-inverse"></i>
</span>
</a>
</li>
</ul>
<br>
<a class="ocf" href="https://www.ocf.berkeley.edu">
<img src="https://www.ocf.berkeley.edu/hosting-logos/ocfbadge_mini8.png"
alt="Hosted by the OCF" style="border: 1;" />
</a>
<p class="copyright text-muted">Copyright © Society of Women Engineers 2021</p>
</div>
</div>
</div>
</footer>
<!-- Bootstrap core JavaScript -->
<script src="vendor/jquery/jquery.min.js"></script>
<script src="vendor/bootstrap/js/bootstrap.bundle.min.js"></script>
<!-- Custom scripts for this template -->
<script src="js/clean-blog.min.js"></script>
<script src="js/main.js"></script>
</body>
</html>