-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathactivitesPostFeb22.eml
2207 lines (2097 loc) · 110 KB
/
activitesPostFeb22.eml
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
Received: from BR3EXC01B.k12.sd.local (206.176.53.197) by
BR3EXC01B.k12.sd.local (206.176.53.197) with Microsoft SMTP Server (TLS) id
15.0.1395.4 via Mailbox Transport; Fri, 22 Feb 2019 10:02:32 -0600
Received: from SD3EXC01A.k12.sd.local (206.176.53.227) by
BR3EXC01B.k12.sd.local (206.176.53.197) with Microsoft SMTP Server (TLS) id
15.0.1395.4; Fri, 22 Feb 2019 10:02:03 -0600
Received: from SD3EXC01A.k12.sd.local (206.176.53.227) by
SD3EXC01A.k12.sd.local (206.176.53.227) with Microsoft SMTP Server (TLS) id
15.0.1395.4; Fri, 22 Feb 2019 10:01:57 -0600
Received: from K12HUB02.k12.sd.local (206.176.52.60) by SD3EXC01A.k12.sd.local
(206.176.53.227) with Microsoft SMTP Server (TLS) id 15.0.1395.4 via Frontend
Transport; Fri, 22 Feb 2019 10:01:57 -0600
Received: from dsu-iis-03 (138.247.72.6) by webmail.dsu.edu (206.176.52.60)
with Microsoft SMTP Server (TLS) id 14.3.439.0; Fri, 22 Feb 2019 10:00:04
-0600
MIME-Version: 1.0
From: <[email protected]>
To: <[email protected]>
Date: Fri, 22 Feb 2019 10:00:04 -0600
Subject: DSU Activities Postings for Friday, February 22, 2019
Message-ID: <[email protected]>
Return-Path: [email protected]
X-MS-Exchange-Organization-AuthSource: K12HUB02.k12.sd.local
X-MS-Exchange-Organization-AuthAs: Internal
X-MS-Exchange-Organization-AuthMechanism: 0a
X-Originating-IP: [138.247.72.6]
X-MS-Exchange-Organization-MessageDirectionality: Originating
X-Auto-Response-Suppress: DR, OOF, AutoReply
X-MS-Exchange-Organization-Network-Message-Id: ed0aaac7-a8a0-4dcd-2c09-08d698df12b0
X-MS-Exchange-Organization-AVStamp-Enterprise: 1.0
Content-type: multipart/alternative;
boundary="B_3633705447_482935751"
> This message is in MIME format. Since your mail reader does not understand
this format, some or all of this message may not be legible.
--B_3633705447_482935751
Content-type: text/plain;
charset="UTF-8"
Content-transfer-encoding: quoted-printable
View the latest DSU happenings and updates | Events: 9 | General Informatio=
n: 9 | Employment Opportunities: 1 |=20
DSU Activities for Friday, February 22, 2019
View in browser=20
Events
FCA Huddle=20
Ping Pong
Frankenstein
CHILI FEED AND CINNAMON ROLLS
Creativity Needed! Get Your Work Published
NAVY CYBER WARFARE DEVELOPMENT GROUP INFORMATION SESSION
DSU STEM Institute Movie Night - First Man (2018)
Humans Vs. Zombies
DAKTRONICS INFORMATION SESSION
General Information
The Trojan Times
Learning Engagement Center (LEC) Tutoring=20
Spring Proctor Hours
Spring 2019 Writing Center Hours
Survey starting Monday, February 18th
Book Bracket - Mundt Madness
Student Senate Constitution Feedback
Student Senate Constitution Feedback
Steve Schloemer Art Exhibition at First Bank & Trust Gallery
Employment Opportunities
HANDSHAKE
Events
FCA Huddle=20
FCA Huddle meets this Wednesday, 8:15 p.m. @ DSU Library Basement (where th=
e couches are) Fellowship of Christian Athletes is a small community of stud=
ents who are looking for strong relationships with others and spiritual grow=
th in their faith. All DSU students are welcome! We usually meet every Wed n=
ight for about an hour throughout the school year. Questions? Coach Schaab: =
[email protected] Pastor Andrew: [email protected] Coach Ok:=
When:
8/29/18 - 5/1/19 - 8:15 - 9:15 p.m.=20
Where:
DSU Library Basement=20
Contact:
Josh Ok ( 847-361-7812 , [email protected]) Ping Pong
Come play Ping Pong at the CC on Friday evenings! All skill levels welcome.=
Paddles provided.=20
When:
Fridays - 6 p.m. - 8 p.m.=20
Where:
Community Center Multi-Purpose Gym=20
Contact:
Community Center ( 000-000-0000 , [email protected]) Frankenstein
DSU Theatre presents a modern adaptation of Mary Shelley=E2=80=99s Frankenstein. =
Limited seating reserve tickets at EVENTBRITE.COM. $8.00 for general admissi=
on and FREE for DSU students with ID card. WARNING MATURE THEMES=20
When:
Feb 21, 22, and 23 - at 7:30 p.m.=20
Where:
DSU Beacom Institute of Technology=20
Contact:
Emily Pieper ( 605-256-5703 , [email protected]) CHILI FEED AND CINNAMON=
ROLLS
The Newman Club would like to invite all DSU students to join us for the 5:=
00 p.m. Mass with a $1 Chili Feed to follow. This is a wonderful opportunity=
to learn more about Newman Club and meet other students who are part of the=
club. We look forward to meeting you! And, yes, there will be cinnamon rol=
ls to accompany the chili!=20
When:
Saturday, Feb. 23 - 6:00-8:00 p.m. following the 5:00 p.m. Mass=20
Where:
St. Thomas Aquinas Parish Basement=20
Contact:
Shannan McQuade, Director of College Ministry ( 605-838-7126 , smcquade@dsu=
newman.org) Creativity Needed! Get Your Work Published
Are you creative? If you have any poetry, prose, art, graphic designs, or o=
ther created works, then the answer is YES! The student magazine "New Tricks=
" features all types of works from DSU students, faculty, and staff, and we =
would love to feature you in this year's publication. We accept works of all=
kinds. So even if you don't have anything now, there is still plenty of ti=
me to start creating! Possible Submissions: Poems ~ Short Stories ~ Art ~ Ph=
otos ~ Graphic Designs ~ Blackout Poetry ~ Song Lyrics ~ Sonnets - Haiku ~ A=
nything that represents you! To see previous years' submissions from other c=
reative people at DSU, you can visit our website at www.new-tricks.org. Subm=
issions will be accepted through March 18th. Send your submissions to newtri=
[email protected] .=20
When:
2/8/19 - 3/18/19=20
Where:
Beadle=20
Contact:
Dr. John Nelson ( 605-256-5273 , [email protected]) NAVY CYBER WARFARE DEVE=
LOPMENT GROUP INFORMATION SESSION
Great employment and advanced training opportunities await at Navy Cyber Wa=
rfare Development Group for SFS/CYBERCORP student/graduates. Come meet us at=
this information session! Bring your resumes and questions. #DC/Baltimore=
, Competitive Salary, Benefits, TS Clearance & Tuition Remission.=20
Monday, 2/25/19=20
TCB 203=20
12:00 =E2=80=93 1:00=20
Majors targeted: Computer Science, Cyber Operations to include Cyber Corp=
students. Even if you have already accepted an internship or full-time po=
sition with another organization, please come to learn more on the Navy Cybe=
r Warfare opportunities for the future! There will be no food provided but =
we still ask that you RSVP by emailing [email protected].=20
When:
Monday, 2/25/19 - 12:00 noon=20
Where:
TCB 203=20
Contact:
Janelle Nielsen ( 605-256-5122 , [email protected]) DSU STEM Institut=
e Movie Night - First Man (2018)
The DSU STEM Institute invites everyone to come join us at 7 p.m. on Monday=
, February 25th for a viewing of the movie: First Man. First Man is a 2018 f=
ilm that looks at the life of the astronaut, Neil Armstrong, and the legenda=
ry space mission that led him to become the first man to walk on the Moon on=
July 20, 1969. Aside from watching a great film (and there will be snacks!!=
!), this will be a chance to learn about the STEM Institute at DSU and netwo=
rk with fellow students in science, technology and math majors here at DSU. =
The event is open to everyone - whether you are a STEM major or not. The D=
SU STEM Institute is supported in part by a Project Innovation Grant from th=
e NASA South Dakota Space Grant Consortium and an Innovation Mini-Grant from=
Dakota State University.=20
When:
February 25th - 7:00 p.m. - 10:00 p.m.=20
Where:
Science Center Auditorium (SC135)=20
Contact:
Dr. J.A. Maloney ( 605-256-5187 , [email protected]) Humans Vs. Zombies
It's time to make a stand! Join Humans Vs. Zombies hosted by DSU Gaming Clu=
b! Grab a Nerf gun and a bandana as you carry out missions, avoid zombies, a=
nd survive! Don't get tagged by a zombie though, otherwise you'll join the r=
anks of the undead and have to ambush other groups of humans on their way o=
ut of class to prevent yourself from starving! Zombies gotta eat too. Contac=
t Adam Larson ([email protected]) or @Officers in the Gaming Club =
Discord (https://discord.gg/W6vbAR) for more information or go to http://hvz=
hub.com/dsuhvz to sign up.
Play goes from the 21st to the 28th of February. Will you survive? =20
When:
February 21-28 - 11:59 p.m. - 11:59 p.m.=20
Where:
On Campus=20
Contact:
Adam Larson ( 000-000-0000 , [email protected]) DAKTRONICS INFORM=
ATION SESSION
=E2=80=98Did you know there=E2=80=99s a global industry-leading technology company righ=
t up the road from DSU? Come to the Daktronics info session and enjoy lunch =
while you learn about the many employment opportunities they have!=E2=80=99=20
Wednesday, 3/13/19=20
TCB 203=20
12:00 =E2=80=93 12:50=20
Daktronics will share general company information as well as talk about th=
eir internships, full-time jobs and student roles. All majors are welcome bu=
t they are targeting the following majors: BS =E2=80=93 Computer Information Syste=
ms, Computer Game Design, Computer Science, Cyber Leadership & Intelligence,=
Cyber Operations, Network & Security Admin, Digital Arts & Design; BBA - A=
ccounting, Business Technology, Finance, Management, Marketing. Because the=
re will be food so please RSVP to [email protected] by 12:00 noon on T=
hursday, 3/7/19.=20
When:
Wednesday, 3/13/19 - 12:00 - 12:50=20
Where:
East Hall 100=20
Contact:
Janelle Nielsen ( 605-256-5122 , [email protected]) General Informati=
on
The Trojan Times
Read all about events on and off campus on DSU's own official student newsp=
aper, The Trojan Times. Visit the Trojan Times at http://trojan-times.com/ =
The Trojan Times features sports, comics, campus event coverage, student new=
s, and much more! Get daily updates on recent news on our Facebook page: htt=
ps://www.facebook.com/Trojan-Times-DSU-105358226197187/? Learning Engagemen=
t Center (LEC) Tutoring=20
Goooooooooooood Morning, DSU! Are you ready to turn over a new leaf with y=
our grades?=20
Learning Engagement Center (LEC) Tutors are ready to help YOU make it happe=
n!=20
Tutoring in the LEC provides a comfortable, informal setting, where you are=
able to work with a peer tutor =E2=80=93 another student who has successfully com=
pleted the course, and is trained to assist you! Tutoring in the LEC may ta=
ke place one-on-one or in small groups. You are able to work at your own p=
ace, with the assistance of a tutor. Although tutors are not there to do you=
r work for you, they can provide significant assistance regarding your speci=
fic course content and assignments , planning and organizing your assignment=
s, developing your study techniques, and they will always provide you with e=
ncouragement and support! =20
Learning Engagement Center Tutoring=20
Face to Face sessions are available on a walk in basis, no appointment is r=
equired. E-Tutoring (online) sessions are available by appointment. Learni=
ng Engagement Center (LEC) Tutoring - Face to Face sessions:=20
The Learning Engagement Center is located on the lower level of The Courtya=
rd Residence Hall. You=E2=80=99ll find us by entering through the south entrance =
with the curved front. =20
Hours: 11A.M. to 10 P.M., Monday =E2=80=93 Thursday; 11 A.M. - 2 P.M. Friday; 2 =
=E2=80=93 10 P.M. on Sunday.=20
E-Tutoring:=20
E-tutoring (online) sessions are available to DSU distance students, and Un=
iversity Center students by appointment, in many subject areas. =20
E-tutoring Hours: 6-10 P.M., Mon. =E2=80=93 Thurs. , and 2-10 P.M. Sunday.=20
Sessions must be requested 24 hours in advance. Sunday session requests a=
re taken through 2 P.M. on the Friday before.=20
Request your session by e-mailing [email protected] =20
To find out more about LEC Tutoring and E-Tutoring:=20
Go to =E2=80=9CMy DSU=E2=80=9D and log in using your Web Advisor / D2L credentials. Tu=
tor information is on the right, under =E2=80=9CQuicklinks=E2=80=9D. =20
The =E2=80=9CCumulative Course List=E2=80=9D shows the courses we are able to support =
(currently 144 courses!!) Find your course on the list to see the tutors th=
at are qualified to help you.=20
Check the =E2=80=9CTutor Work Schedule=E2=80=9D to see when the tutor(s)that can tutor=
in your subject are on duty and available to help you!=20
Be sure to check out the =E2=80=9CSunday Schedule=E2=80=9D tab to see who=E2=80=99s available=
on specific Sundays.
=20
=E2=80=9CTell me and I forget. Teach me and I remember. Involve me and I learn.=E2=80=
=9D =E2=80=93Benjamin Franklin
Spring Proctor Hours
VIEW PROCTOR HOURS
Remember exams must be scheduled one full business day in advance. Email pr=
[email protected] to schedule an exam.=20
=20
Spring 2019 Writing Center Hours
Learning Assistants in the Writing Center & Writing Center Online provide o=
ne-on-one writing, reading and critical thinking support to students to stud=
ents in all majors both on-campus and distance. We can help with topics inc=
luding; developing essays, researching assignment topics, improving writing=
skills, brainstorming and helping to revise written work. Available Appoin=
tment Types:=20
Scheduled appointments. Students will use Starfish to make a 1:1 appointmen=
t.=20
Walk-in appointments are available when more than one Learning Assistant i=
s in the center.=20
To schedule in Starfish, log into your main page and view your connections.=
Then click on the DSU Writing Center and begin your appointment selection.T=
his link will provide you with instructions on how to schedule your appointm=
ent using Starfish. https://www.youtube.com/watch?v=3D2bFdMTzY4lM **Online =
students must first join the Online Writing Center D2L page. This link will =
provide you with instructions on how to self-register into the Writing Cente=
r. https://www.youtube.com/watch?v=3DCgZUHXXm92M=20
Hours for Spring 2019
Monday 9:30 AM =E2=80=93 11:00 AM 2:00 PM =E2=80=93 4:00 PM 5:00 PM =E2=80=93 6:00 PM Tuesday=
9:00 AM =E2=80=93 12 :00 PM 10:00 AM =E2=80=93 11: 00 AM * Walk-in Availability 1:00 PM=
=E2=80=93 4:00 PM 2:00 PM =E2=80=93 3:00 PM * Walk-in Availability 5:00 PM =E2=80=93 6:00 PM =
Wednesday 9:00 AM =E2=80=93 11:00 AM 1:30 PM =E2=80=93 5:00 PM 2:00 PM=E2=80=93 3:00 PM* Walk-=
in Availability Thursday 9:00 AM =E2=80=93 12:00 PM 10:00 AM=E2=80=93 11:00 AM* Walk-in =
Availability 1:00 PM =E2=80=93 1:30 PM 2:00 PM =E2=80=93 3:00 PM 2:00 PM=E2=80=93 3:00 PM * Wa=
lk-in Availability Friday 9:00 AM =E2=80=93 11:00 AM 1:00 PM =E2=80=93 3:00 PM Survey =
starting Monday, February 18th
Let your voice be heard. We want to hear what your ideas and thoughts are. =
There will be three daily winners, along with the three major prices. The th=
ree major prices are=20
Bike=20
RockStar Sweatshirt=20
Einstein's bucket of bagel and boxed coffee=20
The big prizes will be drawn at the end of the week! Each survey takes only=
7 minutes, and you can take three different surveys for the C-Store, Einste=
in Bro Bagels and the Marketplace. Everyone is welcomed to take the survey! =
Link: https://sodexo.az1.qualtrics.com/jfe/form/SV_cNEjHBpoijNjh7D?mainNumbe=
r=3D10344? Let your VOICE be heard! Book Bracket - Mundt Madness
The Mundt Library will be holding our own version of March Madness but inst=
ead of college basketball, we are holding a tournament of books. In this our=
6th year, our four divisions will be made up lists using the authors' last =
names. 16 books in each division will complete against each other until onl=
y one remains as the DSU Champion. Students, faculty, and staff are all invi=
ted to fill out a bracket on who you think will win. Those individuals with =
the most points at the end of the tournament will be awarded prizes. Full i=
nformation and copies of the bracket are available at https://library.dsu.ed=
u/MundtMadness. Brackets are accepted until March 1. Student Senate Constitu=
tion Feedback
Student Senate would like your feedback on some amendments to their Constit=
ution! Go to the following Google Drive folder and leave comments on the am=
endments. https://drive.google.com/open?id=3D1np0X1bPvx7-WrXrsqSYSkBGP8Or8IbBh=
Comment Period will be open until March 9th at 11:59pm. Student Senate Con=
stitution Feedback
Student Senate would like your feedback on some amendments to their Constit=
ution!=20
Go to the following Google Drive folder and leave comments on the amendment=
s. https://drive.google.com/open?id=3D1np0X1bPvx7-WrXrsqSYSkBGP8Or8IbBh=20
Comment Period will be open until March 9th at 11:59pm. Steve Schloemer Art=
Exhibition at First Bank & Trust Gallery
California based artist Steven Schloemer=E2=80=99s exhibition entitled Vertical L=
andscapes-Imaginary Landscapes is on exhibition at the new First Bank & Trus=
t Gallery in room 202 on the second floor of the Karl Mundt Library. Hours a=
re 10AM-7PM Monday-Friday, or viewing by special appointment. Please contac=
t [email protected] for information on prices of art and related infor=
mation Employment Opportunities
HANDSHAKE
Looking for a part-time job, student labor, and internship or a full-time o=
pportunity?? You found the right spot!! They are all advertised on Handshake=
!! Whether you are looking for something local or in Dallas Texas=E2=80=A6..Handsh=
ake can help you find the perfect opportunity. What=E2=80=99s Handshake? Just the =
best job search tool out there! Make it easy on yourself and login to www.ds=
ujoinhandshake.com. Add to your profile exactly what you are seeking ex. (pa=
rt-time internship etc.), along with your and skills/strengths. Add your res=
ume too! Why use Handshake? Why not we say? Let us help the employers come t=
o you by filtering into your newsfeed! Questions about Handshake? E-mail us =
at [email protected], give us a call at 605-256-5122 or just stop and see =
us at the LEC 015!=20
When:
2/14/2019 - 8:00 a.m.=20
Where:
DSU Career Services - LEC 015=20
Contact:
Debra Roach If you would like your activity post to appear in subsequent DS=
U Activity emails, please submit them here. (Use your DSU Network Credential=
s)
All posts must be submitted for approval by 3:00pm, one business day prior =
to the day you would like your post to start displaying. For example, if you=
want your post to display on a Monday, you need to submit your post by 3:00=
pm the previous Friday. If you have any questions about submitting an Activ=
ity Post, please email [email protected] You have received this mess=
age in an effort by the University to better inform students/faculty/staff o=
f the various events and activities occurring within the campus community. I=
f you do not wish to receive additional messages of this type please send a =
message to [email protected] with the line "Unsubscribe from D=
SUActivities distribution list" in the Subject Line of the message.=20
--B_3633705447_482935751
Content-type: text/html;
charset="UTF-8"
Content-transfer-encoding: quoted-printable
<!-- Inliner Build Version 4380b7741bb759d6cb997545f3add21ad48f010b --><!DO=
CTYPE HTML PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/x=
html1/DTD/xhtml1-strict.dtd">
<html xmlns=3D"http://www.w3.org/1999/xhtml" xmlns=3D"http://www.w3.org/1999/xh=
tml" style=3D"font-family: Arial,Baskerville,monospace;">
<head>
<meta http-equiv=3D"Content-Type" content=3D"text/html; charset=3Dutf-8">
<meta name=3D"viewport" content=3D"width=3Ddevice-width">
</head>
<body style=3D"width: 100% !important; min-width: 100%; -webkit-text-size-adj=
ust: 100%; -ms-text-size-adjust: 100%; color: #222222; font-family: Arial,Ba=
skerville,monospace; font-weight: normal; text-align: left; line-height: 19p=
x; font-size: 14px; margin: 0; padding: 0;">
<style type=3D"text/css">
a:hover {
color: #2795b6 !important;
}
a:active {
color: #2795b6 !important;
}
a:visited {
color: #2ba6cb !important;
}
h1 a:active {
color: #2ba6cb !important;
}
h2 a:active {
color: #2ba6cb !important;
}
h3 a:active {
color: #2ba6cb !important;
}
h4 a:active {
color: #2ba6cb !important;
}
h5 a:active {
color: #2ba6cb !important;
}
h6 a:active {
color: #2ba6cb !important;
}
h1 a:visited {
color: #2ba6cb !important;
}
h2 a:visited {
color: #2ba6cb !important;
}
h3 a:visited {
color: #2ba6cb !important;
}
h4 a:visited {
color: #2ba6cb !important;
}
h5 a:visited {
color: #2ba6cb !important;
}
h6 a:visited {
color: #2ba6cb !important;
}
table.button:hover td {
background: #2795b6 !important;
}
table.button:visited td {
background: #2795b6 !important;
}
table.button:active td {
background: #2795b6 !important;
}
table.button:hover td a {
color: #ffffff !important;
}
table.button:visited td a {
color: #ffffff !important;
}
table.button:active td a {
color: #ffffff !important;
}
table.button:hover td {
background: #2795b6 !important;
}
table.tiny-button:hover td {
background: #2795b6 !important;
}
table.small-button:hover td {
background: #2795b6 !important;
}
table.medium-button:hover td {
background: #2795b6 !important;
}
table.large-button:hover td {
background: #2795b6 !important;
}
table.button:hover td a {
color: #ffffff !important;
}
table.button:active td a {
color: #ffffff !important;
}
table.button td a:visited {
color: #ffffff !important;
}
table.tiny-button:hover td a {
color: #ffffff !important;
}
table.tiny-button:active td a {
color: #ffffff !important;
}
table.tiny-button td a:visited {
color: #ffffff !important;
}
table.small-button:hover td a {
color: #ffffff !important;
}
table.small-button:active td a {
color: #ffffff !important;
}
table.small-button td a:visited {
color: #ffffff !important;
}
table.medium-button:hover td a {
color: #ffffff !important;
}
table.medium-button:active td a {
color: #ffffff !important;
}
table.medium-button td a:visited {
color: #ffffff !important;
}
table.large-button:hover td a {
color: #ffffff !important;
}
table.large-button:active td a {
color: #ffffff !important;
}
table.large-button td a:visited {
color: #ffffff !important;
}
table.secondary:hover td {
background: #d0d0d0 !important;
color: #555555;
}
table.secondary:hover td a {
color: #555555 !important;
}
table.secondary td a:visited {
color: #555555 !important;
}
table.secondary:active td a {
color: #555555 !important;
}
table.success:hover td {
background: #457a1a !important;
}
table.alert:hover td {
background: #970b0e !important;
}
@media only screen and (max-width: 600px) {
table[class=3D"body"] img {
max-width: auto !important;
max-height: auto !important;
}
table[class=3D"body"] center {
min-width: 0 !important;
}
table[class=3D"body"] .container {
width: 95% !important;
}
table[class=3D"body"] .row {
width: 100% !important;
display: block !important;
}
table[class=3D"body"] .wrapper {
display: block !important;
padding-right: 0 !important;
}
table[class=3D"body"] .columns {
table-layout: fixed !important;
float: none !important;
width: 100% !important;
padding-right: 0px !important;
padding-left: 0px !important;
}
table[class=3D"body"] .column {
table-layout: fixed !important;
float: none !important;
width: 100% !important;
padding-right: 0px !important;
padding-left: 0px !important;
}
table[class=3D"body"] .wrapper.first .columns {
display: table !important;
}
table[class=3D"body"] .wrapper.first .column {
display: table !important;
}
table[class=3D"body"] table.columns td {
width: 100% !important;
}
table[class=3D"body"] table.column td {
width: 100% !important;
}
table[class=3D"body"] .columns td.one {
width: 8.333333% !important;
}
table[class=3D"body"] .column td.one {
width: 8.333333% !important;
}
table[class=3D"body"] .columns td.two {
width: 16.666666% !important;
}
table[class=3D"body"] .column td.two {
width: 16.666666% !important;
}
table[class=3D"body"] .columns td.three {
width: 25% !important;
}
table[class=3D"body"] .column td.three {
width: 25% !important;
}
table[class=3D"body"] .columns td.four {
width: 33.333333% !important;
}
table[class=3D"body"] .column td.four {
width: 33.333333% !important;
}
table[class=3D"body"] .columns td.five {
width: 41.666666% !important;
}
table[class=3D"body"] .column td.five {
width: 41.666666% !important;
}
table[class=3D"body"] .columns td.six {
width: 50% !important;
}
table[class=3D"body"] .column td.six {
width: 50% !important;
}
table[class=3D"body"] .columns td.seven {
width: 58.333333% !important;
}
table[class=3D"body"] .column td.seven {
width: 58.333333% !important;
}
table[class=3D"body"] .columns td.eight {
width: 66.666666% !important;
}
table[class=3D"body"] .column td.eight {
width: 66.666666% !important;
}
table[class=3D"body"] .columns td.nine {
width: 75% !important;
}
table[class=3D"body"] .column td.nine {
width: 75% !important;
}
table[class=3D"body"] .columns td.ten {
width: 83.333333% !important;
}
table[class=3D"body"] .column td.ten {
width: 83.333333% !important;
}
table[class=3D"body"] .columns td.eleven {
width: 91.666666% !important;
}
table[class=3D"body"] .column td.eleven {
width: 91.666666% !important;
}
table[class=3D"body"] .columns td.twelve {
width: 100% !important;
}
table[class=3D"body"] .column td.twelve {
width: 100% !important;
}
table[class=3D"body"] td.offset-by-one {
padding-left: 0 !important;
}
table[class=3D"body"] td.offset-by-two {
padding-left: 0 !important;
}
table[class=3D"body"] td.offset-by-three {
padding-left: 0 !important;
}
table[class=3D"body"] td.offset-by-four {
padding-left: 0 !important;
}
table[class=3D"body"] td.offset-by-five {
padding-left: 0 !important;
}
table[class=3D"body"] td.offset-by-six {
padding-left: 0 !important;
}
table[class=3D"body"] td.offset-by-seven {
padding-left: 0 !important;
}
table[class=3D"body"] td.offset-by-eight {
padding-left: 0 !important;
}
table[class=3D"body"] td.offset-by-nine {
padding-left: 0 !important;
}
table[class=3D"body"] td.offset-by-ten {
padding-left: 0 !important;
}
table[class=3D"body"] td.offset-by-eleven {
padding-left: 0 !important;
}
table[class=3D"body"] table.columns td.expander {
width: 1px !important;
}
table[class=3D"body"] .right-text-pad {
padding-left: 10px !important;
}
table[class=3D"body"] .text-pad-right {
padding-left: 10px !important;
}
table[class=3D"body"] .left-text-pad {
padding-right: 10px !important;
}
table[class=3D"body"] .text-pad-left {
padding-right: 10px !important;
}
table[class=3D"body"] .hide-for-small {
display: none !important;
}
table[class=3D"body"] .show-for-desktop {
display: none !important;
}
table[class=3D"body"] .show-for-small {
display: block !important;
width: auto !important;
overflow: visible !important;
}
table[class=3D"body"] .hide-for-desktop {
display: block !important;
width: auto !important;
overflow: visible !important;
}
}
</style>
<table class=3D"body" style=3D"border-spacing: 0; border-collapse: collapse; ve=
rtical-align: top; text-align: left; height: 100%; width: 100%; color: #2222=
22; font-family: Arial,Baskerville,monospace; font-weight: normal; line-heig=
ht: 19px; font-size: 14px; margin: 0; padding: 0;">
<tbody>
<tr style=3D"vertical-align: top; text-align: left; font-family: Arial,Basker=
ville,monospace; padding: 0;" align=3D"left">
<!-- PreHeader -->
<td style=3D"display:none !important; visibility:hidden; opacity:0; color:tra=
nsparent; height:0; width:0; mso-hide:all; line-height:0px; font-size:0px">
View the latest DSU happenings and updates | </td>
<td style=3D"display:none !important; visibility:hidden; opacity:0; color:tra=
nsparent; height:0; width:0; mso-hide:all; line-height:0px; font-size:0px">
Events: 9 | General Information: 9 | Employment Opportunities: 1 | </td>
<td class=3D"center" align=3D"center" valign=3D"top" style=3D"word-break: break-wor=
d; -webkit-hyphens: none; -moz-hyphens: none; hyphens: none; border-collapse=
: collapse !important; vertical-align: top; text-align: center; color: #2222=
22; font-family: Arial,Baskerville,monospace; font-weight: normal; line-heig=
ht: 19px; font-size: 14px; margin: 0; padding: 0;">
<!-- End PreHeader -->
<center style=3D"width: 100%; min-width: 580px; font-family: Arial,Baskervill=
e,monospace;">
<!-- Email Content --><!-- Header -->
<table class=3D"row dsu-header" style=3D"border-spacing: 0; border-collapse: co=
llapse; vertical-align: top; text-align: left; width: 100%; position: relati=
ve; font-family: Arial,Baskerville,monospace; background: #000e37 url(https:=
//dsu.edu/assets/images/header.jpg) no-repeat top center; padding: 0px;" bgc=
olor=3D"#000e37" background=3D"url(https://dsu.edu/assets/images/header.jpg)">
<!-- Styles go on the row -->
<tbody>
<tr style=3D"vertical-align: top; text-align: left; font-family: Arial,Basker=
ville,monospace; padding: 0;" align=3D"left">
<td class=3D"center" align=3D"center" style=3D"word-break: break-word; -webkit-hy=
phens: none; -moz-hyphens: none; hyphens: none; border-collapse: collapse !i=
mportant; vertical-align: top; text-align: center; color: #222222; font-fami=
ly: Arial,Baskerville,monospace; font-weight: normal; line-height: 19px; fon=
t-size: 14px; margin: 0; padding: 0;" valign=3D"top">
<!-- Center the container -->
<center style=3D"width: 100%; min-width: 580px; font-family: Arial,Baskervill=
e,monospace;">
<table class=3D"container" style=3D"border-spacing: 0; border-collapse: collaps=
e; vertical-align: top; text-align: inherit; width: 580px; font-family: Aria=
l,Baskerville,monospace; margin: 0 auto; padding: 0;">
<!-- Container restricts the content width -->
<tbody>
<tr style=3D"vertical-align: top; text-align: left; font-family: Arial,Basker=
ville,monospace; padding: 0;" align=3D"left">
<td class=3D"wrapper last" style=3D"word-break: break-word; -webkit-hyphens: no=
ne; -moz-hyphens: none; hyphens: none; border-collapse: collapse !important;=
vertical-align: top; text-align: left; position: relative; color: #222222; =
font-family: Arial,Baskerville,monospace; font-weight: normal; line-height: =
19px; font-size: 14px; margin: 0; padding: 10px 0px 0px;" align=3D"left" valig=
n=3D"top">
<!-- Wrapper stays on the inner table -->
<table class=3D"twelve columns" style=3D"border-spacing: 0; border-collapse: co=
llapse; vertical-align: top; text-align: left; width: 580px; font-family: Ar=
ial,Baskerville,monospace; margin: 0 auto; padding: 0;">
<tbody>
<tr style=3D"vertical-align: top; text-align: left; font-family: Arial,Basker=
ville,monospace; padding: 0;" align=3D"left">
<td style=3D"word-break: break-word; -webkit-hyphens: none; -moz-hyphens: non=
e; hyphens: none; border-collapse: collapse !important; vertical-align: top;=
text-align: left; color: #222222; font-family: Arial,Baskerville,monospace;=
font-weight: normal; line-height: 19px; font-size: 14px; margin: 0; padding=
: 0px 0px 10px;" align=3D"left" valign=3D"top">
<a href=3D"http://dsu.edu" style=3D"color: #2ba6cb; text-decoration: none; font=
-family: Arial,Baskerville,monospace;"><img src=3D"http://mydsu.dsu.edu/public=
/ITS/DSU-Activities/logo.png?2019-02-22" style=3D"outline: none; text-decorati=
on: none; -ms-interpolation-mode: bicubic; width: auto; max-width: 100%; flo=
at: left; clear: both; display: block; font-family: Arial,Baskerville,monosp=
ace; border: none;" align=3D"left">
</a></td>
<td class=3D"expander" style=3D"word-break: break-word; -webkit-hyphens: none; =
-moz-hyphens: none; hyphens: none; border-collapse: collapse !important; ver=
tical-align: top; text-align: left; visibility: hidden; width: 0px; color: #=
222222; font-family: Arial,Baskerville,monospace; font-weight: normal; line-=
height: 19px; font-size: 14px; margin: 0; padding: 0;" align=3D"left" valign=3D"=
top">
</td>
</tr>
</tbody>
</table>
</td>
</tr>
</tbody>
</table>
</center>
</td>
</tr>
</tbody>
</table>
<!-- View in browser link -->
<table class=3D"container" style=3D"border-spacing: 0; border-collapse: collaps=
e; vertical-align: top; text-align: inherit; width: 580px; font-family: Aria=
l,Baskerville,monospace; margin: 0 auto; padding: 0;">
<tbody>
<tr style=3D"vertical-align: top; text-align: left; font-family: Arial,Basker=
ville,monospace; padding: 0;" align=3D"left">
<td style=3D"word-break: break-word; -webkit-hyphens: none; -moz-hyphens: non=
e; hyphens: none; border-collapse: collapse !important; vertical-align: top;=
text-align: left; color: #222222; font-family: Arial,Baskerville,monospace;=
font-weight: normal; line-height: 19px; font-size: 14px; margin: 0; padding=
: 0;" align=3D"left" valign=3D"top">
<table class=3D"row" style=3D"border-spacing: 0; border-collapse: collapse; ver=
tical-align: top; text-align: left; width: 100%; position: relative; display=
: block; font-family: Arial,Baskerville,monospace; padding: 0px;">
<tbody>
<tr style=3D"vertical-align: top; text-align: left; font-family: Arial,Basker=
ville,monospace; padding: 0;" align=3D"left">
<td class=3D"wrapper last" style=3D"word-break: break-word; -webkit-hyphens: no=
ne; -moz-hyphens: none; hyphens: none; border-collapse: collapse !important;=
vertical-align: top; text-align: left; position: relative; color: #222222; =
font-family: Arial,Baskerville,monospace; font-weight: normal; line-height: =
19px; font-size: 14px; margin: 0; padding: 10px 0px 0px;" align=3D"left" valig=
n=3D"top">
<table class=3D"twelve columns" style=3D"border-spacing: 0; border-collapse: co=
llapse; vertical-align: top; text-align: left; width: 580px; font-family: Ar=
ial,Baskerville,monospace; margin: 0 auto; padding: 0;">
<tbody>
<tr style=3D"vertical-align: top; text-align: left; font-family: Arial,Basker=
ville,monospace; padding: 0;" align=3D"left">
<td style=3D"word-break: break-word; -webkit-hyphens: none; -moz-hyphens: non=
e; hyphens: none; border-collapse: collapse !important; vertical-align: top;=
text-align: left; color: #222222; font-family: Arial,Baskerville,monospace;=
font-weight: normal; line-height: 19px; font-size: 14px; margin: 0; padding=
: 0px 0px 10px;" align=3D"left" valign=3D"top">
<h1 class=3D"center" style=3D"text-align: center; color: #B8C128; font-family: =
Arial,Baskerville,monospace; font-weight: normal; line-height: 1.3; word-bre=
ak: normal; font-size: 40px; font-size-adjust: 0.5; margin: 0; padding: 0;" =
align=3D"center">
DSU Activities for Friday, February 22, 2019</h1>
<p class=3D"center" style=3D"text-align: center; color: #222222; font-family: A=
rial,Baskerville,monospace; font-weight: normal; line-height: 19px; font-siz=
e: 14px; margin: 0 0 10px; padding: 0;" align=3D"center">
<a href=3D"https://apps.dsu.edu/DSU-Activities/default.aspx?activities=3D02/22/=
2019" style=3D"color: #2ba6cb; text-decoration: none; font-family: Arial,Baske=
rville,monospace;">View in browser</a></p>
</td>
<td class=3D"expander" style=3D"word-break: break-word; -webkit-hyphens: none; =
-moz-hyphens: none; hyphens: none; border-collapse: collapse !important; ver=
tical-align: top; text-align: left; visibility: hidden; width: 0px; color: #=
222222; font-family: Arial,Baskerville,monospace; font-weight: normal; line-=
height: 19px; font-size: 14px; margin: 0; padding: 0;" align=3D"left" valign=3D"=
top">
</td>
</tr>
</tbody>
</table>
</td>
</tr>
</tbody>
</table>
</td>
</tr>
</tbody>
</table>
<!-- Table of Contents -->
<table class=3D"container" style=3D"border-spacing: 0; border-collapse: collaps=
e; vertical-align: top; text-align: inherit; width: 580px; font-family: Aria=
l,Baskerville,monospace; margin: 0 auto; padding: 0;">
<tbody>
<tr style=3D"vertical-align: top; text-align: left; font-family: Arial,Basker=
ville,monospace; padding: 0;" align=3D"left">
<td style=3D"word-break: break-word; -webkit-hyphens: none; -moz-hyphens: non=
e; hyphens: none; border-collapse: collapse !important; vertical-align: top;=
text-align: left; color: #222222; font-family: Arial,Baskerville,monospace;=
font-weight: normal; line-height: 19px; font-size: 14px; margin: 0; padding=
: 0;" align=3D"left" valign=3D"top">
<table class=3D"row" style=3D"border-spacing: 0; border-collapse: collapse; ver=
tical-align: top; text-align: left; width: 100%; position: relative; display=
: block; font-family: Arial,Baskerville,monospace; padding: 0px;">
<tbody>
<tr style=3D"vertical-align: top; text-align: left; font-family: Arial,Basker=
ville,monospace; padding: 0;" align=3D"left">
<td class=3D"wrapper last" style=3D"word-break: break-word; -webkit-hyphens: no=
ne; -moz-hyphens: none; hyphens: none; border-collapse: collapse !important;=
vertical-align: top; text-align: left; position: relative; color: #222222; =
font-family: Arial,Baskerville,monospace; font-weight: normal; line-height: =
19px; font-size: 14px; margin: 0; padding: 10px 0px 0px;" align=3D"left" valig=
n=3D"top">
<table class=3D"twelve columns" style=3D"border-spacing: 0; border-collapse: co=
llapse; vertical-align: top; text-align: left; width: 580px; font-family: Ar=
ial,Baskerville,monospace; margin: 0 auto; padding: 0;">
<tbody>
<tr style=3D"vertical-align: top; text-align: left; font-family: Arial,Basker=
ville,monospace; padding: 0;" align=3D"left">
<td class=3D"panel toc" style=3D"word-break: break-word; -webkit-hyphens: none;=
-moz-hyphens: none; hyphens: none; border-collapse: collapse !important; ve=
rtical-align: top; text-align: left; color: #222222; font-family: Arial,Bask=
erville,monospace; font-weight: normal; line-height: 19px; font-size: 14px; =
background: #F4EEC8; margin: 0; padding: 10px; border: 1px solid #d9d9d9;" a=
lign=3D"left" bgcolor=3D"#F4EEC8" valign=3D"top">
<h1 style=3D"color: #002D56; font-family: Arial,Baskerville,monospace; font-w=
eight: normal; text-align: left; line-height: 1.3; word-break: normal; font-=
size: 40px; font-size-adjust: 0.3; margin: 0px 0 0; padding: 0;" align=3D"left=
">
Events</h1>
<ul style=3D"font-family: Arial,Baskerville,monospace; margin-top: 0;">
<li style=3D"font-family: Arial,Baskerville,monospace;">FCA Huddle </li><li s=
tyle=3D"font-family: Arial,Baskerville,monospace;">Ping Pong</li><li style=3D"fo=
nt-family: Arial,Baskerville,monospace;">Frankenstein</li><li style=3D"font-fa=