-
Notifications
You must be signed in to change notification settings - Fork 0
/
about-us.html
1086 lines (789 loc) · 49.4 KB
/
about-us.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>
<head>
<title>About Us - NuCamp</title>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
<meta name="viewport" content="width=device-width, initial-scale=1.0"/>
<link href="http://fonts.googleapis.com/css?family=Karla:400,700|Oswald:700|Roboto+Mono:400,400i,700,700i" rel="stylesheet">
<script src="files/theme/MutationObserver.js"></script>
<style>
.navbar__logo .icon,
.navbar__center .navbar__logo:after {
color: #2990ea !important;
}
.header-prompt .navbar__link--login,
.header-prompt .navbar__link.navbar__link--signup {
color: #666C70 !important;
}
.header-prompt .navbar__link.navbar__link--signup {
box-shadow: inset 0 0 0 2px #C9CDCF !important;
}
</style>
<!-- Facebook Pixel Code -->
<script>
!function(f,b,e,v,n,t,s)
{if(f.fbq)return;n=f.fbq=function(){n.callMethod?
n.callMethod.apply(n,arguments):n.queue.push(arguments)};
if(!f._fbq)f._fbq=n;n.push=n;n.loaded=!0;n.version='2.0';
n.queue=[];t=b.createElement(e);t.async=!0;
t.src=v;s=b.getElementsByTagName(e)[0];
s.parentNode.insertBefore(t,s)}(window, document,'script',
'https://connect.facebook.net/en_US/fbevents.js');
fbq('init', '394232570977305');
fbq('track', 'PageView');
</script>
<noscript><img height="1" width="1" style="display:none"
src="https://www.facebook.com/tr?id=394232570977305&ev=PageView&noscript=1"
/></noscript>
<!-- End Facebook Pixel Code -->
<link id="wsite-base-style" rel="stylesheet" type="text/css" href="http://cdn2.editmysite.com/css/sites.css?buildTime=1234" />
<link rel="stylesheet" type="text/css" href="http://cdn2.editmysite.com/css/old/fancybox.css?1234" />
<link rel="stylesheet" type="text/css" href="http://cdn2.editmysite.com/css/social-icons.css?buildtime=1234" media="screen,projection" />
<link rel="stylesheet" type="text/css" href="files/main_style.css?1504557476" title="wsite-theme-css" />
<link href='http://fonts.googleapis.com/css?family=Karla:400,700,400italic,700italic&subset=latin,latin-ext' rel='stylesheet' type='text/css' />
<link href='http://fonts.googleapis.com/css?family=Oswald:400,300,700&subset=latin,latin-ext' rel='stylesheet' type='text/css' />
<link href='http://fonts.googleapis.com/css?family=Lato:400,300,300italic,700,400italic,700italic&subset=latin,latin-ext' rel='stylesheet' type='text/css' />
<link href='http://fonts.googleapis.com/css?family=Lato:400,300,300italic,700,400italic,700italic&subset=latin,latin-ext' rel='stylesheet' type='text/css' />
<link href='http://fonts.googleapis.com/css?family=Lato:400,300,300italic,700,400italic,700italic&subset=latin,latin-ext' rel='stylesheet' type='text/css' />
<link href='http://fonts.googleapis.com/css?family=Lato:400,300,300italic,700,400italic,700italic&subset=latin,latin-ext' rel='stylesheet' type='text/css' />
<link href='http://fonts.googleapis.com/css?family=Lato:400,300,300italic,700,400italic,700italic&subset=latin,latin-ext' rel='stylesheet' type='text/css' />
<link href='http://fonts.googleapis.com/css?family=Lora:400,700,400italic,700italic&subset=latin,latin-ext' rel='stylesheet' type='text/css' />
<link href='http://fonts.googleapis.com/css?family=Lato:400,300,300italic,700,400italic,700italic&subset=latin,latin-ext' rel='stylesheet' type='text/css' />
<link href='http://fonts.googleapis.com/css?family=Lora:400,700,400italic,700italic&subset=latin,latin-ext' rel='stylesheet' type='text/css' />
<style type='text/css'>
.wsite-elements.wsite-not-footer:not(.wsite-header-elements) div.paragraph, .wsite-elements.wsite-not-footer:not(.wsite-header-elements) p, .wsite-elements.wsite-not-footer:not(.wsite-header-elements) .product-block .product-title, .wsite-elements.wsite-not-footer:not(.wsite-header-elements) .product-description, .wsite-elements.wsite-not-footer:not(.wsite-header-elements) .wsite-form-field label, .wsite-elements.wsite-not-footer:not(.wsite-header-elements) .wsite-form-field label, #wsite-content div.paragraph, #wsite-content p, #wsite-content .product-block .product-title, #wsite-content .product-description, #wsite-content .wsite-form-field label, #wsite-content .wsite-form-field label, .blog-sidebar div.paragraph, .blog-sidebar p, .blog-sidebar .wsite-form-field label, .blog-sidebar .wsite-form-field label {font-family:"Lato" !important;}
#wsite-content div.paragraph, #wsite-content p, #wsite-content .product-block .product-title, #wsite-content .product-description, #wsite-content .wsite-form-field label, #wsite-content .wsite-form-field label, .blog-sidebar div.paragraph, .blog-sidebar p, .blog-sidebar .wsite-form-field label, .blog-sidebar .wsite-form-field label {}
.wsite-elements.wsite-footer div.paragraph, .wsite-elements.wsite-footer p, .wsite-elements.wsite-footer .product-block .product-title, .wsite-elements.wsite-footer .product-description, .wsite-elements.wsite-footer .wsite-form-field label, .wsite-elements.wsite-footer .wsite-form-field label{font-family:"Lato" !important;}
.wsite-elements.wsite-not-footer:not(.wsite-header-elements) h2, .wsite-elements.wsite-not-footer:not(.wsite-header-elements) .product-long .product-title, .wsite-elements.wsite-not-footer:not(.wsite-header-elements) .product-large .product-title, .wsite-elements.wsite-not-footer:not(.wsite-header-elements) .product-small .product-title, #wsite-content h2, #wsite-content .product-long .product-title, #wsite-content .product-large .product-title, #wsite-content .product-small .product-title, .blog-sidebar h2 {font-family:"Lato" !important;letter-spacing: 0px !important;}
#wsite-content h2, #wsite-content .product-long .product-title, #wsite-content .product-large .product-title, #wsite-content .product-small .product-title, .blog-sidebar h2 {}
.wsite-elements.wsite-footer h2, .wsite-elements.wsite-footer .product-long .product-title, .wsite-elements.wsite-footer .product-large .product-title, .wsite-elements.wsite-footer .product-small .product-title{font-family:"Lato" !important;}
#wsite-title {}
.wsite-footer h2 a, .wsite-footer .paragraph a, .wsite-footer blockquote a {color:#fff !important;}
.wsite-menu-default a {}
.wsite-menu a {}
.wsite-image div, .wsite-caption {}
.galleryCaptionInnerText {}
.fancybox-title {}
.wslide-caption-text {}
.wsite-phone {}
.wsite-headline,.wsite-header-section .wsite-content-title {font-family:"Lato" !important;}
.wsite-headline-paragraph,.wsite-header-section .paragraph {font-family:"Lora" !important;}
.wsite-button-inner {font-family:"Lato" !important;}
.wsite-not-footer blockquote {font-family:"Lora" !important;color:#c36522 !important;}
.wsite-footer blockquote {}
.blog-header h2 a {}
#wsite-content h2.wsite-product-title {}
.wsite-product .wsite-product-price a {}
.wsite-footer h2 a:hover, .wsite-footer .paragraph a:hover, .wsite-footer blockquote a:hover {color:#fff !important;}
@media screen and (min-width: 767px) {.wsite-elements.wsite-not-footer:not(.wsite-header-elements) div.paragraph, .wsite-elements.wsite-not-footer:not(.wsite-header-elements) p, .wsite-elements.wsite-not-footer:not(.wsite-header-elements) .product-block .product-title, .wsite-elements.wsite-not-footer:not(.wsite-header-elements) .product-description, .wsite-elements.wsite-not-footer:not(.wsite-header-elements) .wsite-form-field label, .wsite-elements.wsite-not-footer:not(.wsite-header-elements) .wsite-form-field label, #wsite-content div.paragraph, #wsite-content p, #wsite-content .product-block .product-title, #wsite-content .product-description, #wsite-content .wsite-form-field label, #wsite-content .wsite-form-field label, .blog-sidebar div.paragraph, .blog-sidebar p, .blog-sidebar .wsite-form-field label, .blog-sidebar .wsite-form-field label {font-size:16px !important;}
#wsite-content div.paragraph, #wsite-content p, #wsite-content .product-block .product-title, #wsite-content .product-description, #wsite-content .wsite-form-field label, #wsite-content .wsite-form-field label, .blog-sidebar div.paragraph, .blog-sidebar p, .blog-sidebar .wsite-form-field label, .blog-sidebar .wsite-form-field label {}
.wsite-elements.wsite-footer div.paragraph, .wsite-elements.wsite-footer p, .wsite-elements.wsite-footer .product-block .product-title, .wsite-elements.wsite-footer .product-description, .wsite-elements.wsite-footer .wsite-form-field label, .wsite-elements.wsite-footer .wsite-form-field label{}
.wsite-elements.wsite-not-footer:not(.wsite-header-elements) h2, .wsite-elements.wsite-not-footer:not(.wsite-header-elements) .product-long .product-title, .wsite-elements.wsite-not-footer:not(.wsite-header-elements) .product-large .product-title, .wsite-elements.wsite-not-footer:not(.wsite-header-elements) .product-small .product-title, #wsite-content h2, #wsite-content .product-long .product-title, #wsite-content .product-large .product-title, #wsite-content .product-small .product-title, .blog-sidebar h2 {font-size:34px !important;}
#wsite-content h2, #wsite-content .product-long .product-title, #wsite-content .product-large .product-title, #wsite-content .product-small .product-title, .blog-sidebar h2 {}
.wsite-elements.wsite-footer h2, .wsite-elements.wsite-footer .product-long .product-title, .wsite-elements.wsite-footer .product-large .product-title, .wsite-elements.wsite-footer .product-small .product-title{}
#wsite-title {font-size:27px !important;}
.wsite-menu-default a {}
.wsite-menu a {}
.wsite-image div, .wsite-caption {}
.galleryCaptionInnerText {}
.fancybox-title {}
.wslide-caption-text {}
.wsite-phone {}
.wsite-headline,.wsite-header-section .wsite-content-title {font-size:56px !important;}
.wsite-headline-paragraph,.wsite-header-section .paragraph {font-size:18px !important;}
.wsite-button-inner {}
.wsite-not-footer blockquote {font-size:16px !important;}
.wsite-footer blockquote {}
.blog-header h2 a {}
#wsite-content h2.wsite-product-title {}
.wsite-product .wsite-product-price a {}
}</style>
<link rel="stylesheet" type="text/css" href="http://fonts.googleapis.com/css?family=Open+Sans:400italic,700italic,300,400,700" />
<style>
@font-face {
font-family: 'wicons';
src: url(//cdn2.editmysite.com/fonts/wIcons/wicons.eot?buildTime=1234);
src: url(//cdn2.editmysite.com/fonts/wIcons/wicons.eot?buildTime=1234#iefix) format('embedded-opentype'),
url(//cdn2.editmysite.com/fonts/wIcons/wicons.woff?buildTime=1234) format('woff'),
url(//cdn2.editmysite.com/fonts/wIcons/wicons.ttf?buildTime=1234) format('truetype'),
url(//cdn2.editmysite.com/fonts/wIcons/wicons.svg?buildTime=1234#wicons) format('svg');
font-weight: normal;
font-style: normal;
}
/* Hack to smooth out font rendering on Chrome for Windows */
@media screen and (-webkit-min-device-pixel-ratio: 0) {
@font-face {
font-family: 'wicons';
src: url(//cdn2.editmysite.com/fonts/wIcons/wicons.svg?buildTime=1234#wicons) format('svg');
}
}
@font-face {
font-family: 'wsocial';
src: url(//cdn2.editmysite.com/fonts/wSocial/wsocial.eot?buildTime=1234);
src: url(//cdn2.editmysite.com/fonts/wSocial/wsocial.eot?buildTime=1234#iefix) format('embedded-opentype'),
url(//cdn2.editmysite.com/fonts/wSocial/wsocial.woff?buildTime=1234) format('woff'),
url(//cdn2.editmysite.com/fonts/wSocial/wsocial.ttf?buildTime=1234) format('truetype'),
url(//cdn2.editmysite.com/fonts/wSocial/wsocial.svg?buildTime=1234#wsocial) format('svg');
font-weight: normal;
font-style: normal;
}
/* Hack to smooth out font rendering on Chrome for Windows */
@media screen and (-webkit-min-device-pixel-ratio: 0) {
@font-face {
font-family: 'wsocial';
src: url(//cdn2.editmysite.com/fonts/wSocial/wsocial.svg?buildTime=1234#wsocial) format('svg');
}
}
</style>
<link rel="stylesheet" type="text/css" href="http://cdn2.editmysite.com/css/site_membership.css?buildTime=1234">
<script src='files/templateArtifacts.js?1504550884'></script>
<script>
var STATIC_BASE = '//cdn1.editmysite.com/';
var ASSETS_BASE = '//cdn2.editmysite.com/';
var STYLE_PREFIX = 'wsite';
</script>
<script src='https://ajax.googleapis.com/ajax/libs/jquery/1.8.3/jquery.min.js'></script>
<script type="text/javascript" src="http://cdn2.editmysite.com/js/lang/en/stl.js?buildTime=1234&"></script>
<script src="http://cdn2.editmysite.com/js/site/main.js?buildTime=1234"></script><script type="text/javascript"> _W = _W || {}; _W.securePrefix='UNSET'; </script><script type="text/javascript">
_W = window._W || {};
_W.allowMemberRegistration = true;
_W.showLogin = false;
</script><script type="text/javascript">
function initMembershipModels() {
(function(){_W.setup_rpc({"url":"\/ajax\/api\/JsonRPC\/Membership\/","actions":{"Member":[{"name":"getRedirectUrl","len":1,"multiple":false,"standalone":false},{"name":"getOriginUrl","len":0,"multiple":false,"standalone":false},{"name":"getSecureMemberUrl","len":0,"multiple":false,"standalone":false},{"name":"validate_user","len":2,"multiple":false,"standalone":false},{"name":"get_account_information","len":0,"multiple":false,"standalone":false},{"name":"get_session_details","len":0,"multiple":false,"standalone":false},{"name":"register_member","len":4,"multiple":false,"standalone":false},{"name":"validate_session","len":1,"multiple":false,"standalone":false},{"name":"set_password","len":3,"multiple":false,"standalone":false},{"name":"send_reset_password_email","len":1,"multiple":false,"standalone":false},{"name":"create","len":1,"multiple":false,"standalone":false},{"name":"readOne","len":1,"multiple":false,"standalone":false},{"name":"readMany","len":1,"multiple":false,"standalone":false},{"name":"update","len":1,"multiple":false,"standalone":false},{"name":"patch","len":1,"multiple":false,"standalone":false},{"name":"destroy","len":1,"multiple":false,"standalone":false}]},"namespace":"_W.Membership.RPC"});
_W.setup_model_rpc({"rpc_namespace":"_W.Membership.RPC","model_namespace":"_W.Membership.BackboneModelData","collection_namespace":"_W.Membership.BackboneCollectionData","bootstrap_namespace":"_W.Membership.BackboneBootstrap","models":{"Member":{"_class":"Membership.Model.Member","defaults":{"class_name":null,"name":null,"email":"","access_token":null,"token_expiry_date":null,"last_ip":null,"last_login":null,"approved":false,"password_set":null,"group_ids":null,"page_ids":null,"group_page_ids":null,"owner_id":"","site_id":"","updated_date":0,"created_date":0},"validation":{"class_name":null,"site_member_id":null,"name":null,"email":{"email":null,"required":true},"access_token":null,"token_expiry_date":null,"last_ip":null,"last_login":null,"approved":null,"password_set":null,"group_ids":null,"page_ids":null,"group_page_ids":null,"owner_id":{"required":true},"site_id":{"required":true},"updated_date":null,"created_date":null},"types":{"class_name":null,"site_member_id":"string","name":"string","email":"string","access_token":"string","token_expiry_date":"int","last_ip":"string","last_login":"int","approved":"boolean","password_set":"boolean","group_ids":"json","page_ids":"json","group_page_ids":"json","owner_id":"string","site_id":"string","updated_date":"int","created_date":"int"},"idAttribute":"site_member_id","keydefs":{"PRIMARY":["owner_id","site_id","site_member_id"]}}},"collections":{"Member":{"_class":"Membership.Collection.Member"}},"bootstrap":[]});
})();
}
if(document.createEvent && document.addEventListener) {
var initEvt = document.createEvent('Event');
initEvt.initEvent('membershipModelsInitialized', true, false);
document.dispatchEvent(initEvt);
} else if(document.documentElement.initMembershipModels === 0){
document.documentElement.initMembershipModels++
}
</script><script src='http://cdn2.editmysite.com/js/site/main-membership-site.js?buildTime=1234'></script>
<script type="html/template" id="tracking-pixel-cart_page">fbq('track', 'AddToCart');</script><script type="html/template" id="tracking-pixel-payment_page">fbq('track', 'InitiateCheckout');</script><script type="html/template" id="tracking-pixel-receipt_page"></script><script type="text/javascript">_W.configDomain = "www.weebly.com";</script><script>_W.relinquish && _W.relinquish()</script>
<script type="text/javascript" src="http://cdn2.editmysite.com/js/lang/en/stl.js?buildTime=1234&"></script><script> _W.themePlugins = [];</script><script type="text/javascript"> _W.recaptchaUrl = "https://www.google.com/recaptcha/api.js"; </script><script type="text/javascript"><!--
var IS_ARCHIVE = 1;
function initFlyouts(){
initPublishedFlyoutMenus(
[{"id":"754490774483051779","title":"Home","url":"index.html","target":"","nav_menu":false,"nonclickable":false},{"id":"109705757819854284","title":"Curriculum","url":"curriculum.html","target":"","nav_menu":false,"nonclickable":true},{"id":"956895100415078352","title":"Become an Instructor","url":"become-an-instructor.html","target":"","nav_menu":false,"nonclickable":false},{"id":"919926798643915406","title":"Testimonials","url":"testimonials.html","target":"","nav_menu":false,"nonclickable":false},{"id":"388313115104624120","title":"About Us","url":"about-us.html","target":"","nav_menu":false,"nonclickable":false}],
"388313115104624120",
'',
'active',
false,
{"navigation\/item":"<li {{#id}}id=\"{{id}}\"{{\/id}} class=\"wsite-menu-item-wrap {{#has_children}}has-submenu{{\/has_children}}\">\n <a\n {{^nonclickable}}\n {{^nav_menu}}\n href=\"{{url}}\"\n {{\/nav_menu}}\n {{\/nonclickable}}\n {{#target}}\n target=\"{{target}}\"\n {{\/target}}\n {{#membership_required}}\n data-membership-required=\"{{.}}\"\n {{\/membership_required}}\n {{#nonclickable}}\n class=\"wsite-menu-item dead-link\"\n {{\/nonclickable}}\n {{^nonclickable}}\n class=\"wsite-menu-item\"\n {{\/nonclickable}}\n >\n {{{title_html}}}\n <\/a>\n {{#has_children}}{{> navigation\/flyout\/list}}{{\/has_children}}\n<\/li>\n","navigation\/flyout\/list":"<div class=\"wsite-menu-wrap\" style=\"display:none\">\n\t<ul class=\"wsite-menu\">\n\t\t{{#children}}{{> navigation\/flyout\/item}}{{\/children}}\n\t<\/ul>\n<\/div>\n","navigation\/flyout\/item":"<li {{#id}}id=\"{{id}}\"{{\/id}}\n class=\"wsite-menu-subitem-wrap {{#is_current}}wsite-nav-current{{\/is_current}} {{#has_children}}has-submenu{{\/has_children}}\"\n >\n <a\n {{^nonclickable}}\n {{^nav_menu}}\n href=\"{{url}}\"\n {{\/nav_menu}}\n {{\/nonclickable}}\n {{#target}}\n target=\"{{target}}\"\n {{\/target}}\n {{#nonclickable}}\n class=\"wsite-menu-item dead-link\"\n {{\/nonclickable}}\n {{^nonclickable}}\n class=\"wsite-menu-item\"\n {{\/nonclickable}}\n >\n <span class=\"wsite-menu-title\">\n {{{title_html}}}\n <\/span>\n <\/a>\n {{#has_children}}{{> navigation\/flyout\/list}}{{\/has_children}}\n<\/li>\n"},
{"hasCustomMinicart":true}
)
}
//-->
</script>
</head>
<body class="header-page wsite-page-about-us wsite-theme-light header-sticky banner-overlay-on "><div class="wrapper">
<div class="edison-header">
<div class="container">
<div class="header-inner-wrap">
<div class="logo">
<span class="wsite-logo">
<a href="">
<span id="wsite-title">NuCamp</span>
</a>
</span>
</div>
<div class="nav-wrap">
<div class="dummy-menu"><ul class="wsite-menu-default">
<li id="pg754490774483051779" class="wsite-menu-item-wrap ">
<a
href="index.html"
class="wsite-menu-item"
>
Home
</a>
</li>
<li id="pg109705757819854284" class="wsite-menu-item-wrap has-submenu">
<a
class="wsite-menu-item dead-link"
>
Curriculum
</a>
<div class="wsite-menu-wrap" style="display:none">
<ul class="wsite-menu">
<li id="wsite-nav-646425556188718970"
class="wsite-menu-subitem-wrap "
>
<a
href="fullstackwebmobile.html"
class="wsite-menu-item"
>
<span class="wsite-menu-title">
Full Stack Web and Mobile Development
</span>
</a>
</li>
<li id="wsite-nav-373311952614905009"
class="wsite-menu-subitem-wrap "
>
<a
href="all-courses.html"
class="wsite-menu-item"
>
<span class="wsite-menu-title">
All Courses
</span>
</a>
</li>
</ul>
</div>
</li>
<li id="pg956895100415078352" class="wsite-menu-item-wrap ">
<a
href="become-an-instructor.html"
class="wsite-menu-item"
>
Become an Instructor
</a>
</li>
<li id="pg919926798643915406" class="wsite-menu-item-wrap ">
<a
href="testimonials.html"
class="wsite-menu-item"
>
Testimonials
</a>
</li>
<li id="active" class="wsite-menu-item-wrap ">
<a
href="about-us.html"
class="wsite-menu-item"
>
About Us
</a>
</li>
</ul>
</div>
<div class="nav desktop-nav"><ul class="wsite-menu-default">
<li id="pg754490774483051779" class="wsite-menu-item-wrap ">
<a
href="index.html"
class="wsite-menu-item"
>
Home
</a>
</li>
<li id="pg109705757819854284" class="wsite-menu-item-wrap has-submenu">
<a
class="wsite-menu-item dead-link"
>
Curriculum
</a>
<div class="wsite-menu-wrap" style="display:none">
<ul class="wsite-menu">
<li id="wsite-nav-646425556188718970"
class="wsite-menu-subitem-wrap "
>
<a
href="fullstackwebmobile.html"
class="wsite-menu-item"
>
<span class="wsite-menu-title">
Full Stack Web and Mobile Development
</span>
</a>
</li>
<li id="wsite-nav-373311952614905009"
class="wsite-menu-subitem-wrap "
>
<a
href="all-courses.html"
class="wsite-menu-item"
>
<span class="wsite-menu-title">
All Courses
</span>
</a>
</li>
</ul>
</div>
</li>
<li id="pg956895100415078352" class="wsite-menu-item-wrap ">
<a
href="become-an-instructor.html"
class="wsite-menu-item"
>
Become an Instructor
</a>
</li>
<li id="pg919926798643915406" class="wsite-menu-item-wrap ">
<a
href="testimonials.html"
class="wsite-menu-item"
>
Testimonials
</a>
</li>
<li id="active" class="wsite-menu-item-wrap ">
<a
href="about-us.html"
class="wsite-menu-item"
>
About Us
</a>
</li>
</ul>
</div>
</div>
<div class="site-utils">
<div class="wsite-search-wrap">
<a href="#" class="search-toggle">
Search
</a>
</div>
<button class="hamburger"><i></i></button>
</div>
</div>
</div>
</div>
<div class="banner-wrap">
<div class="wsite-elements wsite-not-footer wsite-header-elements">
<div class="wsite-section-wrap">
<div class="wsite-section wsite-header-section wsite-section-bg-image" style="height: 322px;background-image: url("/uploads/1/0/5/7/105711179/background-images/636908833.png") ;background-repeat: no-repeat ;background-position: 63.15% 100.00% ;background-size: 100% ;background-color: transparent ;background-size: cover;" >
<div class="wsite-section-content">
<div class="container">
<div class="banner">
<div class="wsite-section-elements">
<div><div id="867697291361766956" align="inherit" style="width: 100%; overflow-y: hidden;" class="wcustomhtml"><script>
fbq('track', 'ViewContent');
</script></div>
</div>
<div id="297084313536534127"><div><style type="text/css">
#element-0b5a3f8a-e9af-4e27-aad4-95fe8b4bf8f5 a.back-to-top {
display: none;
width: 60px;
height: 60px;
text-indent: -9999px;
position: fixed;
z-index: 999;
bottom: 70px;
background: #FFC800 url("//marketplace.editmysite.com/elements/569198776394566218-1.0.1/assets/up-arrow.png") no-repeat center 43%;
-webkit-border-radius: 30px;
-moz-border-radius: 30px;
border-radius: 30px;
}
#element-0b5a3f8a-e9af-4e27-aad4-95fe8b4bf8f5 a.back-to-top.back-to-top-left {
left: 30px;
}
#element-0b5a3f8a-e9af-4e27-aad4-95fe8b4bf8f5 a.back-to-top.back-to-top-right {
right: 30px;
}
</style><div id="element-0b5a3f8a-e9af-4e27-aad4-95fe8b4bf8f5" data-platform-element-id="569198776394566218-1.0.1" class="platform-element-contents">
<a href="#" class="back-to-top back-to-top-right"></a>
</div>
<div style="clear:both;"></div><script type="text/javascript" class="element-script">function setupElement297084313536534127() {
var requireFunc = window.platformElementRequire || window.require;
// Relies on a global require, specific to platform elements
requireFunc([
'w-global',
'underscore',
'jquery',
'backbone',
'util/platform/elements/PlatformElement',
'util/platform/elements/PlatformElementSettings'
], function(
_W,
_,
$,
Backbone,
PlatformElement,
PlatformElementSettings
) {
var dependencies = null || [];
var platform_element_id = "569198776394566218-1.0.1";
if (typeof _W.loadedPlatformDependencies === 'undefined') {
_W.loadedPlatformDependencies = [];
}
if (typeof _W.platformElements === 'undefined') {
_W.platformElements = [];
}
if (typeof _W.platformElements[platform_element_id] === 'undefined') {
_W.platformElements[platform_element_id] = {};
_W.platformElements[platform_element_id].deferredObject = new $.Deferred();
_W.platformElements[platform_element_id].deferredPromise = _W.platformElements[platform_element_id].deferredObject.promise();
}
if(_.intersection(_W.loadedPlatformDependencies, dependencies).length !== dependencies.length){
_.reduce(dependencies, function(promise, nextScript){
_W.loadedPlatformDependencies.push(nextScript);
return promise.then(function(){
return $.getScript(nextScript);
});
}, $().promise()).then(function(){
_W.platformElements[platform_element_id].deferredObject.resolve();
});
}
if (dependencies.length === 0){
_W.platformElements[platform_element_id].deferredObject.resolve();
}
_W.platformElements[platform_element_id].deferredPromise.done(function(){
var _ElementDefinition = PlatformElement.extend({
initialize: function(options) {
this.amountScrolled = 300;
var self = this;
$(window).bind('scroll', function (ev) {
self.checkAppear();
});
},
events: {
"click a.back-to-top": "goBackToTop"
},
goBackToTop: function() {
var animateTimeMS = 1000 - (parseInt(this.settings.get("scroll_speed")) * 100);
$('html, body').animate({
scrollTop: 0
}, animateTimeMS);
return false;
},
checkAppear: function() {
if ( $(window).scrollTop() > this.amountScrolled ) {
$('a.back-to-top').fadeIn('slow');
} else {
$('a.back-to-top').fadeOut('slow');
}
}
});
;
if (typeof _ElementDefinition == 'undefined' || typeof _ElementDefinition == 'null') {
var _ElementDefinition = PlatformElement.extend({});
}
var _Element = _ElementDefinition.extend({
initialize: function() {
// we still want to call the initialize function defined by the developer
// however, we don't want to call it until placeholders have been replaced
this.placeholderInterval = setInterval(function() {
// so use setInterval to check for placeholders.
if (this.$('.platform-element-child-placeholder').length == 0) {
clearInterval(this.placeholderInterval);
this.constructor.__super__.initialize.apply(this);
}
}.bind(this), 100);
}
});
_Element.prototype.settings = new PlatformElementSettings({"icon_size_each":[{"icon_size_index":0},{"icon_size_index":1},{"icon_size_index":2},{"icon_size_index":3},{"icon_size_index":4},{"icon_size_index":5},{"icon_size_index":6},{"icon_size_index":7},{"icon_size_index":8},{"icon_size_index":9},{"icon_size_index":10},{"icon_size_index":11},{"icon_size_index":12},{"icon_size_index":13},{"icon_size_index":14},{"icon_size_index":15},{"icon_size_index":16},{"icon_size_index":17},{"icon_size_index":18},{"icon_size_index":19},{"icon_size_index":20},{"icon_size_index":21},{"icon_size_index":22},{"icon_size_index":23},{"icon_size_index":24},{"icon_size_index":25},{"icon_size_index":26},{"icon_size_index":27},{"icon_size_index":28},{"icon_size_index":29},{"icon_size_index":30},{"icon_size_index":31},{"icon_size_index":32},{"icon_size_index":33},{"icon_size_index":34},{"icon_size_index":35},{"icon_size_index":36},{"icon_size_index":37},{"icon_size_index":38},{"icon_size_index":39},{"icon_size_index":40},{"icon_size_index":41},{"icon_size_index":42},{"icon_size_index":43},{"icon_size_index":44},{"icon_size_index":45},{"icon_size_index":46},{"icon_size_index":47},{"icon_size_index":48},{"icon_size_index":49},{"icon_size_index":50},{"icon_size_index":51},{"icon_size_index":52},{"icon_size_index":53},{"icon_size_index":54},{"icon_size_index":55},{"icon_size_index":56},{"icon_size_index":57},{"icon_size_index":58},{"icon_size_index":59}],"scroll_speed_each":[{"scroll_speed_index":0},{"scroll_speed_index":1},{"scroll_speed_index":2}],"margin_bottom_each":[{"margin_bottom_index":0},{"margin_bottom_index":1},{"margin_bottom_index":2},{"margin_bottom_index":3},{"margin_bottom_index":4},{"margin_bottom_index":5},{"margin_bottom_index":6},{"margin_bottom_index":7},{"margin_bottom_index":8},{"margin_bottom_index":9},{"margin_bottom_index":10},{"margin_bottom_index":11},{"margin_bottom_index":12},{"margin_bottom_index":13},{"margin_bottom_index":14},{"margin_bottom_index":15},{"margin_bottom_index":16},{"margin_bottom_index":17},{"margin_bottom_index":18},{"margin_bottom_index":19},{"margin_bottom_index":20},{"margin_bottom_index":21},{"margin_bottom_index":22},{"margin_bottom_index":23},{"margin_bottom_index":24},{"margin_bottom_index":25},{"margin_bottom_index":26},{"margin_bottom_index":27},{"margin_bottom_index":28},{"margin_bottom_index":29},{"margin_bottom_index":30},{"margin_bottom_index":31},{"margin_bottom_index":32},{"margin_bottom_index":33},{"margin_bottom_index":34},{"margin_bottom_index":35},{"margin_bottom_index":36},{"margin_bottom_index":37},{"margin_bottom_index":38},{"margin_bottom_index":39},{"margin_bottom_index":40},{"margin_bottom_index":41},{"margin_bottom_index":42},{"margin_bottom_index":43},{"margin_bottom_index":44},{"margin_bottom_index":45},{"margin_bottom_index":46},{"margin_bottom_index":47},{"margin_bottom_index":48},{"margin_bottom_index":49},{"margin_bottom_index":50},{"margin_bottom_index":51},{"margin_bottom_index":52},{"margin_bottom_index":53},{"margin_bottom_index":54},{"margin_bottom_index":55},{"margin_bottom_index":56},{"margin_bottom_index":57},{"margin_bottom_index":58},{"margin_bottom_index":59},{"margin_bottom_index":60},{"margin_bottom_index":61},{"margin_bottom_index":62},{"margin_bottom_index":63},{"margin_bottom_index":64},{"margin_bottom_index":65},{"margin_bottom_index":66},{"margin_bottom_index":67},{"margin_bottom_index":68},{"margin_bottom_index":69}],"margin_horizontal_each":[{"margin_horizontal_index":0},{"margin_horizontal_index":1},{"margin_horizontal_index":2},{"margin_horizontal_index":3},{"margin_horizontal_index":4},{"margin_horizontal_index":5},{"margin_horizontal_index":6},{"margin_horizontal_index":7},{"margin_horizontal_index":8},{"margin_horizontal_index":9},{"margin_horizontal_index":10},{"margin_horizontal_index":11},{"margin_horizontal_index":12},{"margin_horizontal_index":13},{"margin_horizontal_index":14},{"margin_horizontal_index":15},{"margin_horizontal_index":16},{"margin_horizontal_index":17},{"margin_horizontal_index":18},{"margin_horizontal_index":19},{"margin_horizontal_index":20},{"margin_horizontal_index":21},{"margin_horizontal_index":22},{"margin_horizontal_index":23},{"margin_horizontal_index":24},{"margin_horizontal_index":25},{"margin_horizontal_index":26},{"margin_horizontal_index":27},{"margin_horizontal_index":28},{"margin_horizontal_index":29}],"background_color":"#FFC800","icon_size":60,"scroll_speed":3,"margin_bottom":70,"left_or_right":"right","margin_horizontal":30});
_Element.prototype.settings.page_element_id = "297084313536534127";
_Element.prototype.element_id = "0b5a3f8a-e9af-4e27-aad4-95fe8b4bf8f5";
_Element.prototype.user_id = "105711179";
_Element.prototype.site_id = "166082785671350878";
_Element.prototype.assets_path = "//marketplace.editmysite.com/elements/569198776394566218-1.0.1/assets/";
new _Element({
el: '#element-0b5a3f8a-e9af-4e27-aad4-95fe8b4bf8f5'
});
});
});
}
if (typeof document.documentElement.appReady == 'undefined') {
document.documentElement.appReady = 0;
}
if (document.documentElement.appReady || (window.inEditor && window.inEditor())) {
setupElement297084313536534127();
} else if (document.createEvent && document.addEventListener) {
document.addEventListener('appReady', setupElement297084313536534127, false);
} else {
document.documentElement.attachEvent('onpropertychange', function(event){
if (event.propertyName == 'appReady') {
setupElement297084313536534127();
}
});
}
</script></div></div>
<h2 class="wsite-content-title"><font color="#fff">We're Learning Specialists.<br /><font size="6">Our mission is to help solve higher education.</font></font></h2>
</div>
</div>
</div><!-- end container -->
</div>
<div class=""></div>
</div>
</div>
</div>
</div><!-- end banner-wrap -->
<div class="content-wrap">
<div id="wsite-content" class="wsite-elements wsite-not-footer">
<div class="wsite-section-wrap">
<div class="wsite-section wsite-body-section wsite-background-27" >
<div class="wsite-section-content">
<div class="container">
<div class="wsite-section-elements">
<div><div class="wsite-multicol"><div class="wsite-multicol-table-wrap" style="margin:0 -15px;">
<table class="wsite-multicol-table">
<tbody class="wsite-multicol-tbody">
<tr class="wsite-multicol-tr">
<td class="wsite-multicol-col" style="width:11.080835603996%; padding:0 15px;">
<div class="wsite-spacer" style="height:50px;"></div>
</td> <td class="wsite-multicol-col" style="width:77.826998694253%; padding:0 15px;">
<div class="paragraph" style="text-align:center;"><font color="#ae40a5">WHY NUCAMP IS DIFFERENT</font><br /></div>
</td> <td class="wsite-multicol-col" style="width:11.092165701751%; padding:0 15px;">
<div class="wsite-spacer" style="height:50px;"></div>
</td> </tr>
</tbody>
</table>
</div></div></div>
<div><div class="wsite-multicol"><div class="wsite-multicol-table-wrap" style="margin:0 -15px;">
<table class="wsite-multicol-table">
<tbody class="wsite-multicol-tbody">
<tr class="wsite-multicol-tr">
<td class="wsite-multicol-col" style="width:11.080835603996%; padding:0 15px;">
<div class="wsite-spacer" style="height:50px;"></div>
</td> <td class="wsite-multicol-col" style="width:77.826998694253%; padding:0 15px;">
<div><div style="height: 20px; overflow: hidden; width: 100%;"></div>
<hr class="styled-hr" style="width:100%;"></hr>
<div style="height: 20px; overflow: hidden; width: 100%;"></div></div>
</td> <td class="wsite-multicol-col" style="width:11.092165701751%; padding:0 15px;">
<div class="wsite-spacer" style="height:50px;"></div>
</td> </tr>
</tbody>
</table>
</div></div></div>
<div><div class="wsite-multicol"><div class="wsite-multicol-table-wrap" style="margin:0 -15px;">
<table class="wsite-multicol-table">
<tbody class="wsite-multicol-tbody">
<tr class="wsite-multicol-tr">
<td class="wsite-multicol-col" style="width:11.080835603996%; padding:0 15px;">
<div class="wsite-spacer" style="height:50px;"></div>
</td> <td class="wsite-multicol-col" style="width:77.826998694253%; padding:0 15px;">
<h2 class="wsite-content-title"><font color="#ae40a5">Make education immersive and affordable again</font><br /></h2>
</td> <td class="wsite-multicol-col" style="width:11.092165701751%; padding:0 15px;">
<div class="wsite-spacer" style="height:50px;"></div>
</td> </tr>
</tbody>
</table>
</div></div></div>
<div><div class="wsite-multicol"><div class="wsite-multicol-table-wrap" style="margin:0 -15px;">
<table class="wsite-multicol-table">
<tbody class="wsite-multicol-tbody">
<tr class="wsite-multicol-tr">
<td class="wsite-multicol-col" style="width:11.080835603996%; padding:0 15px;">
<div class="wsite-spacer" style="height:50px;"></div>
</td> <td class="wsite-multicol-col" style="width:77.826998694253%; padding:0 15px;">
<div class="paragraph">The higher education business bubble represents one-sixth of the US Economy, and an imminent crisis the likes of which this generation has never experienced. Disturbing patterns of unsustainable economic activity have emerged over the last decade. College and university budgets rely on inflated real estate investment, deny the short and long-term effects of student loan defaults, accept the rise in tuition above the rate of inflation as normal. The insatiable upper administrative appetite for high salaries seems to be the price to pay to stay competitive.<br /><br />To solve this two diametrically solutions have emerged over the past 5 years:<ol><li><strong>MOOC (Massive Open Online Courses) providers </strong>are offering universal and online access to quality curriculum for a small fee. Completion rates continue to be very low though, with close to 90% of students failing to stay committed.</li><li><strong>Bootcamps providers </strong>are offering high-quality and immersive curriculum to those who can afford to quit their day jobs and bet $15k+ in their career move. While completion rates are high, job placement claims are increasingly challenged.</li></ol><br />After years of experimentation we believe we have developed the right solution, one that will hopefully contribute to solving this imminent crisis:<br /><strong>NuCamp offers the scale and affordability of MOOCs, along with the immersion and support of bootcamps.<br />We do that by bringing together a network of high-quality curriculum, skilled instructors and classroom locations to serve local communities.</strong></div>
<div><div style="height: 20px; overflow: hidden; width: 100%;"></div>
<hr class="styled-hr" style="width:100%;"></hr>
<div style="height: 20px; overflow: hidden; width: 100%;"></div></div>
</td> <td class="wsite-multicol-col" style="width:11.092165701751%; padding:0 15px;">
<div class="wsite-spacer" style="height:50px;"></div>
</td> </tr>
</tbody>
</table>
</div></div></div>
<div><div class="wsite-multicol"><div class="wsite-multicol-table-wrap" style="margin:0 -15px;">
<table class="wsite-multicol-table">
<tbody class="wsite-multicol-tbody">
<tr class="wsite-multicol-tr">
<td class="wsite-multicol-col" style="width:11.080835603996%; padding:0 15px;">
<div class="wsite-spacer" style="height:50px;"></div>
</td> <td class="wsite-multicol-col" style="width:77.826998694253%; padding:0 15px;">
<h2 class="wsite-content-title"><font color="#ae40a5">Pedagogy for the busy adult learner</font><br /></h2>
</td> <td class="wsite-multicol-col" style="width:11.092165701751%; padding:0 15px;">
<div class="wsite-spacer" style="height:50px;"></div>
</td> </tr>
</tbody>
</table>
</div></div></div>
<div><div class="wsite-multicol"><div class="wsite-multicol-table-wrap" style="margin:0 -15px;">
<table class="wsite-multicol-table">
<tbody class="wsite-multicol-tbody">
<tr class="wsite-multicol-tr">
<td class="wsite-multicol-col" style="width:11.080835603996%; padding:0 15px;">
<div class="wsite-spacer" style="height:50px;"></div>
</td> <td class="wsite-multicol-col" style="width:77.826998694253%; padding:0 15px;">
<div class="paragraph">Busy work schedules, hectic personal lives, and a lengthy list of responsibilities on both fronts, may prevent adult learners from continuing their education. And while some have the intrinsic motivation to stay committed to learning, a vast majority of learners need external factors to stay on track.<br />The learning scientists at NuCamp have studied how our brain works, and the triggers needed to to help learners stay motivated to achieve their goals. <br />We use Artificial Intelligence to detect when a learner is falling behind and help our instructors re-engage with them. <br />We make sure learning never feels lonely, and we also make it fun, exciting and rewarding.<br /></div>
<div><div style="height: 20px; overflow: hidden; width: 100%;"></div>
<hr class="styled-hr" style="width:100%;"></hr>
<div style="height: 20px; overflow: hidden; width: 100%;"></div></div>
</td> <td class="wsite-multicol-col" style="width:11.092165701751%; padding:0 15px;">
<div class="wsite-spacer" style="height:50px;"></div>
</td> </tr>
</tbody>
</table>
</div></div></div>
<div><div class="wsite-multicol"><div class="wsite-multicol-table-wrap" style="margin:0 -15px;">
<table class="wsite-multicol-table">
<tbody class="wsite-multicol-tbody">
<tr class="wsite-multicol-tr">
<td class="wsite-multicol-col" style="width:11.080835603996%; padding:0 15px;">
<div class="wsite-spacer" style="height:50px;"></div>
</td> <td class="wsite-multicol-col" style="width:77.826998694253%; padding:0 15px;">
<h2 class="wsite-content-title"><font color="#ae40a5">NuCamp Founders</font><br /></h2>
</td> <td class="wsite-multicol-col" style="width:11.092165701751%; padding:0 15px;">
<div class="wsite-spacer" style="height:50px;"></div>
</td> </tr>
</tbody>
</table>
</div></div></div>
<div><div class="wsite-multicol"><div class="wsite-multicol-table-wrap" style="margin:0 -15px;">
<table class="wsite-multicol-table">
<tbody class="wsite-multicol-tbody">
<tr class="wsite-multicol-tr">
<td class="wsite-multicol-col" style="width:11.080835603996%; padding:0 15px;">
<div class="wsite-spacer" style="height:50px;"></div>
</td> <td class="wsite-multicol-col" style="width:77.826998694253%; padding:0 15px;">
<div><div class="wsite-multicol"><div class="wsite-multicol-table-wrap" style="margin:0 -15px;">
<table class="wsite-multicol-table">
<tbody class="wsite-multicol-tbody">
<tr class="wsite-multicol-tr">
<td class="wsite-multicol-col" style="width:17.873831775701%; padding:0 15px;">
<div><div class="wsite-image wsite-image-border-none " style="padding-top:10px;padding-bottom:10px;margin-left:0;margin-right:0;text-align:center">
<a>
<img src="uploads/1/0/5/7/105711179/published/ludovic-fourrage.png?1504377999" alt="Picture" style="width:auto;max-width:100%" />
</a>
<div style="display:block;font-size:90%"></div>
</div></div>
</td> <td class="wsite-multicol-col" style="width:82.126168224299%; padding:0 15px;">
<div class="paragraph"><font size="5" color="#ae40a5">Ludovic Fourrage</font></div>
<div class="paragraph">Ludovic (Ludo) Fourrage is an education industry veteran, named in 2017 as an Emerging Learning Technology Leader by Training Magazine.<br />Before founding NuCamp Ludo spent 15 years at Microsoft leading innovation in the learning space. In 2007 Ludo led the development of the first of its kind "YouTube for the Enterprise" which later became known as Sharepoint Video. More recently Ludo delivered one of the most successful Corporate MOOC program in partnership with top business schools, namely INSEAD, Wharton and London Business School.<br /></div>
</td> </tr>
</tbody>
</table>
</div></div></div>
<div><div style="height: 20px; overflow: hidden; width: 100%;"></div>
<hr class="styled-hr" style="width:100%;"></hr>
<div style="height: 20px; overflow: hidden; width: 100%;"></div></div>
<div><div class="wsite-multicol"><div class="wsite-multicol-table-wrap" style="margin:0 -15px;">
<table class="wsite-multicol-table">
<tbody class="wsite-multicol-tbody">
<tr class="wsite-multicol-tr">
<td class="wsite-multicol-col" style="width:17.873831775701%; padding:0 15px;">
<div><div class="wsite-image wsite-image-border-none " style="padding-top:10px;padding-bottom:10px;margin-left:0;margin-right:0;text-align:center">
<a>
<img src="uploads/1/0/5/7/105711179/valou_orig.jpg" alt="Picture" style="width:auto;max-width:100%" />
</a>
<div style="display:block;font-size:90%"></div>
</div></div>
</td> <td class="wsite-multicol-col" style="width:82.126168224299%; padding:0 15px;">
<div class="paragraph"><font size="5" color="#ae40a5">Valerie Carricaburu</font></div>
<div class="paragraph">Valerie Carricaburu holds a PhD in Neurosciences and Pharmacology. After spending 3 years doing research in the Boston area she joined the University of Washington as a Technology Manager. There she helped incubate many start-ups in life science and technology field, including VICIS which she joined in 2016 as Director of Strategic Initiatives.<br /></div>
</td> </tr>
</tbody>
</table>
</div></div></div>
</td> <td class="wsite-multicol-col" style="width:11.092165701751%; padding:0 15px;">
<div class="wsite-spacer" style="height:50px;"></div>
</td> </tr>
</tbody>
</table>
</div></div></div>
</div>
</div>
</div>
</div>
</div>
</div>
</div><!-- end content-wrap -->
<div class="footer-wrap">
<div class="container">
<div class="footer"><div class='wsite-elements wsite-footer'>
<div><div class="wsite-multicol"><div class="wsite-multicol-table-wrap" style="margin:0 -25px;">
<table class="wsite-multicol-table">
<tbody class="wsite-multicol-tbody">
<tr class="wsite-multicol-tr">
<td class="wsite-multicol-col" style="width:24.554455445545%; padding:0 25px;">
<h2 class="wsite-content-title" style="text-align:left;"><font size="4">Location</font></h2>
<div class="wsite-map"><iframe allowtransparency="true" frameborder="0" scrolling="no" style="width: 100%; height: 150px; margin-top: 10px; margin-bottom: 10px;" src="http://www.weebly.com/weebly/apps/generateMap.php?map=google&elementid=769742363667928300&ineditor=0&control=3&width=auto&height=150px&overviewmap=0&scalecontrol=0&typecontrol=0&zoom=9&long=-122.2015159&lat=47.6101497&domain=www&point=1&align=1&reseller=false"></iframe></div>
<div class="paragraph">12707 NE 30th Street<br />​Bellevue, WA 98005<br /></div>
</td> <td class="wsite-multicol-col" style="width:75.445544554455%; padding:0 25px;">
<div><div class="wsite-multicol"><div class="wsite-multicol-table-wrap" style="margin:0 -25px;">
<table class="wsite-multicol-table">
<tbody class="wsite-multicol-tbody">
<tr class="wsite-multicol-tr">
<td class="wsite-multicol-col" style="width:61.964038727524%; padding:0 25px;">
<h2 class="wsite-content-title" style="text-align:left;"><font size="4">What Our Students Are Saying</font></h2>
<blockquote style="text-align:left;"><span>"</span>I really appreciated NuCamp's approach to teaching: it's perfect for people working 40hrs a week and having no opportunity to give up their jobs to learn to code. The instructor helps deal with concept that are hard to understand, share best practices and give opportunity to discuss assignments and learn online as well as in person. In comparison one day bootcamps or full-time 12-week courses are expensive and time-consuming. NuCamp's approach is flexible, goes deeper and the price is very affordable."</blockquote>
</td> <td class="wsite-multicol-col" style="width:38.035961272476%; padding:0 25px;">
<h2 class="wsite-content-title" style="text-align:left;"><font size="4">Contact Us</font></h2>
<div class="paragraph"><a href="mailto:[email protected]">eMail: [email protected]</a><br />Tel: (+1) 206-228-0531<br /></div>
</td> </tr>
</tbody>
</table>
</div></div></div>
</td> </tr>
</tbody>
</table>
</div></div></div></div></div>
</div><!-- end container -->
</div><!-- end footer-wrap -->
</div>
<div class="nav mobile-nav"><ul class="wsite-menu-default">
<li id="pg754490774483051779" class="wsite-menu-item-wrap ">
<a
href="index.html"