-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
788 lines (734 loc) · 65.9 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
<!DOCTYPE html>
<html class="dcf-no-js dcf-no-webp" lang="en"><!-- InstanceBegin template="/Templates/fixed.dwt" codeOutsideHTMLIsLocked="false" -->
<head>
<!-- Google tag (gtag.js) -->
<script async src="https://www.googletagmanager.com/gtag/js?id=G-26CV930E1C"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'G-26CV930E1C');
</script>
<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">
<meta name="color-scheme" content="dark light">
<!--
Membership and regular participation in the University of Nebraska–Lincoln (UNL) Web Developer Network (WDN) is required to use the UNLedu Web Framework. Visit the WDN site at https://wdn.unl.edu/. Register for our mailing list and add your site or server to UNL Web Audit.
All framework code is the property of the UNL Web Developer Network. The code seen in a source code view is not, and may not be used as, a template. You may not use this code, a reverse-engineered version of this code, or its associated visual presentation in whole or in part to create a derivative work.
This message may not be removed from any pages based on the UNLedu Web Framework.
$Id: fixed.dwt | 8754e2081378eac1fd8b92efdff0f0a280977828 | Tue Jul 14 15:01:36 2020 -0500 | Ryan Dee $
-->
<!-- InstanceBeginEditable name="doctitle" -->
<title>Husker Scope</title>
<!-- InstanceEndEditable -->
<link rel="preload" href="https://unlcms.unl.edu/wdn/templates_5.3/css/critical.css?dep=5.3.9" as="style">
<link id="unl-css-critical" rel="stylesheet" href="https://unlcms.unl.edu/wdn/templates_5.3/css/critical.css?dep=5.3.9">
<link id="unl-css-main" rel="preload" href="https://unlcms.unl.edu/wdn/templates_5.3/css/main.css?dep=5.3.9" 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.9">
<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.9" 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://www.huskerscope.com/favicon/favicon.ico">
<link rel="icon" href="https://www.huskerscope.com/favicon/icon.svg" type="image/svg+xml">
<link rel="apple-touch-icon" href="https://www.huskerscope.com/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)" />
<base href="https://cse.unl.edu/~jfalkinburg/" />
<link rel="canonical" href="/~jfalkinburg" />
<link rel="shortlink" href="/node/1" />
<link rel="home" href="https://cse.unl.edu/~jfalkinburg/husker-scope/" />
<link type="text/css" rel="stylesheet" href="https://cse.unl.edu/~jfalkinburg/css/css_FFMDRYZ2nSV6HGDyDVpm9-yNY8H0IkhZ90k-a2N9jFE.css" media="all" />
<link type="text/css" rel="stylesheet" href="https://cse.unl.edu/~jfalkinburg/css/css_HKPS2hyr3ldyD7n7i6gbOEC3-27sdSSODaRDJPP6My4.css" media="all" />
<link type="text/css" rel="stylesheet" href="https://cse.unl.edu/~jfalkinburg/css/css_PGbJgHCUCBf4dg7K9Kt8aAwsApndP4GZ9RuToPy3-Fk.css" media="all" />
<link type="text/css" rel="stylesheet" href="https://cse.unl.edu/~jfalkinburg/css/css_seZrU1E1iCjr2lLl26Hj4h-Xf7VbhDSMsMfZIGXqXnQ.css" media="all" />
<script type="text/javascript" src="https://cse.unl.edu/~jfalkinburg/js/js_yMSKTzBO0KmozyLwajzFOrrt_kto_9mtccAkb0rm7gc.js"></script>
<script type="text/javascript" src="https://cse.unl.edu/~jfalkinburg/js/js_MXfVPoILixPqZoxiW4-INyUSinmjGcyaFKcWxE5klJw.js"></script>
<script type="text/javascript">
<!--//--><![CDATA[//><!--
jQuery.extend(Drupal.settings, {"basePath":"\/","pathPrefix":"","ajaxPageState":{"theme":"unl_five","theme_token":"xuoCf4OuaGptXVLqPy3Y3w7y8SwYhPt0Jgr7gXxvD0Q","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 -->
</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>
<!-- InstanceBeginEditable name="headervisit" -->
<!-- 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">
<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="https://cse.unl.edu/~jfalkinburg/husker-scope/">Husker Scope</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 last leaf"><a href="https://cse.unl.edu/~jfalkinburg" class="active">Home</a></li>
</ul> -->
<div id="dcf-nav-menu-child" class="dcf-nav-menu-child dcf-nav-local dcf-w-100%">
<ul><li class="first expanded"><a href="https://cse.unl.edu/~jfalkinburg/husker-scope/" title="About Husker Scope">Husker Scope</a><ul>
<li class="first leaf"><a href="https://cse.unl.edu/~jfalkinburg/">About Prof Falkinburg</a></li>
<li class="leaf"><a href="https://cse.unl.edu/~jfalkinburg/husker-scope/#team">The Development Teams</a></li>
<li class="leaf"><a href="https://cse.unl.edu/~jfalkinburg/husker-scope/#hardware">Husker Scope Hardware</a></li>
<li class="last leaf"><a href="https://cse.unl.edu/senior-design">Other Senior Design Projects</a></li>
</ul>
</li>
<li class="expanded"><a href="https://cse.unl.edu/~jfalkinburg/husker-scope/" title="Husker Scope Applications">Husker Scope Apps</a><ul>
<li class="first leaf"><a href="https://cse.unl.edu/~jfalkinburg/husker-scope/app/">Web App</a></li>
<li class="leaf"><a href="https://apps.apple.com/us/app/husker-scope/id1593014802?platform=iphone">iOS App on Apple Store</a></li>
<li class="last leaf"><a href="https://play.google.com/store/apps/details?id=edu.unl.cse.huskerscope">Android App on Google Play</a></li>
</ul>
</li>
<li class="last expanded"><a href="" title="News Articles">News Articles</a><ul>
<li class="last leaf"><a href="https://newsroom.unl.edu/announce/cse/14240/81226">Bits & Bytes Article </a></li>
<!--<li class="last leaf"><a href="">Nebraska Today Article</a></li>-->
</ul>
</li>
<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/">UNL</a></li><li><a href="https://engineering.unl.edu/">College of Engineering</a></li><li><a href="https://computing.unl.edu/">School of Computing</a></li><li><a href="https://cse.unl.edu/~jfalkinburg/husker-scope/">Husker Scope</a></li></ol> <!-- InstanceEndEditable -->
</nav>
</div>
<header class="dcf-page-title" id="dcf-page-title">
<!-- InstanceBeginEditable name="pagetitle" -->
<img style="width:10%"align="right" src="https://cse.unl.edu/~jfalkinburg/husker-scope/img/husker_scope_qr_code.png" alt="Husker Scope Download QR Code" class="framed" />
<h1>Husker Scope</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>Senior Design Project - Husker Scope</h2>
<p>The Husker Scope project is an all-in-one cross platform (<a href="https://apps.apple.com/us/app/husker-scope/id1593014802?platform=iphone">iOS</a>,
<a href="https://play.google.com/store/apps/details?id=edu.unl.cse.huskerscope">Android</a>, and
<a href="https://cse.unl.edu/~jfalkinburg/husker-scope/app/">Web App</a>) application that implements a
Dual Channel Function Generator and Oscilloscope functionality for use within the CSCE 436 - Advanced Embedded Systems course.
They were able to create a beta version for students to use in the spring 2022.
</p>
<p>
<a href="https://cse.unl.edu/~jfalkinburg/Project_Description_Husker_Scope.pdf">Husker Scope Project Description</a>
<p>
<a href="https://cse.unl.edu/~jfalkinburg/Project_Description_Husker_Scope_2.0.pdf">Husker Scope 2.0 Project Description</a>
<p>
<H5>Husker Scope Trailer</H5>
<div id="Husker Scope Trailer">
<iframe width=70% height="300" src="https://www.youtube.com/embed/Q-oqu1czeEM" frameborder="0" allowfullscreen></iframe>
</div>
<H5>Husker Scope App Mockups & Layouts</H5>
<!-- Mockup Banner -->
<div class="w3-content">
<img class="mySlides" src="https://cse.unl.edu/~jfalkinburg/husker-scope/img/func_gen.png" alt="Function Generator Layout" style="width:100%" >
<img class="mySlides" src="https://cse.unl.edu/~jfalkinburg/husker-scope/img/o-scope.png" alt="Oscilloscope Layout" style="width:100%">
<img class="mySlides" src="https://cse.unl.edu/~jfalkinburg/husker-scope/img/o-scope2.png" alt="Oscilloscope Layout 2" style="width:100%">
<img class="mySlides" src="https://cse.unl.edu/~jfalkinburg/husker-scope/img/am_fm.png" alt="AM/FM Modulator Layout" style="width:100%">
<img class="mySlides" src="https://cse.unl.edu/~jfalkinburg/husker-scope/img/o-scope3.png" alt="Oscilloscope Layout 3" style="width:100%">
<img class="mySlides" src="https://cse.unl.edu/~jfalkinburg/husker-scope/img/o-scope4.png" alt="Oscilloscope Layout AM Modulation" style="width:100%">
<img class="mySlides" src="https://cse.unl.edu/~jfalkinburg/husker-scope/img/o-scope5.png" alt="Oscilloscope Layout with FM Modulation" style="width:100%">
<img class="mySlides" src="https://cse.unl.edu/~jfalkinburg/husker-scope/img/Function_Generator_Mockup.jpg" alt="Function Generator Original Mockup" style="width:100%" >
<img class="mySlides" src="https://cse.unl.edu/~jfalkinburg/husker-scope/img/Oscilloscope_Mockup.jpg" alt="Oscilloscope Original Mockup" style="width:100%">
<button class="w3-button w3-black w3-display-left" onclick="plusDivs(-1)">❮</button>
<button class="w3-button w3-black w3-display-right" onclick="plusDivs(1)">❯</button>
</div> <!-- End Mockup Banner -->
<script> <!--Slides Script-->
var slideIndex = 1;
showDivs(slideIndex);
function plusDivs(n) {
showDivs(slideIndex += n);
}
function showDivs(n) {
var i;
var x = document.getElementsByClassName("mySlides");
if (n > x.length) {slideIndex = 1} if (n < 1) {slideIndex = x.length}for
(i = 0; i < x.length; i++) {x[i].style.display = "none";}
x[slideIndex-1].style.display = "block"; }
</script> <!--End Slides Script-->
<br>
<H5>Husker Scope (AKA Falcon O-Scope) Project Pitch Video</H5>
<div id="Husker_Scope">
<iframe width=70% height="300" src="https://www.youtube.com/embed/d0WHe2COXyQ" frameborder="0" allowfullscreen></iframe>
</div>
<H5>Husker Scope 2.0 Project Pitch Video</H5>
<div id="Husker_Scope_2.0">
<iframe width=70% height="300" src="https://www.youtube.com/embed/3WPGxioZLso" frameborder="0" allowfullscreen></iframe>
</div>
<H5>Function Generator Demonstration Video</H5>
<div id="Function_Generator Demo">
<iframe width=70% height="300" src="https://www.youtube.com/embed/OeJ7ogkudAA" frameborder="0" allowfullscreen></iframe>
</div>
<H5>Husker Scope Testing with Nexys Video FPGA for CSCE 436 - Advanced Embedded Systems</H5>
<div id="Husker Scope Testing with Nexys Video">
<iframe width=30% height="200" src="https://www.youtube.com/embed/p9FURd3DRxs" frameborder="0" allowfullscreen></iframe>
<iframe width=30% height="200" src="https://www.youtube.com/embed/MSOxU60OAtQ" frameborder="0" allowfullscreen></iframe>
<iframe width=30% height="200" src="https://www.youtube.com/embed/QBNrNKNs8_c" frameborder="0" allowfullscreen></iframe>
</div>
<H5>Testing between Husker Scope Oscilloscope and Function Generator</H5>
<div id="Testing of Husker Scope">
<iframe width=30% height="200" src="https://www.youtube.com/embed/KugULExsnag" frameborder="0" allowfullscreen></iframe>
<iframe width=30% height="200" src="https://www.youtube.com/embed/D_rUIhlhcLg" frameborder="0" allowfullscreen></iframe>
<iframe width=30% height="200" src="https://www.youtube.com/embed/YyWRcAAw77E" frameborder="0" allowfullscreen></iframe>
</div>
<div id="Husker Scope Interface Hardware">
<H5>Senior Design Showcase Presentation May 2022</H5>
<div id="Husker Scope Senior Design Showcase Presentation 2022">
<iframe width=70% height="300" src="https://www.youtube.com/embed/kod3eKOYc4Q" frameborder="0" allowfullscreen></iframe>
</div>
<a href="https://computing.unl.edu/senior-design/showcase-projects-2021-22/">All 2021-2022 Senior Design Showcase Projects</a>
<p>
<H5>Senior Design Showcase Presentation May 2023</H5>
<div id="Husker Scope Senior Design Showcase Presentation 2023">
<iframe width=70% height="300" src="https://www.youtube.com/embed/lghoLkVe7IY" frameborder="0" allowfullscreen></iframe>
</div>
<a href="https://computing.unl.edu/senior-design/showcase-projects-2022-23/">All 2022-2023 Senior Design Showcase Projects</a>
<p>
<a name="hardware"><h2 class="sec_header">Husker Scope Interface Hardware</h2></a>
<p>In order to get the mobile and web apps to allow an external microphone input we had to build small hardware interface. The
breakout board takes the left and right channel outputs from the function generator and allows you to select which is sent
to the microphone input of the oscilloscope. We found that iPhones require a 10KΩ resistor in series in order to recognize
the microphone input. We added a 2KΩ resistor to divide the input voltage as a microphone circuit protection.
<center><figure class="frame clear-top"style="width:60%"><img src="https://cse.unl.edu/~jfalkinburg/husker-scope/img/Husker_Scope_hardware_design.png" alt="Husker Scope hardware interface design" class="framed" /> <figcaption><center>Husker Scope breakout board interface design</center></figcaption></figure></center>
We then prototyped a breakout board for the students to use in class.
<center><figure class="frame clear-top"style="width:30%"><img src="https://cse.unl.edu/~jfalkinburg/husker-scope/img/Husker_Scope_Board.jpg" alt="Husker Scope Breakout Board" class="framed" /> <figcaption><center>Final version of the Husker Scope breakout board</center></figcaption></figure></center>
<!-- <figure class="frame clear-top"style="width:100%"><img src="https://cse.unl.edu/~jfalkinburg/husker-scope/img/Husker_Scope_hardware_design.png" width="200" alt="Husker Scope hardware interface design" class="framed" /> <figcaption><center>Husker Scope breakout board interface design</center></figcaption></figure> -->
<!-- <figure class="frame clear-top"style="width:20%"><img src="https://cse.unl.edu/~jfalkinburg/husker-scope/img/Husker_Scope_Board.jpg" width="100" alt="Husker Scope Breakout Board" class="framed" /> <figcaption><center>Final version of the Husker Scope breakout board</center></figcaption></figure> -->
</p>
</div> <!-- end #Husker Scope Interface Hardware -->
</div><!-- end wdn-col-two-thirds -->
<div class="wdn-col-one-third" style="margin-top: 5em;">
<!-- <figure class="frame clear-top"style="width:45%"><img src="https://cse.unl.edu/~jfalkinburg/husker-scope/img/husker_scope_qr_code.png" alt="Husker Scope Download QR" class="framed" /> <figcaption><center>App Download QR Code</center></figcaption></figure> -->
<figure class="frame clear-top"><img src="https://cse.unl.edu/~jfalkinburg/husker-scope/img/Husker_Scope_App.png" alt="Husker Scope Application" class="framed" /> <figcaption><center>Notional Vision of Husker Scope App</center></figcaption></figure>
<figure class="frame clear-top"><img src="https://cse.unl.edu/~jfalkinburg/husker-scope/img/Husker_Scope_Logo.png" alt="Husker Scope Logo" class="framed" /> <figcaption><center>Husker Scope Logo</center></figcaption></figure>
<div id="myContactInfo">
<H5>Sponsors</H5>
<p><strong><a href="https://cse.unl.edu/~jfalkinburg">Prof Jeffrey Falkinburg</a></strong><br/>
Assistant Professor of Practice<br/>
368 Avery Hall<br/>
<a href="http://computing.unl.edu">School of Computing</a><br/>
<a href="http://www.unl.edu">University of Nebraska-Lincoln</a><br/>
<a href="http://lincoln.ne.gov">Lincoln</a>, <a href="http://www.nebraska.gov/">NE</a>
68588-0150
</p>
<p><a href="mailto:[email protected]">[email protected]</a><br/>
(402) 472-5120 (voice)<br/>
(402) 472-7767 (fax)
</p>
<!--<p><strong>Charles Daniel </strong><br/>
Computing Coordinator<br/>
27D Avery Hall<br/>
<a href="http://computing.unl.edu">School of Computing</a><br/>
<a href="http://www.unl.edu">University of Nebraska-Lincoln</a><br/>
<a href="http://lincoln.ne.gov">Lincoln</a>, <a href="http://www.nebraska.gov/">NE</a>
68588-0150
</p>
<p><a href="mailto:[email protected]">[email protected]</a><br/>
(402) 472-7577 (voice)
</p>-->
</div><!--end #myContactInfo -->
</div><!-- end wdn-col-one-third -->
</div><!--end wdn-col-full -->
<p>
<table border="0" cellspacing="10" cellpadding="0">
<tr>
<td>
<div id="Senior Design Development Team 2021-2022">
<a name="team"><h2 class="sec_header">Development Team 2021-2022</h2></a>
<ul>
<li>Brandon Ramos (Squad Lead & Development Manager)</li>
<li>Isaac Lien (Product Manager)</li>
<li>Ben Buckwalter (Developer)</li>
<li>Christian Lampe (Developer)</li>
<li>Riddock Moran (Developer)</li>
<li>Michael Rahe (Developer)</li>
</ul>
</div> <!-- end #Senior Design Development Team --> </td>
<td>
<img src="https://cse.unl.edu/~jfalkinburg/husker-scope/img/Team21-22.png" style="height:400px;" />
</td>
</tr>
<tr>
<td>
<div id="Senior Design Development Team 2022-2023">
<a name="team2"><h2 class="sec_header">Development Team 2022-2023</h2></a>
<ul>
<li>Isaac Lien (Multi-team Squad Lead & Software Product Manager)</li>
<li>Brady Smith (Hardware Product Manager)</li>
<li>Timothy Gibbons (Development Manager)</li>
<li>Samuel Briggs (Software Team Developer)</li>
<li>Benjamin Finnegan (Software Team Developer)</li>
<li>Caden Kirby (Software Team Developer)</li>
<li>Rachit Rajiv (Software Team Developer)</li>
<li>Sultan Alrefaei (Hardware Team Developer)</li>
<li>Joel Murch-Shafer (Hardware Team Developer)</li>
<li>Raoul Tayo Sop (Hardware Team Developer)</li>
</ul>
</div> <!-- end #Senior Design Development Team2 -->
</td>
<td>
<img src="https://cse.unl.edu/~jfalkinburg/husker-scope/img/Team22-23.png" style="height:400px;" />
</td>
</tr>
<tr>
<td>
<div id="Senior Design Development Team 2023-2024">
<a name="team3"><h2 class="sec_header">Development Team 2023-2024</h2></a>
<ul>
<li>Spencer Allen (Squad Lead & Development Manager)</li>
<li>Kevin Akerberg (Product Manager)</li>
<li>Chris Bayliss (Hardware Developer)</li>
<li>Adam Kamrath (Hardware Developer)</li>
<li>Matthew-Kurtis Thomas (Software Developer)</li>
<li>Luke Whipple (Software Developer)</li>
</ul>
</div> <!-- end #Senior Design Development Team2 -->
</td>
<td>
<img src="https://cse.unl.edu/~jfalkinburg/husker-scope/img/Team23-24.png" style="height:400px;" />
</td>
</tr>
</table>
</div></div></div> </div>
</div>
</div>
</div>
</div>
<!-- InstanceEndEditable -->
</div>
</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 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"/>
</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 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"/>
</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 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"/>
</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"/>
</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"/>
</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"/>
</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 /> 368 Avery Hall<br /> Lincoln, NE 68588<br /> 402-472-5120</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"/><g><circle fill="currentcolor" cx="120" cy="141.1" r="5"/><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"/></g><path fill="currentcolor" d="M322.6 123.7V66.9h21.9v56.2c0 16.2 8.1 24.6 21.4 24.6 13.3 0 21.4-8.1 21.4-23.9V66.9h21.9V123c0 30.1-16.9 44.9-43.6 44.9-26.7-.1-43-15-43-44.2zm115.3-56.8h20.2l46.6 61.2V66.9h21.6v99.4h-18.6l-48.1-63.2v63.2H438V66.9zm118.1 0h21.9v79.5h49.6v19.9H556V66.9zm137.6 0H739c12.6 0 22.4 3.6 29 10.1 5.5 5.5 8.5 13.3 8.5 22.7v.3c0 16-8.7 26.1-21.3 30.8l24.3 35.5H754l-21.3-31.8h-17.2v31.8h-21.9V66.9zm44 48.2c10.7 0 16.8-5.7 16.8-14.1v-.3c0-9.4-6.5-14.2-17.2-14.2h-21.7V115h22.1zm49.4 13.5v-.3c0-21.7 15.5-39.6 37.6-39.6 25.4 0 37.1 19.7 37.1 41.3 0 1.7-.1 3.7-.3 5.7h-53c2.1 9.8 8.9 14.9 18.6 14.9 7.2 0 12.5-2.3 18.5-7.8l12.4 10.9c-7.1 8.8-17.3 14.2-31.1 14.2-22.9.1-39.8-16-39.8-39.3zm53.7-6.4c-1.3-9.7-7-16.2-16-16.2-8.9 0-14.8 6.4-16.5 16.2h32.5zm35-32h21.6v10.9c5.3-7.1 12.5-12.4 23.7-12.4 17.8 0 34.6 13.9 34.6 39.3v.3c0 25.4-16.6 39.3-34.6 39.3-11.5 0-18.6-5.3-23.7-11.4V189h-21.6V90.2zm58.3 38.1v-.3c0-12.6-8.5-21-18.6-21-10.1 0-18.5 8.4-18.5 21v.3c0 12.6 8.4 21 18.5 21 10.1.1 18.6-8.2 18.6-21zm31.9.3v-.3c0-21.9 17.6-39.6 41.3-39.6 23.6 0 41 17.5 41 39.3v.3c0 21.9-17.6 39.6-41.3 39.6-23.5.1-41-17.4-41-39.3zm61.1 0v-.3c0-11.2-8.1-21-20-21-12.4 0-19.7 9.5-19.7 20.7v.3c0 11.2 8.1 21 20 21 12.3.1 19.7-9.4 19.7-20.7zm35.1-38.4h21.6v15.3c4.4-10.5 11.5-17.3 24.3-16.8v22.6h-1.1c-14.3 0-23.1 8.7-23.1 26.8v28.1h-21.6v-76zm62.4 54.5v-36.1h-9.1V90.2h9.1V70.7h21.6v19.5h17.9v18.5h-17.9v32.5c0 5 2.1 7.4 7 7.4 4 0 7.5-1 10.7-2.7v17.3c-4.5 2.7-9.8 4.4-17 4.4-13.3-.1-22.3-5.3-22.3-22.9z"/></svg>
</a></li>
</ul>
</div>
<div id="dcf-footer-group-4">
<h2 id="dcf-footer-group-4-heading">Policies & Reports</h2>
<ul aria-labelledby="dcf-footer-group-4-heading">
<li><a href="https://www.unl.edu/accessibility-statement/">Accessibility Statement</a></li>
<li><a href="https://emergency.unl.edu/">Emergency Planning and Preparedness</a></li>
<li><a href="https://www.unl.edu/equity/">Institutional Equity and Compliance</a></li>
<li><a href="https://www.unl.edu/equity/notice-nondiscrimination">Notice of Nondiscrimination</a></li>
<li><a href="https://its.unl.edu/unlprivacypolicy">Privacy Policy</a></li>
<li><a href="https://cse.unl.edu/~jfalkinburg/husker-scope/privacy/">Husker Scope Privacy Policy</a></li>
<li><a href="https://police.unl.edu/safety-reports-and-statistics#annual-report">Security and Fire Safety Report</a></li>
<li><a href="https://heoa.unl.edu/">Student Information Disclosures</a></li>
</ul>
</div>
</div>
</div>
<div class="dcf-wrapper dcf-pb-7">
<div class="unl-wdn-qa dcf-pb-4 dcf-txt-2xs">UNL web framework and quality assurance provided by the <a href="https://wdn.unl.edu/">Web Developer Network</a> · <a id="qa-test" href="https://webaudit.unl.edu/qa-test/">QA Test</a></div>
<div class="dcf-grid-halves@sm dcf-col-gap-vw dcf-ai-baseline dcf-pt-4 dcf-bt-1 dcf-bt-solid unl-bt-cream">
<div class="unl-footer-unl">
<a class="dcf-institution-title dcf-d-inline-block dcf-txt-xs dcf-txt-decor-hover unl-ls-3" 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>
</div>
<small class="dcf-txt-2xs">Established 1869 · Copyright 2021</small>
</div>
</div>
</div>
<noscript>
<div id="dcf-noscript">
<p>Some parts of this site work best with JavaScript enabled.</p>
</div>
</noscript>
</footer>
<script src="https://unlcms.unl.edu/wdn/templates_5.3/js/compressed/all.js?dep=5.3.9" id="wdn_dependents"></script>
<script>
if (!('grid' in document.body.style)) {
const fallback = '<link rel=stylesheet href=https://unlcms.unl.edu/wdn/templates_5.3/css/legacy.css?dep=5.3.9>';
document.head.insertAdjacentHTML('beforeend', fallback);
}
</script>
<!-- InstanceBeginEditable name="jsbody" -->
<script type="text/javascript">
<!--//--><![CDATA[//><!--
WDN.setPluginParam('idm', 'login', '/user?destination=node/1'); WDN.setPluginParam('idm', 'logout', '/user/logout');
//--><!]]>
</script>
<!-- InstanceEndEditable -->
</body>
<!-- InstanceEnd --></html>