-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
1079 lines (1015 loc) · 69.2 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
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>
<html lang="en" class="dcf-no-js dcf-no-webp">
<head>
<meta charset="utf-8">
<meta http-equiv="x-ua-compatible" content="ie=edge">
<meta name="viewport" content="width=device-width, initial-scale=1, viewport-fit=cover">
<title>Santiago Giraldo | Nebraska</title>
<link rel="stylesheet" href="css/main.css">
<link rel="stylesheet" href="css/print.css" media="print">
<script
src="https://polyfill.io/v3/polyfill.min.js?flags=gated&features=Element.prototype.classList%2CCustomEvent%2CNodeList.prototype.forEach%2CArray.prototype.map%2CArray.prototype.find%2Cdefault%2CArray.prototype.filter%2CElement.prototype.matches"></script>
<script src="js/vendor/bodyScrollLock.min.js"></script>
<script src="js/vendor/require.js"></script>
<script src="js/vendor/ofi.min.js"></script>
<link rel="preload" href="https://unlcms.unl.edu/wdn/templates_5.3/css/critical.css?dep=5.3.9" as="style">
<!-- InstanceBeginEditable name="doctitle" -->
<title>Santiago Giraldo | Nebraska</title>
<!-- InstanceEndEditable -->
<link rel="preload" href="https://unlcms.unl.edu/wdn/templates_5.3/css/critical.css?dep=5.3.10" as="style">
<link id="unl-css-critical" rel="stylesheet"
href="https://unlcms.unl.edu/wdn/templates_5.3/css/critical.css?dep=5.3.10">
<link id="unl-css-main" rel="preload" href="https://unlcms.unl.edu/wdn/templates_5.3/css/main.css?dep=5.3.10"
as="style" onload="this.onload=null;this.rel='stylesheet';">
<link rel="preload" href="https://unlcms.unl.edu/wdn/templates_5.3/fonts/liberator/liberator-heavyitalic.woff2"
as="font" type="font/woff2" crossorigin>
<link rel="preload" href="https://cloud.typography.com/7717652/7106412/css/fonts.css" as="style"
onload="this.onload=null;this.rel='stylesheet'">
<noscript>
<link rel="stylesheet" href="https://unlcms.unl.edu/wdn/templates_5.3/css/main.css?dep=5.3.10">
<link rel="stylesheet" href="https://cloud.typography.com/7717652/7106412/css/fonts.css">
</noscript>
<style>
@charset "UTF-8";
@font-face {
font-family: 'liberatorheavy_italic';
src: url('https://unlcms.unl.edu/wdn/templates_5.3/fonts/liberator/liberator-heavyitalic.woff2') format('woff2'), url('https://unlcms.unl.edu/wdn/templates_5.3/fonts/liberator/liberator-heavyitalic.woff') format('woff');
font-display: swap
}
.unl h1.unl-font-display,
.unl h2.unl-font-display,
.unl h3.unl-font-display,
.unl h4.unl-font-display,
.unl h5.unl-font-display,
.unl h6.unl-font-display,
.unl-font-display {
font-family: 'Arial Narrow', sans-serif;
font-style: italic;
letter-spacing: 0;
margin-left: 0;
text-transform: uppercase
}
.unl-fonts-loaded .unl h1.unl-font-display,
.unl-fonts-loaded .unl h2.unl-font-display,
.unl-fonts-loaded .unl h3.unl-font-display,
.unl-fonts-loaded .unl h4.unl-font-display,
.unl-fonts-loaded .unl h5.unl-font-display,
.unl-fonts-loaded .unl h6.unl-font-display,
.unl-fonts-loaded .unl-font-display {
font-family: 'liberatorheavy_italic', 'Arial Narrow', sans-serif;
font-style: normal;
font-weight: 600;
text-transform: none
}
</style>
<link rel="preload" href="https://ucommchat.unl.edu/assets/css?for=client&v=5" as="style">
<link rel="stylesheet" href="https://unlcms.unl.edu/wdn/templates_5.3/css/print.css?dep=5.3.10" media="print">
<script>
!function (t) {
"use strict";
t.loadCSS || (t.loadCSS = function () { });
var e = loadCSS.relpreload = {};
if (e.support = function () {
var e;
try {
e = t.document.createElement("link").relList.supports("preload")
} catch (t) {
e = !1
}
return function () {
return e
}
}(), e.bindMediaToggle = function (t) {
function e() {
t.media = a
}
var a = t.media || "all";
t.addEventListener ? t.addEventListener("load", e) : t.attachEvent && t.attachEvent("onload", e),
setTimeout(function () {
t.rel = "stylesheet",
t.media = "only x"
}),
setTimeout(e, 3e3)
}, e.poly = function () {
if (!e.support())
for (var a = t.document.getElementsByTagName("link"), n = 0; n < a.length; n++) {
var o = a[n];
"preload" !== o.rel || "style" !== o.getAttribute("as") || o.getAttribute("data-loadcss") || (o.setAttribute("data-loadcss", !0), e.bindMediaToggle(o))
}
}, !e.support()) {
e.poly();
var a = t.setInterval(e.poly, 500);
t.addEventListener ? t.addEventListener("load", function () {
e.poly(),
t.clearInterval(a)
}) : t.attachEvent && t.attachEvent("onload", function () {
e.poly(),
t.clearInterval(a)
})
}
"undefined" != typeof exports ? exports.loadCSS = loadCSS : t.loadCSS = loadCSS
}("undefined" != typeof global ? global : this);
function onloadCSS(n, a) {
function t() {
!d && a && (d = !0, a.call(n))
}
var d;
n.addEventListener && n.addEventListener("load", t),
n.attachEvent && n.attachEvent("onload", t),
"isApplicationInstalled" in navigator && "onloadcssdefined" in n && n.onloadcssdefined(t)
}
!function () {
var e = function () {
var e = document.getElementById("unl-css-critical");
e.parentNode.removeChild(e)
},
n = document.getElementById("unl-css-main");
onloadCSS(n, function () {
e()
})
}();
</script>
<script>
(function () {
'use strict';
if (sessionStorage.fontsLoadedCriticalFoftPreloadFallback) {
document.documentElement.className += ' unl-fonts-loaded';
return
} else if ('fonts' in document) {
document.fonts.load('600 1em liberatorheavy_italic').then(function () {
document.documentElement.className += ' unl-fonts-loaded';
sessionStorage.fontsLoadedCriticalFoftPreloadFallback = true
})
} else {
var ref = document.getElementsByTagName('script')[0];
var script = document.createElement('script');
script.src = 'https://unlcms.unl.edu/wdn/templates_5.3/js/compressed/utility-scripts/critical-foft-preload-fallback-optional.js';
script.async = true;
ref.parentNode.insertBefore(script, ref)
}
})();
</script>
<link rel="icon" href="https://unlcms.unl.edu/wdn/templates_5.3/includes/global/favicon/favicon.ico" sizes="any">
<link rel="icon" href="https://unlcms.unl.edu/wdn/templates_5.3/includes/global/favicon/icon.svg"
type="image/svg+xml">
<link rel="apple-touch-icon"
href="https://unlcms.unl.edu/wdn/templates_5.3/includes/global/favicon/apple-touch-icon.png">
<link rel="manifest" href="https://unlcms.unl.edu/wdn/templates_5.3/includes/global/favicon/manifest.webmanifest">
<meta name="theme-color" content="#d00000">
<!-- Google Tag Manager -->
<script>
(function (w, d, s, l, i) {
w[l] = w[l] || [];
w[l].push({
'gtm.start':
new Date().getTime(),
event: 'gtm.js'
});
var f = d.getElementsByTagName(s)[0],
j = d.createElement(s),
dl = l != 'dataLayer' ? '&l=' + l : '';
j.async = true;
j.src =
'https://www.googletagmanager.com/gtm.js?id=' + i + dl;
f.parentNode.insertBefore(j, f);
})(window, document, 'script', 'dataLayer', 'GTM-WKHNC39');
</script>
<!-- End Google Tag Manager -->
<!-- InstanceBeginEditable name="head" -->
<link rel="preload" href="https://unlcms.unl.edu/wdn/templates_5.3/css/deprecated.css" as="style"
onload="this.onload=null;this.rel='stylesheet'">
<noscript>
<link rel="stylesheet" href="https://unlcms.unl.edu/wdn/templates_5.3/css/deprecated.css">
</noscript>
<meta name="Generator" content="Drupal 7 (http://drupal.org)" />
<link type="text/css" rel="stylesheet" href="css/css_FFMDRYZ2nSV6HGDyDVpm9-yNY8H0IkhZ90k-a2N9jFE.css" media="all" />
<link type="text/css" rel="stylesheet" href="css/css_HKPS2hyr3ldyD7n7i6gbOEC3-27sdSSODaRDJPP6My4.css" media="all" />
<link type="text/css" rel="stylesheet" href="css/css_PGbJgHCUCBf4dg7K9Kt8aAwsApndP4GZ9RuToPy3-Fk.css" media="all" />
<link type="text/css" rel="stylesheet" href="css/css_seZrU1E1iCjr2lLl26Hj4h-Xf7VbhDSMsMfZIGXqXnQ.css" media="all" />
<script type="text/javascript" src="js/js_yMSKTzBO0KmozyLwajzFOrrt_kto_9mtccAkb0rm7gc.js"></script>
<script type="text/javascript" src="js/js_MXfVPoILixPqZoxiW4-INyUSinmjGcyaFKcWxE5klJw.js"></script>
<script type="text/javascript">
////--><![CDATA[//><!--
jQuery.extend(Drupal.settings, {
"basePath": "\/",
"pathPrefix": "",
"ajaxPageState": {
"theme": "unl_five",
"theme_token": "43AfM93vT49OzrUG4IW5ypDjW_fTjw5yIIc7fyZJskE",
"js": {
"0": 1,
"misc\/jquery.js": 1,
"misc\/jquery-extend-3.4.0.js": 1,
"misc\/jquery-html-prefilter-3.5.0-backport.js": 1,
"misc\/jquery.once.js": 1,
"misc\/drupal.js": 1,
"sites\/all\/modules\/unl\/unl.js": 1
},
"css": {
"modules\/system\/system.base.css": 1,
"modules\/system\/system.menus.css": 1,
"modules\/system\/system.messages.css": 1,
"modules\/book\/book.css": 1,
"modules\/field\/theme\/field.css": 1,
"modules\/node\/node.css": 1,
"modules\/user\/user.css": 1,
"sites\/all\/modules\/views\/css\/views.css": 1,
"sites\/all\/modules\/ctools\/css\/ctools.css": 1,
"sites\/all\/themes\/unl_five\/css\/style.css": 1,
"sites\/all\/themes\/unl_five\/css\/book-overrides.css": 1,
"sites\/all\/themes\/unl_five\/css\/menu-block.css": 1,
"sites\/all\/themes\/unl_five\/css\/views.css": 1,
"sites\/all\/themes\/unl_five\/css\/unlform.css": 1
}
},
"unl": {
"use_base_tag": true
}
});
//--><!]]>
</script>
<!-- InstanceEndEditable -->
<!-- Pasted Begin-->
</head>
<body class="unl html front not-logged-in no-sidebars page-node page-node- page-node-1 node-type-page"
data-version="5.3">
<!-- Google Tag Manager (noscript) -->
<noscript>
<iframe src="https://www.googletagmanager.com/ns.html?id=GTM-WKHNC39" height="0" width="0"
style="display:none;visibility:hidden" title="noscript tracking pixel"></iframe>
</noscript>
<!-- End Google Tag Manager (noscript) -->
<div class="dcf-absolute dcf-pin-top dcf-pin-left dcf-mt-1 dcf-ml-1 dcf-z-1" id="dcf-skip-nav">
<a class="dcf-show-on-focus dcf-btn dcf-btn-primary" href="#dcf-main">Skip to main content</a>
</div>
<div id="page-top" class="region region-page-top page-top"></div>
<header class="dcf-header" id="dcf-header" role="banner">
<script>
// WDN Notice Banner Display
function displayWDNNoticeBanner() {
var bannerEnabled = true;
if (bannerEnabled) {
var messageContent = false;
var messageSessionKey = 'wndNoticeMessage';
var sessionContent = sessionStorage.getItem(messageSessionKey);
// clear saved message every five minutes
setInterval(function () {
sessionStorage.removeItem(messageSessionKey);
}, 300000);
if (sessionContent) {
messageContent = sessionContent;
displayWDNNoticeBannerMessage(messageContent);
} else {
var xhr = new XMLHttpRequest();
var bannerContentURL = 'https://its-unl-cms-prd-s3.s3.amazonaws.com/wdn-message.html';
xhr.open('GET', bannerContentURL);
xhr.send(null);
xhr.onload = function (e) {
if (xhr.status === 200) {
messageContent = xhr.responseText;
sessionStorage.setItem(messageSessionKey, messageContent);
displayWDNNoticeBannerMessage(messageContent);
}
}
}
}
function displayWDNNoticeBannerMessage(messageContent) {
if (messageContent) {
var skipNav = document.getElementById('dcf-skip-nav');
var banner = document.createElement('div');
banner.setAttribute('role', 'navigation');
banner.classList.add('dcf-d-none@print');
banner.innerHTML = messageContent;
if (skipNav) {
skipNav.parentNode.insertBefore(banner, skipNav.nextSibling);
} else {
document.body.prepend(banner);
}
}
}
}
displayWDNNoticeBanner();
</script>
<div
class="dcf-header-global dcf-wrapper dcf-d-flex dcf-flex-row dcf-flex-nowrap dcf-ai-center dcf-jc-between dcf-relative dcf-bt-solid dcf-bt-3 unl-bt-scarlet">
<a class="dcf-institution-title dcf-flex-shrink-0 dcf-pt-3 dcf-pb-3 dcf-txt-xs unl-ls-3"
id="dcf-institution-title" href="https://www.unl.edu/">
<span class="dcf-uppercase unl-font-serif-ltd-caps">University</span>
<span class="dcf-italic unl-font-serif-ltd-italic">of</span>
<span class="unl-institution-title-ls"></span>
<span class="dcf-uppercase unl-font-serif-ltd-caps">Nebraska–Lincoln</span>
</a>
<ul
class="dcf-list-bare dcf-cta dcf-cta-header dcf-header-global-item dcf-jc-flex-end dcf-mb-0 dcf-txt-2xs dcf-d-none@print">
<li class="dcf-relative dcf-mb-0">
<a class="dcf-link-cta dcf-pt-4 dcf-pr-5 dcf-pb-4 dcf-pl-5" href="https://www.unl.edu/visitor/">Visit</a>
<button class="dcf-btn-toggle-cta dcf-pt-4 dcf-pb-4 dcf-bg-transparent dcf-b-0" id="dcf-visit-toggle"
aria-pressed="false" aria-haspopup="true" aria-controls="dcf-visit-options" hidden>Visit</button>
<ul class="dcf-list-cta dcf-list-bare dcf-absolute dcf-mt-0 dcf-mb-0 dcf-p-6 dcf-bg-overlay-dark"
id="dcf-visit-options" aria-expanded="false" hidden>
<li class="dcf-mb-0">
<a href="https://www.unl.edu/visitor/">Visit the University of Nebraska-Lincoln</a>
</li>
</ul>
</li>
<li class="dcf-relative dcf-mb-0">
<a class="dcf-link-cta dcf-pt-4 dcf-pr-5 dcf-pb-4 dcf-pl-5" href="https://www.unl.edu/apply-now/">Apply</a>
<button class="dcf-btn-toggle-cta dcf-pt-4 dcf-pb-4 dcf-bg-transparent dcf-b-0" id="dcf-apply-toggle"
aria-pressed="false" aria-haspopup="true" aria-controls="dcf-apply-options" hidden>Apply</button>
<ul class="dcf-list-cta dcf-list-bare dcf-absolute dcf-mt-0 dcf-mb-0 dcf-p-6 dcf-bg-overlay-dark"
id="dcf-apply-options" aria-expanded="false" hidden>
<!-- InstanceBeginEditable name="headerapply" -->
<!-- InstanceEndEditable -->
<li class="dcf-mb-0">
<a href="https://www.unl.edu/apply-now/">Apply to the University of Nebraska-Lincoln</a>
</li>
</ul>
</li>
<li class="dcf-relative dcf-mb-0">
<a class="dcf-link-cta dcf-pt-4 dcf-pr-5 dcf-pb-4 dcf-pl-5" href="https://www.unl.edu/give/">Give</a>
<button class="dcf-btn-toggle-cta dcf-pt-4 dcf-pb-4 dcf-bg-transparent dcf-b-0" id="dcf-give-toggle"
aria-pressed="false" aria-haspopup="true" aria-controls="dcf-give-options" hidden>Give</button>
<ul class="dcf-list-cta dcf-list-bare dcf-absolute dcf-mt-0 dcf-mb-0 dcf-p-6 dcf-bg-overlay-dark"
id="dcf-give-options" aria-expanded="false" hidden>
<!-- InstanceBeginEditable name="headergive" -->
<!-- InstanceEndEditable -->
<li class="dcf-mb-0">
<a href="https://www.unl.edu/give/">Give to the University of Nebraska-Lincoln</a>
</li>
</ul>
</li>
</ul>
<div class="dcf-idm dcf-flex-grow-1 dcf-d-flex dcf-jc-flex-end dcf-h-100% dcf-w-min-0 dcf-d-none@print"
id="dcf-idm">
<div
class="dcf-idm-status-logged-out dcf-idm-toggle dcf-ai-center dcf-relative dcf-header-global-item dcf-w-min-0">
<a class="dcf-idm-login dcf-d-flex dcf-ai-center dcf-jc-center dcf-h-100% dcf-w-100%"
href="https://shib.unl.edu/idp/profile/cas/login?service=https%3A%2F%2Fwww.unl.edu%2F">
<svg class="dcf-idm-img dcf-txt-sm dcf-h-6 dcf-w-6 dcf-circle unl-bg-cream" aria-hidden="true"
focusable="false" height="16" width="16" viewBox="0 0 48 48">
<path
d="M47.9 24C47.9 10.8 37.2.1 24 .1S.1 10.8.1 24c0 6.3 2.5 12.3 6.9 16.8 4.5 4.6 10.6 7.1 17 7.1s12.5-2.5 17-7.1c4.5-4.5 6.9-10.5 6.9-16.8zm-45 0C2.9 12.4 12.4 2.9 24 2.9c11.6 0 21.1 9.5 21.1 21.1 0 5.2-1.9 10.1-5.3 14-2.1-1.2-5-2.2-8.2-3.4-.7-.3-1.5-.5-2.2-.8v-3.1c1.1-.7 2.6-2.4 2.9-5.7.8-.6 1.2-1.6 1.2-2.9 0-1.1-.4-2.1-1-2.7.5-1.6 1.3-4.2.7-6.5-.7-3-4.6-4-7.7-4-2.7 0-5.9.8-7.2 2.8-1.2 0-2 .5-2.4 1-1.6 1.7-.8 4.8-.3 6.6-.6.6-1 1.6-1 2.7 0 1.3.5 2.3 1.2 2.9.3 3.4 1.8 5 2.9 5.7v3.1c-.7.2-1.4.5-2 .7-3.1 1.1-6.2 2.2-8.4 3.5-3.5-3.7-5.4-8.7-5.4-13.9zm7.5 16.1c2-1 4.6-2 7.2-2.9 1-.4 2-.7 3-1.1.5-.2.9-.7.9-1.3v-4.9c0-.6-.4-1.1-.9-1.3-.1 0-2-.8-2-4.5 0-.7-.5-1.2-1.1-1.4-.1-.3-.1-.9 0-1.2.6-.1 1.1-.7 1.1-1.4 0-.3-.1-.6-.2-1.2-.9-3.2-.7-4-.4-4.3.1-.1.4-.1 1 0 .7.1 1.5-.3 1.6-1 .3-1 2.5-1.9 5-1.9s4.7.8 5 1.9c.4 1.7-.4 4.1-.7 5.2-.2.6-.3.9-.3 1.3 0 .7.5 1.2 1.1 1.4.1.3.1.9 0 1.2-.6.1-1.1.7-1.1 1.4 0 3.7-1.9 4.5-2 4.5-.6.2-1 .7-1 1.3v4.9c0 .6.4 1.1.9 1.3 1.1.4 2.1.8 3.2 1.2 2.7 1 5.2 1.9 7.1 2.8-3.8 3.3-8.6 5-13.7 5-5.2 0-9.9-1.8-13.7-5z" />
</svg>
<span class="dcf-idm-label dcf-mr-3 dcf-txt-2xs">Log In</span>
</a>
</div>
<div
class="dcf-idm-status-logged-in dcf-idm-toggle dcf-ai-center dcf-relative dcf-header-global-item dcf-w-min-0">
</div>
</div>
<div
class="dcf-search dcf-header-global-item dcf-flex-grow-1 dcf-d-flex dcf-jc-flex-end dcf-modal-parent dcf-d-none@print"
id="dcf-search" role="search">
<div class="dcf-search-toggle-wrapper dcf-ai-center dcf-w-100%">
<a class="dcf-nav-toggle-btn dcf-nav-toggle-btn-search dcf-search-toggle dcf-d-flex dcf-ai-center dcf-jc-between dcf-w-100% dcf-p-0 dcf-rounded dcf-txt-2xs dcf-bg-transparent dcf-b-1 dcf-b-solid unl-b-scarlet unl-scarlet"
id="dcf-search-toggle-link" href="https://search.unl.edu/">
<span class="dcf-search-toggle-label dcf-flex-grow-1 dcf-txt-left">Search</span>
<span class="dcf-d-flex dcf-ai-center dcf-jc-center dcf-w-8 dcf-pt-3 dcf-pb-3 unl-bg-scarlet unl-cream">
<svg class="dcf-h-4 dcf-w-4 dcf-fill-current" aria-hidden="true" focusable="false" height="16" width="16"
viewBox="0 0 48 48">
<path
d="M18 36a17.9 17.9 0 0 0 11.27-4l15.31 15.41a2 2 0 0 0 2.84-2.82L32.08 29.18A18 18 0 1 0 18 36zm0-32A14 14 0 1 1 4 18 14 14 0 0 1 18 4z">
</path>
</svg>
</span>
</a>
<button
class="dcf-search-toggle-button dcf-btn-toggle-modal dcf-nav-toggle-btn dcf-nav-toggle-btn-search dcf-search-toggle dcf-d-flex dcf-ai-center dcf-jc-between dcf-w-100% dcf-p-0 dcf-rounded dcf-txt-2xs dcf-bg-transparent dcf-b-1 dcf-b-solid unl-b-scarlet unl-scarlet"
data-toggles-modal="dcf-search-results" type="button" hidden></button>
</div>
<div class="dcf-modal dcf-fixed dcf-pin-top dcf-pin-left" id="dcf-search-results" hidden>
<div
class="dcf-modal-wrapper dcf-bg-overlay-light dcf-h-max-100vh dcf-overflow-y-auto dcf-d-flex dcf-flex-col dcf-flex-nowrap dcf-h-100% dcf-w-100%">
<div
class="dcf-modal-header dcf-bleed dcf-bg-center dcf-bg-no-repeat dcf-bg-cover unl-bg-scarlet unl-search-bg">
<h2 class="dcf-sr-only">Search Form</h2>
<form class="dcf-wrapper dcf-form dcf-search-form dcf-d-flex dcf-ai-center dcf-pt-8 dcf-pb-8"
id="dcf-search-form" role="search" aria-label="Site" action="https://search.unl.edu/" method="get">
<label class="dcf-label dcf-mr-4 dcf-mb-0 unl-cream" for="dcf-search_query">Search</label>
<div class="dcf-input-group">
<input class="dcf-input-text dcf-search-input dcf-bg-transparent unl-cream unl-b-cream"
id="dcf-search_query" name="q" type="search" required>
<button class="dcf-btn dcf-btn-inverse-primary" type="submit">
<svg class="dcf-d-block dcf-h-5 dcf-w-5 dcf-fill-current" aria-hidden="true" focusable="false"
height="16" width="16" viewBox="0 0 48 48">
<path
d="M18 36a17.9 17.9 0 0 0 11.27-4l15.31 15.41a2 2 0 0 0 2.84-2.82L32.08 29.18A18 18 0 1 0 18 36zm0-32A14 14 0 1 1 4 18 14 14 0 0 1 18 4z">
</path>
</svg>
<span class="dcf-sr-only">Submit</span>
</button>
</div>
</form>
<button
class="dcf-btn-close-modal dcf-btn dcf-btn-inverse-tertiary dcf-absolute dcf-pin-top dcf-pin-right dcf-z-1 dcf-lh-1">Close</button>
</div>
<div class="dcf-modal-content dcf-bleed dcf-h-100% dcf-w-100% dcf-overflow-y-auto">
<div class="dcf-h-100% dcf-w-100% dcf-overflow-y-auto">
<div class="dcf-search-results-wrapper dcf-h-100% dcf-w-100%" id="dcf-search-results-wrapper"></div>
<!-- end Search Results Wrapper -->
</div>
</div>
</div>
</div>
</div>
</div>
<div class="dcf-logo-lockup dcf-wrapper dcf-d-flex dcf-ai-flex-end dcf-relative dcf-overflow-hidden"
id="dcf-logo-lockup">
<a class="dcf-header-logo dcf-mr-4 dcf-flex-shrink-0" id="dcf-header-logo" href="https://www.unl.edu/"
aria-label="Go to University of Nebraska-Lincoln home page">
<svg class="dcf-d-block dcf-h-8 dcf-w-8" focusable="false" height="76" width="76" viewBox="0 0 152 152">
<defs>
<style>
#n153,
#n57 {
display: none;
}
@media (min-width: 56px) {
#n45 {
display: none;
}
#n57 {
display: block;
}
}
@media (min-width: 152px) {
#n57 {
display: none;
}
#n153 {
display: block;
}
}
</style>
</defs>
<g id="n153">
<path
d="M147,1H90V42h10V75.673L53.532,2.393,52.648,1H2V42H12v66H2v41H62V108H52V74.336l46.467,73.271L99.351,149H150V108H140V42h10V1ZM59,111v35H5V111H15V39H5V4H51l52,82V39H93V4h54V39H137v72h10v35H101L49,64v47Z"
fill="#fefdfa"></path>
<path
d="M147,0H88V45H98V69.8L55.2,2.3,53.8,0H0V45H10v62H0v45H64V107H54V82.2l42.8,67.5,1.5,2.3H152V107H142V45h10V0Zm3,5V43H140v66h10v41H99.4l-.9-1.4L52,75.3V109H62v41H2V109H12V43H2V2H52.6l.9,1.4L100,76.7V43H90V2h60ZM103,87,51,5H5V40H15v72H5v35H59V112H49V65l52,82h46V112H137V40h10V5H93V40h10Z"
fill="#d00000"></path>
</g>
<g id="n57">
<path
d="M89.571,2.714V43.429h10.857V76L51.571,2.714H2.714V43.429H13.571v65.143H2.714v40.714H62.429V108.571H51.571V76l47.5,73.286h50.214V108.571H138.429V43.429h10.857V2.714ZM59.714,111.286v35.286H5.429V111.286H16.286V40.714H5.429V5.429H50.214l52.929,81.429V40.714H92.286V5.429h54.286V40.714H135.714v70.571h10.857v35.286H100.429L48.857,65.143v46.143Z"
fill="#fefdfa"></path>
<path
d="M147.006,0H86.857V46.143H97.714V67.857L54.286,0H0V46.143H10.857v59.714H0V152H65.143V105.857H54.286V84.143L97.714,152H152V105.857H141.143V46.143H152V0Zm2.28,43.429H138.429v65.143h10.857v40.714H99.071L51.571,76v32.571H62.429v40.714H2.714V108.571H13.571V43.429H2.714V2.714H51.571L100.429,76V43.429H89.571V2.714h59.714ZM103.143,86.857,50.214,5.429H5.429V40.714H16.286v70.571H5.429v35.286H59.714V111.286H48.857V65.143l51.571,81.429h46.143V111.286H135.714V40.714h10.857V5.429H92.286V40.714h10.857Z"
fill="#d00000"></path>
</g>
<g id="n45">
<path
d="M89.818,3.455v38h10.364V76L53.545,3.455H3.455v38H13.818v69.091H3.455v38H62.182v-38H51.818V76l46.636,72.545h50.091v-38H138.182V41.455h10.364v-38ZM58.727,114v31.091H6.909V114H17.273V38H6.909V6.909H51.818l51.818,79.455V38H93.273V6.909h51.818V38H134.727v76h10.364v31.091H100.182L48.364,65.636V114Z"
fill="#fefdfa"></path>
<path
d="M147.008,0H86.364V44.909H96.727V65.636L55.273,0H0V44.909H10.364v62.182H0V152H65.636V107.091H55.273V86.364L96.727,152H152V107.091H141.636V44.909H152V0Zm1.537,41.455H138.182v69.091h10.364v38H98.455L51.818,76v34.545H62.182v38H3.455v-38H13.818V41.455H3.455v-38H53.545L100.182,76V41.455H89.818v-38h58.727ZM103.636,86.364,51.818,6.909H6.909V38H17.273v76H6.909v31.091H58.727V114H48.364V65.636l51.818,79.455h44.909V114H134.727V38h10.364V6.909H93.273V38h10.364Z"
fill="#d00000"></path>
</g>
</svg>
</a>
<div class="dcf-site-group dcf-d-flex dcf-flex-col dcf-jc-center">
<div class="dcf-site-affiliation dcf-lh-3 dcf-txt-2xs" id="dcf-site-affiliation">
<!-- InstanceBeginEditable name="affiliation" -->
<!-- InstanceEndEditable -->
</div>
<div class="dcf-site-title dcf-bold dcf-lh-2 dcf-uppercase unl-ls-1" id="dcf-site-title">
<!-- InstanceBeginEditable name="titlegraphic" -->
<a class="dcf-txt-h5" href="/">Santiago Giraldo</a>
<!-- InstanceEndEditable -->
</div>
</div>
</div>
<div id="dcf-nav-toggle-group"
class="dcf-nav-toggle-group dcf-pin-bottom dcf-fixed dcf-w-100% dcf-bt-solid dcf-bt-2 unl-bt-scarlet unl-bg-cream hrjs dcf-d-none@print">
<button
class="dcf-nav-toggle-btn dcf-nav-toggle-btn-menu dcf-d-flex dcf-flex-col dcf-ai-center dcf-flex-grow-1 dcf-jc-center dcf-h-9 dcf-p-0 dcf-b-0 dcf-bg-transparent unl-scarlet"
id="dcf-mobile-toggle-menu" aria-haspopup="true" aria-expanded="false" aria-label="Open menu">
<svg class="dcf-txt-sm dcf-h-6 dcf-w-6 dcf-fill-current" aria-hidden="true" focusable="false" width="16"
height="16" viewBox="0 0 24 24">
<g id="dcf-nav-toggle-icon-open-menu" class="">
<path
d="M23.5 12.5H.5c-.3 0-.5-.2-.5-.5s.2-.5.5-.5h23c.3 0 .5.2.5.5s-.2.5-.5.5zM23.5 4.5H.5C.2 4.5 0 4.3 0 4s.2-.5.5-.5h23c.3 0 .5.2.5.5s-.2.5-.5.5zM23.5 20.5H.5c-.3 0-.5-.2-.5-.5s.2-.5.5-.5h23c.3 0 .5.2.5.5s-.2.5-.5.5z">
</path>
</g>
<g id="dcf-nav-toggle-icon-close-menu" class="dcf-d-none">
<path d="M20.5 4.2L4.2 20.5c-.2.2-.5.2-.7 0-.2-.2-.2-.5 0-.7L19.8 3.5c.2-.2.5-.2.7 0 .2.2.2.5 0 .7z"></path>
<path d="M3.5 4.2l16.3 16.3c.2.2.5.2.7 0s.2-.5 0-.7L4.2 3.5c-.2-.2-.5-.2-.7 0-.2.2-.2.5 0 .7z"></path>
</g>
</svg>
<span class="dcf-nav-toggle-label-menu dcf-mt-1 dcf-txt-2xs">Menu</span>
</button>
<a class="dcf-nav-toggle-btn dcf-nav-toggle-btn-search dcf-d-flex dcf-flex-col dcf-ai-center dcf-jc-center dcf-flex-grow-1 dcf-h-9 dcf-p-0 dcf-b-0 dcf-bg-transparent unl-scarlet"
id="dcf-mobile-search-link" href="https://search.unl.edu/" aria-label="Open search">
<svg class="dcf-txt-sm dcf-h-6 dcf-w-6 dcf-fill-current" aria-hidden="true" focusable="false" height="16"
width="16" viewBox="0 0 24 24">
<g class="dcf-nav-toggle-icon-open">
<path
d="M22.5 21.8L15 14.3c1.2-1.4 2-3.3 2-5.3 0-4.4-3.6-8-8-8S1 4.6 1 9s3.6 8 8 8c2 0 3.9-.8 5.3-2l7.5 7.5c.2.2.5.2.7 0 .2-.2.2-.5 0-.7zM9 16c-3.9 0-7-3.1-7-7s3.1-7 7-7 7 3.1 7 7-3.1 7-7 7z">
</path>
</g>
<g class="dcf-nav-toggle-icon-close dcf-d-none">
<path d="M20.5 4.2L4.2 20.5c-.2.2-.5.2-.7 0-.2-.2-.2-.5 0-.7L19.8 3.5c.2-.2.5-.2.7 0 .2.2.2.5 0 .7z"></path>
<path d="M3.5 4.2l16.3 16.3c.2.2.5.2.7 0s.2-.5 0-.7L4.2 3.5c-.2-.2-.5-.2-.7 0-.2.2-.2.5 0 .7z"></path>
</g>
</svg>
<span class="dcf-nav-toggle-label dcf-mt-1 dcf-txt-2xs">Search</span>
</a>
<button
class="dcf-mobile-search-button dcf-nav-toggle-btn dcf-btn-toggle-modal dcf-d-flex dcf-flex-col dcf-ai-center dcf-jc-center dcf-flex-grow-1 dcf-h-9 dcf-p-0 dcf-b-0 dcf-bg-transparent unl-scarlet"
data-toggles-modal="dcf-search-results" data-with-nav-toggle-group="true" data-nav-toggle-label-open="Search"
data-nav-toggle-label-closed="Close" type="button" hidden></button>
<div
class="dcf-nav-toggle-btn dcf-nav-toggle-btn-idm dcf-idm dcf-d-flex dcf-flex-col dcf-ai-center dcf-jc-center dcf-flex-grow-1 dcf-h-9">
<div class="dcf-idm-status-logged-out dcf-h-100% dcf-w-100%">
<a class="dcf-d-flex dcf-flex-col dcf-ai-center dcf-jc-center dcf-h-100% dcf-w-100%"
href="https://shib.unl.edu/idp/profile/cas/login?service=https%3A%2F%2Fwww.unl.edu%2F">
<svg class="dcf-txt-sm dcf-h-6 dcf-w-6 dcf-fill-current" aria-hidden="true" focusable="false" height="16"
width="16" viewBox="0 0 24 24">
<path
d="M12 0C5.4 0 0 5.4 0 12c0 6.2 5 12 12 12 3.2 0 6.3-1.3 8.5-3.6S24 15.1 24 12c0-6.6-5.4-12-12-12zM4.7 20.2c1-.6 2.5-1.1 4-1.6l1.5-.6c.2-.1.3-.3.3-.5V15c0-.2-.1-.4-.3-.5 0 0-1.2-.5-1.2-2.5 0-.3-.2-.5-.5-.5 0 0-.1-.2-.1-.5s.1-.5.1-.5c.3 0 .5-.2.5-.5 0-.1 0-.3-.1-.5-.2-.5-.6-2-.2-2.4.1-.2.5-.2.7-.1.3 0 .5-.1.6-.4.2-.6 1.3-1.1 2.8-1.1s2.6.5 2.8 1.1c.2.9-.2 2.2-.4 2.8-.2.3-.2.5-.2.6 0 .3.2.5.5.5 0 0 .1.2.1.5s-.1.5-.1.5c-.3 0-.5.2-.5.5 0 2.1-1.1 2.5-1.2 2.5-.2.1-.3.3-.3.5v2.5c0 .2.1.4.3.5.5.2 1.1.4 1.6.6 1.5.5 2.9 1.1 3.9 1.6-2 1.8-4.5 2.8-7.3 2.8-2.7 0-5.3-1-7.3-2.8zm15.4-.8c-1-.6-2.6-1.2-4.3-1.8-.4-.2-.8-.3-1.3-.5v-1.8c.5-.3 1.4-1.1 1.5-2.9.4-.2.6-.7.6-1.4 0-.6-.2-1-.5-1.3.2-.8.7-2.1.4-3.3-.3-1.4-2.2-1.9-3.7-1.9-1.3 0-3 .4-3.6 1.5-.5-.1-.9.1-1.2.4-.8.8-.3 2.4-.1 3.3-.3.2-.5.7-.5 1.3 0 .6.2 1.1.6 1.4.1 1.8 1 2.6 1.5 2.9v1.8c-.4.1-.8.3-1.2.4-1.6.6-3.3 1.2-4.4 1.9C2 17.4 1 14.8 1 12 1 5.9 5.9 1 12 1s11 4.9 11 11c0 2.8-1 5.4-2.9 7.4z">
</path>
</svg>
<span class="dcf-mt-1 dcf-txt-2xs">Log In</span>
</a>
</div>
<div class="dcf-idm-status-logged-in dcf-relative dcf-h-100% dcf-w-100%" hidden></div>
</div>
</div>
<nav class="dcf-nav-menu dcf-modal-parent dcf-d-none@print" id="dcf-navigation" role="navigation"
aria-label="Primary">
<button
class="dcf-nav-toggle-btn dcf-nav-toggle-btn-menu dcf-flex-shrink-0 dcf-ai-center dcf-w-9 dcf-p-0 dcf-b-0 dcf-bg-transparent dcf-txt-xs unl-cream"
id="dcf-menu-toggle" hidden>
<svg class="dcf-h-5 dcf-w-5 dcf-fill-current" aria-hidden="true" focusable="false" width="16" height="16"
viewBox="0 0 48 48">
<g>
<path
d="M45.5 22.5h-43c-.8 0-1.5.7-1.5 1.5s.7 1.5 1.5 1.5h43c.8 0 1.5-.7 1.5-1.5s-.7-1.5-1.5-1.5zM45.5 7.5h-43C1.7 7.5 1 8.2 1 9s.7 1.5 1.5 1.5h43c.8 0 1.5-.7 1.5-1.5s-.7-1.5-1.5-1.5zM45.5 37.5h-43c-.8 0-1.5.7-1.5 1.5s.7 1.5 1.5 1.5h43c.8 0 1.5-.7 1.5-1.5s-.7-1.5-1.5-1.5z" />
</g>
<g class="dcf-d-none">
<path
d="M38.1 7.7L7.7 38.1c-.6.6-.6 1.5 0 2.1.6.6 1.5.6 2.1 0L40.3 9.9c.6-.6.6-1.5 0-2.1-.6-.6-1.6-.6-2.2-.1z" />
<path
d="M7.7 7.7c-.6.6-.6 1.5 0 2.1l30.4 30.4c.6.6 1.5.6 2.1 0 .6-.6.6-1.5 0-2.1L9.9 7.7c-.6-.5-1.6-.5-2.2 0z" />
</g>
</svg>
</button>
<div id="dcf-nav-menu-child" class="dcf-nav-menu-child dcf-nav-local dcf-w-100%">
<ul>
<li class="first leaf">
<a href="/" class="active">Home</a>
<li class="expanded"><a href="/resume">My Resume</a>
</ul>
<ul
class="dcf-list-bare dcf-cta dcf-cta-nav dcf-header-global-item dcf-mt-6 dcf-pt-5 dcf-bt-1 dcf-bt-solid unl-bt-cream">
<li class="dcf-relative dcf-mb-0">
<div class="dcf-mb-4 dcf-uppercase dcf-txt-xs dcf-bold unl-ls-2 unl-cream">Visit</div>
<ul class="dcf-list-cta dcf-list-bare dcf-mt-0">
<!-- InstanceBeginEditable name="navvisit" -->
<!-- InstanceEndEditable -->
<li class="dcf-mb-0">
<a href="https://www.unl.edu/visitor/">Visit the University of Nebraska-Lincoln</a>
</li>
</ul>
</li>
<li class="dcf-relative dcf-mb-0">
<div class="dcf-mb-4 dcf-uppercase dcf-txt-xs dcf-bold unl-ls-2 unl-cream">Apply</div>
<ul class="dcf-list-cta dcf-list-bare dcf-mt-0">
<!-- InstanceBeginEditable name="navapply" -->
<!-- InstanceEndEditable -->
<li class="dcf-mb-0">
<a href="https://www.unl.edu/apply-now/">Apply to the University of Nebraska-Lincoln</a>
</li>
</ul>
</li>
<li class="dcf-relative dcf-mb-0">
<div class="dcf-mb-4 dcf-uppercase dcf-txt-xs dcf-bold unl-ls-2 unl-cream">Give</div>
<ul class="dcf-list-cta dcf-list-bare dcf-mt-0">
<!-- InstanceBeginEditable name="navgive" -->
<!-- InstanceEndEditable -->
<li class="dcf-mb-0">
<a href="https://www.unl.edu/give/">Give to the University of Nebraska-Lincoln</a>
</li>
</ul>
</li>
</ul>
</div>
</nav>
</header>
<main class="dcf-main" id="dcf-main" role="main" tabindex="-1">
<!-- InstanceBeginEditable name="highlighted" -->
<!-- InstanceEndEditable -->
<!-- InstanceBeginEditable name="hero" -->
<div class="dcf-hero dcf-hero-default">
<!-- InstanceEndEditable -->
<div class="dcf-hero-group-1">
<div class="dcf-breadcrumbs-wrapper">
<nav class="dcf-breadcrumbs" id="dcf-breadcrumbs" role="navigation" aria-label="breadcrumbs">
<!-- InstanceBeginEditable name="breadcrumbs" -->
<ol>
<li>
<a href="https://www.unl.edu/">Nebraska</a>
</li>
<li>
<a href="">Santiago Giraldo</a>
</li>
</ol>
<!-- InstanceEndEditable -->
</nav>
</div>
<header class="dcf-page-title" id="dcf-page-title">
<!-- InstanceBeginEditable name="pagetitle" -->
<h1>Santiago Giraldo</h1>
<!-- InstanceEndEditable -->
</header>
<!-- InstanceBeginEditable name="herogroup1" -->
<!-- InstanceEndEditable -->
</div>
<!-- InstanceBeginEditable name="herogroup2" -->
<div class="dcf-hero-group-2"></div>
<!-- InstanceEndEditable -->
</div>
<div class="dcf-main-content dcf-wrapper">
<!-- InstanceBeginEditable name="maincontentarea" -->
<div id="content" class="region region-content content">
<div id="block-system-main" class="block block-system">
<div class="content">
<div id="node-1" class="node node-page clearfix">
<div class="content">
<div class="field field-name-body field-type-text-with-summary field-label-hidden">
<div class="field-items">
<div class="field-item even">
<script type="text/javascript">
WDN.loadJQuery(function () {
WDN.jQuery("a[href^='http']").attr("target", "_blank");
});
</script>
<div class="wdn-col-full">
<div class="wdn-col-two-thirds">
<h2>Student, Orientation Leader (NSE), Dean's Leader (School of Computing)</h2>
<p>Hi! My name is Santiago Giraldo, and I am a Junior Computer Science major with a
Mathematics and Spanish minor here at the University of Nebraska-Lincoln. I am originally
from Medellin, Colombia, and moved to the small town of Cambridge, Nebraska at the age of
ten. This move was a substantial part of my life and at times I was unsure about the moving
process, learning a brand new language, and attending a new school. Thankfully, I was
welcomed into the community and could teach myself English in what some would consider
“incredibly fast”. Now, I am to the point where new people I meet cannot believe that I am
not from the United States due to my lack of accent. However, I have been able to maintain
my fluency in Spanish and continue to improve my English vocabulary more and more. I
graduated from Cambridge High School with a class size of thirty and was super excited about
continuing my education at Nebraska.</p>
<div id="MyInvolvement">
<h2 class="sec_header">My Involvement</h2>
<ul>
<li>Throughout my time at Nebraska, I have met numerous friends, faculty, and staff who
have helped shape me into who I am today. Nebraska has offered me once-in-a-lifetime
opportunities including being a STEM Connect scholar, networking with professors,
participating in various events on campus, being a part of novel research in the NIMBUS
Lab, having the pleasure of welcoming new students to Nebraska as a Dean's Leader in the
School of Computing, help ease the transition of incoming students to the university by
facilitating interaction, discussions, and introducing campus resources as an
Orientation Leader, and look forward to being a Teaching Assistant, help organize the
staff of the Student Resource Center and Advising Center and recruiting students to
serve as Undergraduate Teaching Assistants as an Undergraduate Lead in the School of
Computing.</li>
<li><b>School of Computing</b><br>
<div id="SchoolOfComputingVideo">
<iframe width="640" height="360" src="https://www.youtube.com/embed/0njvaZk2Ftk"
frameborder="0" allowfullscreen=""></iframe>
</div>
<div style="text-align: center">
</div>
</li>
<li><b>New Student Enrollment</b><br>
- Welcome more than 4,500 students and families.<br>
- Facilitate small-group interactive activities for students.<br>
- Develop and deliver their own content about navigating college life, succeeding
academically and socially, and persevering through challenges.
<img src="images/santi_nse.jpg" width="720" alt="Santiago Giraldo New Student Enrollment"
class="framed" />
<div style="text-align: center">
</div>
</li>
<h4>Courses Taken & Scheduled to Take</h4>
<p>Not sure what these mean? <a href="https://catalog.unl.edu/undergraduate/courses/csce/" target="_blank">Click here!</a></p>
<ul style="margin-left: 1em;">
<li>Fall 2020 - CSCE 155, CSCE 10, MATH 106, ENGL 277, ECON 200, CASC 191</li>
<li>Spring 2021 - CSCE 156, CSCE 235, MATH 107, MATH 191, CASC 191</li>
<li>Fall 2021 - CSCE 310, CSCE 251, GEOG 155, CASC 191</li>
<li>Spring 2022 - CSCE 231, CSCE 310, MATH 314, SPAN 300A, UGEP 102, CASC 191</li>
<li>Fall 2022 - CSCE 361, CSCE 428, MATH 380, SPAN 306, CASC 191</li>
<li>Spring 2023 - CSCE 322, CSCE 464, GEOL 101, SPAN 621, CASC 191</li>
</ul>
</div> <!-- end #TODO:SectionOne -->
<div id="otherStuff">
<h2 class="sec_header">My Info</h2>
<ul style="margin-left: 1em;">
<!-- <li><a href="https://go.unl.edu/santiago_resume">My Resume</a></li>-->
<li><a href="resume/resume.pdf" target="_blank">My Resume</a> <a
href="/resume" target="_blank">Online version</a></li>
<!-- <embed src="resume/resume.pdf" type="application/pdf" width="100%" height="600px" style="background-color: #f5f1e7;"/> -->
<li><a href="https://www.linkedin.com/in/sgiraldo/" target="_blank">My LinkedIn</a></li>
<li><a href="https://meritpages.com/sgiraldo" target="_blank">My Merit Page</a></li>
<li><a href="https://computing.unl.edu/stem-connect-profile-santiago-giraldo"
target="_blank">STEM CONNECT Scholar</a></li>
<li><a href="https://nimbus.unl.edu/welcome" target="_blank">NIMBUS Lab Research</a></li>
<li><a
href="research/Viability_Analysis_of_Wireless_Communication_Hardware_for_Multi-rotor_Swarm_Integration.pdf"
target="_blank">My
Research Poster 2021</a></li>
<li><a href="https://nse.unl.edu/#giraldo-santiago" target="_blank">My NSE Profile</a>
</li>
</ul>
</div>
<!-- #otherResources -->
</div>
<!-- end wdn-col-three-fourths -->
<!-- #otherStuffBegin -->
<div class="wdn-col-one-third" style="margin-top: 5em;">
<figure class="frame clear-top">
<img src="images/SantiHeadshot.jpg" width="200" alt="Santiago Giraldo" class="framed" />
<figcaption>Santiago Giraldo | Photos taken for NSE</figcaption>
</figure>
<!--
<figure class="frame clear-top"><img src="img/MeModigliani.jpg" alt="me, modigliani style" class="framed" /> <figcaption>Image Generated by <a href="http://www.perceptionlab.com/">University of St. Andrew's Perception Laboratory</a></figcaption></figure>
-->
<div id="myContactInfo">
<p>Santiago Giraldo<br>
Student<br>
<a href="http://cse.unl.edu" target="_blank">School of Computing</a><br>
<a href="http://www.unl.edu" target="_blank">University of
Nebraska-Lincoln</a><br>
<a href="http://lincoln.ne.gov" target="_blank">Lincoln</a>, <a
href="http://www.nebraska.gov/" target="_blank">NE</a>
</p>
<p><a href="mailto:[email protected]"
target="_blank">[email protected]</a><br>
303-669-0752 (cell)<br>
</p>
</div>
<!--end #myContactInfo -->
<div id="myResources">
<div class="wdn-center clear-top">
<h3>Resources</h3>
<a href="https://twitter.com/notsantiago7" target="_blank"><span class="wdn-icon-twitter"
style="font-size: 3em;" aria-hidden="true"></span></a>
<a href="https://www.instagram.com/notsantiago/" target="_blank"><span
class="wdn-icon-instagram" style="font-size: 3em;" aria-hidden="true"></span></a>
<a href="https://www.linkedin.com/in/sgiraldo/" target="_blank"><span
class="wdn-icon-linkedin-squared" style="font-size: 3em;"
aria-hidden="true"></span></a>
</div>
</div><!-- end #myResources-->
<div id="twitterTimeline">
<a class="twitter-timeline" href="https://twitter.com/notsantiago7"
data-widget-id="522594523965190145">Tweets by @notsantiago7</a>
<script>
!function (d, s, id) {
var
js,
fjs = d.getElementsByTagName(s)[0],
p = /^http:/.test(d.location) ? 'http' : 'https';
if (!d.getElementById(id)) {
js = d.createElement(s);
js.id = id;
js.src = p + "://platform.twitter.com/widgets.js";
fjs.parentNode.insertBefore(js, fjs);
}
}(document, "script", "twitter-wjs");
</script>
</div>
<!-- end #twitterTimeline -->
</div>
<!-- end wdn-col-one-fourth -->
</div>
<!--end wdn-col-full -->
</div>
</div><!-- end wdn-col-three-fourths -->
<!-- MyContentEnd -->
</div>
<!--end wdn-col-full -->
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<!-- InstanceEndEditable -->
</main>
<footer class="dcf-footer" id="dcf-footer" role="contentinfo">
<div class="dcf-relative unl-footer-stripe">
<div class="dcf-wrapper dcf-pt-10 dcf-txt-xs">
<div class="dcf-d-flex dcf-flex-wrap dcf-jc-between dcf-ai-center">
<div class="dcf-d-flex dcf-ai-center dcf-mb-7 dcf-mr-7">
<a class="unl-footer-logo" id="unl-footer-n" href="https://www.unl.edu/"
aria-label="Go to University of Nebraska-Lincoln home page">
<svg class="dcf-d-block dcf-h-9 dcf-w-9" focusable="false" height="76" width="76" viewBox="0 0 152 152">
<defs>
<style>
#n152,
#n56 {
display: none;
}
@media (min-width: 56px) {
#n44 {
display: none;
}
#n56 {
display: block;
}
}
@media (min-width: 152px) {
#n56 {
display: none;
}
#n152 {
display: block;
}
}
</style>
</defs>
<g id="n152">
<path
d="M147,1H90V42h10V75.673L53.532,2.393,52.648,1H2V42H12v66H2v41H62V108H52V74.336l46.467,73.271L99.351,149H150V108H140V42h10V1ZM59,111v35H5V111H15V39H5V4H51l52,82V39H93V4h54V39H137v72h10v35H101L49,64v47Z"
fill="none"></path>
<path
d="M147,0H88V45H98V69.8L55.2,2.3,53.8,0H0V45H10v62H0v45H64V107H54V82.2l42.8,67.5,1.5,2.3H152V107H142V45h10V0Zm3,5V43H140v66h10v41H99.4l-.9-1.4L52,75.3V109H62v41H2V109H12V43H2V2H52.6l.9,1.4L100,76.7V43H90V2h60ZM103,87,51,5H5V40H15v72H5v35H59V112H49V65l52,82h46V112H137V40h10V5H93V40h10Z"
fill="currentcolor"></path>
</g>
<g id="n56">
<path
d="M89.571,2.714V43.429h10.857V76L51.571,2.714H2.714V43.429H13.571v65.143H2.714v40.714H62.429V108.571H51.571V76l47.5,73.286h50.214V108.571H138.429V43.429h10.857V2.714ZM59.714,111.286v35.286H5.429V111.286H16.286V40.714H5.429V5.429H50.214l52.929,81.429V40.714H92.286V5.429h54.286V40.714H135.714v70.571h10.857v35.286H100.429L48.857,65.143v46.143Z"
fill="none"></path>
<path
d="M147.006,0H86.857V46.143H97.714V67.857L54.286,0H0V46.143H10.857v59.714H0V152H65.143V105.857H54.286V84.143L97.714,152H152V105.857H141.143V46.143H152V0Zm2.28,43.429H138.429v65.143h10.857v40.714H99.071L51.571,76v32.571H62.429v40.714H2.714V108.571H13.571V43.429H2.714V2.714H51.571L100.429,76V43.429H89.571V2.714h59.714ZM103.143,86.857,50.214,5.429H5.429V40.714H16.286v70.571H5.429v35.286H59.714V111.286H48.857V65.143l51.571,81.429h46.143V111.286H135.714V40.714h10.857V5.429H92.286V40.714h10.857Z"
fill="currentcolor"></path>
</g>
<g id="n44">
<path
d="M89.818,3.455v38h10.364V76L53.545,3.455H3.455v38H13.818v69.091H3.455v38H62.182v-38H51.818V76l46.636,72.545h50.091v-38H138.182V41.455h10.364v-38ZM58.727,114v31.091H6.909V114H17.273V38H6.909V6.909H51.818l51.818,79.455V38H93.273V6.909h51.818V38H134.727v76h10.364v31.091H100.182L48.364,65.636V114Z"
fill="none"></path>
<path
d="M147.008,0H86.364V44.909H96.727V65.636L55.273,0H0V44.909H10.364v62.182H0V152H65.636V107.091H55.273V86.364L96.727,152H152V107.091H141.636V44.909H152V0Zm1.537,41.455H138.182v69.091h10.364v38H98.455L51.818,76v34.545H62.182v38H3.455v-38H13.818V41.455H3.455v-38H53.545L100.182,76V41.455H89.818v-38h58.727ZM103.636,86.364,51.818,6.909H6.909V38H17.273v76H6.909v31.091H58.727V114H48.364V65.636l51.818,79.455h44.909V114H134.727V38h10.364V6.909H93.273V38h10.364Z"
fill="currentcolor"></path>
</g>
</svg>
</a>
</div>
<div class="unl-footer-logos dcf-d-flex dcf-ai-center dcf-mb-7">
<a class="unl-footer-logo dcf-mr-5" id="unl-footer-grit-glory"
href="https://inourgritourglory.unl.edu/welcome" aria-label="In Our Grit, Our Glory">
<svg class="dcf-d-block dcf-h-7 dcf-w-auto dcf-fill-current" focusable="false" height="30" width="88"
viewBox="0 0 88 30">
<path
d="M1.2 12.93a.2.2 0 0 1-.2-.24L3 1.24A.3.3 0 0 1 3.3 1h2a.19.19 0 0 1 .2.24l-2 11.45a.31.31 0 0 1-.28.24zM10.35 12.93a.29.29 0 0 1-.26-.24L9 7l-1 5.69a.33.33 0 0 1-.28.24h-2a.2.2 0 0 1-.2-.24l2-11.45A.28.28 0 0 1 7.86 1h2.45c.12 0 .19.09.21.24l1.07 6.56.05.19 1.19-6.75a.3.3 0 0 1 .28-.24h2a.19.19 0 0 1 .19.24l-2 11.45a.3.3 0 0 1-.27.24zM24.51 12.74a.66.66 0 0 1-.42.19H19.7a.45.45 0 0 1-.4-.19l-.78-1a.5.5 0 0 1-.1-.44L20 2.59a.79.79 0 0 1 .26-.44l1.11-1A.72.72 0 0 1 21.8 1h4.34c.19 0 .24 0 .41.19l.79 1a.5.5 0 0 1 .09.44l-1.54 8.75a.84.84 0 0 1-.25.44zm-.94-2.56a.22.22 0 0 0 .07-.12L24.71 4a.13.13 0 0 0 0-.13l-.23-.28a.11.11 0 0 0-.1-.05h-1.66s-.07 0-.12.05l-.34.28a.17.17 0 0 0-.07.13l-1.07 6.09v.12l.19.23h1.95zM34 12.74a.66.66 0 0 1-.48.19h-4.38a.49.49 0 0 1-.41-.17l-.77-1a.49.49 0 0 1-.11-.44l1.79-10.1a.29.29 0 0 1 .27-.22h2a.19.19 0 0 1 .2.24l-1.56 8.82v.12l.2.23h1.95l.27-.23c.06-.06.09-.09.1-.14l1.55-8.8a.28.28 0 0 1 .31-.24h2a.19.19 0 0 1 .19.24l-1.78 10.1a.77.77 0 0 1-.24.44zM42.28 12.93a.28.28 0 0 1-.26-.24l-.92-4.17h-.77l-.74 4.17a.3.3 0 0 1-.27.24h-2a.21.21 0 0 1-.19-.24l2-11.45a.3.3 0 0 1 .29-.24h5.35a.5.5 0 0 1 .4.17l.79 1a.43.43 0 0 1 .08.47l-.76 4.31a.56.56 0 0 1-.24.44l-1.19 1 1 4.31a.19.19 0 0 1-.21.24zM43 5.7a.23.23 0 0 0 .07-.14L43.33 4v-.17l-.21-.26a.23.23 0 0 0-.21-.07h-1.7L40.77 6h1.76a.17.17 0 0 0 .13 0zM55.38 12.74a.72.72 0 0 1-.47.19h-4.36a.51.51 0 0 1-.4-.19l-.77-1a.4.4 0 0 1-.11-.44l1.54-8.75a.69.69 0 0 1 .26-.44l1.12-1a.59.59 0 0 1 .47-.11H57a.44.44 0 0 1 .41.19l.77 1a.47.47 0 0 1 .11.44L58 4.42a.32.32 0 0 1-.29.24h-2a.2.2 0 0 1-.19-.24l.06-.42v-.12l-.23-.29a.11.11 0 0 0-.11-.05h-1.66a.17.17 0 0 0-.13.05l-.32.29A.37.37 0 0 0 53 4l-1 6a.16.16 0 0 0 0 .14l.18.23h2l.28-.23a.57.57 0 0 0 .07-.12l.26-1.51h-1.13a.2.2 0 0 1-.19-.24l.36-2a.28.28 0 0 1 .28-.27h3.33a.2.2 0 0 1 .21.24l-.91 5.16a.63.63 0 0 1-.25.34zM63.67 12.93a.3.3 0 0 1-.26-.24l-.91-4.17h-.77L61 12.69a.3.3 0 0 1-.28.24h-2a.2.2 0 0 1-.19-.24l2-11.45a.3.3 0 0 1 .29-.24h5.34a.52.52 0 0 1 .41.17l.79 1a.46.46 0 0 1 .08.47l-.76 4.31a.62.62 0 0 1-.24.44l-1.19 1 1 4.31a.2.2 0 0 1-.22.24zm.71-7.23a.23.23 0 0 0 .07-.14L64.72 4v-.17l-.2-.26a.24.24 0 0 0-.21-.07h-1.7L62.17 6h1.76a.17.17 0 0 0 .13 0zM67.83 12.93a.19.19 0 0 1-.19-.24l2-11.45a.3.3 0 0 1 .29-.24h2a.19.19 0 0 1 .2.24l-2 11.45a.3.3 0 0 1-.28.24zM74.2 12.93a.19.19 0 0 1-.2-.21l1.63-9.21h-2.14a.2.2 0 0 1-.21-.24l.36-2a.32.32 0 0 1 .3-.26h6.72a.22.22 0 0 1 .21.26l-.36 2a.3.3 0 0 1-.29.24h-2.14l-1.62 9.21a.28.28 0 0 1-.27.21zM78.57 14.62c-.22.08-.32 0-.3-.14l.72-4.1a.31.31 0 0 1 .3-.24h2a.19.19 0 0 1 .2.24l-.57 3.18c0 .12-.09.19-.26.26zM16.24 28.81a.59.59 0 0 1-.42.19h-4.39a.44.44 0 0 1-.4-.19l-.77-1a.5.5 0 0 1-.11-.44l1.54-8.75a.91.91 0 0 1 .27-.44l1.11-1a.7.7 0 0 1 .47-.19h4.34a.38.38 0 0 1 .4.19l.79 1a.5.5 0 0 1 .09.44l-1.54 8.75a.8.8 0 0 1-.25.44zm-.94-2.56a.15.15 0 0 0 .07-.12l1.07-6.08a.15.15 0 0 0 0-.14l-.22-.27a.12.12 0 0 0-.11-.05h-1.65a.2.2 0 0 0-.13.05l-.33.27a.23.23 0 0 0-.08.14l-1.07 6.08a.15.15 0 0 0 0 .12l.19.24H15zM25.7 28.81a.62.62 0 0 1-.47.19h-4.36a.46.46 0 0 1-.41-.17l-.77-1a.48.48 0 0 1-.1-.44l1.78-10.1a.31.31 0 0 1 .28-.24h2a.19.19 0 0 1 .19.24l-1.55 8.82v.12l.19.24h1.95l.28-.24a.22.22 0 0 0 .09-.14l1.55-8.8a.29.29 0 0 1 .28-.24h2a.2.2 0 0 1 .2.24l-1.78 10.1a.79.79 0 0 1-.25.44zM34 29a.29.29 0 0 1-.26-.24l-.91-4.17h-.78l-.73 4.17a.31.31 0 0 1-.28.24h-2a.21.21 0 0 1-.2-.24l2-11.45a.32.32 0 0 1 .28-.24h5.38a.57.57 0 0 1 .41.17l.78 1a.48.48 0 0 1 .09.48L37 23a.64.64 0 0 1-.25.45l-1.19 1 1 4.3a.19.19 0 0 1-.21.24zm.7-7.23a.22.22 0 0 0 .08-.13l.27-1.56v-.17l-.21-.26a.23.23 0 0 0-.2-.06h-1.7l-.44 2.51h1.77a.16.16 0 0 0 .12-.05zM47.11 28.81a.66.66 0 0 1-.47.19h-4.35a.53.53 0 0 1-.41-.19l-.77-1a.4.4 0 0 1-.11-.44l1.54-8.75a.69.69 0 0 1 .27-.44l1.11-1a.62.62 0 0 1 .47-.19h4.36a.44.44 0 0 1 .4.19l.77 1a.48.48 0 0 1 .11.44l-.32 1.83a.32.32 0 0 1-.3.24h-2a.2.2 0 0 1-.2-.24l.08-.44a.11.11 0 0 0 0-.12l-.23-.29a.11.11 0 0 0-.11-.05h-1.64a.17.17 0 0 0-.13.05l-.32.29a.31.31 0 0 0-.09.15l-1.07 6a.16.16 0 0 0 0 .14l.17.24h2l.28-.24a.4.4 0 0 0 .07-.12l.27-1.5H45.4a.2.2 0 0 1-.2-.24l.36-2a.29.29 0 0 1 .28-.24h3.33a.21.21 0 0 1 .21.24l-.91 5.16a.63.63 0 0 1-.25.34zM50.46 29a.2.2 0 0 1-.21-.24l2-11.5a.31.31 0 0 1 .28-.19h2c.12 0 .22.09.2.19l-1.63 9.23h4.51a.21.21 0 0 1 .21.24l-.36 2a.3.3 0 0 1-.29.24zM65.26 28.81a.61.61 0 0 1-.42.19h-4.39a.43.43 0 0 1-.4-.19l-.77-1a.5.5 0 0 1-.11-.44l1.54-8.75a1 1 0 0 1 .26-.44l1.12-1a.68.68 0 0 1 .47-.19h4.34c.18 0 .23 0 .4.19l.79 1a.5.5 0 0 1 .09.44l-1.54 8.75a.8.8 0 0 1-.25.44zm-.94-2.56a.19.19 0 0 0 .07-.12l1.07-6.08a.15.15 0 0 0 0-.14l-.22-.27a.12.12 0 0 0-.11-.05h-1.65a.2.2 0 0 0-.13.05l-.34.27a.26.26 0 0 0-.07.14l-1.07 6.08a.15.15 0 0 0 0 .12l.19.24h2zM73.57 29a.3.3 0 0 1-.26-.24l-.91-4.17h-.77l-.74 4.17a.3.3 0 0 1-.28.24h-2a.2.2 0 0 1-.19-.24l2-11.45a.31.31 0 0 1 .28-.24h5.34a.55.55 0 0 1 .41.17l.79 1a.47.47 0 0 1 .08.48L76.58 23a.67.67 0 0 1-.24.45l-1.19 1 1 4.3a.19.19 0 0 1-.21.24zm.71-7.23a.21.21 0 0 0 .07-.13l.27-1.56v-.17l-.2-.26a.25.25 0 0 0-.21-.06h-1.7l-.44 2.51h1.76a.17.17 0 0 0 .13-.05zM79.72 29a.2.2 0 0 1-.2-.24l.93-5.24-2-6.12a.26.26 0 0 1 .27-.33h2.17a.29.29 0 0 1 .26.24l1.09 3.39 2.28-3.39a.46.46 0 0 1 .34-.24H87c.2 0 .27.17.16.33l-4.2 6.12-.96 5.24a.3.3 0 0 1-.28.24zM84.15 29l.28-1.6H84v-.18h1.08v.18h-.41l-.29 1.6zM86.31 29l.19-1.15-.59 1.15a.08.08 0 0 1-.06 0h-.14l-.18-1.2-.28 1.2H85l.39-1.8h.19l.15 1.18v.27l.11-.27.56-1.18h.19l-.06 1.8z">
</path>
</svg>
</a>
<a class="unl-footer-logo dcf-mr-5" id="unl-footer-global-b1g"
href="https://www.unl.edu/about/academic-partnerships/" aria-label="About the Big Ten Conference">
<svg class="dcf-d-block dcf-h-7 dcf-w-auto dcf-fill-current" focusable="false" height="30" width="72"
viewBox="0 0 144 60">
<path
d="M34 25H23V15h11c1 0 2 1 2 2v6c0 1-1 2-2 2zm-9-2h9v-6h-9v6zm9 21H23V33h11c1 0 2 1 2 2v7c0 1-1 2-2 2zm0-2v-7h-9v7h9zm47 1V2H57v14h6v27h-6v14h30V43h-6zm62.92-27.29C143.92 8.03 137.5 2 130 2h-27c-7.52 0-14 6.32-14 14v27c0 7.5 6.5 14 14 14h27c8 0 14-6.32 14-14V24h-23v10h5v7.5c0 1-.5 1.5-1.5 1.5h-16c-1 0-1.5-.5-1.5-1.5v-24c0-1 .5-1.5 1.5-1.5h16c1 0 1.5.5 1.5 1.5V20h18l-.08-4.29zM38 4c10 0 13 7 13 12 0 7-4.52 10.49-10 12v1s12 2.5 12 13c0 7-5 13-13 13H2V45h6V14H2V4m36-2H0v14h6v27H0v14h41c8 0 14-6.05 14-14 0-7-4-12.75-10-14.5 7-3 10.25-11.25 7-18.5-2.25-4.75-6.08-8-14-8z">
</path>
</svg>
</a>
<a class="unl-footer-logo" id="unl-footer-global-wordmark" href="https://nebraska.edu/"
aria-label="University of Nebraska system">
<svg class="dcf-d-block dcf-h-6 dcf-w-auto dcf-fill-current" focusable="false" height="26" width="96"
viewBox="0 0 96 26">
<path
d="M36.7 2.6v3.1c0 .8 0 1 .2 1.2.2.3.5.5.9.5s.8-.2 1-.6c.1-.4.1-.7.1-1.1V2.6h.6v3c.1.5 0 1-.3 1.5s-.8.8-1.4.8c-.7.1-1.3-.3-1.5-1-.1-.4-.2-.8-.1-1.3v-3h.5zm7.2 5.1h-.6l-2.4-4.2v4.2h-.6V2.6h.6l2.4 4.2V2.6h.6v5.1zm1-5.1h.6v5.2h-.6V2.6zm3.2 4.1l1.5-4.1h.5l-1.9 5.1h-.3l-1.7-5.1h.6l1.3 4.1zM53 4.9v.4h-1.5v2h1.8v.4H51V2.6h2V3h-1.5v1.8c-.1.1 1.5.1 1.5.1zm1.6 0V3h.6c.4 0 .6.3.6.8 0 .3-.1.6-.3.8-.2.1-.4.2-.6.2 0 .1-.3.1-.3.1zM54 7.7h.6V5.4h.5l1.3 2.3h.6l-1.3-2.5c.2-.1.3-.2.4-.3.3-.3.4-.7.4-1.1 0-.4-.2-.9-.5-1.1-.3-.1-.6-.2-.9-.1H54v5.1zm5.3-4.1c0-.3-.3-.6-.7-.6-.4 0-.7.4-.6.7v.1c0 .4.1.6.7 1l.8.6c.2.3.3.6.3.9.1.8-.5 1.4-1.3 1.5h-.1c-.5 0-1-.3-1.2-.8l.4-.5c.1.5.4.8.8.9.5 0 .8-.4.8-.9v-.1c0-.2-.1-.5-.3-.6l-.5-.4c-.6-.3-1-.9-1-1.5-.1-.7.4-1.3 1.1-1.4h.1c.5 0 .9.3 1.1.7l-.4.4zm1.4-1h.6v5.2h-.6V2.6zm3.4 5.1h-.6V3h-1.3v-.4h3V3H64v4.7zm5.2-5.1l-1.4 2.9v2.3h-.6V5.5l-1.5-2.9h.6l1.1 2.2 1.1-2.2h.7zm9.9.4c.9 0 1.4.8 1.4 2.2s-.5 2.2-1.4 2.2c-.9 0-1.4-.8-1.4-2.2S78.3 3 79.2 3zm0-.5c-1.3 0-2 1-2 2.7-.1.8.2 1.5.6 2.1.4.4.9.7 1.5.6.5 0 1.1-.2 1.4-.6.5-.6.7-1.3.6-2.1-.1-1.7-.8-2.7-2.1-2.7zm5.1 2.4v.5h-1.4v2.3h-.6V2.6h2.1V3h-1.5v1.8l1.4.1zm-71-2.7v.7h.4c1.9.4 2.2.4 2.2 2.7v13.3c-.5-.9-10-16.7-10-16.7H.8v.7h.5c2 .1 2.3.1 2.3 2.4v16.6c0 2-.3 2-2 2.3l-.7.1v.8h7v-.8l-.8-.1c-1.7-.3-2-.3-2-2.3v-14L16 25.1h1.5V5.4c0-2 .3-2 1.8-2.5h.3v-.7h-6.3zm24.2 7.4c-1.5 0-2.9.7-3.8 1.9V.5h-.2l-4.2 1.7V3h.8c.6 0 .9.3.9 1.8V19c0 3-.2 4.2-.9 6v.1l.8.4 1.9-2.2c.8 1.5 2.3 2.3 4 2.3 3.5 0 6.2-3.7 6.2-8.4s-2.2-7.6-5.5-7.6zm-1 14.4c-2.2 0-2.8-1.2-2.8-5.3v-5.3c1-1.1 1.7-1.5 2.6-1.5 2.3 0 4.1 2.8 4.1 6.5S38.9 24 36.5 24zm59.4-1.5l-.1.1c-.4.6-.6.6-.9.6-.3 0-.6-.6-.6-1.4v-7c0-1.9-.3-2.7-1.3-3.6-1.8-1.5-4-2.2-6.3-2.1-2.7 0-9.4 3.9-11.2 8.4V.6l-4.3 1.6V3h.8c.5 0 .8.3.8 1.6v19.6l-1.6.2v.9H77v-.9l-1.6-.2c0-3.4.2-4.3 2-6.9l3.7 6.9-1.5.2v.9H86c.5.2 1.1.3 1.7.3 1.7-.1 3.3-1 4.1-2.5.1 1.7.9 2.5 2.2 2.5 1.3 0 1.7-.8 2.7-2.1v-.1l-.8-.9zm-12.2-1c0 .9.3 1.9.9 2.6h-.4l-5-9.1c.9-1.1 3.2-3 5-3.3.5-.1.8-.1.9 0 .3.3.7.5 1.1.4.2 0 1.1.1 2-1.2.1-.2.3-.2.5-.2 2.1 0 2.9 2.4 3 4-3.1 1.1-8 2.8-8 6.8zm7.9.1c-.9 1.1-1.9 1.7-2.8 1.7-1.3 0-2.4-1.1-2.4-2.5v-.1c0-2.8 2.8-3.7 5.1-4.5h.1v5.4zm-62.3-.8v.1c-1.2 1.8-2.2 2.4-3.6 2.4s-4.1-2-4.6-5l9.2-2.5v-.1c-.4-3.8-2.6-6.1-5.7-6.1s-6.3 3.9-6.3 8.6 2.7 7.4 6.5 7.4c2.5 0 4.2-1.3 5.5-4v-.1l-1-.7zm-4.8-9.7c1.5 0 2.4 1.1 2.4 2.8s-.3 1.3-1.9 1.8l-4.1 1c0-3.5 1.4-5.6 3.6-5.6zM68.3 16c-3.3-1.5-3.6-1.7-3.6-3 .1-1.1 1-1.9 2.1-1.9 0 0 1-.1 1.1.4.2.9 1.2 1.4 2 1.1.6-.1 1-.7 1-1.3.1-.9-1.1-1.8-2.7-1.8-3.4 0-5.9 2-5.9 4.6s2 3.4 3.9 4.3c1.9.9 3.3 1.5 3.3 3.2-.1 1.4-1.3 2.5-2.7 2.5-1.5 0-2-.8-2.1-1.8-.1-1.1-1-1.3-1.7-1.4-.8 0-1.5.7-1.5 1.5v.1c0 .2 0 .3.1.4-.1.3-.4.4-.6.4-.3 0-.6-.6-.6-1.4v-7c0-1.9-.3-2.7-1.3-3.6-2.1-1.7-4.9-2.5-7.6-2-1.5.3-3.9 2.2-5.1 5.2-.1-2.4-.3-3.4-1.1-5l-3 1.4v.6h.5c.9 0 1.3 1.1 1.3 3.7v9l-1.6.3v.8h6v-.8l-1.7-.3c0-.3.1-3.5.1-3.5.4-7.3 2-8.1 2.7-8.5.4-.3 1-.4 1.5-.3.3.3.7.5 1.1.4.2 0 1.1.1 2-1.2.1-.2.3-.2.5-.2 2.1 0 2.9 2.4 3 4h.1c-3 1-8 2.6-8 6.7-.1 2.2 1.6 4 3.8 4.1h.3c1.7-.1 3.3-1 4.1-2.5.1 1.7.9 2.5 2.2 2.5 1.3 0 1.4-.5 2.2-1.5.8 1 2.4 1.5 4.3 1.5 3 0 5.4-2.1 5.4-4.8S70.7 17 68.3 16zm-10.6 5.7c-.9 1.1-1.9 1.7-2.8 1.7-1.3 0-2.4-1.1-2.4-2.5v-.1c0-2.8 2.8-3.7 5.1-4.5h.1v5.4z">
</path>
</svg>
</a>
</div>
</div>
<div
class="dcf-grid-halves@sm dcf-grid-fourths@md dcf-col-gap-vw dcf-row-gap-8 dcf-pb-7 dcf-lh-3 unl-footer-groups">
<!-- InstanceBeginEditable name="contactinfo" -->
<div id="contactinfo" class="region region-contactinfo contactinfo">
<div id="block-block-101" class="block block-block">
<div class="content">
<p><strong>School of Computing</strong><br>University of Nebraska-Lincoln<br> 363 Avery Hall<br>
Lincoln, NE 68588<br> 402-472-5008</p>
</div>
</div>
</div>
<div id="leftcollinks" class="region region-leftcollinks leftcollinks">
<div id="block-block-102" class="block block-block">
<h2>Related Links</h2>
<div class="content">
<ul class="wdn-related-links-v1">
<li><a href="http://events.unl.edu/">UNL Events Calendar</a></li>
<li><a href="http://ucomm.unl.edu/">University Communications</a></li>
<li><a href="http://www.unl.edu/ucomm/chancllr/">Office of the Chancellor</a></li>
</ul>
</div>
</div>
</div>
<!-- InstanceEndEditable -->
<div id="dcf-footer-group-3">
<h2 id="dcf-footer-group-3-heading">Campus Links</h2>
<ul aria-labelledby="dcf-footer-group-3-heading">
<li><a href="https://directory.unl.edu/">Directory</a></li>
<li><a href="https://employment.unl.edu/">Employment</a></li>
<li><a href="https://events.unl.edu/">Events</a></li>
<li><a href="https://libraries.unl.edu/">Libraries</a></li>
<li><a href="https://maps.unl.edu/">Maps</a></li>
<li><a href="https://news.unl.edu/newsrooms/today/">News</a></li>
<li><a href="https://www.unl.edu/chancellor/">Office of the Chancellor</a></li>
<li><a href="https://unlreport.unl.edu/">Report an Incident
<br>
<svg class="dcf-d-block dcf-h-auto dcf-w-12" focusable="false" aria-hidden="true" height="24"
width="117" viewBox="0 0 1170 240">
<path fill="currentcolor"
d="M120 13.4C56.6 13.4 5 55.9 5 108.1c0 24.7 11.3 47.8 31.9 65.5l-23.1 46.1c-2 4.1 2.3 8.4 6.3 6.5l61.7-28.7c12.3 3.5 25.1 5.3 38.2 5.3 63.4 0 115-42.5 115-94.7s-51.6-94.7-115-94.7zm49.4 143.1c-.7 1.1-1.9 1.8-3.3 1.8H73.8c-1.3 0-2.6-.7-3.3-1.8-.7-1.1-.8-2.5-.2-3.7l46.2-92.3c1.3-2.6 5.6-2.6 6.9 0l46.2 92.3c.6 1.1.5 2.5-.2 3.7z">
</path>
<g>
<circle fill="currentcolor" cx="120" cy="141.1" r="5"></circle>
<path fill="currentcolor"
d="M125 126.1c0 2.8-2.2 5-5 5s-5-2.2-5-5v-35c0-2.8 2.2-5 5-5s5 2.2 5 5v35z"></path>
</g>
<path fill="currentcolor"