-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathindex.html
More file actions
executable file
·977 lines (674 loc) · 32.8 KB
/
index.html
File metadata and controls
executable file
·977 lines (674 loc) · 32.8 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="description" content="">
<meta name="author" content="">
<link rel="shortcut icon" href="assets/ico/favicon.png">
<title>A100 - Accelerating Connecticut's Startup Careers.</title>
<!-- Bootstrap Core -->
<link href="assets/css/bootstrap.css" rel="stylesheet">
<!-- Custom Styles -->
<link href="assets/css/main.css" rel="stylesheet">
<!-- Custom Fonts -->
<link href='http://fonts.googleapis.com/css?family=Open+Sans:400italic,800italic,300italic,600italic,400,300,600,700,800|Montserrat:400,700' rel='stylesheet' type='text/css'>
<link href="assets/css/font-awesome.min.css" rel="stylesheet">
<!-- HTML5 shim and Respond.js IE8 support of HTML5 elements and media queries -->
<!--[if lt IE 9]>
<script src="https://oss.maxcdn.com/libs/html5shiv/3.7.0/html5shiv.js"></script>
<script src="https://oss.maxcdn.com/libs/respond.js/1.3.0/respond.min.js"></script>
<![endif]-->
</head>
<body>
<!-- // HERO // -->
<section id="hero">
<div id="heroContent">
<div class="col-sm-8 col-sm-offset-2 topMarginSmall bottomMargin">
<a href="http://www.formstack.com/forms/?1453552-6NRer6Wuik" target="_blank">
<p class="companyLink">Are you an employer looking for access to A100 talent?</p>
</a>
</div>
<div id="heroContentMain">
<img class="img" src="assets/img/a100Logo.png">
<p class="heading">Accelerating Connecticut's Startup Careers.<br/></p>
<p class="subheading">
A100 is an apprenticeship program for aspiring software developers. <br />
We work with college students and graduates eager to hone their skills in the <em>craft</em> of software development – not just the theory.
<br />
<br />
A100 is run by <a href="http://www.indie-soft.com/" target="_blank">Independent Software</a>, a New Haven-based development firm.
</p>
</div>
<div class="topMarginMedium bottomMargin">
<!-- <a href="http://www.formstack.com/forms/?1431268-XiMahhyQLI" target="_blank"> -->
<svg width="320" height="60">
<rect width="320" height="60" style="fill:#006496;" />
</svg>
<!--</a>-->
</div>
</div>
</section>
<!-- END HERO -->
<!-- // PROGRAM LG, PROGRAM MD/SM, PROGRAM XS // -->
<section id="program" class="visible-lg">
<div class="container">
<div class="row">
<div class="col-lg-8 col-md-offset-2">
<p class="headerDarkBG centered">There Is No Substitute For Real-World Experience.</p>
<p class="textDarkBG">
By applying for the A100 program and getting selected as an Apprentice, you’ll be eligible for our free, 2-month training series. If you perform well during the training, you’ll be eligible for a paid internship with a local startup.</p>
<br />
<p class="emphasis">We match all high-performing students with paid internships at growing, profitable startups.</p>
<br />
<p class="textDarkBG">During your internship you’ll work on real products for real companies here in Connecticut. We’ll supervise you and make sure that you learn by doing.</p>
</div>
</div>
</div>
</section>
<section id="programXS" class="visible-md visible-sm">
<div class="container-fluid">
<div class="row">
<div class="col-sm-8 col-sm-offset-2">
<p class="headerDarkBGXS centered">There Is No Substitute For Real-World Experience.</p>
<p class="textDarkBGXS">
By applying for the A100 program and getting selected as an Apprentice, you’ll be eligible for our free, 2-month training series. If you perform well during the training, you’ll be eligible for a paid internship with a local startup.</p>
<br />
<p class="emphasisXS">We match all high-performing students with paid internships at growing, profitable startups.</p>
<br />
<p class="textDarkBGXS">During your internship you’ll work on real products for real companies here in Connecticut. We’ll supervise you and make sure that you learn by doing.</p>
</div>
</div>
</div>
</section>
<section id="programXS" class="visible-xs">
<div class="container-fluid">
<div class="row">
<div class="col-xs-12">
<p class="headerDarkBGXS centered">There Is No Substitute For Real-World Experience.</p>
<p class="textDarkBGXS">
By applying for the A100 program and getting selected as an Apprentice, you’ll be eligible for our free, 2-month training series. If you perform well during the training, you’ll be eligible for a paid internship with a local startup.</p>
<br />
<p class="emphasisXS">We match all high-performing students with paid internships at growing, profitable startups.</p>
<br />
<p class="textDarkBGXS">During your internship you’ll work on real products for real companies here in Connecticut. We’ll supervise you and make sure that you learn by doing.</p>
</div>
</div>
</div>
</section>
<!-- END PROGRAM LG, PROGRAM MD/SM, PROGRAM XS-->
<!-- // TESTIMONIALS & TESTIMONIALS XS // -->
<section id="testimonials" class="hidden-xs">
<div class="container-fluid">
<div class="row">
<div class="col-md-4 centered topPadding">
<img class="img-circle" src="assets/img/testimonials/tedY.jpg" width="125" height="125">
<p class="testimonialQuote"> "Connecticut can fund startups; we can offer them places to work. We can do all that, but if we don't have developers, we're going nowhere."</p>
<p class="testimonialSource"> Ted Yang </p>
</div>
<div class="col-md-4 centered topPadding">
<img class="img-circle" src="assets/img/testimonials/samA.png" width="125" height="125">
<p class="testimonialQuote"> "A100 matched me up with a job as a Web Developer at MEA Mobile."</p>
<p class="testimonialSource"> Sam Alexander </p>
</div>
<div class="col-md-4 centered topPadding">
<img class="img-circle" src="assets/img/testimonials/nicoleF.jpg" width="125" height="125">
<p class="testimonialQuote">"Becoming an A100 Apprentice was the best move I’ve made for my education and career in software development."</p>
<p class="testimonialSource"> Nicole Flokos </p>
</div>
</div>
</div>
</section>
<section id="testimonialsXS" class="visible-xs">
<div class="container">
<div class="row">
<div class="col-md-4 centered">
<p class="testimonialQuote"> "Connecticut can fund startups; we can offer them places to work. We can do all that, but if we don't have developers, we're going nowhere."</p>
<p class="testimonialSource"> Ted Yang </p>
</div>
<div class="col-md-4 centered">
<p class="testimonialQuote"> "A100 matched me up with a job as a Web Developer at MEA Mobile."</p>
<p class="testimonialSource"> Sam Alexander </p>
</div>
<div class="col-md-4 centered">
<p class="testimonialQuote">"Becoming an A100 Apprentice was the best move I’ve made for my education and career in software development."</p>
<p class="testimonialSource"> Nicole Flokos </p>
</div>
</div>
</div>
</section>
<!-- END TESTIMONIALS -->
<!-- // TECHNOLOGIES LG, TECHNOLOGIES MD/SM, TECHNOLOGIES XS // -->
<section id="technologies" class="visible-lg">
<div class="container">
<div class="row">
<div class="col-md-12">
<p class="headerLightBG centered">A100 Apprentices are trained in some of the top technologies sought after by startup companies.<br />
</div>
</div>
<div class="row topMarginSmall">
<div class="col-md-2"><img src="assets/img/tech/logoCSS2.png" class="techLogo"></div>
<div class="col-md-2"><img src="assets/img/tech/logoHTML5.png" class="techLogo"></div>
<div class="col-md-2"><img src="assets/img/tech/logoJS.png" class="techLogo"></div>
<div class="col-md-2"><img src="assets/img/tech/logoMySQL.png" class="techLogo"></div>
<div class="col-md-2"><img src="assets/img/tech/logoPHP.png" class="techLogo"></div>
<div class="col-md-2"><img src="assets/img/tech/logoGit.png" class="techLogo"></div>
</div>
</div>
</section>
<section id="technologies" class="visible-md visible-sm">
<div class="container-fluid">
<div class="row centered">
<div class="col-sm-12">
<p class="headerLightBG centered">A100 Apprentices are trained in some of the top technologies sought after by startup companies.<br />
</div>
</div>
<div class="row topMarginSmall centered">
<div class="col-sm-4"><img src="assets/img/tech/logoCSS2.png" class="techLogo"></div>
<div class="col-sm-4"><img src="assets/img/tech/logoHTML5.png" class="techLogo"></div>
<div class="col-sm-4"><img src="assets/img/tech/logoJS.png" class="techLogo"></div>
</div>
<div class="row topMarginSmall centered">
<div class="col-sm-4"><img src="assets/img/tech/logoMySQL.png" class="techLogo"></div>
<div class="col-sm-4"><img src="assets/img/tech/logoPHP.png" class="techLogo"></div>
<div class="col-sm-4"><img src="assets/img/tech/logoGit.png" class="techLogo"></div>
</div>
</div>
</section>
<section id="technologies" class="visible-xs">
<div class="container-fluid">
<div class="row">
<div class="col-xs-12">
<p class="headerLightBG centered">A100 Apprentices are trained in some of the top technologies sought after by startup companies.<br />
</div>
</div>
<div class="row topMarginSmall centered">
<div class="col-xs-12"><img src="assets/img/tech/logoCSS2.png" class="techLogo"></div>
<div class="col-xs-12"><img src="assets/img/tech/logoHTML5.png" class="techLogo topMarginSmall"></div>
<div class="col-xs-12"><img src="assets/img/tech/logoJS.png" class="techLogo topMarginSmall"></div>
<div class="col-xs-12"><img src="assets/img/tech/logoMySQL.png" class="techLogo topMarginSmall"></div>
<div class="col-xs-12"><img src="assets/img/tech/logoPHP.png" class="techLogo topMarginSmall"></div>
<div class="col-xs-12"><img src="assets/img/tech/logoGit.png" class="techLogo topMarginSmall"></div>
</div>
</div>
</section>
<!-- END TECHNOLOGIES -->
<!-- // SKILLS LG, SKILLS MD/SM, SKILLS XS // -->
<section id="skills" class="visible-lg">
<div class="container">
<div class="row">
<div class="col-md-10 col-md-offset-1">
<p class="headerLightBG centered">A100 Apprentices learn the best practices of the Agile software development methodology.<br />
</div>
</div>
<div class="row topMarginSmall centered">
<div class="col-md-2">
<img class="icon" src="assets/img/icons/computer.png">
<br />
<p class="iconText">System <br />Engineering</p>
</div>
<div class="col-md-2">
<img class="icon" src="assets/img/icons/browser.png">
<br />
<p class="iconText">Design <br />Thinking</p>
</div>
<div class="col-md-2">
<img class="icon" src="assets/img/icons/clipboard.png">
<br />
<p class="iconText">Agile <br />Methodology</p>
</div>
<div class="col-md-2">
<img class="icon" src="assets/img/icons/dev.png">
<br />
<p class="iconText">Development <br />Environment Setup</p>
</div>
<div class="col-md-2">
<img class="icon" src="assets/img/icons/check.png">
<br />
<p class="iconText">Test-Driven <br />Development</p>
</div>
<div class="col-md-2">
<img class="icon" src="assets/img/icons/document.png">
<br />
<p class="iconText">Professional <br />Skills</p>
</div>
</div>
</div>
</section>
<section id="skills" class="visible-sm visible-md">
<div class="container-fluid">
<div class="row">
<div class="col-sm-12">
<p class="headerLightBG centered">A100 Apprentices learn the best practices of the Agile software development methodology.<br />
</div>
</div>
<div class="row topMarginSmall centered">
<div class="col-sm-4">
<img class="icon" src="assets/img/icons/computer.png">
<br />
<p class="iconText">System <br />Engineering</p>
</div>
<div class="col-sm-4"><img class="icon" src="assets/img/icons/browser.png">
<br />
<p class="iconText">Design <br />Thinking</p>
</div>
<div class="col-sm-4"><img class="icon" src="assets/img/icons/clipboard.png">
<br />
<p class="iconText">Agile <br />Methodology</p>
</div>
</div>
<div class="row topMarginSmall centered">
<div class="col-sm-4">
<img class="icon" src="assets/img/icons/dev.png">
<br />
<p class="iconText">Development <br />Environment Setup</p>
</div>
<div class="col-sm-4">
<img class="icon" src="assets/img/icons/check.png">
<br />
<p class="iconText">Test-Driven <br />Development</p>
</div>
<div class="col-sm-4">
<img class="icon" src="assets/img/icons/document.png">
<br />
<p class="iconText">Professional <br />Skills</p>
</div>
</div>
</div>
</section>
<section id="skills" class="visible-xs">
<div class="container-fluid">
<div class="row">
<div class="col-xs-12">
<p class="headerLightBG centered">A100 Apprentices learn the best practices of the Agile software development methodology.<br />
</div>
</div>
<div class="row topMarginSmall centered">
<div class="col-xs-12">
<img class="icon" src="assets/img/icons/computer.png">
<p class="iconText">System <br />Engineering</p>
<br />
</div>
<div class="col-xs-12 topMarginSmall">
<img class="icon" src="assets/img/icons/browser.png">
<br />
<p class="iconText">Design <br />Thinking</p>
</div>
<div class="col-xs-12 topMarginSmall">
<img class="icon" src="assets/img/icons/clipboard.png">
<br />
<p class="iconText">Agile <br />Methodology</p>
</div>
<div class="col-xs-12 topMarginSmall">
<img class="icon" src="assets/img/icons/dev.png">
<br />
<p class="iconText">Development <br />Environment Setup</p>
</div>
<div class="col-xs-12 topMarginSmall">
<img class="icon" src="assets/img/icons/check.png">
<br />
<p class="iconText">Test-Driven <br />Development</p>
</div>
<div class="col-xs-12 topMarginSmall">
<img class="icon" src="assets/img/icons/document.png">
<br />
<p class="iconText">Professional <br />Skills</p>
</div>
</div>
</div>
</section>
<!-- // END SKILLS // -->
<!-- // CURRICULUM LG/MD & CURRICULUM SM/XS // -->
<section id="curriculum" class="visible-lg visible-md">
<div class="container">
<div class="row">
<div class="col-md-6 centered">
<img src="assets/img/imgCurriculum2BW.png" width="400" height="auto" class="img-thumbnail">
</div>
<div class="col-md-6">
<p class="textDarkBG">During training A100 Apprentices are required to meet 2-3 times per week. Each week includes a training session, collaborative work time, and a demo day.</p>
<br />
<br />
<p class="headerDarkBG">Experiential Learning from Working Professionals.</p>
<p class="textDarkBG">
Every week of the A100 program begins with a 2-hour training session. We invite an industry professional to present a technology or concept and guide Apprentices through hands-on activities.
</p>
<br />
<br />
<p class="headerDarkBG">Working Together to Build Real-World Applications.</p>
<p class="textDarkBG">
Outside of training sessions Apprentices work in small teams to develop real-world applications. These projects build upon concepts from training sessions and help Apprentices develop their skills as well as their portfolio.
</p>
<br />
<p class="textDarkBG emphasis">Apprentices complete 2-3 projects <br /> over the course of their training.</p>
<br />
<br />
</div>
</div>
<div class="row">
<div class="col-md-6">
<p class="headerDarkBG">A Collaborative, Learning-Oriented Environment.</p>
<p class="textDarkBG">
During the week we host Study Hall. Study Hall is a meetup time for A100 apprentices to code with one another and other local software developers. We provide space and access to our Device Lab, which includes a variety of devices for use in application testing: iOS (in all screen sizes), Android (in 4.5” and 7” configurations), Mac OSX, Windows, Linux, and OSX Server.
</p>
<p class="centered"><a href="http://www.meetup.com/a100-dev-community/" target="_blank"><img src="assets/img/logoMeetup.png" width="125" height="auto"></a></p><p class="emphasis">Join our Meetup group!</p>
<br />
<br />
<p class="headerDarkBG">Matching Apprentices and Entrepreneurs.</p>
<p class="textDarkBG">
The week concludes with Demo Day. Apprentices are given 10 minutes to present what they have learned and what work they have completed during the week. In the audience are other cohort members, A100 leadership, and local startup companies eager to hire new talent.</p>
</p>
</div>
<div class="col-md-6 centered">
<img src="assets/img/imgCurriculumBW.png" class="img-thumbnail" width="400" height="auto">
</div>
</div>
</div>
</section>
<section id="curriculum" class="visible-sm visible-xs">
<div class="container-fluid">
<div class="row">
<div class="col-xs-12 centered">
<img src="assets/img/imgCurriculum2BW.png" width="400" height="auto" class="img-thumbnail">
</div>
<div class="col-xs-12 topMarginSmall">
<p class="textDarkBG">During training A100 Apprentices are required to meet 2-3 times per week. Each week includes a training session, collaborative work time, and a demo day.</p>
<br />
<br />
<p class="headerDarkBG">Experiential Learning from Working Professionals.</p>
<p class="textDarkBG">
Every week of the A100 program begins with a 2-hour training session. We invite an industry professional to present a technology or concept and guide Apprentices through hands-on activities.
</p>
<br />
<br />
<p class="headerDarkBG">Working Together to Build Real-World Applications.</p>
<p class="textDarkBG">
Outside of training sessions Apprentices work in small teams to develop real-world applications. These projects build upon concepts from training sessions and help Apprentices develop their skills as well as their portfolio.
</p>
<br />
<p class="textDarkBG emphasis">Apprentices complete 2-3 projects <br /> over the course of their training.</p>
<br />
<br />
</div>
</div>
<div class="row">
<div class="col-xs-12 topMarginSmall">
<p class="headerDarkBG">A Collaborative, Learning-Oriented Environment.</p>
<p class="textDarkBG">
During the week we host Study Hall. Study Hall is a meetup time for A100 apprentices to code with one another and other local software developers. We provide space and access to our Device Lab, which includes a variety of devices for use in application testing: iOS (in all screen sizes), Android (in 4.5” and 7” configurations), Mac OSX, Windows, Linux, and OSX Server.
</p>
<p class="centered"><a href="http://www.meetup.com/a100-dev-community/" target="_blank"><img src="assets/img/logoMeetup.png" width="125" height="auto"></a></p><p class="emphasis">Join our Meetup group!</p>
<br />
<br />
<p class="headerDarkBG">Matching Apprentices and Entrepreneurs.</p>
<p class="textDarkBG">
The week concludes with Demo Day. Apprentices are given 10 minutes to present what they have learned and what work they have completed during the week. In the audience are other cohort members, A100 leadership, and local startup companies eager to hire new talent.</p>
</p>
</div>
<div class="col-xs-12 centered topMarginSmall">
<img src="assets/img/imgCurriculumBW.png" class="img-thumbnail" width="400" height="auto">
</div>
</div>
</div>
</section>
<!-- // END CURRICULUM LG/MD & CURRICULUM SM/XS // -->
<!-- // SAMPLES LG & SAMPLES MD/SM/XS // -->
<section id="samples" class="visible-lg">
<div class="container">
<div class="row">
<div class="col-lg-6">
<p class="headerLightBG">Sample Training Sessions</p>
<p class="textLightBG">
Beginning Front-End Web Development<br />
Introduction to Programming<br />
Intermediate Front-End Web Development: Web Applications<br />
Rapid Prototyping and Iterative Development <br />
Advanced Front-End Web Development: Mobile/Responsive Design <br />
Mobile Application Development: iOS/Android <br />
</p>
</div>
<div class="col-lg-6">
<p class="headerLightBG">Sample Projects</p>
<p class="textLightBG">
Write a program that successfully interacts with a commercial API.<br />
Create a dynamic front end for an iPhone or Android app.<br />
Design an engaging new web site for a technology company.<br />
Create a database system for matching Apprentices to Companies.<br />
Create a web application that allows consumers to locate fresh produce nearby.<br />
</p>
</div>
</div>
</div>
</section>
<section id="samples" class="hidden-lg">
<div class="container-fluid">
<div class="row centered">
<div class="col-xs-12">
<p class="headerLightBG centered">Sample Training Sessions</p>
<p class="textLightBG centered small">
Beginning Front-End Web Development<br />
Introduction to Programming<br />
Intermediate Front-End Web Development: Web Applications<br />
Rapid Prototyping and Iterative Development <br />
Advanced Front-End Web Development: Mobile/Responsive Design <br />
Mobile Application Development: iOS/Android <br />
</p>
</div>
</div>
<div class="row">
<div class="col-xs-12 topMarginSmall">
<p class="headerLightBG centered">Sample Projects</p>
<p class="textLightBG centered small">
Write a program that successfully interacts with a commercial API.<br />
Create a dynamic front end for an iPhone or Android app.<br />
Design an engaging new web site for a technology company.<br />
Create a database system for matching Apprentices to Companies.<br />
Create a web application that allows consumers to locate fresh produce nearby.<br />
</p>
</div>
</div>
</div>
</section>
<!-- // END SAMPLES // -->
<!-- // APPLY & APPLY XS // -->
<section id="apply" class="hidden-xs">
<div class="container-fluid">
<div class="row">
<div class="col-xs-12 centered">
<a href="http://www.formstack.com/forms/?1431268-XiMahhyQLI" target="_blank"><img src="assets/img/buttonApply.png"></a>
</div>
</div>
<div class="row">
<div class="col-xs-12 centered topMarginSmall">
<p class="textLightBG">Next Cohort: March 2014</p>
</div>
</div>
</div>
</section>
<section id="applyXS" class="visible-xs">
<div class="container-fluid">
<div class="row">
<div class="col-xs-12 centered">
<a href="http://www.formstack.com/forms/?1431268-XiMahhyQLI" target="_blank"><img src="assets/img/buttonApply.png" width="200" height="auto"></a>
</div>
</div>
<div class="row">
<div class="col-xs-12 centered topMarginSmall">
<p class="textLightBG">Next Cohort: March 2014</p>
</div>
</div>
</div>
</section>
<!-- // END APPLY & APPLY XS // -->
<!-- // TUITION // -->
<section id="tuition">
<div class="container-fluid">
<div class="row">
<div class="col-xs-12 centered">
<p class="headerLightBG">A100 is completely FREE for Apprentices.</p>
<p class="textLightBG">
A100 is an initiative of Independent Software with support from Connecticut Innovations.
<br />
This support allows us to operate free of charge to Apprentices.
</p>
</div>
</div>
</div>
</section>
<!-- // END TUITION //-->
<!-- // APPLICANTS // -->
<section id="applicants">
<div class="container-fluid">
<div class="row">
<div class="col-md-5 col-md-offset-1">
<p class="headerLightBG">Educating The Best Developers Possible.</p>
<p class="textLightBG">
A technical background via university coursework or independent study is recommended for A100 applicants. <br />
<br />
<p class="headerLightBG small">Applicants Must Be: </p>
<p class="textLightBG">
Motivated
<br />
We believe that the best software developers are driven to pursue their craft as an ongoing process.</p>
<br />
<p class="textLightBG">
Dedicated
<br />
A significant portion of our curriculum proceeds through team exercises. Learning the skill of working as a team is easier and more efficient in person.
</p>
</div>
<div class="col-md-5">
<p class="headerLightBG topMarginSmall">Apply To A100 If You Are: <br />
<p class="textLightBG">
A working software developer eager to deepen your knowledge or mentor our Apprentices.<br />
<br />
A Computer Science or Engineering graduate interested in pursuing a new career at a startup.
<br />
<br />
A Junior, Senior, or Graduate student in CS, EE, Math, or a related discipline interested in building real-world skills to find a fruitful job after graduation.
</p>
</div>
</div>
</div>
</section>
<!-- // END APPLICANTS // -->
<!-- // CONTACT LG, CONTACT SM/MD, & CONTACT XS // -->
<section id="contact" class="visible-lg">
<div class="container">
<div class="row">
<div class="col-lg-5 col-lg-offset-1">
<iframe width="425" height="350" frameborder="0" scrolling="no" marginheight="0" marginwidth="0" src="https://maps.google.com/maps?f=q&source=s_q&hl=en&geocode=&q=The+Grove,+Chapel+Street,+New+Haven,+CT&aq=0&oq=the+gr&sll=41.304618,-72.92348&sspn=0.00698,0.014387&gl=us&g=760+Chapel+Street,+New+Haven,+CT&ie=UTF8&hq=The+Grove,&hnear=Chapel+St,+New+Haven,+Connecticut&t=m&z=15&iwloc=A&output=embed" class="hidden-xs"></iframe>
</div>
<div class="col-lg-6">
<p class="headerLightBG">A100 is an Independent Software initiative.</p><br />
<p class="textLightBG">At Independent Software, we help our entrepreneurs win by turning their product idea into reality. We also like to think about how new technologies, trends, and events affect entrepreneurs and innovation. Through initiatives like <strong>A100</strong>, <strong>LaunchX</strong>, and <strong>The Whiteboard</strong>, we contribute to Connecticut's community of startups and innovators that allow entrepreneurs to succeed.</p><br />
<br />
<p class="headerLightBG">Connect With Us.<br /></p>
<p>
<a href="https://www.facebook.com/Apprentice100" target="_blank"><i class="facebook fa fa-facebook marginRight"></i></a>
<a href="https://twitter.com/codea100" target="_blank"><i class="twitter fa fa-twitter marginRight"></i></a>
<a href="mailto:krishna@indie-soft.com?subject=I'm Interested in the A100 Program"><i class="mail fa fa-envelope"></i></a>
</p>
</div>
</div>
</div>
</section>
<section id="contact" class="visible-md visible-sm">
<div class="container-fluid">
<div class="row">
<div class="col-md-12"><center>
<iframe width="425" height="350" frameborder="0" scrolling="no" marginheight="0" marginwidth="0" src="https://maps.google.com/maps?f=q&source=s_q&hl=en&geocode=&q=The+Grove,+Chapel+Street,+New+Haven,+CT&aq=0&oq=the+gr&sll=41.304618,-72.92348&sspn=0.00698,0.014387&gl=us&g=760+Chapel+Street,+New+Haven,+CT&ie=UTF8&hq=The+Grove,&hnear=Chapel+St,+New+Haven,+Connecticut&t=m&z=15&iwloc=A&output=embed" class="hidden-xs"></iframe></center>
</div>
<div class="col-md-12 centered topMarginSmall">
<p class="headerLightBG">
A100 is an Independent Software initiative.
</p>
<p class="textLightBG">
At Independent Software, we help our entrepreneurs win by turning their product idea into reality. We also like to think about how new technologies, trends, and events affect entrepreneurs and innovation. Through initiatives like <strong>A100</strong>, <strong>LaunchX</strong>, and <strong>The Whiteboard</strong>, we contribute to Connecticut's community of startups and innovators that allow entrepreneurs to succeed.
</p>
<br />
<p class="headerLightBG centered">Connect With Us.<br /></p>
<p>
<a href="https://www.facebook.com/Apprentice100" target="_blank"><i class="facebook fa fa-facebook marginRight"></i></a>
<a href="https://twitter.com/codea100" target="_blank"><i class="twitter fa fa-twitter marginRight"></i></a>
<a href="mailto:krishna@indie-soft.com?subject=I'm Interested in the A100 Program"><i class="mail fa fa-envelope"></i></a>
</p>
</div>
</div>
</div>
</section>
<section id="contact" class="visible-xs">
<div class="container-fluid">
<div class="row">
<div class="col-xs-12 centered topMarginSmall">
<p class="headerLightBG">
A100 is an Independent Software initiative.
</p>
<p class="textLightBG">
At Independent Software, we help our entrepreneurs win by turning their product idea into reality. We also like to think about how new technologies, trends, and events affect entrepreneurs and innovation. Through initiatives like <strong>A100</strong>, <strong>LaunchX</strong>, and <strong>The Whiteboard</strong>, we contribute to Connecticut's community of startups and innovators that allow entrepreneurs to succeed.
</p>
<br />
<p class="headerLightBG centered">Connect With Us.<br /></p>
<p>
<a href="#"><i class="facebook fa fa-facebook marginRight"></i></a>
<a href="https://twitter.com/codea100" target="_blank"><i class="twitter fa fa-twitter marginRight"></i></a>
<a href="#"><i class="mail fa fa-envelope"></i></a>
</p>
</div>
</div>
</div>
</section>
<!-- // END CONTACT LG, CONTACT SM/MD, & CONTACT XS //-->
<!-- // FOOTER & FOOTER XS // -->
<section id="footer" class="visible-lg">
<div class="container-fluid">
<div class="row">
<div class="col-lg-4">
<p class="headerDarkBG small allCaps">Contact Us </p>
<p class="textDarkBG small">
760 Chapel Street <br />
New Haven, CT 06510 <br />
<br />
</p>
</div>
<div class="col-lg-4 leftAlign">
<br /><br />
<p class="textDarkBG small">
<a href="tel:888-224-1340">888-224-1340</a> <br />
<a href="mailto:info@indie-soft.com">info@indie-soft.com</a>
</p>
</div>
<div class="col-lg-4 rightAlign">
<a href="http://indie-soft.com/" title="Independent Software" target="_blank"><img src="assets/img/footerLogos.png"></a>
</div>
</div>
</div>
</section>
<section id="footer" class="hidden-lg">
<div class="container-fluid">
<div class="row">
<div class="col-md-12 centered">
<p class="headerDarkBG small allCaps"> Contact Us </p>
<p class="textDarkBG small">
760 Chapel Street <br />
New Haven, CT 06510 <br />
<br /><br />
<a href="tel:888-224-1340">888-224-1340</a> <br />
<a href="mailto:info@indie-soft.com">info@indie-soft.com</a>
</p>
<br />
<a href="http://indie-soft.com/" title="Independent Software" target="_blank"><img src="assets/img/footerLogos.png"></a>
</div>
</div>
</div>
</section>
<!-- Bootstrap core JavaScript
================================================== -->
<!-- Placed at the end of the document so the pages load faster -->
<script src="https://code.jquery.com/jquery-1.10.2.min.js"></script>
<script src="assets/js/bootstrap.js"></script>
<script src="assets/js/jribbble.js"></script>
<script src="assets/js/site-ck.js"></script>
</body>
</html>