-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathberkeley-events.json
20043 lines (20043 loc) · 767 KB
/
berkeley-events.json
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
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
[
{
"name": "#Downcrew ",
"cal_id": "91590",
"categories": [
"Performing Arts Student Organizations",
"Undergraduate Organizations"
],
"active_events": [],
"website": "downcrew.berkeley.edu"
},
{
"name": "*African American Student Development*",
"cal_id": "46103",
"categories": [
"Campus Departments"
],
"active_events": [],
"website": "AASD.berkeley.edu"
},
{
"name": "*Asian Pacific American Student Development*",
"cal_id": "46114",
"categories": [
"Campus Departments"
],
"active_events": [
{
"name": "Pilpinx/Filipino Friday: Spring Karaoke",
"month": "MAR",
"day": "13",
"time": "Fri 7 PM",
"location": "Asian Pacific American Student Development - APASD",
"link": "https://www.facebook.com/events/183460189624459/?acontext=%7B%22ref%22%3A51%2C%22source%22%3A5%2C%22action_history%22%3A[%7B%22surface%22%3A%22page%22%2C%22mechanism%22%3A%22main_list%22%2C%22extra_data%22%3A%22%5C%22[]%5C%22%22%7D]%2C%22has_source%22%3Atrue%7D"
}
],
"website": "apasd.berkeley.edu"
},
{
"name": "*ASUC Student Union Event Services*",
"cal_id": "92093",
"categories": [
"Campus Departments"
],
"active_events": [],
"website": "eventservices.berkeley.edu"
},
{
"name": "*Berkeley Art Studio*",
"cal_id": "132263",
"categories": [
"Campus Departments"
],
"active_events": [
{
"name": "Crafter Dark: Calder Inspired Mobiles!",
"month": "MAR",
"day": "12",
"time": "Thu 8 PM",
"location": "MLK student union",
"link": "https://www.facebook.com/events/626656431502436/?acontext=%7B%22ref%22%3A51%2C%22source%22%3A5%2C%22action_history%22%3A[%7B%22surface%22%3A%22page%22%2C%22mechanism%22%3A%22main_list%22%2C%22extra_data%22%3A%22%5C%22[]%5C%22%22%7D]%2C%22has_source%22%3Atrue%7D"
},
{
"name": "Crafter Dark",
"month": "MAR",
"day": "12",
"time": "Thu 8 PM",
"location": "MLK student union",
"link": "https://www.facebook.com/events/2659942317571573/?acontext=%7B%22ref%22%3A51%2C%22source%22%3A5%2C%22action_history%22%3A[%7B%22surface%22%3A%22page%22%2C%22mechanism%22%3A%22main_list%22%2C%22extra_data%22%3A%22%5C%22[]%5C%22%22%7D]%2C%22has_source%22%3Atrue%7D"
}
],
"website": "artstudio.berkeley.edu"
},
{
"name": "*Chicanx Latinx Student Development*",
"cal_id": "91365",
"categories": [
"Campus Departments"
],
"active_events": [
{
"name": "2020 Diversity Career Internship Fair & Forum",
"month": "MAR",
"day": "11",
"time": "Wed 11 AM",
"location": "Pauley Ballroom",
"link": "https://www.facebook.com/events/2246888025619169/?acontext=%7B%22ref%22%3A51%2C%22source%22%3A5%2C%22action_history%22%3A[%7B%22surface%22%3A%22page%22%2C%22mechanism%22%3A%22main_list%22%2C%22extra_data%22%3A%22%5C%22[]%5C%22%22%7D]%2C%22has_source%22%3Atrue%7D"
}
],
"website": "CLSD.berkeley.edu"
},
{
"name": "*LEAD Center*",
"cal_id": "69703",
"categories": [
"Campus Departments"
],
"active_events": [],
"website": "LEADCenter.berkeley.edu"
},
{
"name": "*Multicultural Community Center*",
"cal_id": "90500",
"categories": [
"Campus Departments"
],
"active_events": [
{
"name": "Unweaving Old Patterns, Threading New Ones",
"month": "MAR",
"day": "9",
"time": "Mon 6:30 PM",
"location": "UC Berkeley's Multicultural Center",
"link": "https://www.facebook.com/events/188555322407043/?acontext=%7B%22ref%22%3A51%2C%22source%22%3A5%2C%22action_history%22%3A[%7B%22surface%22%3A%22page%22%2C%22mechanism%22%3A%22main_list%22%2C%22extra_data%22%3A%22%5C%22[]%5C%22%22%7D]%2C%22has_source%22%3Atrue%7D"
},
{
"name": "Cocinando con clau: chilaquiles verdes",
"month": "MAR",
"day": "10",
"time": "Tue 1 PM",
"location": "UC Berkeley's Multicultural Center",
"link": "https://www.facebook.com/events/1791535207652924/?acontext=%7B%22ref%22%3A51%2C%22source%22%3A5%2C%22action_history%22%3A[%7B%22surface%22%3A%22page%22%2C%22mechanism%22%3A%22main_list%22%2C%22extra_data%22%3A%22%5C%22[]%5C%22%22%7D]%2C%22has_source%22%3Atrue%7D"
},
{
"name": "Poems & Pickles: preservation + archival as poetic practice",
"month": "MAR",
"day": "10",
"time": "Tue 5 PM",
"location": "UC Berkeley's Multicultural Center",
"link": "https://www.facebook.com/events/230263128160504/?acontext=%7B%22ref%22%3A51%2C%22source%22%3A5%2C%22action_history%22%3A[%7B%22surface%22%3A%22page%22%2C%22mechanism%22%3A%22main_list%22%2C%22extra_data%22%3A%22%5C%22[]%5C%22%22%7D]%2C%22has_source%22%3Atrue%7D"
},
{
"name": "Black Joy: Discussion Panel",
"month": "MAR",
"day": "10",
"time": "Tue 8 PM",
"location": "UC Berkeley's Multicultural Center",
"link": "https://www.facebook.com/events/610762889775331/?acontext=%7B%22ref%22%3A51%2C%22source%22%3A5%2C%22action_history%22%3A[%7B%22surface%22%3A%22page%22%2C%22mechanism%22%3A%22main_list%22%2C%22extra_data%22%3A%22%5C%22[]%5C%22%22%7D]%2C%22has_source%22%3Atrue%7D"
},
{
"name": "2020 Diversity Career Internship Fair & Forum",
"month": "MAR",
"day": "11",
"time": "Wed 11 AM",
"location": "Pauley Ballroom",
"link": "https://www.facebook.com/events/2246888025619169/?acontext=%7B%22ref%22%3A51%2C%22source%22%3A5%2C%22action_history%22%3A[%7B%22surface%22%3A%22page%22%2C%22mechanism%22%3A%22main_list%22%2C%22extra_data%22%3A%22%5C%22[]%5C%22%22%7D]%2C%22has_source%22%3Atrue%7D"
},
{
"name": "Not Just Knots: DIY Stitching with Elisa and Cruz",
"month": "MAR",
"day": "11",
"time": "Wed 12 PM",
"location": "UC Berkeley's Multicultural Center",
"link": "https://www.facebook.com/events/504061200541686/?acontext=%7B%22ref%22%3A51%2C%22source%22%3A5%2C%22action_history%22%3A[%7B%22surface%22%3A%22page%22%2C%22mechanism%22%3A%22main_list%22%2C%22extra_data%22%3A%22%5C%22[]%5C%22%22%7D]%2C%22has_source%22%3Atrue%7D"
}
],
"website": "MCC.berkeley.edu"
},
{
"name": "*Native American Student Development*",
"cal_id": "91366",
"categories": [
"Campus Departments"
],
"active_events": [],
"website": "NASD.berkeley.edu"
},
{
"name": "*Student Environmental Resource Center*",
"cal_id": "76980",
"categories": [
"Campus Departments",
"Environmental & Sustainability Student Organizations"
],
"active_events": [
{
"name": "Environment & Sustainability Career Fair",
"month": "MAR",
"day": "10",
"time": "Tue 3 PM",
"location": "Pauley Ballroom",
"link": "https://www.facebook.com/events/234382697723912/?acontext=%7B%22ref%22%3A51%2C%22source%22%3A5%2C%22action_history%22%3A[%7B%22surface%22%3A%22page%22%2C%22mechanism%22%3A%22main_list%22%2C%22extra_data%22%3A%22%5C%22[]%5C%22%22%7D]%2C%22has_source%22%3Atrue%7D"
},
{
"name": "Nonprofit, Education & Public Service Career Fair",
"month": "MAR",
"day": "10",
"time": "Tue 3 PM",
"location": "Pauley Ballroom",
"link": "https://www.facebook.com/events/3670512159658147/?acontext=%7B%22ref%22%3A51%2C%22source%22%3A5%2C%22action_history%22%3A[%7B%22surface%22%3A%22page%22%2C%22mechanism%22%3A%22main_list%22%2C%22extra_data%22%3A%22%5C%22[]%5C%22%22%7D]%2C%22has_source%22%3Atrue%7D"
},
{
"name": "Sustainable Living Workshop",
"month": "MAR",
"day": "11",
"time": "Wed 7 PM",
"location": "Student Environmental Resource Center - SERC at UC Berkeley",
"link": "https://www.facebook.com/events/187931295807475/?acontext=%7B%22ref%22%3A51%2C%22source%22%3A5%2C%22action_history%22%3A[%7B%22surface%22%3A%22page%22%2C%22mechanism%22%3A%22main_list%22%2C%22extra_data%22%3A%22%5C%22[]%5C%22%22%7D]%2C%22has_source%22%3Atrue%7D"
},
{
"name": "SERC Hiring Info Session",
"month": "MAR",
"day": "12",
"time": "Thu 1 PM",
"location": "Student Environmental Resource Center - SERC at UC Berkeley",
"link": "https://www.facebook.com/events/2205750889733137/?acontext=%7B%22ref%22%3A51%2C%22source%22%3A5%2C%22action_history%22%3A[%7B%22surface%22%3A%22page%22%2C%22mechanism%22%3A%22main_list%22%2C%22extra_data%22%3A%22%5C%22[]%5C%22%22%7D]%2C%22has_source%22%3Atrue%7D"
},
{
"name": "Identity and the Environment Workshop Series",
"month": "MAR",
"day": "19",
"time": "Thu 6:30 PM",
"location": "PASS - Pilipinx Academic Student Services",
"link": "https://www.facebook.com/events/132079811465037/?acontext=%7B%22ref%22%3A51%2C%22source%22%3A5%2C%22action_history%22%3A[%7B%22surface%22%3A%22page%22%2C%22mechanism%22%3A%22main_list%22%2C%22extra_data%22%3A%22%5C%22[]%5C%22%22%7D]%2C%22has_source%22%3Atrue%7D"
}
],
"website": "serc.berkeley.edu"
},
{
"name": "*The Green Initiative Fund*",
"cal_id": "91270",
"categories": [
"Admin",
"Campus Departments",
"Environmental & Sustainability Student Organizations"
],
"active_events": [
{
"name": "Grant Writing Workshop",
"month": "MAR",
"day": "12",
"time": "Thu 6:30 PM",
"location": "102 Barrows Hall, Berkeley, CA 94720, United States",
"link": "https://www.facebook.com/events/562861781240720/?acontext=%7B%22ref%22%3A51%2C%22source%22%3A5%2C%22action_history%22%3A[%7B%22surface%22%3A%22page%22%2C%22mechanism%22%3A%22main_list%22%2C%22extra_data%22%3A%22%5C%22[]%5C%22%22%7D]%2C%22has_source%22%3Atrue%7D"
},
{
"name": "Metrics Workshop",
"month": "MAR",
"day": "17",
"time": "Tue 6:30 PM",
"location": "MLK bNorth 82D",
"link": "https://www.facebook.com/events/2495615700699892/?acontext=%7B%22ref%22%3A51%2C%22source%22%3A5%2C%22action_history%22%3A[%7B%22surface%22%3A%22page%22%2C%22mechanism%22%3A%22main_list%22%2C%22extra_data%22%3A%22%5C%22[]%5C%22%22%7D]%2C%22has_source%22%3Atrue%7D"
}
],
"website": "tgif.berkeley.edu"
},
{
"name": "*UC Berkeley Campus Libraries*",
"cal_id": "92054",
"categories": [
"Campus Departments"
],
"active_events": [
{
"name": "Moffitt Library Art Display Call for Submissions",
"month": "MAR",
"day": "16",
"time": "Mon 12 AM",
"location": "Moffitt Library",
"link": "https://www.facebook.com/events/189836172290909/?acontext=%7B%22ref%22%3A51%2C%22source%22%3A5%2C%22action_history%22%3A[%7B%22surface%22%3A%22page%22%2C%22mechanism%22%3A%22main_list%22%2C%22extra_data%22%3A%22%5C%22[]%5C%22%22%7D]%2C%22has_source%22%3Atrue%7D"
},
{
"name": "Edible Book Festival",
"month": "MAR",
"day": "16",
"time": "Mon 12 PM",
"location": "Morrison Library",
"link": "https://www.facebook.com/events/506268206754351/?acontext=%7B%22ref%22%3A51%2C%22source%22%3A5%2C%22action_history%22%3A[%7B%22surface%22%3A%22page%22%2C%22mechanism%22%3A%22main_list%22%2C%22extra_data%22%3A%22%5C%22[]%5C%22%22%7D]%2C%22has_source%22%3Atrue%7D"
}
],
"website": "CampusLibraries.berkeley.edu"
},
{
"name": "*UC Berkeley Career Center*",
"cal_id": "91560",
"categories": [
"Campus Departments"
],
"active_events": [
{
"name": "Environment & Sustainability Career Fair",
"month": "MAR",
"day": "10",
"time": "Tue 3 PM",
"location": "Pauley Ballroom",
"link": "https://www.facebook.com/events/234382697723912/?acontext=%7B%22ref%22%3A51%2C%22source%22%3A5%2C%22action_history%22%3A[%7B%22surface%22%3A%22page%22%2C%22mechanism%22%3A%22main_list%22%2C%22extra_data%22%3A%22%5C%22[]%5C%22%22%7D]%2C%22has_source%22%3Atrue%7D"
},
{
"name": "Nonprofit, Education & Public Service Career Fair",
"month": "MAR",
"day": "10",
"time": "Tue 3 PM",
"location": "Pauley Ballroom",
"link": "https://www.facebook.com/events/3670512159658147/?acontext=%7B%22ref%22%3A51%2C%22source%22%3A5%2C%22action_history%22%3A[%7B%22surface%22%3A%22page%22%2C%22mechanism%22%3A%22main_list%22%2C%22extra_data%22%3A%22%5C%22[]%5C%22%22%7D]%2C%22has_source%22%3Atrue%7D"
},
{
"name": "2020 Diversity Career Internship Fair & Forum",
"month": "MAR",
"day": "11",
"time": "Wed 11 AM",
"location": "Pauley Ballroom",
"link": "https://www.facebook.com/events/2246888025619169/?acontext=%7B%22ref%22%3A51%2C%22source%22%3A5%2C%22action_history%22%3A[%7B%22surface%22%3A%22page%22%2C%22mechanism%22%3A%22main_list%22%2C%22extra_data%22%3A%22%5C%22[]%5C%22%22%7D]%2C%22has_source%22%3Atrue%7D"
},
{
"name": "Career Connections: Sports Industry",
"month": "MAR",
"day": "11",
"time": "Wed 6 PM",
"location": "Cal Memorial Stadium - Simpson HPC Team Dining Room",
"link": "https://www.facebook.com/events/570206810485771/?acontext=%7B%22ref%22%3A51%2C%22source%22%3A5%2C%22action_history%22%3A[%7B%22surface%22%3A%22page%22%2C%22mechanism%22%3A%22main_list%22%2C%22extra_data%22%3A%22%5C%22[]%5C%22%22%7D]%2C%22has_source%22%3Atrue%7D"
},
{
"name": "Career Connections: Esports and Gaming",
"month": "MAR",
"day": "19",
"time": "Thu 6 PM",
"location": "UC Berkeley Career Center",
"link": "https://www.facebook.com/events/453416402277538/?acontext=%7B%22ref%22%3A51%2C%22source%22%3A5%2C%22action_history%22%3A[%7B%22surface%22%3A%22page%22%2C%22mechanism%22%3A%22main_list%22%2C%22extra_data%22%3A%22%5C%22[]%5C%22%22%7D]%2C%22has_source%22%3Atrue%7D"
},
{
"name": "Career Connections: Social Sciences",
"month": "APR",
"day": "13",
"time": "Mon 6 PM",
"location": "MLK West Pauley Ballroom",
"link": "https://www.facebook.com/events/2512092532342366/?acontext=%7B%22ref%22%3A51%2C%22source%22%3A5%2C%22action_history%22%3A[%7B%22surface%22%3A%22page%22%2C%22mechanism%22%3A%22main_list%22%2C%22extra_data%22%3A%22%5C%22[]%5C%22%22%7D]%2C%22has_source%22%3Atrue%7D"
}
],
"website": "careercenter.berkeley.edu"
},
{
"name": "*UC Berkeley Gender Equity Resource Center*",
"cal_id": "94211",
"categories": [
"Admin",
"Campus Departments"
],
"active_events": [],
"website": "geneq.berkeley.edu"
},
{
"name": "*UC Berkeley Public Service Center*",
"cal_id": "46272",
"categories": [
"Admin",
"Campus Departments"
],
"active_events": [
{
"name": "Cal Day 2020",
"month": "APR",
"day": "18",
"time": "Sat 8 AM",
"location": "UC Berkeley",
"link": "https://www.facebook.com/events/491570781753367/?acontext=%7B%22ref%22%3A51%2C%22source%22%3A5%2C%22action_history%22%3A[%7B%22surface%22%3A%22page%22%2C%22mechanism%22%3A%22main_list%22%2C%22extra_data%22%3A%22%5C%22[]%5C%22%22%7D]%2C%22has_source%22%3Atrue%7D"
}
],
"website": "publicservicecenter.berkeley.edu"
},
{
"name": "180 Degrees Consulting at Berkeley ",
"cal_id": "136978",
"categories": [
"y ASUC Student Activity Groups",
"Professional Student Organizations",
"Service Student Organizations",
"New Organization Established 2015-2016",
"Undergraduate Organizations",
"Esh 2018-2019 ABSA Allocations",
"ABSA-Allocated Hearst Storage ",
"ABSA-Allocated Hearst Storage 2018-2019"
],
"active_events": [],
"website": "180dcberkeley.berkeley.edu"
},
{
"name": "3D Modeling and Animation at Berkeley",
"cal_id": "222008",
"categories": [
"Technology Student Organizations",
"Undergraduate Organizations"
],
"active_events": [],
"website": "3d-modeling-and-animation-at-berkeley.berkeley.edu"
},
{
"name": "3DMC",
"cal_id": "92133",
"categories": [
"y ASUC Student Activity Groups",
"Media & Film Student Organizations",
"Undergraduate Organizations"
],
"active_events": [],
"website": "3dmc.berkeley.edu"
},
{
"name": "7 Cups at Berkeley",
"cal_id": "92150",
"categories": [
"Health & Wellness Student Organizations",
"Service Student Organizations",
"Undergraduate Organizations"
],
"active_events": [],
"website": "7cupsberkeley.berkeley.edu"
},
{
"name": "A Better Way at Berkeley",
"cal_id": "91982",
"categories": [
"Service Student Organizations",
"Undergraduate Organizations"
],
"active_events": [],
"website": "abetterwayberkeley.berkeley.edu"
},
{
"name": "AAVP Grants",
"cal_id": "46052",
"categories": [
"ASUC Government Offices"
],
"active_events": [],
"website": "aavpgrants.berkeley.edu"
},
{
"name": "ABA",
"cal_id": "91428",
"categories": [
"y ASUC Student Activity Groups",
"Cultural & Identity/International Student Organizations",
"Undergraduate Organizations",
"ABSA-Allocated Hearst Storage 2018-2019",
"ABSA- Allocated ESH Space"
],
"active_events": [],
"website": "aba.berkeley.edu"
},
{
"name": "Abba Modern",
"cal_id": "59420",
"categories": [
"y ASUC Student Activity Groups",
"Arts Student Organizations",
"Undergraduate Organizations"
],
"active_events": [],
"website": "abbamodern.berkeley.edu"
},
{
"name": "ABC Sketches",
"cal_id": "160640",
"categories": [
"Media & Film Student Organizations",
"Undergraduate Organizations"
],
"active_events": [],
"website": "abcsketches.berkeley.edu"
},
{
"name": "Academic Cultural Enrichment Coaches",
"cal_id": "145478",
"categories": [
"z ASUC Student Initiated Service Groups",
"Service Student Organizations",
"Undergraduate Organizations"
],
"active_events": [],
"website": "acecoaches.berkeley.edu"
},
{
"name": "AccelerateHer@Berkeley",
"cal_id": "289452",
"categories": [
"Professional Student Organizations",
"Undergraduate Organizations"
],
"active_events": [],
"website": "accelerateheratberkeley.berkeley.edu"
},
{
"name": "Active for Alzheimer's at Berkeley",
"cal_id": "91783",
"categories": [
"Service Student Organizations",
"Undergraduate Organizations"
],
"active_events": [],
"website": "activeforalzheimers.berkeley.edu"
},
{
"name": "acts2fellowship",
"cal_id": "45854",
"categories": [
"y ASUC Student Activity Groups",
"Spiritual Student Organizations",
"Undergraduate Organizations"
],
"active_events": [],
"website": "acts2fellowship.berkeley.edu"
},
{
"name": "Adventist Christian Fellowship",
"cal_id": "92064",
"categories": [
"Spiritual Student Organizations",
"Undergraduate Organizations"
],
"active_events": [
{
"name": "Playbook 2020 Youth Leadership Convention",
"month": "SEP",
"day": "3",
"time": "Sep 3 - Sep 6",
"location": "Albuquerque Convention Center",
"link": "https://www.facebook.com/events/2525322520813534/?acontext=%7B%22ref%22%3A51%2C%22source%22%3A5%2C%22action_history%22%3A[%7B%22surface%22%3A%22page%22%2C%22mechanism%22%3A%22main_list%22%2C%22extra_data%22%3A%22%5C%22[]%5C%22%22%7D]%2C%22has_source%22%3Atrue%7D"
}
],
"website": "acf.berkeley.edu"
},
{
"name": "Advocacy Agenda",
"cal_id": "46025",
"categories": [
"ASUC Government Programs"
],
"active_events": [],
"website": "advocacyagenda.berkeley.edu"
},
{
"name": "Aerospace SAE",
"cal_id": "92082",
"categories": [
"Technology Student Organizations",
"Undergraduate Organizations"
],
"active_events": [],
"website": "asae.berkeley.edu"
},
{
"name": "Afghan Student Association",
"cal_id": "46372",
"categories": [
"y ASUC Student Activity Groups",
"Cultural & Identity/International Student Organizations",
"Undergraduate Organizations",
"Esh 2018-2019 ABSA Allocations",
"ABSA-Allocated Hearst Storage ",
"ABSA-Allocated Hearst Storage 2018-2019"
],
"active_events": [
{
"name": "12th Annual Cultural Banquet",
"month": "MAR",
"day": "14",
"time": "Sat 6 PM",
"location": "Pauley Ballroom",
"link": "https://www.facebook.com/events/325660685032430/?acontext=%7B%22ref%22%3A51%2C%22source%22%3A5%2C%22action_history%22%3A[%7B%22surface%22%3A%22page%22%2C%22mechanism%22%3A%22main_list%22%2C%22extra_data%22%3A%22%5C%22[]%5C%22%22%7D]%2C%22has_source%22%3Atrue%7D"
}
],
"website": "afghans.berkeley.edu"
},
{
"name": "African American Student Leadership Team",
"cal_id": "91415",
"categories": [
"Undergraduate Organizations",
"Cultural & Identity/Cultural & Ethnic"
],
"active_events": [
{
"name": "Racha's Cafe",
"month": "MAR",
"day": "13",
"time": "Fri 6 PM",
"location": "Racha Cafe",
"link": "https://www.facebook.com/events/276159310032105/?acontext=%7B%22ref%22%3A51%2C%22source%22%3A5%2C%22action_history%22%3A[%7B%22surface%22%3A%22page%22%2C%22mechanism%22%3A%22main_list%22%2C%22extra_data%22%3A%22%5C%22[]%5C%22%22%7D]%2C%22has_source%22%3Atrue%7D"
}
],
"website": "africanamericanstudentleadershipteam.berkeley.edu"
},
{
"name": "African American Studies",
"cal_id": "46283",
"categories": [
"ES - Ethnic Studies",
"Campus Departments"
],
"active_events": [],
"website": "africanamericanstudies.berkeley.edu"
},
{
"name": "AFX Dance",
"cal_id": "91705",
"categories": [
"y ASUC Student Activity Groups",
"Performing Arts Student Organizations",
"Undergraduate Organizations",
"Esh 2018-2019 ABSA Allocations",
"ABSA-Allocated Hearst Storage ",
"ABSA-Allocated Hearst Storage 2018-2019",
"ABSA- Allocated ESH Space"
],
"active_events": [],
"website": "afxdance.berkeley.edu"
},
{
"name": "Alianza Latinx for Public Health Action",
"cal_id": "289776",
"categories": [
"GSG - Graduate Student Groups",
"Professional Student Organizations"
],
"active_events": [],
"website": "alianzalatinxforpublichealthaction.berkeley.edu"
},
{
"name": "Alliance for Diversity in Science and Engineering Chapter at Berkeley",
"cal_id": "91828",
"categories": [
"GSG - Graduate Student Groups",
"Academic Student Organizations"
],
"active_events": [],
"website": "alliance_for_diversity_in_science_and_engineering.berkeley.edu"
},
{
"name": "Alpha Chi Omega",
"cal_id": "91689",
"categories": [
"CalGreeks Panhellenic Council (PHC) Sororities"
],
"active_events": [],
"website": "alphachiomega.berkeley.edu"
},
{
"name": "Alpha Chi Sigma Professional Chemistry Fraternity",
"cal_id": "46589",
"categories": [
"y ASUC Student Activity Groups",
"Academic Student Organizations",
"Undergraduate Organizations"
],
"active_events": [
{
"name": "ACS - AXS | Networking with Novartis",
"month": "MAR",
"day": "12",
"time": "Thu 6:30 PM",
"location": "North Bixby",
"link": "https://www.facebook.com/events/616759558881150/?acontext=%7B%22ref%22%3A51%2C%22source%22%3A5%2C%22action_history%22%3A[%7B%22surface%22%3A%22page%22%2C%22mechanism%22%3A%22main_list%22%2C%22extra_data%22%3A%22%5C%22[]%5C%22%22%7D]%2C%22has_source%22%3Atrue%7D"
}
],
"website": "alpha-chi-sigma.berkeley.edu"
},
{
"name": "Alpha Delta Phi",
"cal_id": "91632",
"categories": [
"CalGreeks Interfraternity Council (IFC) Fraternities"
],
"active_events": [],
"website": "alphadeltaphi.berkeley.edu"
},
{
"name": "Alpha Delta Pi",
"cal_id": "91690",
"categories": [
"5138"
],
"active_events": [],
"website": "alphadeltapi.berkeley.edu"
},
{
"name": "Alpha Epsilon Pi",
"cal_id": "91633",
"categories": [
"CalGreeks Interfraternity Council (IFC) Fraternities"
],
"active_events": [],
"website": "alphaepsilonpifraternityxachapter.berkeley.edu"
},
{
"name": "Alpha Epsilon Zeta Fraternity, Inc.",
"cal_id": "45856",
"categories": [
"y ASUC Student Activity Groups",
"Professional Student Organizations",
"Undergraduate Organizations"
],
"active_events": [],
"website": "aez.berkeley.edu"
},
{
"name": "Alpha Gamma Omega",
"cal_id": "91634",
"categories": [
"CalGreeks Interfraternity Council (IFC) Fraternities"
],
"active_events": [],
"website": "alphagammaomega.berkeley.edu"
},
{
"name": "Alpha Kappa Alpha Sorority, Inc.",
"cal_id": "45987",
"categories": [
"y ASUC Student Activity Groups",
"CalGreeks National Pan-Hellenic Council (NPHC) Fraternities & Sororities"
],
"active_events": [],
"website": "alphakappaalphasorority.berkeley.edu"
},
{
"name": "Alpha Kappa Psi",
"cal_id": "46453",
"categories": [
"y ASUC Student Activity Groups",
"Academic Student Organizations",
"Undergraduate Organizations",
"Esh 2018-2019 ABSA Allocations",
"ABSA- Allocated ESH Space"
],
"active_events": [],
"website": "alphakappapsi.berkeley.edu"
},
{
"name": "Alpha Phi",
"cal_id": "91692",
"categories": [
"CalGreeks Panhellenic Council (PHC) Sororities"
],
"active_events": [],
"website": "alphaphi.berkeley.edu"
},
{
"name": "Alpha Phi Alpha Fraternity, Inc.",
"cal_id": "45988",
"categories": [
"z ASUC Student Initiated Service Groups",
"CalGreeks National Pan-Hellenic Council (NPHC) Fraternities & Sororities"
],
"active_events": [],
"website": "alphaphialphafraternity.berkeley.edu"
},
{
"name": "Alpha Phi Omega",
"cal_id": "45857",
"categories": [
"y ASUC Student Activity Groups",
"Service Student Organizations",
"Undergraduate Organizations",
"Esh 2018-2019 ABSA Allocations",
"ABSA-Allocated Hearst Storage ",
"ABSA-Allocated Hearst Storage 2018-2019",
"ABSA- Allocated ESH Space"
],
"active_events": [],
"website": "calaphio.berkeley.edu"
},
{
"name": "Alpha Rho Chi",
"cal_id": "91218",
"categories": [
"Academic Student Organizations",
"Undergraduate Organizations"
],
"active_events": [],
"website": "calapx.berkeley.edu"
},
{
"name": "Alpha Sigma Phi",
"cal_id": "91636",
"categories": [
"CalGreeks Interfraternity Council (IFC) Fraternities"
],
"active_events": [],
"website": "alphasigmaphi.berkeley.edu"
},
{
"name": "Alpha Tau Omega",
"cal_id": "91637",
"categories": [
"CalGreeks Interfraternity Council (IFC) Fraternities"
],
"active_events": [],
"website": "alphatauomega.berkeley.edu"
},
{
"name": "Alternative Breaks",
"cal_id": "45989",
"categories": [
"Berkeley Public Service Center Designated",
"z ASUC Student Initiated Service Groups",
"Service Student Organizations",
"Undergraduate Organizations",
"Esh 2018-2019 ABSA Allocations"
],
"active_events": [],
"website": "alternativebreaks.berkeley.edu"
},
{
"name": "Alzheimer's Association at Berkeley",
"cal_id": "302685",
"categories": [
"Health & Wellness Student Organizations",
"Undergraduate Organizations"
],
"active_events": [],
"website": "alzheimersassociationatberkeley.berkeley.edu"
},
{
"name": "American Advertising Federation",
"cal_id": "45858",
"categories": [
"y ASUC Student Activity Groups",
"Professional Student Organizations",
"Undergraduate Organizations"
],
"active_events": [],
"website": "americanadvertisingfederationimagical.berkeley.edu"
},
{
"name": "American Chemical Society at Berkeley Student Chapter ",
"cal_id": "158433",
"categories": [
"y ASUC Student Activity Groups",
"Professional Student Organizations",
"Undergraduate Organizations"
],
"active_events": [
{
"name": "Career Navigator LIVE! ACS Career Day Houston",
"month": "MAR",
"day": "7",
"time": "Sat 8 AM CST",
"location": "Holiday Inn & Suites - Houston/Westway Park",
"link": "https://www.facebook.com/events/174757143817371/?acontext=%7B%22ref%22%3A51%2C%22source%22%3A5%2C%22action_history%22%3A[%7B%22surface%22%3A%22page%22%2C%22mechanism%22%3A%22main_list%22%2C%22extra_data%22%3A%22%5C%22[]%5C%22%22%7D]%2C%22has_source%22%3Atrue%7D"
},
{
"name": "ACS Kids Zone \u2013 A Hands-On Science Event",
"month": "MAR",
"day": "21",
"time": "Sat 10 AM EDT",
"location": "The Academy of Natural Sciences",
"link": "https://www.facebook.com/events/485026049111241/?acontext=%7B%22ref%22%3A51%2C%22source%22%3A5%2C%22action_history%22%3A[%7B%22surface%22%3A%22page%22%2C%22mechanism%22%3A%22main_list%22%2C%22extra_data%22%3A%22%5C%22[]%5C%22%22%7D]%2C%22has_source%22%3Atrue%7D"
},
{
"name": "Spring 2020 National Meeting & Expo",
"month": "MAR",
"day": "22",
"time": "Mar 22 - Mar 26",
"location": "Pennsylvania Convention Center - Philadelphia, PA (Philly)",
"link": "https://www.facebook.com/events/614554012450411/?acontext=%7B%22ref%22%3A51%2C%22source%22%3A5%2C%22action_history%22%3A[%7B%22surface%22%3A%22page%22%2C%22mechanism%22%3A%22main_list%22%2C%22extra_data%22%3A%22%5C%22[]%5C%22%22%7D]%2C%22has_source%22%3Atrue%7D"
},
{
"name": "Chemists Celebrate Earth Week 2020",
"month": "APR",
"day": "19",
"time": "Apr 19 - Apr 25",
"location": "Everywhere!",
"link": "https://www.facebook.com/events/541718823325269/?acontext=%7B%22ref%22%3A51%2C%22source%22%3A5%2C%22action_history%22%3A[%7B%22surface%22%3A%22page%22%2C%22mechanism%22%3A%22main_list%22%2C%22extra_data%22%3A%22%5C%22[]%5C%22%22%7D]%2C%22has_source%22%3Atrue%7D"
},
{
"name": "Chemists Celebrate Earth Week:Protecting Planet with Chemistry",
"month": "APR",
"day": "24",
"time": "Fri 10 AM EDT",
"location": "Cincinnati Museum Center",
"link": "https://www.facebook.com/events/2259756144329602/?acontext=%7B%22ref%22%3A51%2C%22source%22%3A5%2C%22action_history%22%3A[%7B%22surface%22%3A%22page%22%2C%22mechanism%22%3A%22main_list%22%2C%22extra_data%22%3A%22%5C%22[]%5C%22%22%7D]%2C%22has_source%22%3Atrue%7D"
},
{
"name": "2020 ACS Central Regional Meeting",
"month": "MAY",
"day": "27",
"time": "May 27 - May 30",
"location": "Columbus, Ohio",
"link": "https://www.facebook.com/events/207981213707447/?acontext=%7B%22ref%22%3A51%2C%22source%22%3A5%2C%22action_history%22%3A[%7B%22surface%22%3A%22page%22%2C%22mechanism%22%3A%22main_list%22%2C%22extra_data%22%3A%22%5C%22[]%5C%22%22%7D]%2C%22has_source%22%3Atrue%7D"
}
],
"website": "acsberkeley.berkeley.edu"
},
{
"name": "American Constitution Society at Berkeley",
"cal_id": "46481",
"categories": [
"GSG - Graduate Student Groups",
"Academic Student Organizations"
],
"active_events": [],
"website": "acs.berkeley.edu"
},
{
"name": "American Enterprise Institute - Executive Council at Berkeley",
"cal_id": "46684",
"categories": [
"Academic Student Organizations",
"Political & Advocacy Student Organizations",
"Professional Student Organizations",
"Undergraduate Organizations"
],
"active_events": [],
"website": "americanenterpriseinstitute.berkeley.edu"
},
{
"name": "American Indian Graduate Student Association",
"cal_id": "46297",
"categories": [
"GSG - Graduate Student Groups",
"Cultural & Identity/Cultural & Ethnic"
],
"active_events": [],
"website": "gaamericanindiangraduatestudentassociation.berkeley.edu"
},
{
"name": "American Institute of Aeronautics and Astronautics",
"cal_id": "91567",
"categories": [
"y ASUC Student Activity Groups",
"Departmental Student Organizations",
"Undergraduate Organizations"
],
"active_events": [],
"website": "aiaa.berkeley.edu"
},
{
"name": "American Institute of Architecture Students",
"cal_id": "46423",
"categories": [
"y ASUC Student Activity Groups",
"Professional Student Organizations",
"Undergraduate Organizations"
],
"active_events": [],
"website": "americaninstituteforarchitecturestudents.berkeley.edu"
},
{
"name": "American Institute of Chemical Engineers",
"cal_id": "91569",
"categories": [
"Departmental Student Organizations",
"Undergraduate Organizations"
],
"active_events": [],
"website": "americaninstituteofchemicalengineers.berkeley.edu"
},
{
"name": "American Medical Student Association--Berkeley Premedical Chapter",
"cal_id": "45859",
"categories": [
"y ASUC Student Activity Groups",
"Professional Student Organizations",
"Undergraduate Organizations",
"Esh 2018-2019 ABSA Allocations",
"ABSA-Allocated Hearst Storage ",
"ABSA-Allocated Hearst Storage 2018-2019",
"ABSA- Allocated ESH Space"
],
"active_events": [],
"website": "americanmedicalstudentsassociation.berkeley.edu"
},
{
"name": "American Medical Women's Association at Berkeley",
"cal_id": "91324",
"categories": [
"y ASUC Student Activity Groups",
"Undergraduate Organizations",
"Cultural & Identity/Women\u2019s Interest",
"ABSA-Allocated Hearst Storage 2018-2019"
],
"active_events": [],
"website": "americanmedicalwomensassociation.berkeley.edu"
},
{
"name": "American Nuclear Society",
"cal_id": "45860",
"categories": [
"y ASUC Student Activity Groups",
"Academic Student Organizations",
"Undergraduate Organizations"
],
"active_events": [],
"website": "americannuclearsociety.berkeley.edu"
},
{
"name": "American Optometric Student Association",
"cal_id": "46612",
"categories": [
"GSG - Graduate Student Groups",
"Professional Student Organizations"
],
"active_events": [],
"website": "aosa.berkeley.edu"
},
{
"name": "American Physician Scientist Association at Berkeley",
"cal_id": "220489",
"categories": [
"Professional Student Organizations",
"Undergraduate Organizations"