-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.php
1048 lines (1012 loc) · 39.7 KB
/
index.php
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
<!DOCTYPE html>
<!-- PHP variables -->
<?php $thisPage="home"; ?>
<html>
<head>
<?php include("phpincludes/head.php"); ?>
</head>
<body>
<!-- Navigation -->
<?php include("phpincludes/nav.php"); ?>
<div class="pageContent">
<!-- uncomment below if a meeting is cancelled -->
<!--<div>
<h2 style="color:#e23434;text-align:center;">We are also hosting a joint meeting, in addition to the regular Wednesday meeting, with ACM-W and HP on Thursday (3/1). Info for both events is below.</h2>
</div>-->
<div class="event past">
<div class="title">
No meeting. Finals week.
</div>
<div class="info">
<p>
Good luck on your finals!
</p>
</div>
<div class="details">
<span class="date">
<i class="fa fa-calendar-o" aria-hidden="true"></i>
<span>05/09/2018</span>
</span>
</div>
</div>
<div class="event past">
<div class="title">
ACM & ACM-W New Officer Orientation
</div>
<div class="info">
<p>
This will serve as a chance for the new officers to ask questions and for the previous officers to pass on any information/advice.
</p>
<p>
Anyone is welcome, not just officers!
</p>
</div>
<div class="details">
<span class="date">
<i class="fa fa-calendar-o" aria-hidden="true"></i>
<span>05/02/2018</span>
</span>
<span class="time">
<i class="fa fa-clock-o"></i>
<span>6:00 pm</span>
</span>
<span class="location">
<i class="fa fa-map-marker"></i>
<span>LSC Courtyard</span>
</span>
</div>
</div>
<div class="event past">
<div class="title">
ACM Officer Elections
</div>
<div class="info">
<p>
This week, ACM will be holding officer elections.
</p>
<div class="elections">
<h4>2018 - 2019 school year positions:</h2>
<br>
<div class="position">
<p><strong>President:</strong> Maxwell You</p>
<p>Lead ACM-CSU. Organize company/future events, company relations, and overall administrative tasks.</p>
</div>
<div class="position">
<p><strong>Vice President:</strong> David Im</p>
<p>Support the President, lead ACM-CSU's side project initiative.</p>
</div>
<div class="position">
<p><strong>Treasurer:</strong> Westin Musser</p>
<p>
Handle the finances, order and receive the food/prizes
</p>
</div>
<div class="position">
<p><strong>Secretary:</strong> Sarah Hultin</p>
<p>
Support the President & Vice President, help with the Vice President's additional event or effort, and/or lead your own
</p>
</div>
<div class="position">
<p><strong>Web Developer:</strong> Calvin Le</p>
<p>Update the site for events, improve the site, and add any functionality needed.</p>
</div>
<div class="position">
<p><strong>Marketing Manager:</strong> Steve Sutton</p>
<p>
Run the social media accounts and help with any advertising
</p>
</div>
<div class="position">
<p><strong>Event Coordinator:</strong> Sean Thunquest</p>
<p>
Dedicated position to be at meetings, count attendance and keep the room maintained
</p>
</div>
<br>
</div>
<p>
We will give candidates a chance to introduce themselves before voting.
The voting period will be from 6:30-7:00 followed by announcing the results at 7:15.
</p>
<p>
You must be a member to vote and or run. If you have yet to pay your dues you may do so at this meeting before the voting period.
Students must be planning on attending the full 2018-2019 school year to hold an officer position.
</p>
<p>
As always there will be pizza and feel free to bring homework and hang out with us even if you are not running for a position.
</p>
</div>
<div class="details">
<span class="date">
<i class="fa fa-calendar-o" aria-hidden="true"></i>
<span>04/25/2018</span>
</span>
<span class="time">
<i class="fa fa-clock-o"></i>
<span>6:00 pm</span>
</span>
<span class="location">
<i class="fa fa-map-marker"></i>
<span>CSB 130</span>
</span>
</div>
</div>
<div class="event past">
<div class="title">
A Non-Technical Intro to Deep Learning <span class="host">(Kevin Bruhwiler)</span>
</div>
<div class="info">
<p>
Over the last decade deep learning has revolutionized the field of artificial intelligence and
enabled breakthroughs in machine translation and perception. The talk will cover what deep learning
is and what it can be used for, no math or programming skills required.
</p>
</div>
<div class="details">
<span class="date">
<i class="fa fa-calendar-o" aria-hidden="true"></i>
<span>04/18/2018</span>
</span>
<span class="time">
<i class="fa fa-clock-o"></i>
<span>6:00 pm</span>
</span>
<span class="location">
<i class="fa fa-map-marker"></i>
<span>CSB 130</span>
</span>
</div>
</div>
<div class="event past">
<div class="title">
A Library of Values <span class="host">(Graduate student Cole Frederick)</span>
</div>
<div class="info">
<p>
The design of a persistent data structure library presented in the context of functional programming.
The talk will cover why you might want this and how it is done.
</p>
</div>
<div class="details">
<span class="date">
<i class="fa fa-calendar-o" aria-hidden="true"></i>
<span>04/11/2018</span>
</span>
<span class="time">
<i class="fa fa-clock-o"></i>
<span>6:00 pm</span>
</span>
<span class="location">
<i class="fa fa-map-marker"></i>
<span>CSB 130</span>
</span>
</div>
</div>
<div class="event past">
<div class="title">
Introduction to Raspberry Pi computing and a survey of Pi projects <span class="host">(Kegan Strawn)</span>
</div>
<div class="info">
<p>
Kegan Strawn will be talking about his experiences with Raspberry Pi projects, how they work, what you can do with them, and the IoT revolution.
At the end of the talk a Raspberry Pi will be given to a random member in attendance.
</p>
<p>
Also: if you were a winner of the coding competition you can pick up your Pi at this meeting or schedule another time via email.
</p>
</div>
<div class="details">
<span class="date">
<i class="fa fa-calendar-o" aria-hidden="true"></i>
<span>04/04/2018</span>
</span>
<span class="time">
<i class="fa fa-clock-o"></i>
<span>6:00 pm</span>
</span>
<span class="location">
<i class="fa fa-map-marker"></i>
<span>CSB 130</span>
</span>
</div>
</div>
<div class="event past">
<div class="title">
Automatic Inference of Malware Protocol Specifications <span class="host">(Prof. Lorenzo De Carli)</span>
</div>
<div class="info">
<p>
Network-based malware detection is a complex and difficult task. Devising a successful detector for a given malware family oftentimes requires painstaking reverse-engineering of malware binaries and communications.
The rate at which new malware families are released makes it unfeasible to perform this analysis manually for every new family; furthermore, modern malware actively attempts to thwart the process by using custom communication protocols which are oftentimes encrypted.
In this presentation, I will outline a novel protocol inference algorithm which automatically generates (i) a formal specification of the application-level protocol used by a malware family, and (ii) detection procedures which can identify the protocol within network traffic.
This approach has the potential to significantly alleviate the burden of malware analysis for human experts. Our algorithm works in an automated fashion, requiring only the malware’s binary and samples of the malware network communication, and can circumvent malware’s use of encryption.
</p>
<p>
The last part of the talk will also discuss some of the implications, both positive and negative, that end-to-end encryption can have on network security.
</p>
</div>
<div class="details">
<span class="date">
<i class="fa fa-calendar-o" aria-hidden="true"></i>
<span>03/28/2018</span>
</span>
<span class="time">
<i class="fa fa-clock-o"></i>
<span>6:00 pm</span>
</span>
<span class="location">
<i class="fa fa-map-marker"></i>
<span>CSB 130</span>
</span>
</div>
</div>
<div class="event past">
<div class="title">
Coding Competition <span class="host">(CSU ACM)</span>
</div>
<div class="info">
<p>
It is time for our spring 2018 coding competition! The competition will be split into three divisions according to experience level.
</p>
<p>
<b>Beginner</b>: Freshmen and early Sophomore (CS 163/164, 165, 220, 270)<br>
<b>Intermediate</b>: Sophomores and Juniors (CS 253+)<br>
<b>Advanced</b>: Seniors and Graduates (CS400+)
</p>
<p>
The winner in each division will receive a Raspberry Pi 3!
</p>
<p>
Sign up <a href="https://www.hackerrank.com/csu-acm-coding-competition">here</a>
</p>
<p>
There will also be pizza and those who are not participating in the competition should feel free to come by and watch.
</p>
</div>
<div class="details">
<span class="date">
<i class="fa fa-calendar-o" aria-hidden="true"></i>
<span>03/21/2018</span>
</span>
<span class="time">
<i class="fa fa-clock-o"></i>
<span>6:00 pm</span>
</span>
<span class="location">
<i class="fa fa-map-marker"></i>
<span>CSB 130</span>
</span>
</div>
</div>
<div class="event past">
<div class="title">
No meeting. Spring Break.
</div>
<div class="info">
<p>
</p>
</div>
<div class="details">
<span class="date">
<i class="fa fa-calendar-o" aria-hidden="true"></i>
<span>03/14/2018</span>
</span>
</div>
</div>
<div class="event past">
<div class="title">
Mock Interview <span class="host">(Seagate)</span>
</div>
<div class="info">
<p>
Seagate will demonstrate a technical mock interview and hold a Q&A
</p>
</div>
<div class="details">
<span class="date">
<i class="fa fa-calendar-o" aria-hidden="true"></i>
<span>03/07/2018</span>
</span>
<span class="time">
<i class="fa fa-clock-o"></i>
<span>6:00 pm</span>
</span>
<span class="location">
<i class="fa fa-map-marker"></i>
<span>CSB 130</span>
</span>
</div>
</div>
<div class="event past">
<div class="title">
S&P Global Networking
</div>
<div class="info">
<p>
</p>
</div>
<div class="details">
<span class="date">
<i class="fa fa-calendar-o" aria-hidden="true"></i>
<span>02/28/2018</span>
</span>
<span class="time">
<i class="fa fa-clock-o"></i>
<span>6:00 pm</span>
</span>
<span class="location">
<i class="fa fa-map-marker"></i>
<span>CSB 130</span>
</span>
</div>
</div>
<div class="event past">
<div class="title">
Homework & Pizza Social Event
</div>
<div class="info">
<p>
No official event this week. Come eat pizza, do homework, or chill with us.
</p>
</div>
<div class="details">
<span class="date">
<i class="fa fa-calendar-o" aria-hidden="true"></i>
<span>02/21/2018</span>
</span>
<span class="time">
<i class="fa fa-clock-o"></i>
<span>6:00 pm</span>
</span>
<span class="location">
<i class="fa fa-map-marker"></i>
<span>CSB 130</span>
</span>
</div>
</div>
<div class="event past">
<div class="title">
No meeting. Valentines Day.
</div>
<div class="info">
<p>
Go spend time with your loved one(s)!
</p>
</div>
<div class="details">
<span class="date">
<i class="fa fa-calendar-o" aria-hidden="true"></i>
<span>02/14/2018</span>
</span>
</div>
</div>
<div class="event past">
<div class="title">
S&P Global Networking
</div>
<div class="info">
<p>
</p>
</div>
<div class="details">
<span class="date">
<i class="fa fa-calendar-o" aria-hidden="true"></i>
<span>02/28/2018</span>
</span>
<span class="time">
<i class="fa fa-clock-o"></i>
<span>6:00 pm</span>
</span>
<span class="location">
<i class="fa fa-map-marker"></i>
<span>CSB 130</span>
</span>
</div>
</div>
<div class="event past">
<div class="title">
Homework & Pizza Social Event
</div>
<div class="info">
<p>
No official event this week. Come eat pizza, do homework, or chill with us.
</p>
</div>
<div class="details">
<span class="date">
<i class="fa fa-calendar-o" aria-hidden="true"></i>
<span>02/21/2018</span>
</span>
<span class="time">
<i class="fa fa-clock-o"></i>
<span>6:00 pm</span>
</span>
<span class="location">
<i class="fa fa-map-marker"></i>
<span>CSB 130</span>
</span>
</div>
</div>
<div class="event past">
<div class="title">
No meeting. Valentines Day.
</div>
<div class="info">
<p>
Go spend time with your loved one(s)!
</p>
</div>
<div class="details">
<span class="date">
<i class="fa fa-calendar-o" aria-hidden="true"></i>
<span>02/14/2018</span>
</span>
</div>
</div>
<div class="event past">
<div class="title">
Programming Language design and implementation <span class="host">(Paul Bivrell)</span>
</div>
<div class="info">
<p>
Every programmer spends countless hours writing code. But who programs programming languages. Is it all black magic and binary?
Or could it be something that anyone can do? Listen as Paul Bivrell talks about his experience doing an independent study where
he designed and implemented his very own programming language.
</p>
<p>
<a href="http://www.program-pol.com">Check out the language here!</a>
</p>
</div>
<div class="details">
<span class="date">
<i class="fa fa-calendar-o" aria-hidden="true"></i>
<span>02/07/2018</span>
</span>
<span class="time">
<i class="fa fa-clock-o"></i>
<span>6:00 pm</span>
</span>
<span class="location">
<i class="fa fa-map-marker"></i>
<span>CSB 130</span>
</span>
</div>
</div>
<div class="event past">
<div class="title">
Do's and Dont's of Project Scope <span class="host">(CSU GDA)</span>
</div>
<div class="info">
<p>
The CSU Game Developers Association, formed out of ACM's own side-project initiative, aims to provide a productive space for individuals
of all disciplines for video game development. In this presentation, CSU GDA president, Habeeb Mohammed, will present a recently
completed project by the organization. He also will go over things to consider when managing and working within a game development team.
</p>
<p>
GDA Meeting Info:<br>
Where: Visual Arts building room H110<br>
When: Tuesdays 6:00 pm
</p>
</div>
<div class="details">
<span class="date">
<i class="fa fa-calendar-o" aria-hidden="true"></i>
<span>01/31/2018</span>
</span>
<span class="time">
<i class="fa fa-clock-o"></i>
<span>6:00 pm</span>
</span>
<span class="location">
<i class="fa fa-map-marker"></i>
<span>CSB 130</span>
</span>
</div>
</div>
<div class="event past">
<div class="title">
Computational biology: learning about biology using computational tools <span class="host">(Dr. Ben-Hur)</span>
</div>
<div class="info">
<p>
Since the development of sequencing technologies in the 90s, culminating in the sequencing of the human genome in 2001,
biology has become an edeavor involving large datasets. Computational biology (aka bioinformatics) is the interdisciplinary
field which focuses on the design and implementation of algorithms for the analysis of such data---from the level of the
genomic sequence to the proteins they code for, and how they interact in the cell in the myriad of processes required
for a cell's function. Dr. Ben-Hur will give a broad overview of the field, career opportunities, and current research in his lab.
</p>
</div>
<div class="details">
<span class="date">
<i class="fa fa-calendar-o" aria-hidden="true"></i>
<span>01/24/2018</span>
</span>
<span class="time">
<i class="fa fa-clock-o"></i>
<span>6:00 pm</span>
</span>
<span class="location">
<i class="fa fa-map-marker"></i>
<span>CSB 130</span>
</span>
</div>
</div>
<div class="event past">
<div class="title">
No ACM meeting
</div>
<div class="info">
<p>
There will not be a meeting the first week back from break.
</p>
</div>
<div class="details">
<span class="date">
<i class="fa fa-calendar-o" aria-hidden="true"></i>
<span>01/17/2018</span>
</span>
</div>
</div>
<div class="event past">
<div class="title">
End of semester board games with ACM and ACM-W
</div>
<div class="info">
<p>
Take a break from studying for finals and join us for a board game social
</p>
</div>
<div class="details">
<span class="date">
<i class="fa fa-calendar-o" aria-hidden="true"></i>
<span>12/06/2017</span>
</span>
<span class="time">
<i class="fa fa-clock-o"></i>
<span>6:00 pm</span>
</span>
<span class="location">
<i class="fa fa-map-marker"></i>
<span>CSB 130</span>
</span>
</div>
</div>
<div class="event past">
<div class="title">
Consider a Graduate Degree in Computer Science at Colorado State University
</div>
<div class="info">
<p>
Are you an undergraduate CS major within two years of graduating and wonder what graduate school has to offer? Please attend to have your questions answered.
</p>
<p>
<span class="underline">Why graduate school?</span>
<br>
Dr. Sanjay Rajopadhye
</p>
<p>
<span class="underline">Sample of current research</span>
<br>
Dr. Laura Moreno
<br>
Dr. Lorenzo De Carli
<br>
Dr. Hamid Chitsaz
<br>
Dr. Sangmi Pallickara
</p>
<p>
<span class="underline">Experiences of current graduate students</span>
<br>
Elliot Forney
<br>
David White
<br>
Steve Kommrusch
<br>
Tomojit Ghosh
</p>
<p>
<span class="underline">Questions and Answers</span>
</p>
</div>
<div class="details">
<span class="date">
<i class="fa fa-calendar-o" aria-hidden="true"></i>
<span>11/29/2017</span>
</span>
<span class="time">
<i class="fa fa-clock-o"></i>
<span>6:00 - 8:00 pm</span>
</span>
<span class="location">
<i class="fa fa-map-marker"></i>
<span>CSB 130</span>
</span>
</div>
</div>
<div class="event past">
<div class="title">
No meeting
</div>
<div class="info">
<p>
Fall break.
</p>
</div>
<div class="details">
<span class="date">
<i class="fa fa-calendar-o" aria-hidden="true"></i>
<span>11/22/2017</span>
</span>
</div>
</div>
<div class="event past">
<div class="title">
Representation Development for Faster Deep Reinforcement Learning <span class="host">(Prof. Chuck Anderson)</span>
</div>
<div class="info">
<p>
Presenting on his work in reinforcement learning, which (for an example) is the machine learning approach used in the recent AlphaGo result where a computer learned to play Go.
</p>
</div>
<div class="details">
<span class="date">
<i class="fa fa-calendar-o" aria-hidden="true"></i>
<span>11/15/2017</span>
</span>
<span class="time">
<i class="fa fa-clock-o"></i>
<span>6:00 pm</span>
</span>
<span class="location">
<i class="fa fa-map-marker"></i>
<span>CSB 130</span>
</span>
</div>
</div>
<div class="event icpc past">
<div class="title">
Good Luck to our ICPC teams!
</div>
<div class="info">
<p>
Our ICPC teams are competing other teams in the <a href="http://org.coloradomesa.edu/~wmacevoy/rmrc/2017/">Rocky Mountain Regional Contest</a>!
Winners will advance to the ACM-ICPC World Finals!
</p>
<img src="acmImages/icpc_team1.jpg">
<img src="acmImages/icpc_team2.jpg">
<img src="acmImages/icpc_team3.jpg">
<img src="acmImages/icpc_team4.jpg">
</div>
</div>
<div class="event past">
<div class="title">
"ACM Meeting"
</div>
<div class="info">
<p>
Join us to talk about your side-project, an idea for a project you would like to work on, research you are doing, or an idea for a project you would like to work on.
</p>
<p>
Join us to get on a team to work on a side-project or create your own.
</p>
<p>
Join us to ask ACM officers any questions you may have or give any suggestions you might have for us.
</p>
<p>
Join us to hear our plan for the rest of the semester as well as be involved in our scheduling for next semester.
</p>
</div>
<div class="details">
<span class="date">
<i class="fa fa-calendar-o" aria-hidden="true"></i>
<span>11/08/2017</span>
</span>
<span class="time">
<i class="fa fa-clock-o"></i>
<span>6:00 pm</span>
</span>
<span class="location">
<i class="fa fa-map-marker"></i>
<span>CSB 130</span>
</span>
</div>
</div>
<div class="event past">
<div class="title">
Mock Interviews <span class="host">(Seagate)</span>
</div>
<div class="info">
<p>
Find out what technical interviews are like! Three developers from Seagate will be here to help you refine your interviewing skills.
<br>
An email will be sent out for people to register for interviews.
</p>
</div>
<div class="details">
<span class="date">
<i class="fa fa-calendar-o" aria-hidden="true"></i>
<span>11/01/2017</span>
</span>
<span class="time">
<i class="fa fa-clock-o"></i>
<span>5:00 - 8:00 pm</span>
</span>
<span class="location">
<i class="fa fa-map-marker"></i>
<span>Reserved library rooms</span>
</span>
</div>
</div>
<div class="event past">
<div class="title">
ACM Hangout
</div>
<div class="info">
<p>
No official event this week. Come eat pizza, do homework, or chill with us.
</p>
</div>
<div class="details">
<span class="date">
<i class="fa fa-calendar-o" aria-hidden="true"></i>
<span>10/25/2017</span>
</span>
<span class="time">
<i class="fa fa-clock-o"></i>
<span>6:00 pm</span>
</span>
<span class="location">
<i class="fa fa-map-marker"></i>
<span>CSB 130</span>
</span>
</div>
</div>
<div class="event past">
<div class="title">
ACM Chapter Coding Competition
</div>
<div class="info">
<p>
Come win a Raspberry Pi!
</p>
</div>
<div class="details">
<span class="date">
<i class="fa fa-calendar-o" aria-hidden="true"></i>
<span>10/18/2017</span>
</span>
<span class="time">
<i class="fa fa-clock-o"></i>
<span>6:00 pm</span>
</span>
<span class="location">
<i class="fa fa-map-marker"></i>
<span>CSB 130</span>
</span>
</div>
</div>
<div class="event past">
<div class="title">
No meeting / ICPC Team Creation Event
</div>
<div class="info">
<p>
Mid-semester ACM break.
</p>
<p>
Although there is no official meeting, we will be having a small ICPC team creation event for those interested in participating.
Come create or join a team and potentially practice some problems! This will happen at the usual time and place.
</div>
<div class="details">
<span class="date">
<i class="fa fa-calendar-o" aria-hidden="true"></i>
<span>10/11/2017</span>
</span>
</div>
</div>
<div class="event past">
<div class="title">
Hacking all the things <span class="host">(Talis Ozols)</span>
</div>
<div class="info">
<p>
How to break in to intentionally vulerable virtual machines.
</p>
</div>
<div class="details">
<span class="date">
<i class="fa fa-calendar-o" aria-hidden="true"></i>
<span>10/04/2017</span>
</span>
<span class="time">
<i class="fa fa-clock-o"></i>
<span>6:00 pm</span>
</span>
<span class="location">
<i class="fa fa-map-marker"></i>
<span>CSB 130</span>
</span>
</div>
</div>
<div class="event past">
<div class="title">
ACM-ICPC
</div>
<div class="info">
<p>
Learn what ACM-ICPC is about, join a team, and get ready to head to ICPC with ACM this October!
</p>
</div>
<div class="details">
<span class="date">
<i class="fa fa-calendar-o" aria-hidden="true"></i>
<span>09/27/2017</span>
</span>
<span class="time">
<i class="fa fa-clock-o"></i>
<span>6:00 pm</span>
</span>
<span class="location">
<i class="fa fa-map-marker"></i>
<span>CSB 130</span>
</span>
</div>
</div>
<div class="event past">
<div class="title">
Amazon
</div>
<div class="info">
<p>
Hosting engineers from Amazon with ACM-W.
</p>
<p>
Amazon 'open house'
</p>
</div>
<div class="details">
<span class="date">
<i class="fa fa-calendar-o" aria-hidden="true"></i>
<span>09/19/2017</span>
</span>
<span class="time">
<i class="fa fa-clock-o"></i>
<span>2:00 - 4:00 pm</span>
</span>
<span class="location">
<i class="fa fa-map-marker"></i>
<span>CSB Lobby</span>
</span>
</div>
<div class="info">
<p>
Presentation / tech talk to students
</p>
</div>
<div class="details">
<span class="date">
<i class="fa fa-calendar-o" aria-hidden="true"></i>
<span>09/19/2017</span>
</span>
<span class="time">
<i class="fa fa-clock-o"></i>
<span>5:00 - 7:00 pm</span>
</span>
<span class="location">
<i class="fa fa-map-marker"></i>
<span>CSB 130</span>
</span>
</div>
</div>
<div class="event past">
<div class="title">
Is your AI Assistant Paying you Proper Attention? <span class="host">(Profs. Ross Beveridge & Bruce Draper)</span>
</div>
<div class="info">
<p>
This talk will review recent accomplishments from joint work being carried out by CSU, The University of Florida and Brandeis University. The work highlights the importance of agents, i..e artificially intelligent assistants, using all available senses to share a common view of our surroundings and shared tasks. This most particularly means paying attention not just what we are saying, but how we are saying it as expressed through tone and facial expressions, what we are looking at and finally how we may be using our bodies to communicate. Recent findings in both human studies and machine-human interaction experiments will show that when solving physical problems in the world gestures play a critical role. Specifically, the time required by people to jointly build a structure out of blocks under the following conditions is roughly the same. Condition 1 has each person able to see the other but they cannon speak. Condition 2 has each person able to hear the other but they cannot use gestures. These findings underscore the importance of agents doing more than just listening and speaking.
</p>
</div>
<div class="details">
<span class="date">
<i class="fa fa-calendar-o" aria-hidden="true"></i>
<span>09/13/2017</span>
</span>
<span class="time">
<i class="fa fa-clock-o"></i>
<span>6:00 pm</span>
</span>
<span class="location">
<i class="fa fa-map-marker"></i>
<span>CSB 130</span>
</span>
</div>
</div>
<div class="event past">
<div class="title">
Learn Git!
</div>
<div class="info">
<p>
Connor Shea, a developer at GitLab, will present a lesson on how to use version control to save your life!
</p>
</div>
<div class="details">
<span class="date">
<i class="fa fa-calendar-o" aria-hidden="true"></i>
<span>09/06/2017</span>
</span>
<span class="time">
<i class="fa fa-clock-o"></i>
<span>6:00 pm</span>
</span>
<span class="location">
<i class="fa fa-map-marker"></i>
<span>CSB 130</span>
</span>
</div>
</div>
<div class="event past">
<div class="title">
Success in CS!
</div>
<div class="info">
<p>
Learn tips, tricks, and get advice from current officers + free pizza!
</p>
<p>
Also, an introduction to our side project initiative and what we are doing this semester.
</p>
<p>
<a href="https://docs.google.com/presentation/d/1TvjkWVUtnd8MnmRlurN72M8CPgMVR6g_lyMI9KGjcKw/edit?usp=sharing">
Link to presentation
</a>
</p>