-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathhistory.php
899 lines (870 loc) · 39.3 KB
/
history.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
<!DOCTYPE html>
<!-- PHP variables -->
<?php $thisPage="history"; ?>
<html>
<head>
<?php include("phpincludes/head.php"); ?>
</head>
<body>
<?php include("phpincludes/nav.php"); ?>
<div class="pageContent">
<div class="histTitle">
Previous Events
</div>
<div class="event">
<div class="title">
End of the Year Celebration
</div>
<div class="info">
<p>
Join ACM and ACM-W and take a break from studying for finals.
</p>
</div>
<div class="details">
<span class="date">
<i class="fa fa-calendar-o" aria-hidden="true"></i>
<span>05/03/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">
<div class="title">
Video Games and Officer Elections
</div>
<div class="info">
<p>
We will be playing Smash Brothers, eating pizza, and electing new officers for next year.
</p>
<br>
<div class="elections">
<h4>2017 - 2018 school year positions:</h2>
<br>
<div class="position">
<p><strong>President:</strong> Kegan Strawn</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> Habeeb Mohammed</p>
<p>Support the President, lead ACM-CSU's side project initiative.</p>
</div>
<div class="position">
<p><strong>Treasurer:</strong> Colton Larson</p>
<p>Handle the financial responsibilities, order the food, and take membership dues.</p>
</div>
<div class="position">
<p><strong>Secretary:</strong> Michael Whitehill</p>
<p>General support role, additionally should lead a side project from start to finish.</p>
</div>
<div class="position">
<p><strong>Web Developer:</strong> Maxwell You</p>
<p>Update the site for events, improve the site, and add any functionality needed.</p>
</div>
<div class="position">
<p><strong>Marketing and Design Manager:</strong> Kelsey Skunberg</p>
<p>Run ACM-CSU's social media, create branding and marketing materials.</p>
</div>
<div class="position">
<p><strong>Event Coordinator:</strong> Joseph Salzano</p>
<p>
Help presenters on campus, monitor and manage the meeting room, take meeting notes,
head count for meetings, and any other task to help ACM events run smoothly.
</p>
</div>
<br>
</div>
</div>
<div class="details">
<span class="date">
<i class="fa fa-calendar-o" aria-hidden="true"></i>
<span>04/26/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">
<div class="title">
Mike Falcone <span class="host">(HPE)</span>
</div>
<div class="info">
<p>
Mike Falcone will be discussing his past 3 years with HPE and will be giving advice on how to grow as a software engineer.
This will include a discussion on web app architecture, his previous experience, and how to prepare for your first job in the industry.
</p>
</div>
<div class="details">
<span class="date">
<i class="fa fa-calendar-o" aria-hidden="true"></i>
<span>4/19/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">
<div class="title">
Win a Raspberry Pi <span class="host">(ACM)</span>
</div>
<div class="info">
<p>
We will be leading a coding competition, split by skill/experience level into tiers.
</p>
<p>
Bring your laptop.
</p>
<p>
Alternatively, come to relax and grab a slice of pizza as you watch the competition.
</p>
</div>
<div class="details">
<span class="date">
<i class="fa fa-calendar-o" aria-hidden="true"></i>
<span>04/12/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">
<div class="title">
Benjamin Say <span class="host">(Kaufman Hall Peak Software)</span>
</div>
<div class="info">
<p>
How we manage large health care data sets using a scripting language.
</p>
</div>
<div class="details">
<span class="date">
<i class="fa fa-calendar-o" aria-hidden="true"></i>
<span>4/05/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">
<div class="title">
Connor Shea <span class="host">(GitLab)</span>
</div>
<div class="info">
<p>
Transparently Deleting (and Recovering) Your Production Database with GitLab
</p>
<blockquote><em>
"On January 31, 2017 an engineer accidentally deleted the production database for GitLab.com.
Our company culture deeply values transparency, so obviously we shared a live Google Doc and
then started a Live Stream as we were recovering the data."
</em></blockquote>
<p>
Connor will be talking about the database disaster and the transparent recovery as well as
answering any questions about getting an internship as a freshman, working full time now,
twitter relations, and/or any questions about GitLab.
</p>
</div>
<div class="details">
<span class="date">
<i class="fa fa-calendar-o" aria-hidden="true"></i>
<span>03/29/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">
<div class="title">
Google is coming
</div>
<div class="info">
<div class="google">
<p class="rsvp">
<strong>Please RSVP:</strong> <a href="https://docs.google.com/forms/d/e/1FAIpQLScvm-zJ5LFoXcwgqRbPYYAlC1f434xLltIe_QfLueNtmiAZWw/viewform">goo.gl/Reszck</a>
</p>
<div class="activity">
<h4>Innovative Ideas In Bringing the Next Billion Users Online:</h4>
<p>
The first part of this talk will explore some creative ways people in the developing world have overcome technical challenges to join the information economy.
The second part will cover Google opportunities, interview formats, tips, example questions and how to prepare. Food will be served!
</p>
<div class="details">
<span class="date">
<i class="fa fa-calendar-o" aria-hidden="true"></i>
<span>03/23/2017</span>
</span>
<span class="time">
<i class="fa fa-clock-o"></i>
<span>5:00 - 6:00 pm</span>
</span>
<span class="location">
<i class="fa fa-map-marker"></i>
<span>CSB 130</span>
</span>
</div>
</div>
<div class="activity">
<h4>Mock Interviews:</h4>
<p>
Sharpen your skills by brainstorming algorithms and coding on a whiteboard. Get feedback from Google interviewers.
</p>
<p>
Please <a href="https://docs.google.com/spreadsheets/d/1GiFWzV4U25-hbKMWU_gju2MLDy9wy_SYsQC2iQNo0Q0/edit#gid=0">sign up here</a>
</p>
<div class="details">
<span class="date">
<i class="fa fa-calendar-o" aria-hidden="true"></i>
<span>03/24/2017</span>
</span>
<span class="time">
<i class="fa fa-clock-o"></i>
<span>9:00am - 12:00pm</span>
</span>
<span class="location">
<i class="fa fa-map-marker"></i>
<span>CSB 210 & Library Room 201B</span>
</span>
</div>
</div>
<div class="activity">
<h4>Demystifying the Google Interview:</h4>
<p>
Learn good interviewing habits by watching two Software Engineers act out a Google onsite interview start-to-finish.
</p>
<div class="details">
<span class="date">
<i class="fa fa-calendar-o" aria-hidden="true"></i>
<span>03/24/2017</span>
</span>
<span class="time">
<i class="fa fa-clock-o"></i>
<span>1:00pm - 2:00pm</span>
</span>
<span class="location">
<i class="fa fa-map-marker"></i>
<span>CSB 130</span>
</span>
</div>
</div>
<div class="activity">
<h4>Google Office Hours for Tech Students:</h4>
<p>
Drop by anytime for a casual discussion with two Googlers about resumes, interviews, Google or the tech industry.
</p>
<div class="details">
<span class="date">
<i class="fa fa-calendar-o" aria-hidden="true"></i>
<span>03/24/2017</span>
</span>
<span class="time">
<i class="fa fa-clock-o"></i>
<span>2:00pm - 3:00pm</span>
</span>
<span class="location">
<i class="fa fa-map-marker"></i>
<span>CSB First Floor Lobby</span>
</span>
</div>
</div>
<p><a href="https://careers.google.com/students/">
Google Careers (students)
</a></p>
</div>
</div>
</div>
<div class="event">
<div class="title">
Jeff Hill <span class="host">(Bounce Software)</span>
</div>
<div class="info">
<p>
Check out their <a href="https://www.bouncesoftware.com/">website</a>.
</p>
</div>
<div class="details">
<span class="date">
<i class="fa fa-calendar-o" aria-hidden="true"></i>
<span>03/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">
<div class="title">
Coding Challenges
</div>
<div class="info">
<p>
Bring your laptop and practice solving some problems with us!
Split into groups or work alone. Grab pizza, have some fun, and hopefully learn something too!
</p>
</div>
<div class="details">
<span class="date">
<i class="fa fa-calendar-o" aria-hidden="true"></i>
<span>02/22/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">
<div class="title">
Project Workshop
</div>
<div class="info">
<p>
Bring your laptop and let's get your environment set up/give you an intro guide for a given project so you can start working on it with the other team members.
</p>
<p>
It is one thing to join a project, to create one, or to talk about it but never actually work on it. Let's change that and get something for you to put on your resume.
</p>
<p>
If you have a project you have started and/or want to start let's get you working and coding tonight!
</p>
<p>
Pizza will be served! Thank you to those who have paid dues for supporting the prevention of starving members.
</p>
<p>
<a href="http://csuacm.slack.com/">Slack</a>
<br>
<a href="https://github.com/csuacm">Github</a>
</p>
</div>
<div class="details">
<span class="date">
<i class="fa fa-calendar-o" aria-hidden="true"></i>
<span>02/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">
<div class="title">
Projects and Chill
</div>
<div class="info">
<p>
Interested in joining one of our currently in progress projects? Come talk to the people who started/work on them. They can help get you set up and involved.
</p>
<p>
Think the current projects are awful? Start your own! Get it set up with ACM quick and easy in person and see if anyone else here wants to join you (and even start working on it).
</p>
<p>
As always pizza will be served. Feel free to bring homework and chill.
</p>
<p>
(The two projects: SoftwareHerd and the GameDev group, may be presenting at the beginning of the meeting).
</p>
<p>
Side projects are great for your resume and a group project is even better! Check out the "Projects" page for more info.
</p>
<p>
For quick access:
<br>
<a href="http://csuacm.slack.com/">Slack</a>
<br>
<a href="https://github.com/csuacm">Github</a>
</p>
</div>
<div class="details">
<span class="date">
<i class="fa fa-calendar-o" aria-hidden="true"></i>
<span>02/01/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">
<div class="title">
Welcome back! <span class="host">(ACM + ACM-W)</span>
</div>
<div class="info">
<p>
We will be hosting a joint meeting with <a href="http://www.cs.colostate.edu/~acm-w/">ACM-W</a> to start off the new semester.
We will be going over this semesters plan, voting on possible <a href="http://www.cs.colostate.edu/~acm/meeting_time_poll.html">meeting times</a>, look at two of our group projects, and answer any inquiries or take any suggestions.
It wouldn't be an ACM meeting without out, so come and grab some pizza as well!
</p>
</div>
<div class="details">
<span class="date">
<i class="fa fa-calendar-o" aria-hidden="true"></i>
<span>01/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">
<div class="title">
Group Projects
</div>
<div class="info">
<p>
We are planning to run group projects throughout next semester. A way to meet other people, get involved, and create!
</p>
<p>
Side projects look great on a resume, and even better if it's working with other people on a larger project. More information will be coming over break. For now, go relax and enjoy your break!
</p>
<p>
If you have an idea you want to begin working on or want to join one of the groups who are already starting, <a href="http://www.cs.colostate.edu/~acm/projects.html">click here</a>
</p>
</div>
<div class="details">
<span class="date">
<i class="fa fa-calendar-o" aria-hidden="true"></i>
<span>Next Semester</span>
</span>
</div>
</div>
<div class="event">
<div class="title">
Susmit Shannigrahi <span class="host">(CSU)</span>
</div>
<div class="info">
<p>
Susmit Shannigrahi is a graduate student working in the Network Security Research labs, and will be giving an introduction to packetized networks and talk about some of the work being done in the NetSec labs.
</p>
</div>
<div class="details">
<span class="date">
<i class="fa fa-calendar-o" aria-hidden="true"></i>
<span>12/07/2016</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">
<div class="title">
Asa Ben-Hur <span class="host">(CSU Prof)</span>
</div>
<div class="info">
<p>
Computational Biology
</p>
</div>
<div class="details">
<span class="date">
<i class="fa fa-calendar-o" aria-hidden="true"></i>
<span>11/30/2016</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">
<div class="title">
CS Graduate Students and others
</div>
<div class="info">
<p>
Come and attend a panel with representatives from the industry as well as current CS graduate students.
They will be here to answer questions and share their first hand experience.
Join current CS graduate students as they take you to the different CS research labs and see first hand the cutting edge research they are involved in.
</p>
</div>
<div class="details">
<span class="date">
<i class="fa fa-calendar-o" aria-hidden="true"></i>
<span>11/16/2016</span>
</span>
<span class="time">
<i class="fa fa-clock-o"></i>
<span>5:00pm - 7:00pm</span>
</span>
<span class="location">
<i class="fa fa-map-marker"></i>
<span>CSB 130</span>
</span>
</div>
</div>
<div class="event">
<div class="title">
Google is coming
</div>
<div class="info">
<div class="google">
<div class="activity">
<h4>Opportunities In Tech:</h4>
<p>
Curious about what it's like to work at Google? We'll cover our technical internship and full-time opportunities, the application process, describe the culture, share our personal experiences at Google, and of course answer your burning questions.
</p>
<div class="details">
<span class="date">
<i class="fa fa-calendar-o" aria-hidden="true"></i>
<span>11/15/2016</span>
</span>
<span class="time">
<i class="fa fa-clock-o"></i>
<span>3:30pm - 4:30 pm</span>
</span>
<span class="location">
<i class="fa fa-map-marker"></i>
<span>CSB 130</span>
</span>
</div>
</div>
<div class="activity">
<h4>Demystifying the Google Tech Interview:</h4>
<p>
Find out what you can expect in a technical interview (at Google or any big tech company) and get advice from folks who have been there. We'll be sharing tips and tricks on how to prepare, how to approach questions, and even what to do when you're stumped.
</p>
<div class="details">
<span class="date">
<i class="fa fa-calendar-o" aria-hidden="true"></i>
<span>11/15/2016</span>
</span>
<span class="time">
<i class="fa fa-clock-o"></i>
<span>4:45pm - 5:45pm</span>
</span>
<span class="location">
<i class="fa fa-map-marker"></i>
<span>Clark A206</span>
</span>
</div>
</div>
<div class="activity">
<h4>Google Tech Talk:</h4>
<p>
Join us to dig into what it means to organize the world’s information to make it universally accessible and useful - and the enormous engineering challenges that brings. Whether it's searches per day or miles driven using Google Navigation, learn about how we operate at a scale the world has never seen.
</p>
<div class="details">
<span class="date">
<i class="fa fa-calendar-o" aria-hidden="true"></i>
<span>11/15/2016</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="activity">
<h4>Google Office Hours for Tech Students:</h4>
<p>
Drop by anytime for a casual discussion with two Googlers about resumes, interviews, Google or the tech industry.
</p>
<div class="details">
<span class="date">
<i class="fa fa-calendar-o" aria-hidden="true"></i>
<span>11/16/2016</span>
</span>
<span class="time">
<i class="fa fa-clock-o"></i>
<span>10:00am - 11:00am</span>
</span>
<span class="location">
<i class="fa fa-map-marker"></i>
<span>CSB First Floor Lobby</span>
</span>
</div>
</div>
<div class="activity">
<h4>Tech Resume Workshop:</h4>
<p>
Learn about what tech companies are looking for in a resume submitted for a technical role. Find out what it takes to make your resume stand out and get noticed!
</p>
<div class="details">
<span class="date">
<i class="fa fa-calendar-o" aria-hidden="true"></i>
<span>11/16/2016</span>
</span>
<span class="time">
<i class="fa fa-clock-o"></i>
<span>11:00am - 12:00pm</span>
</span>
<span class="location">
<i class="fa fa-map-marker"></i>
<span>CSB 130</span>
</span>
</div>
</div>
<div class="activity">
<h4>Demystifying the Google Tech Interview:</h4>
<p>(For those who missed this same talk on Tuesday)</p>
<p>
Find out what you can expect in a technical interview (at Google or any big tech company) and get advice from folks who have been there. We'll be sharing tips and tricks on how to prepare, how to approach questions, and even what to do when you're stumped.
</p>
<div class="details">
<span class="date">
<i class="fa fa-calendar-o" aria-hidden="true"></i>
<span>11/16/2016</span>
</span>
<span class="time">
<i class="fa fa-clock-o"></i>
<span>2:30pm - 3:30pm</span>
</span>
<span class="location">
<i class="fa fa-map-marker"></i>
<span>CSB 130</span>
</span>
</div>
</div>
<div class="activity">
<h4>Google Office Hours for Tech Students:</h4>
<p>
Get one-on-one time with Google engineers. Come by to ask questions on anything from the software engineering industry to life after college, learn about opportunities at Google, or get your resume critiqued.
</p>
<div class="details">
<span class="date">
<i class="fa fa-calendar-o" aria-hidden="true"></i>
<span>11/16/2016</span>
</span>
<span class="time">
<i class="fa fa-clock-o"></i>
<span>3:45pm - 5:00pm</span>
</span>
<span class="location">
<i class="fa fa-map-marker"></i>
<span>CSB First Floor Lobby</span>
</span>
</div>
</div>
</div>
</div>
</div>
<div class="event">
<div class="title">
Fritz Sieker <span class="host">(CSU Prof)</span>
</div>
<div class="info">
<p>
Fritz will be presenting about building reusable tools in the context of debugging programs.
</p>
<p><em>
Pizza will most likely be served.
<br>
(Please bring your $15 for dues if you have not already paid)
</em></p>
</div>
<div class="details">
<span class="date">
<i class="fa fa-calendar-o" aria-hidden="true"></i>
<span>11/02/2016</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">
<div class="title">
Developer Team Q&A <span class="host">(Bounce Software)</span>
</div>
<div class="info">
<p>
Join Software Developers from Bounce Software for pizza and a brief introduction of what and how we solve problems for our clients, followed by an "Ask Us Anything" (AUA) format from several of our developers (Entry-Level, Senior-Level, and Current CSU part-time students).
</p>
<p>
Topics could include: Software Development as a Career, Highly-Redundant Systems and Support, Software Development Life Cycle, Proactive vs Reactive Development, Client Support, User Experience and Design Impacts, Peer and Code Review, Interviewing for your first tech job, or Raspberry Pi gadgets and programming.
</p>
</div>
<div class="details">
<span class="date">
<i class="fa fa-calendar-o" aria-hidden="true"></i>
<span>10/19/2016</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">
<div class="title">
Jack Applin <span class="host">(CSU Prof)</span>
</div>
<div class="info">
<p>
Jack will discuss the history of character representation in computing, from Baudot to EBCDIC and ASCII to HP-Roman8 to Unicode, clarify the difference between Unicode & UTF-8, and show how Unicode, while great, still has its problems.
</p>
</div>
<div class="details">
<span class="date">
<i class="fa fa-calendar-o" aria-hidden="true"></i>
<span>10/12/2016</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">
<div class="title">
Brandon Dewey and Dustin Foudray <span class="host">(Seagate)</span>
</div>
<div class="info">
<p>
Tonight Brandon and Dustin will be talking about Seagate as a whole, day-to-day operations, tools, the inner workings of a hard drive, and what a cloud system looks like and what it is like to work for Seagate.
</p>
<p>
They requested that you bring your questions and resumes if interested. There will be a quick and fun activity at the end: an algorithm competition with prizes!
</p>
</div>
<div class="details">
<span class="date">
<i class="fa fa-calendar-o" aria-hidden="true"></i>
<span>10/05/2016</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">
<div class="title">
Kaden Strand <span class="host">(CSU)</span>
</div>
<div class="info">
<p>
Kaden from CSU's Virtual Reality Initiative will discuss the VR Hackathon happening Oct. 19-23rd, and will be giving live demos of the Microsoft HoloLens.
</p>
</div>
<div class="details">
<span class="date">
<i class="fa fa-calendar-o" aria-hidden="true"></i>
<span>09/21/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">
<div class="title">
Smash Bros
</div>
<div class="info">
<p>
Due to a last minute cancellation we will be having a social event with food and a Smash tournament. Come relax and have some fun!
</p>
</div>
<div class="details">
<span class="date">
<i class="fa fa-calendar-o" aria-hidden="true"></i>
<span>09/14/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>
</body>
</html>