-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathgithub.json
More file actions
1299 lines (1299 loc) · 105 KB
/
Copy pathgithub.json
File metadata and controls
1299 lines (1299 loc) · 105 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
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
[
{
"url": "https://api.github.com/repos/GuildCrafts/web-development-js/issues/40",
"repository_url": "https://api.github.com/repos/GuildCrafts/web-development-js",
"labels_url": "https://api.github.com/repos/GuildCrafts/web-development-js/issues/40/labels{/name}",
"comments_url": "https://api.github.com/repos/GuildCrafts/web-development-js/issues/40/comments",
"events_url": "https://api.github.com/repos/GuildCrafts/web-development-js/issues/40/events",
"html_url": "https://github.com/GuildCrafts/web-development-js/issues/40",
"id": 165896643,
"number": 40,
"title": "Create a social media network for Learners Guild",
"user": {
"login": "phoniks",
"id": 7213762,
"avatar_url": "https://avatars.githubusercontent.com/u/7213762?v=3",
"gravatar_id": "",
"url": "https://api.github.com/users/phoniks",
"html_url": "https://github.com/phoniks",
"followers_url": "https://api.github.com/users/phoniks/followers",
"following_url": "https://api.github.com/users/phoniks/following{/other_user}",
"gists_url": "https://api.github.com/users/phoniks/gists{/gist_id}",
"starred_url": "https://api.github.com/users/phoniks/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/phoniks/subscriptions",
"organizations_url": "https://api.github.com/users/phoniks/orgs",
"repos_url": "https://api.github.com/users/phoniks/repos",
"events_url": "https://api.github.com/users/phoniks/events{/privacy}",
"received_events_url": "https://api.github.com/users/phoniks/received_events",
"type": "User",
"site_admin": false
},
"labels": [],
"state": "open",
"locked": false,
"assignee": null,
"assignees": [],
"milestone": null,
"comments": 0,
"created_at": "2016-07-15T23:50:06Z",
"updated_at": "2016-07-15T23:50:06Z",
"closed_at": null,
"body": "## Description\r\n\r\nA Facebook style social network which allows users to post status updates, connect with friends, message one another, and view a news feed of their friends' posts.\r\n\r\n## Context\r\nThis project will support you in learning:\r\n\r\n- how to use database to manage data. \r\n- how to develop a notification system.\r\n-how to manage users and their properties.\r\n-how to create authentication mechanisms.\r\n\r\n## Specifications\r\n\r\n_List of specifications (specs) for the completed goal. These are declarative sentences (statements) describing some quality or behavior of the final product._\r\n\r\n- [ ] Users can sign up for the network with their email address as a unique identifier.\r\n- [ ] Users authenticate with email address and password\r\n- [ ] Users can add other friends by their email addresses or by clicking a link on their profile.\r\n- [ ] Users are notified when someone requests to be friends, when someone responds, or interacts with your status or posts a status. \r\n- [ ] Users can add photos.\r\n- [ ] Users can make recommendations of friends to their other friends.\r\n- [ ] Users can edit profile page, and choose what info is displayed.\r\n\r\n### Required\r\n\r\n_Do not remove these specs - they are required for all goals_.\r\n\r\n- [ ] The artifact produced is properly licensed, preferably with the [MIT license][mit-license].\r\n\r\n---\r\n\r\n<!-- LICENSE -->\r\n\r\n<a rel=\"license\" href=\"http://creativecommons.org/licenses/by-nc-sa/4.0/\"><img alt=\"Creative Commons License\" style=\"border-width:0\" src=\"https://i.creativecommons.org/l/by-nc-sa/4.0/80x15.png\" /></a>\r\n<br />This work is licensed under a <a rel=\"license\" href=\"http://creativecommons.org/licenses/by-nc-sa/4.0/\">Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International License</a>.\r\n\r\n[mit-license]: https://opensource.org/licenses/MIT\r\n"
},
{
"url": "https://api.github.com/repos/GuildCrafts/web-development-js/issues/39",
"repository_url": "https://api.github.com/repos/GuildCrafts/web-development-js",
"labels_url": "https://api.github.com/repos/GuildCrafts/web-development-js/issues/39/labels{/name}",
"comments_url": "https://api.github.com/repos/GuildCrafts/web-development-js/issues/39/comments",
"events_url": "https://api.github.com/repos/GuildCrafts/web-development-js/issues/39/events",
"html_url": "https://github.com/GuildCrafts/web-development-js/issues/39",
"id": 165895612,
"number": 39,
"title": "Tarot Card Web App",
"user": {
"login": "rachel-ftw",
"id": 17391810,
"avatar_url": "https://avatars.githubusercontent.com/u/17391810?v=3",
"gravatar_id": "",
"url": "https://api.github.com/users/rachel-ftw",
"html_url": "https://github.com/rachel-ftw",
"followers_url": "https://api.github.com/users/rachel-ftw/followers",
"following_url": "https://api.github.com/users/rachel-ftw/following{/other_user}",
"gists_url": "https://api.github.com/users/rachel-ftw/gists{/gist_id}",
"starred_url": "https://api.github.com/users/rachel-ftw/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/rachel-ftw/subscriptions",
"organizations_url": "https://api.github.com/users/rachel-ftw/orgs",
"repos_url": "https://api.github.com/users/rachel-ftw/repos",
"events_url": "https://api.github.com/users/rachel-ftw/events{/privacy}",
"received_events_url": "https://api.github.com/users/rachel-ftw/received_events",
"type": "User",
"site_admin": false
},
"labels": [
{
"url": "https://api.github.com/repos/GuildCrafts/web-development-js/labels/draft",
"name": "draft",
"color": "fbca04"
}
],
"state": "open",
"locked": false,
"assignee": null,
"assignees": [],
"milestone": null,
"comments": 0,
"created_at": "2016-07-15T23:37:13Z",
"updated_at": "2016-07-15T23:37:13Z",
"closed_at": null,
"body": "## Description\r\n\r\nThe artifact of this project is a web app that will present randomized Tarot cards\r\nhttp://wildandbad.com/cards/\r\n\r\n## Context\r\n\r\nHow do you deploy a web app? \r\nHow do you\r\n\r\n## Specifications\r\n\r\n_List of specifications (specs) for the completed goal. These are declarative sentences (statements) describing some quality or behavior of the final product._\r\n\r\n- [ ] Deployed to a website via Hiroku.\r\n- [ ] Incorporate \r\n- [ ] Spec Three.\r\n\r\n### Required\r\n\r\n_Do not remove these specs - they are required for all goals_.\r\n\r\n- [ ] The artifact produced is properly licensed, preferably with the [MIT license][mit-license].\r\n\r\n---\r\n\r\n<!-- LICENSE -->\r\n\r\n<a rel=\"license\" href=\"http://creativecommons.org/licenses/by-nc-sa/4.0/\"><img alt=\"Creative Commons License\" style=\"border-width:0\" src=\"https://i.creativecommons.org/l/by-nc-sa/4.0/80x15.png\" /></a>\r\n<br />This work is licensed under a <a rel=\"license\" href=\"http://creativecommons.org/licenses/by-nc-sa/4.0/\">Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International License</a>.\r\n\r\n[mit-license]: https://opensource.org/licenses/MIT\r\n"
},
{
"url": "https://api.github.com/repos/GuildCrafts/web-development-js/issues/38",
"repository_url": "https://api.github.com/repos/GuildCrafts/web-development-js",
"labels_url": "https://api.github.com/repos/GuildCrafts/web-development-js/issues/38/labels{/name}",
"comments_url": "https://api.github.com/repos/GuildCrafts/web-development-js/issues/38/comments",
"events_url": "https://api.github.com/repos/GuildCrafts/web-development-js/issues/38/events",
"html_url": "https://github.com/GuildCrafts/web-development-js/issues/38",
"id": 165895573,
"number": 38,
"title": "Appointment booking system ",
"user": {
"login": "Farhad33",
"id": 7544733,
"avatar_url": "https://avatars.githubusercontent.com/u/7544733?v=3",
"gravatar_id": "",
"url": "https://api.github.com/users/Farhad33",
"html_url": "https://github.com/Farhad33",
"followers_url": "https://api.github.com/users/Farhad33/followers",
"following_url": "https://api.github.com/users/Farhad33/following{/other_user}",
"gists_url": "https://api.github.com/users/Farhad33/gists{/gist_id}",
"starred_url": "https://api.github.com/users/Farhad33/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/Farhad33/subscriptions",
"organizations_url": "https://api.github.com/users/Farhad33/orgs",
"repos_url": "https://api.github.com/users/Farhad33/repos",
"events_url": "https://api.github.com/users/Farhad33/events{/privacy}",
"received_events_url": "https://api.github.com/users/Farhad33/received_events",
"type": "User",
"site_admin": false
},
"labels": [
{
"url": "https://api.github.com/repos/GuildCrafts/web-development-js/labels/draft",
"name": "draft",
"color": "fbca04"
},
{
"url": "https://api.github.com/repos/GuildCrafts/web-development-js/labels/team-size-4",
"name": "team-size-4",
"color": "446bff"
}
],
"state": "open",
"locked": false,
"assignee": {
"login": "nicosesma",
"id": 18688343,
"avatar_url": "https://avatars.githubusercontent.com/u/18688343?v=3",
"gravatar_id": "",
"url": "https://api.github.com/users/nicosesma",
"html_url": "https://github.com/nicosesma",
"followers_url": "https://api.github.com/users/nicosesma/followers",
"following_url": "https://api.github.com/users/nicosesma/following{/other_user}",
"gists_url": "https://api.github.com/users/nicosesma/gists{/gist_id}",
"starred_url": "https://api.github.com/users/nicosesma/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/nicosesma/subscriptions",
"organizations_url": "https://api.github.com/users/nicosesma/orgs",
"repos_url": "https://api.github.com/users/nicosesma/repos",
"events_url": "https://api.github.com/users/nicosesma/events{/privacy}",
"received_events_url": "https://api.github.com/users/nicosesma/received_events",
"type": "User",
"site_admin": false
},
"assignees": [
{
"login": "nicosesma",
"id": 18688343,
"avatar_url": "https://avatars.githubusercontent.com/u/18688343?v=3",
"gravatar_id": "",
"url": "https://api.github.com/users/nicosesma",
"html_url": "https://github.com/nicosesma",
"followers_url": "https://api.github.com/users/nicosesma/followers",
"following_url": "https://api.github.com/users/nicosesma/following{/other_user}",
"gists_url": "https://api.github.com/users/nicosesma/gists{/gist_id}",
"starred_url": "https://api.github.com/users/nicosesma/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/nicosesma/subscriptions",
"organizations_url": "https://api.github.com/users/nicosesma/orgs",
"repos_url": "https://api.github.com/users/nicosesma/repos",
"events_url": "https://api.github.com/users/nicosesma/events{/privacy}",
"received_events_url": "https://api.github.com/users/nicosesma/received_events",
"type": "User",
"site_admin": false
}
],
"milestone": null,
"comments": 0,
"created_at": "2016-07-15T23:36:42Z",
"updated_at": "2016-07-16T00:03:31Z",
"closed_at": null,
"body": "## Description\r\n\r\nAs a business owner, I want a system that allows me to add all of my employees and set their availability and available blocks of time. \r\n\r\nAs a business customer, I want a system that allows me to book an appointment for a specific block of time with a specific employee.\r\n\r\n## Context\r\n\r\nThis is important because:\r\n* Beginning to work with a backend\r\n* Beginning to work with a database\r\n* Rendering a complex html view (the calendar)\r\n* Incorporating interactive elements around a calendar view\r\n\r\n## Specifications\r\n\r\n_List of specifications (specs) for the completed goal. These are declarative sentences (statements) describing some quality or behavior of the final product._\r\n\r\n- [ ] Customers and employees are eble to sign in and sign up.\r\n- [ ] Employees are able to set their availability.\r\n- [ ] Customer is able to make an appointment.\r\n- [ ] Data is being stored in database.\r\n- [ ] Customer should be able to see available time slots on calendar.\r\n\r\n### Required\r\n\r\n_Do not remove these specs - they are required for all goals_.\r\n\r\n- [ ] The artifact produced is properly licensed, preferably with the [MIT license][mit-license].\r\n\r\n---\r\n\r\n<!-- LICENSE -->\r\n\r\n<a rel=\"license\" href=\"http://creativecommons.org/licenses/by-nc-sa/4.0/\"><img alt=\"Creative Commons License\" style=\"border-width:0\" src=\"https://i.creativecommons.org/l/by-nc-sa/4.0/80x15.png\" /></a>\r\n<br />This work is licensed under a <a rel=\"license\" href=\"http://creativecommons.org/licenses/by-nc-sa/4.0/\">Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International License</a>.\r\n\r\n[mit-license]: https://opensource.org/licenses/MIT\r\n"
},
{
"url": "https://api.github.com/repos/GuildCrafts/web-development-js/issues/37",
"repository_url": "https://api.github.com/repos/GuildCrafts/web-development-js",
"labels_url": "https://api.github.com/repos/GuildCrafts/web-development-js/issues/37/labels{/name}",
"comments_url": "https://api.github.com/repos/GuildCrafts/web-development-js/issues/37/comments",
"events_url": "https://api.github.com/repos/GuildCrafts/web-development-js/issues/37/events",
"html_url": "https://github.com/GuildCrafts/web-development-js/issues/37",
"id": 165895410,
"number": 37,
"title": "Create a JavaScript Library",
"user": {
"login": "Jusdev89",
"id": 8162708,
"avatar_url": "https://avatars.githubusercontent.com/u/8162708?v=3",
"gravatar_id": "",
"url": "https://api.github.com/users/Jusdev89",
"html_url": "https://github.com/Jusdev89",
"followers_url": "https://api.github.com/users/Jusdev89/followers",
"following_url": "https://api.github.com/users/Jusdev89/following{/other_user}",
"gists_url": "https://api.github.com/users/Jusdev89/gists{/gist_id}",
"starred_url": "https://api.github.com/users/Jusdev89/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/Jusdev89/subscriptions",
"organizations_url": "https://api.github.com/users/Jusdev89/orgs",
"repos_url": "https://api.github.com/users/Jusdev89/repos",
"events_url": "https://api.github.com/users/Jusdev89/events{/privacy}",
"received_events_url": "https://api.github.com/users/Jusdev89/received_events",
"type": "User",
"site_admin": false
},
"labels": [
{
"url": "https://api.github.com/repos/GuildCrafts/web-development-js/labels/draft",
"name": "draft",
"color": "fbca04"
},
{
"url": "https://api.github.com/repos/GuildCrafts/web-development-js/labels/team-size-3",
"name": "team-size-3",
"color": "3a8ada"
}
],
"state": "open",
"locked": false,
"assignee": null,
"assignees": [],
"milestone": null,
"comments": 0,
"created_at": "2016-07-15T23:34:34Z",
"updated_at": "2016-07-15T23:43:41Z",
"closed_at": null,
"body": "## Description\r\n\r\n_Create a library of 30 commonly used JavaScript methods with excellent Documentation and commenting using ES2015, publish the code as a package to NPM and deploy as a CDN._\r\n\r\n## Context\r\n\r\n_This goal is important in learning JavaScript and understanding how high level developer's write code for others to use and to understand ES2015. This code will be used by other developers to make their jobs easier. The questions that this project will raise is how do we write packages that are easy to understand out of the box and simple to use right away. How to deploy to a CDN?, how to publish a package to NPM?._\r\n\r\n## Specifications\r\n\r\n_List of specifications (specs) for the completed goal. These are declarative sentences (statements) describing some quality or behavior of the final product._\r\n\r\n### Required\r\n\r\n- [ ] Pick five or six commonly used methods to rewrite in ES2015.\r\n- [ ] Write excellent documentation for those methods.\r\n- [ ] Deploy to a CDN.\r\n- [ ] Publish package to NPM.\r\n\r\n\r\n### Optional\r\n\r\n- [ ] Write tests for those methods described.\r\n- [ ] Showcase methods in a simple website app (optional)_.\r\n\r\n- [ ] The artifact produced is properly licensed, preferably with the [MIT license][mit-license].\r\n\r\n---\r\n\r\n<!-- LICENSE -->\r\n\r\n<a rel=\"license\" href=\"http://creativecommons.org/licenses/by-nc-sa/4.0/\"><img alt=\"Creative Commons License\" style=\"border-width:0\" src=\"https://i.creativecommons.org/l/by-nc-sa/4.0/80x15.png\" /></a>\r\n<br />This work is licensed under a <a rel=\"license\" href=\"http://creativecommons.org/licenses/by-nc-sa/4.0/\">Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International License</a>.\r\n\r\n[mit-license]: https://opensource.org/licenses/MIT\r\n"
},
{
"url": "https://api.github.com/repos/GuildCrafts/web-development-js/issues/36",
"repository_url": "https://api.github.com/repos/GuildCrafts/web-development-js",
"labels_url": "https://api.github.com/repos/GuildCrafts/web-development-js/issues/36/labels{/name}",
"comments_url": "https://api.github.com/repos/GuildCrafts/web-development-js/issues/36/comments",
"events_url": "https://api.github.com/repos/GuildCrafts/web-development-js/issues/36/events",
"html_url": "https://github.com/GuildCrafts/web-development-js/issues/36",
"id": 165895386,
"number": 36,
"title": "Use JS to change the color of a web page depending on who is visiting",
"user": {
"login": "Moniarchy",
"id": 18104615,
"avatar_url": "https://avatars.githubusercontent.com/u/18104615?v=3",
"gravatar_id": "",
"url": "https://api.github.com/users/Moniarchy",
"html_url": "https://github.com/Moniarchy",
"followers_url": "https://api.github.com/users/Moniarchy/followers",
"following_url": "https://api.github.com/users/Moniarchy/following{/other_user}",
"gists_url": "https://api.github.com/users/Moniarchy/gists{/gist_id}",
"starred_url": "https://api.github.com/users/Moniarchy/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/Moniarchy/subscriptions",
"organizations_url": "https://api.github.com/users/Moniarchy/orgs",
"repos_url": "https://api.github.com/users/Moniarchy/repos",
"events_url": "https://api.github.com/users/Moniarchy/events{/privacy}",
"received_events_url": "https://api.github.com/users/Moniarchy/received_events",
"type": "User",
"site_admin": false
},
"labels": [
{
"url": "https://api.github.com/repos/GuildCrafts/web-development-js/labels/draft",
"name": "draft",
"color": "fbca04"
},
{
"url": "https://api.github.com/repos/GuildCrafts/web-development-js/labels/team-size-3",
"name": "team-size-3",
"color": "3a8ada"
}
],
"state": "open",
"locked": false,
"assignee": null,
"assignees": [],
"milestone": null,
"comments": 0,
"created_at": "2016-07-15T23:34:18Z",
"updated_at": "2016-07-15T23:34:18Z",
"closed_at": null,
"body": "## Description\r\n\r\nDifferent websites and applications allow different features and colors depending on the user's location, name, or other factors. Many of these apps or websites will allow a user to choose to turn the colors on or off, if necessary. For example, the iPhone allows users to change the color of the screen during the evening, and there is a Chrome extension that does the same. Google maps changes colors at night. \r\n\r\n## Context\r\n\r\nThis goal is important because users like interactivity in the technologies they use. Knowing how to change the colors of a page or app allows for that interactivity and even accessibility for certain users who might need to increase the contrast between the text and background fonts/colors of their own volition. Someone who takes on this project will have to think about the following:\r\n\r\n- What are the base colors for the page?\r\n- When does the page change? Depending on a person's name? The first letter of their name? The time of day when they access the app? Or with some other factor?\r\n- Does the user choose the colors they can change the page to, or is it a preset by the creator of the page? \r\n- What are the different functions in Javascript that can be used to achieve the specifications?\r\n\r\n## Specifications\r\n\r\n- [ ] Using HTML and CSS, create at least one web page with information on it for a user to read. This could be a current event, a short story, an instruction set, or an about me page, for example.\r\n- [ ] Using Javascript, create a function that allows the text color and the page background color to be changed according to the factors that the creator sets forth.\r\n- [ ] If the user chooses the colors that the page can be, make buttons for the user to choose or cycle through available sets of colors.\r\n- [ ] If the creator of the page does not allow the user to change the colors, create an alert that logs an answer and uses the user's response in order to change the colors.\r\n\r\n### Required\r\n\r\n_Do not remove these specs - they are required for all goals_.\r\n\r\n- [ ] The artifact produced is properly licensed, preferably with the [MIT license][mit-license].\r\n\r\n---\r\n\r\n<!-- LICENSE -->\r\n\r\n<a rel=\"license\" href=\"http://creativecommons.org/licenses/by-nc-sa/4.0/\"><img alt=\"Creative Commons License\" style=\"border-width:0\" src=\"https://i.creativecommons.org/l/by-nc-sa/4.0/80x15.png\" /></a>\r\n<br />This work is licensed under a <a rel=\"license\" href=\"http://creativecommons.org/licenses/by-nc-sa/4.0/\">Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International License</a>.\r\n\r\n[mit-license]: https://opensource.org/licenses/MIT\r\n"
},
{
"url": "https://api.github.com/repos/GuildCrafts/web-development-js/issues/35",
"repository_url": "https://api.github.com/repos/GuildCrafts/web-development-js",
"labels_url": "https://api.github.com/repos/GuildCrafts/web-development-js/issues/35/labels{/name}",
"comments_url": "https://api.github.com/repos/GuildCrafts/web-development-js/issues/35/comments",
"events_url": "https://api.github.com/repos/GuildCrafts/web-development-js/issues/35/events",
"html_url": "https://github.com/GuildCrafts/web-development-js/issues/35",
"id": 165895322,
"number": 35,
"title": "Income Share Agreement Web Calculator",
"user": {
"login": "EthanJStark",
"id": 19176630,
"avatar_url": "https://avatars.githubusercontent.com/u/19176630?v=3",
"gravatar_id": "",
"url": "https://api.github.com/users/EthanJStark",
"html_url": "https://github.com/EthanJStark",
"followers_url": "https://api.github.com/users/EthanJStark/followers",
"following_url": "https://api.github.com/users/EthanJStark/following{/other_user}",
"gists_url": "https://api.github.com/users/EthanJStark/gists{/gist_id}",
"starred_url": "https://api.github.com/users/EthanJStark/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/EthanJStark/subscriptions",
"organizations_url": "https://api.github.com/users/EthanJStark/orgs",
"repos_url": "https://api.github.com/users/EthanJStark/repos",
"events_url": "https://api.github.com/users/EthanJStark/events{/privacy}",
"received_events_url": "https://api.github.com/users/EthanJStark/received_events",
"type": "User",
"site_admin": false
},
"labels": [
{
"url": "https://api.github.com/repos/GuildCrafts/web-development-js/labels/draft",
"name": "draft",
"color": "fbca04"
},
{
"url": "https://api.github.com/repos/GuildCrafts/web-development-js/labels/team-size-3",
"name": "team-size-3",
"color": "3a8ada"
}
],
"state": "open",
"locked": false,
"assignee": null,
"assignees": [],
"milestone": null,
"comments": 0,
"created_at": "2016-07-15T23:33:30Z",
"updated_at": "2016-07-16T00:01:29Z",
"closed_at": null,
"body": "## Description\r\n\r\nCreate an online calculator that allows a prospective Learners Guild applicant to determine various outcomes of opting in to the Income Share Agreement (ISA) and stipend. \r\n\r\nCustomer: for deployment on Learnersguild.org\r\nUser: a prospective applicant\r\n\r\n## Context\r\n\r\n_Why is this goal important? How is it useful? What questions will it raise?_\r\n\r\nThis goal is important because it has an actual customer (Learners Guild) and actual users (prospective applicants). This is an opportunity to analyze and explore UX. How can one effectively, clearly, visually communicate these complex mathematical equations?\r\n\r\nThis calculator can help one make informed decisions around the ISA and Living Allowance. \r\nChanging variables, like salary and amount of stipend, can result in thousands of dollars of difference in the amount of tuition paid.\r\n\r\n\r\n\r\n## Required Specs (Must Have)\r\n\r\n- [ ] User can select variables (like income and stipend) with buttons or forms.\r\n- [ ] The app will visually communicate the math being done so the user has a better understanding of the variables and equations in play.\r\n- [ ] The artifact produced is properly licensed, preferably with the [MIT license][mit-license].\r\n\r\n## Optional Specs (Nice To Have)\r\n- [ ] The app is responsive and mobile-friendly.\r\n- [ ] The app compares ISA outcomes with upfront tuition.\r\n- [ ] Variables will have (?) hover links to provide more background about the components of the ISA and stipend.\r\n- [ ] Team has interviewed at least three potential users about features and UX.\r\n\r\n\r\n\r\n\r\n\r\n\r\n---\r\n\r\n<!-- LICENSE -->\r\n\r\n<a rel=\"license\" href=\"http://creativecommons.org/licenses/by-nc-sa/4.0/\"><img alt=\"Creative Commons License\" style=\"border-width:0\" src=\"https://i.creativecommons.org/l/by-nc-sa/4.0/80x15.png\" /></a>\r\n<br />This work is licensed under a <a rel=\"license\" href=\"http://creativecommons.org/licenses/by-nc-sa/4.0/\">Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International License</a>.\r\n\r\n[mit-license]: https://opensource.org/licenses/MIT\r\n"
},
{
"url": "https://api.github.com/repos/GuildCrafts/web-development-js/issues/34",
"repository_url": "https://api.github.com/repos/GuildCrafts/web-development-js",
"labels_url": "https://api.github.com/repos/GuildCrafts/web-development-js/issues/34/labels{/name}",
"comments_url": "https://api.github.com/repos/GuildCrafts/web-development-js/issues/34/comments",
"events_url": "https://api.github.com/repos/GuildCrafts/web-development-js/issues/34/events",
"html_url": "https://github.com/GuildCrafts/web-development-js/issues/34",
"id": 165895287,
"number": 34,
"title": "GuildCrafts Goal Tracker/Viewer",
"user": {
"login": "bluemihai",
"id": 2309158,
"avatar_url": "https://avatars.githubusercontent.com/u/2309158?v=3",
"gravatar_id": "",
"url": "https://api.github.com/users/bluemihai",
"html_url": "https://github.com/bluemihai",
"followers_url": "https://api.github.com/users/bluemihai/followers",
"following_url": "https://api.github.com/users/bluemihai/following{/other_user}",
"gists_url": "https://api.github.com/users/bluemihai/gists{/gist_id}",
"starred_url": "https://api.github.com/users/bluemihai/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/bluemihai/subscriptions",
"organizations_url": "https://api.github.com/users/bluemihai/orgs",
"repos_url": "https://api.github.com/users/bluemihai/repos",
"events_url": "https://api.github.com/users/bluemihai/events{/privacy}",
"received_events_url": "https://api.github.com/users/bluemihai/received_events",
"type": "User",
"site_admin": false
},
"labels": [],
"state": "open",
"locked": false,
"assignee": null,
"assignees": [],
"milestone": null,
"comments": 0,
"created_at": "2016-07-15T23:32:56Z",
"updated_at": "2016-07-15T23:33:39Z",
"closed_at": null,
"body": "## Description\r\n\r\nA repo that pulls in our goals/issues and displays them while maximizing a great UX.\r\n\r\n## Context\r\n\r\nServing an actual customer is a huge part of writing good software. If you take on this goal, you will be the customer, and have access to 19 other users - so you can talk to them, and learn about good User Experience Design (UX).\r\n\r\n## Required Specs (Must Have)\r\n\r\n_List of specifications (specs) for the completed goal. These are declarative sentences (statements) describing some quality or behavior of the final product._\r\n\r\n- [ ] You build an external website, which improves the user experience of reading available goals\r\n- [ ] You have interviewed at least three potential users at each stage of your app\r\n- [ ] Your site uses the GitHub API to access the actual goals from this repo's issues\r\n- [ ] Your site uses a database to store additional information about each goal\r\n- [ ] The artifact produced is properly licensed, preferably with the [MIT license][mit-license].\r\n- [ ] You clearly value user experience\r\n\r\n## Optional Specs (Nice To Have)\r\n\r\n- [ ] Multiple views, ability to sort and filter goals\r\n- [ ] A way to rate, thumbs up/down, track/display who has already completed a goal\r\n- [ ] Be creative! Anything you can think of that you or someone would want\r\n\r\n---\r\n\r\n<!-- LICENSE -->\r\n\r\n<a rel=\"license\" href=\"http://creativecommons.org/licenses/by-nc-sa/4.0/\"><img alt=\"Creative Commons License\" style=\"border-width:0\" src=\"https://i.creativecommons.org/l/by-nc-sa/4.0/80x15.png\" /></a>\r\n<br />This work is licensed under a <a rel=\"license\" href=\"http://creativecommons.org/licenses/by-nc-sa/4.0/\">Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International License</a>.\r\n\r\n[mit-license]: https://opensource.org/licenses/MIT\r\n"
},
{
"url": "https://api.github.com/repos/GuildCrafts/web-development-js/issues/33",
"repository_url": "https://api.github.com/repos/GuildCrafts/web-development-js",
"labels_url": "https://api.github.com/repos/GuildCrafts/web-development-js/issues/33/labels{/name}",
"comments_url": "https://api.github.com/repos/GuildCrafts/web-development-js/issues/33/comments",
"events_url": "https://api.github.com/repos/GuildCrafts/web-development-js/issues/33/events",
"html_url": "https://github.com/GuildCrafts/web-development-js/issues/33",
"id": 165894849,
"number": 33,
"title": "Create a news app that will pull information from preferred news sources",
"user": {
"login": "TS22082",
"id": 17750772,
"avatar_url": "https://avatars.githubusercontent.com/u/17750772?v=3",
"gravatar_id": "",
"url": "https://api.github.com/users/TS22082",
"html_url": "https://github.com/TS22082",
"followers_url": "https://api.github.com/users/TS22082/followers",
"following_url": "https://api.github.com/users/TS22082/following{/other_user}",
"gists_url": "https://api.github.com/users/TS22082/gists{/gist_id}",
"starred_url": "https://api.github.com/users/TS22082/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/TS22082/subscriptions",
"organizations_url": "https://api.github.com/users/TS22082/orgs",
"repos_url": "https://api.github.com/users/TS22082/repos",
"events_url": "https://api.github.com/users/TS22082/events{/privacy}",
"received_events_url": "https://api.github.com/users/TS22082/received_events",
"type": "User",
"site_admin": false
},
"labels": [],
"state": "open",
"locked": false,
"assignee": null,
"assignees": [],
"milestone": null,
"comments": 0,
"created_at": "2016-07-15T23:27:10Z",
"updated_at": "2016-07-15T23:53:02Z",
"closed_at": null,
"body": "## Description\r\n\r\nCreate a downloadable mobile APP and companion website that pulls information from your preferred news websites. \r\n\r\n## Context\r\n\r\nThis project is is going to be extremely important since aggregating information is a critical component in many of the APPS we use. Use whatever frameworks/ libraries you need to complete the goal.\r\n\r\n## Specifications\r\n\r\n- [ ] aggregates news from no less than 2 websites.\r\n- [ ] lists news sources headlines with the news source in parenthesis\r\n- [ ] each headline will take you to the full story on the news websites page. \r\n- [ ] a way to sign in\r\n- [ ] Downloadable\r\n- [ ] companion website\r\n- [ ] keeps itself updated on a timed basis with a manual refresh button\r\n\r\n### Required\r\n\r\n-[ ] all links work properly\r\n- [ ] a way to update the APPs news so that it pulls in fresh news articles\r\n- [ ] The artifact produced is properly licensed, preferably with the [MIT license][mit-license].\r\n\r\n---\r\n\r\n<!-- LICENSE -->\r\n\r\n<a rel=\"license\" href=\"http://creativecommons.org/licenses/by-nc-sa/4.0/\"><img alt=\"Creative Commons License\" style=\"border-width:0\" src=\"https://i.creativecommons.org/l/by-nc-sa/4.0/80x15.png\" /></a>\r\n<br />This work is licensed under a <a rel=\"license\" href=\"http://creativecommons.org/licenses/by-nc-sa/4.0/\">Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International License</a>.\r\n\r\n[mit-license]: https://opensource.org/licenses/MIT\r\n"
},
{
"url": "https://api.github.com/repos/GuildCrafts/web-development-js/issues/32",
"repository_url": "https://api.github.com/repos/GuildCrafts/web-development-js",
"labels_url": "https://api.github.com/repos/GuildCrafts/web-development-js/issues/32/labels{/name}",
"comments_url": "https://api.github.com/repos/GuildCrafts/web-development-js/issues/32/comments",
"events_url": "https://api.github.com/repos/GuildCrafts/web-development-js/issues/32/events",
"html_url": "https://github.com/GuildCrafts/web-development-js/issues/32",
"id": 165894308,
"number": 32,
"title": "Greater Bay Area Movie Theater Map",
"user": {
"login": "pllearns",
"id": 20314203,
"avatar_url": "https://avatars.githubusercontent.com/u/20314203?v=3",
"gravatar_id": "",
"url": "https://api.github.com/users/pllearns",
"html_url": "https://github.com/pllearns",
"followers_url": "https://api.github.com/users/pllearns/followers",
"following_url": "https://api.github.com/users/pllearns/following{/other_user}",
"gists_url": "https://api.github.com/users/pllearns/gists{/gist_id}",
"starred_url": "https://api.github.com/users/pllearns/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/pllearns/subscriptions",
"organizations_url": "https://api.github.com/users/pllearns/orgs",
"repos_url": "https://api.github.com/users/pllearns/repos",
"events_url": "https://api.github.com/users/pllearns/events{/privacy}",
"received_events_url": "https://api.github.com/users/pllearns/received_events",
"type": "User",
"site_admin": false
},
"labels": [
{
"url": "https://api.github.com/repos/GuildCrafts/web-development-js/labels/draft",
"name": "draft",
"color": "fbca04"
},
{
"url": "https://api.github.com/repos/GuildCrafts/web-development-js/labels/team-size-3",
"name": "team-size-3",
"color": "3a8ada"
}
],
"state": "open",
"locked": false,
"assignee": null,
"assignees": [],
"milestone": null,
"comments": 1,
"created_at": "2016-07-15T23:20:26Z",
"updated_at": "2016-07-16T00:00:01Z",
"closed_at": null,
"body": "## Description\r\nCreate a web app that connects to Google Maps, with a search bar that looks specifically for movie theaters in the Bay Area. Use HTML, CSS, Javascript, JQuery, and you may also implement databases or other libraries to help you gather the information for these theaters. The information that will be collected and displayed to the user should include, film showtimes, reviews, theater reviews (i.e. customer service, environment, the behavior of other patrons, etc).\r\n\r\nYou should still write the code for the site, including creating the space for the plugins and you must be able to explain all of your choices for third party software. \r\n\r\nDo not publish this site, just use the html index for us to access for review at the end of the cycle. \r\n\r\n## Context\r\nCreating an interactive web app that accesses large databases for your specific website use is a great way to understand the concept of full stack development, since you will definitely need to access the skills on multiple languages and frameworks. \r\n\r\nFeel free to use frameworks and other libraries, but do not copy-paste, it is crucial that in typing the code out allows you to continually read and discover how the code works. The exception would be for plug-ins or pathways to accessing large datasets.\r\n\r\nAs you code your site, you will likely encounter scenarios that you may not have expected, which is fine, it only means that you given more opportunities to problem-solve!\r\n\r\n\r\n## Specifications\r\n- [ ] Write the HTML/CSS code for the webpage\r\n- [ ] Find a way to plug Google Maps into the site\r\n- [ ] Use a database to allow the user to access information on theater showtimes, film reviews, and user reviews on the movie theaters. \r\n- [ ] Make sure all links and user interactivity work. Do not leave a button or function unusable. \r\n- [ ] If you use any frameworks or code libraries, please cite them and/or explain how you implemented them in a gitbook, or on your README.\r\n- [ ] Bonus: Optimize for Mobile. \r\n\r\n### Required\r\n\r\n_Do not remove these specs - they are required for all goals_.\r\n\r\n- [ ] The artifact produced is properly licensed, preferably with the [MIT license][mit-license].\r\n\r\n---\r\n\r\n<!-- LICENSE -->\r\n\r\n<a rel=\"license\" href=\"http://creativecommons.org/licenses/by-nc-sa/4.0/\"><img alt=\"Creative Commons License\" style=\"border-width:0\" src=\"https://i.creativecommons.org/l/by-nc-sa/4.0/80x15.png\" /></a>\r\n<br />This work is licensed under a <a rel=\"license\" href=\"http://creativecommons.org/licenses/by-nc-sa/4.0/\">Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International License</a>.\r\n\r\n[mit-license]: https://opensource.org/licenses/MIT\r\n\r\n"
},
{
"url": "https://api.github.com/repos/GuildCrafts/web-development-js/issues/31",
"repository_url": "https://api.github.com/repos/GuildCrafts/web-development-js",
"labels_url": "https://api.github.com/repos/GuildCrafts/web-development-js/issues/31/labels{/name}",
"comments_url": "https://api.github.com/repos/GuildCrafts/web-development-js/issues/31/comments",
"events_url": "https://api.github.com/repos/GuildCrafts/web-development-js/issues/31/events",
"html_url": "https://github.com/GuildCrafts/web-development-js/issues/31",
"id": 165892974,
"number": 31,
"title": "Draft goal ",
"user": {
"login": "harmanisdeep",
"id": 19172766,
"avatar_url": "https://avatars.githubusercontent.com/u/19172766?v=3",
"gravatar_id": "",
"url": "https://api.github.com/users/harmanisdeep",
"html_url": "https://github.com/harmanisdeep",
"followers_url": "https://api.github.com/users/harmanisdeep/followers",
"following_url": "https://api.github.com/users/harmanisdeep/following{/other_user}",
"gists_url": "https://api.github.com/users/harmanisdeep/gists{/gist_id}",
"starred_url": "https://api.github.com/users/harmanisdeep/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/harmanisdeep/subscriptions",
"organizations_url": "https://api.github.com/users/harmanisdeep/orgs",
"repos_url": "https://api.github.com/users/harmanisdeep/repos",
"events_url": "https://api.github.com/users/harmanisdeep/events{/privacy}",
"received_events_url": "https://api.github.com/users/harmanisdeep/received_events",
"type": "User",
"site_admin": false
},
"labels": [
{
"url": "https://api.github.com/repos/GuildCrafts/web-development-js/labels/draft",
"name": "draft",
"color": "fbca04"
}
],
"state": "open",
"locked": false,
"assignee": null,
"assignees": [],
"milestone": null,
"comments": 0,
"created_at": "2016-07-15T23:05:40Z",
"updated_at": "2016-07-15T23:06:13Z",
"closed_at": null,
"body": "## Description\r\n\r\n_Provide a brief, high-level overview of what the final product (artifact) of this goal is. Include any relevant resources or dependencies here._\r\n\r\n## Context\r\n\r\n_Why is this goal important? How is it useful? What questions will it raise?_\r\n\r\n## Specifications\r\n\r\n_List of specifications (specs) for the completed goal. These are declarative sentences (statements) describing some quality or behavior of the final product._\r\n\r\n- [ ] Spec One.\r\n- [ ] Spec Two.\r\n- [ ] Spec Three.\r\n\r\n### Required\r\n\r\n_Do not remove these specs - they are required for all goals_.\r\n\r\n- [ ] The artifact produced is properly licensed, preferably with the [MIT license][mit-license].\r\n\r\n---\r\n\r\n<!-- LICENSE -->\r\n\r\n<a rel=\"license\" href=\"http://creativecommons.org/licenses/by-nc-sa/4.0/\"><img alt=\"Creative Commons License\" style=\"border-width:0\" src=\"https://i.creativecommons.org/l/by-nc-sa/4.0/80x15.png\" /></a>\r\n<br />This work is licensed under a <a rel=\"license\" href=\"http://creativecommons.org/licenses/by-nc-sa/4.0/\">Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International License</a>.\r\n\r\n[mit-license]: https://opensource.org/licenses/MIT\r\n"
},
{
"url": "https://api.github.com/repos/GuildCrafts/web-development-js/issues/30",
"repository_url": "https://api.github.com/repos/GuildCrafts/web-development-js",
"labels_url": "https://api.github.com/repos/GuildCrafts/web-development-js/issues/30/labels{/name}",
"comments_url": "https://api.github.com/repos/GuildCrafts/web-development-js/issues/30/comments",
"events_url": "https://api.github.com/repos/GuildCrafts/web-development-js/issues/30/events",
"html_url": "https://github.com/GuildCrafts/web-development-js/issues/30",
"id": 165892659,
"number": 30,
"title": "Draft goal ",
"user": {
"login": "harmanisdeep",
"id": 19172766,
"avatar_url": "https://avatars.githubusercontent.com/u/19172766?v=3",
"gravatar_id": "",
"url": "https://api.github.com/users/harmanisdeep",
"html_url": "https://github.com/harmanisdeep",
"followers_url": "https://api.github.com/users/harmanisdeep/followers",
"following_url": "https://api.github.com/users/harmanisdeep/following{/other_user}",
"gists_url": "https://api.github.com/users/harmanisdeep/gists{/gist_id}",
"starred_url": "https://api.github.com/users/harmanisdeep/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/harmanisdeep/subscriptions",
"organizations_url": "https://api.github.com/users/harmanisdeep/orgs",
"repos_url": "https://api.github.com/users/harmanisdeep/repos",
"events_url": "https://api.github.com/users/harmanisdeep/events{/privacy}",
"received_events_url": "https://api.github.com/users/harmanisdeep/received_events",
"type": "User",
"site_admin": false
},
"labels": [
{
"url": "https://api.github.com/repos/GuildCrafts/web-development-js/labels/draft",
"name": "draft",
"color": "fbca04"
}
],
"state": "open",
"locked": false,
"assignee": null,
"assignees": [],
"milestone": null,
"comments": 0,
"created_at": "2016-07-15T23:02:32Z",
"updated_at": "2016-07-15T23:02:50Z",
"closed_at": null,
"body": "## Description\r\n\r\n_Provide a brief, high-level overview of what the final product (artifact) of this goal is. Include any relevant resources or dependencies here._\r\n\r\n## Context\r\n\r\n_Why is this goal important? How is it useful? What questions will it raise?_\r\n\r\n## Specifications\r\n\r\n_List of specifications (specs) for the completed goal. These are declarative sentences (statements) describing some quality or behavior of the final product._\r\n\r\n- [ ] Spec One.\r\n- [ ] Spec Two.\r\n- [ ] Spec Three.\r\n\r\n### Required\r\n\r\n_Do not remove these specs - they are required for all goals_.\r\n\r\n- [ ] The artifact produced is properly licensed, preferably with the [MIT license][mit-license].\r\n\r\n---\r\n\r\n<!-- LICENSE -->\r\n\r\n<a rel=\"license\" href=\"http://creativecommons.org/licenses/by-nc-sa/4.0/\"><img alt=\"Creative Commons License\" style=\"border-width:0\" src=\"https://i.creativecommons.org/l/by-nc-sa/4.0/80x15.png\" /></a>\r\n<br />This work is licensed under a <a rel=\"license\" href=\"http://creativecommons.org/licenses/by-nc-sa/4.0/\">Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International License</a>.\r\n\r\n[mit-license]: https://opensource.org/licenses/MIT\r\n"
},
{
"url": "https://api.github.com/repos/GuildCrafts/web-development-js/issues/29",
"repository_url": "https://api.github.com/repos/GuildCrafts/web-development-js",
"labels_url": "https://api.github.com/repos/GuildCrafts/web-development-js/issues/29/labels{/name}",
"comments_url": "https://api.github.com/repos/GuildCrafts/web-development-js/issues/29/comments",
"events_url": "https://api.github.com/repos/GuildCrafts/web-development-js/issues/29/events",
"html_url": "https://github.com/GuildCrafts/web-development-js/issues/29",
"id": 165613589,
"number": 29,
"title": "Reverse-engineered social media site with HTML & CSS",
"user": {
"login": "tannerwelsh",
"id": 709100,
"avatar_url": "https://avatars.githubusercontent.com/u/709100?v=3",
"gravatar_id": "",
"url": "https://api.github.com/users/tannerwelsh",
"html_url": "https://github.com/tannerwelsh",
"followers_url": "https://api.github.com/users/tannerwelsh/followers",
"following_url": "https://api.github.com/users/tannerwelsh/following{/other_user}",
"gists_url": "https://api.github.com/users/tannerwelsh/gists{/gist_id}",
"starred_url": "https://api.github.com/users/tannerwelsh/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/tannerwelsh/subscriptions",
"organizations_url": "https://api.github.com/users/tannerwelsh/orgs",
"repos_url": "https://api.github.com/users/tannerwelsh/repos",
"events_url": "https://api.github.com/users/tannerwelsh/events{/privacy}",
"received_events_url": "https://api.github.com/users/tannerwelsh/received_events",
"type": "User",
"site_admin": false
},
"labels": [
{
"url": "https://api.github.com/repos/GuildCrafts/web-development-js/labels/draft",
"name": "draft",
"color": "fbca04"
},
{
"url": "https://api.github.com/repos/GuildCrafts/web-development-js/labels/team-size-3",
"name": "team-size-3",
"color": "3a8ada"
}
],
"state": "open",
"locked": false,
"assignee": null,
"assignees": [],
"milestone": null,
"comments": 2,
"created_at": "2016-07-14T17:19:10Z",
"updated_at": "2016-07-14T23:22:23Z",
"closed_at": null,
"body": "## Description\r\nTake screenshots of pages on a popular social media site (Twitter, Facebook, Pinterest), and reverse engineer the HTML and CSS from scratch.\r\n\r\nYou can copy images and inspect the page using developer tools, but avoid copy-pasting! You'll learn a lot more this way.\r\n\r\nGet as close as you can to the screenshot.\r\n\r\nYou don't need to add behavior.\r\n\r\n## Context\r\nLooking at the design of an interactive social media site is a great way to learn just how powerful the code that drives them can be. It is in reading and re-writing the code where we can continue to enhance our learning. \r\n\r\nFeel free to use frameworks and other libraries, but do not copy-paste, it is crucial that in typing the code out allows you to continually read and discover how the code works. \r\n\r\nAs you code your site, you will likely encounter scenarios that you may not have expected, which is fine, it only means that you given more opportunities to problem-solve!\r\n\r\n\r\n## Specifications\r\n\r\n### Required\r\n\r\n_Do not remove these specs - they are required for all goals_.\r\n\r\n- [ ] The artifact produced is properly licensed, preferably with the [MIT license][mit-license].\r\n\r\n---\r\n\r\n<!-- LICENSE -->\r\n\r\n<a rel=\"license\" href=\"http://creativecommons.org/licenses/by-nc-sa/4.0/\"><img alt=\"Creative Commons License\" style=\"border-width:0\" src=\"https://i.creativecommons.org/l/by-nc-sa/4.0/80x15.png\" /></a>\r\n<br />This work is licensed under a <a rel=\"license\" href=\"http://creativecommons.org/licenses/by-nc-sa/4.0/\">Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International License</a>.\r\n\r\n[mit-license]: https://opensource.org/licenses/MIT\r\n"
},
{
"url": "https://api.github.com/repos/GuildCrafts/web-development-js/issues/28",
"repository_url": "https://api.github.com/repos/GuildCrafts/web-development-js",
"labels_url": "https://api.github.com/repos/GuildCrafts/web-development-js/issues/28/labels{/name}",
"comments_url": "https://api.github.com/repos/GuildCrafts/web-development-js/issues/28/comments",
"events_url": "https://api.github.com/repos/GuildCrafts/web-development-js/issues/28/events",
"html_url": "https://github.com/GuildCrafts/web-development-js/issues/28",
"id": 165613241,
"number": 28,
"title": "Shared link library API with Node.js + MongoDB",
"user": {
"login": "tannerwelsh",
"id": 709100,
"avatar_url": "https://avatars.githubusercontent.com/u/709100?v=3",
"gravatar_id": "",
"url": "https://api.github.com/users/tannerwelsh",
"html_url": "https://github.com/tannerwelsh",
"followers_url": "https://api.github.com/users/tannerwelsh/followers",
"following_url": "https://api.github.com/users/tannerwelsh/following{/other_user}",
"gists_url": "https://api.github.com/users/tannerwelsh/gists{/gist_id}",
"starred_url": "https://api.github.com/users/tannerwelsh/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/tannerwelsh/subscriptions",
"organizations_url": "https://api.github.com/users/tannerwelsh/orgs",
"repos_url": "https://api.github.com/users/tannerwelsh/repos",
"events_url": "https://api.github.com/users/tannerwelsh/events{/privacy}",
"received_events_url": "https://api.github.com/users/tannerwelsh/received_events",
"type": "User",
"site_admin": false
},
"labels": [
{
"url": "https://api.github.com/repos/GuildCrafts/web-development-js/labels/draft",
"name": "draft",
"color": "fbca04"
},
{
"url": "https://api.github.com/repos/GuildCrafts/web-development-js/labels/team-size-5",
"name": "team-size-5",
"color": "3a3dda"
}
],
"state": "open",
"locked": false,
"assignee": null,
"assignees": [],
"milestone": null,
"comments": 0,
"created_at": "2016-07-14T17:17:00Z",
"updated_at": "2016-07-14T18:28:52Z",
"closed_at": null,
"body": "# Description\r\n\r\nCreate a link database with different methods for organization and sharing. Store & share learning resources, tutorials, good videos, etc.\r\n\r\nThe interface for this app will be a HTTP API that serves JSON. There will also be a minimal web UI for account creation and management.\r\n\r\nFor example, if a user wanted to get all of their links tagged with `javascript`, they may issue the following HTTP request:\r\n\r\n```shell-session\r\n$ curl -X GET http://www.app.url/myUsername/links?tag=javascript&token=myAuthToken\r\n```\r\n\r\n...and get a JSON response looking like this:\r\n\r\n```\r\n[\r\n {\r\n \"url\": \"https://davidwalsh.name/es6-generators\",\r\n \"createdOn\": \"Thu Jul 14 14:21:01 EDT 2016\",\r\n \"tags\": [\r\n \"javascript\",\r\n \"generators\",\r\n \"es6\"\r\n ]\r\n },\r\n {\r\n \"url\": \"https://github.com/adam-s/js-interview-review\",\r\n \"createdOn\": \"Mon Jul 11 08:21:01 EDT 2016\",\r\n \"tags\": [\r\n \"javascript\",\r\n \"interviewing\",\r\n \"career-prep\"\r\n ]\r\n },\r\n]\r\n```\r\n\r\nUse [Node.js](https://nodejs.org/en/) and [MongoDB](https://www.mongodb.com/).\r\n\r\n## Context\r\n\r\nBuilding a application programming interface (API) for the web is a great way to learn how they work. In cases where the primary consumers of a piece of software are _other programs_ and not human users, a user interface (UI) is overkill.\r\n\r\nThat doesn't mean that an API can ignore the rules of good design, but it is a different way to think of interface design.\r\n\r\nThere are many examples of apps and APIs similar to this one, so you'll have lots to compare to.\r\n\r\nAs you work on this goal, consider the following questions:\r\n\r\n- What is the most appropriate data model for this app?\r\n- Which requests should be available to all users? Which should require authorization?\r\n- How should different endpoints be structured? Can a RESTful interface be implemented?\r\n\r\n## Specifications\r\nStories:\r\n\r\n- [ ] Users can create an account (web UI)\r\n- [ ] Users can create an auth token (web UI)\r\n- [ ] Users can authenticate HTTP requests with their token\r\n- [ ] Users have their own link library\r\n- [ ] Links can belong to one or more library\r\n- [ ] Links can have one or more tags\r\n- [ ] Links have a title\r\n- [ ] Links have comments\r\n- [ ] Links have a description\r\n- [ ] Links have a creator\r\n- [ ] Users can create links with HTTP POST\r\n- [ ] Users can add a link to their library with HTTP POST\r\n- [ ] Users can get a link by id with HTTP GET\r\n- [ ] Users can update a links in their library with HTTP PUT or PATCH\r\n- [ ] Link title and description can only be updated by the link creator\r\n- [ ] Users can add tags to links\r\n- [ ] Users can comment on links\r\n- [ ] Users can search for links by title with HTTP GET\r\n- [ ] Users can search for links by tag with HTTP GET\r\n\r\nBuild specs:\r\n\r\n- [ ] Site is deployed and live on the web\r\n- [ ] JS source code is written using ECMAScript 2015\r\n- [ ] Client-side JS scripts are compiled using a tool like Babel.js\r\n\r\n### Required\r\n\r\n_Do not remove these specs - they are required for all goals_.\r\n\r\n- [ ] The artifact produced is properly licensed, preferably with the [MIT license][mit-license].\r\n\r\n---\r\n\r\n<!-- LICENSE -->\r\n\r\n<a rel=\"license\" href=\"http://creativecommons.org/licenses/by-nc-sa/4.0/\"><img alt=\"Creative Commons License\" style=\"border-width:0\" src=\"https://i.creativecommons.org/l/by-nc-sa/4.0/80x15.png\" /></a>\r\n<br />This work is licensed under a <a rel=\"license\" href=\"http://creativecommons.org/licenses/by-nc-sa/4.0/\">Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International License</a>.\r\n\r\n[mit-license]: https://opensource.org/licenses/MIT\r\n"
},
{
"url": "https://api.github.com/repos/GuildCrafts/web-development-js/issues/27",
"repository_url": "https://api.github.com/repos/GuildCrafts/web-development-js",
"labels_url": "https://api.github.com/repos/GuildCrafts/web-development-js/issues/27/labels{/name}",
"comments_url": "https://api.github.com/repos/GuildCrafts/web-development-js/issues/27/comments",
"events_url": "https://api.github.com/repos/GuildCrafts/web-development-js/issues/27/events",
"html_url": "https://github.com/GuildCrafts/web-development-js/pull/27",
"id": 165392618,
"number": 27,
"title": "Wrote a guide describing HTML linting with Tidy.",
"user": {
"login": "EthanJStark",
"id": 19176630,
"avatar_url": "https://avatars.githubusercontent.com/u/19176630?v=3",
"gravatar_id": "",
"url": "https://api.github.com/users/EthanJStark",
"html_url": "https://github.com/EthanJStark",
"followers_url": "https://api.github.com/users/EthanJStark/followers",
"following_url": "https://api.github.com/users/EthanJStark/following{/other_user}",
"gists_url": "https://api.github.com/users/EthanJStark/gists{/gist_id}",
"starred_url": "https://api.github.com/users/EthanJStark/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/EthanJStark/subscriptions",
"organizations_url": "https://api.github.com/users/EthanJStark/orgs",
"repos_url": "https://api.github.com/users/EthanJStark/repos",
"events_url": "https://api.github.com/users/EthanJStark/events{/privacy}",
"received_events_url": "https://api.github.com/users/EthanJStark/received_events",
"type": "User",
"site_admin": false
},
"labels": [],
"state": "open",
"locked": false,
"assignee": null,
"assignees": [],
"milestone": null,
"comments": 1,
"created_at": "2016-07-13T18:42:45Z",
"updated_at": "2016-07-14T18:05:42Z",
"closed_at": null,
"pull_request": {
"url": "https://api.github.com/repos/GuildCrafts/web-development-js/pulls/27",
"html_url": "https://github.com/GuildCrafts/web-development-js/pull/27",
"diff_url": "https://github.com/GuildCrafts/web-development-js/pull/27.diff",
"patch_url": "https://github.com/GuildCrafts/web-development-js/pull/27.patch"
},
"body": "@GuildCrafts/moderators can you please review this pull request? We created this guide while linting, and think it'll be useful to others. "
},
{
"url": "https://api.github.com/repos/GuildCrafts/web-development-js/issues/26",
"repository_url": "https://api.github.com/repos/GuildCrafts/web-development-js",
"labels_url": "https://api.github.com/repos/GuildCrafts/web-development-js/issues/26/labels{/name}",
"comments_url": "https://api.github.com/repos/GuildCrafts/web-development-js/issues/26/comments",
"events_url": "https://api.github.com/repos/GuildCrafts/web-development-js/issues/26/events",
"html_url": "https://github.com/GuildCrafts/web-development-js/issues/26",
"id": 165383102,
"number": 26,
"title": "Multilingual CRUD web app",
"user": {
"login": "bluemihai",
"id": 2309158,
"avatar_url": "https://avatars.githubusercontent.com/u/2309158?v=3",
"gravatar_id": "",
"url": "https://api.github.com/users/bluemihai",
"html_url": "https://github.com/bluemihai",
"followers_url": "https://api.github.com/users/bluemihai/followers",
"following_url": "https://api.github.com/users/bluemihai/following{/other_user}",
"gists_url": "https://api.github.com/users/bluemihai/gists{/gist_id}",
"starred_url": "https://api.github.com/users/bluemihai/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/bluemihai/subscriptions",
"organizations_url": "https://api.github.com/users/bluemihai/orgs",
"repos_url": "https://api.github.com/users/bluemihai/repos",
"events_url": "https://api.github.com/users/bluemihai/events{/privacy}",
"received_events_url": "https://api.github.com/users/bluemihai/received_events",
"type": "User",
"site_admin": false
},
"labels": [
{
"url": "https://api.github.com/repos/GuildCrafts/web-development-js/labels/draft",
"name": "draft",
"color": "fbca04"
},
{
"url": "https://api.github.com/repos/GuildCrafts/web-development-js/labels/team-size-3",
"name": "team-size-3",
"color": "3a8ada"
}
],
"state": "open",
"locked": false,
"assignee": null,
"assignees": [],
"milestone": null,
"comments": 0,
"created_at": "2016-07-13T17:58:29Z",
"updated_at": "2016-07-15T22:48:16Z",
"closed_at": null,
"body": "## Description\r\n\r\nThe goal is to create the same website in three different technologies: Ruby on Rails, Node.js/Express and Python/Django.\r\n\r\n## Context\r\n\r\nJavascript and Node.js have a particular world view. We can better understand them by comparing and contrasting that world view to alternatives.\r\n\r\n### Required Specs (Must Have)\r\n\r\n_Do not remove these specs - they are required for all goals_.\r\n\r\n- [ ] Three different web apps are deployed using heroku: Ruby on Rails, js/Node.js and Python/Django.\r\n- [ ] Anonymous users can create, retrieve, update and destroy some \"things\" resource\r\n- [ ] The artifact produced is properly licensed, preferably with the [MIT license][mit-license].\r\n\r\n## Optional Specs (Nice To Have)\r\n\r\n- [ ] \"Things\" can have various attributes - time, category - be creative\r\n- [ ] Each app has at least one test\r\n\r\n\r\n---\r\n\r\n<!-- LICENSE -->\r\n\r\n<a rel=\"license\" href=\"http://creativecommons.org/licenses/by-nc-sa/4.0/\"><img alt=\"Creative Commons License\" style=\"border-width:0\" src=\"https://i.creativecommons.org/l/by-nc-sa/4.0/80x15.png\" /></a>\r\n<br />This work is licensed under a <a rel=\"license\" href=\"http://creativecommons.org/licenses/by-nc-sa/4.0/\">Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International License</a>.\r\n\r\n[mit-license]: https://opensource.org/licenses/MIT\r\n"
},
{
"url": "https://api.github.com/repos/GuildCrafts/web-development-js/issues/24",
"repository_url": "https://api.github.com/repos/GuildCrafts/web-development-js",
"labels_url": "https://api.github.com/repos/GuildCrafts/web-development-js/issues/24/labels{/name}",
"comments_url": "https://api.github.com/repos/GuildCrafts/web-development-js/issues/24/comments",
"events_url": "https://api.github.com/repos/GuildCrafts/web-development-js/issues/24/events",
"html_url": "https://github.com/GuildCrafts/web-development-js/issues/24",
"id": 165359665,
"number": 24,
"title": "Goal tracking app",
"user": {
"login": "thejaneofalltrades",
"id": 11356047,
"avatar_url": "https://avatars.githubusercontent.com/u/11356047?v=3",
"gravatar_id": "",
"url": "https://api.github.com/users/thejaneofalltrades",
"html_url": "https://github.com/thejaneofalltrades",
"followers_url": "https://api.github.com/users/thejaneofalltrades/followers",
"following_url": "https://api.github.com/users/thejaneofalltrades/following{/other_user}",
"gists_url": "https://api.github.com/users/thejaneofalltrades/gists{/gist_id}",
"starred_url": "https://api.github.com/users/thejaneofalltrades/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/thejaneofalltrades/subscriptions",
"organizations_url": "https://api.github.com/users/thejaneofalltrades/orgs",
"repos_url": "https://api.github.com/users/thejaneofalltrades/repos",
"events_url": "https://api.github.com/users/thejaneofalltrades/events{/privacy}",
"received_events_url": "https://api.github.com/users/thejaneofalltrades/received_events",
"type": "User",
"site_admin": false
},
"labels": [
{
"url": "https://api.github.com/repos/GuildCrafts/web-development-js/labels/draft",
"name": "draft",
"color": "fbca04"
}
],
"state": "open",
"locked": false,
"assignee": null,
"assignees": [],
"milestone": null,
"comments": 0,
"created_at": "2016-07-13T16:06:24Z",
"updated_at": "2016-07-15T23:09:21Z",
"closed_at": null,
"body": "## Description\r\nHabits are hard to form! A goal tracking application that can measure how consistent a user completes their desired improvements allows them to remain accountable for their defined objectives. \r\n\r\n## Context\r\n\r\nBuild a simple application where a user could define their goals, be it at a day-to-day, short-term, or long-term frequency. The user records goal completion with a press of an icon. As time progresses, the user can see the aggregated data of goals completed & otherwise.\r\n\r\n## Specifications\r\n\r\n- [ ] users can sign up for an account\r\n- [ ] users can CRUD goals\r\n- [ ] users can record when they accomplish the goal\r\n- [ ] users can see a graph of how often they completed their goals\r\n\r\n### Required\r\n\r\n_Do not remove these specs - they are required for all goals_.\r\n\r\n- [ ] The artifact produced is properly licensed, preferably with the [MIT license][mit-license].\r\n\r\n---\r\n\r\n<!-- LICENSE -->\r\n\r\n<a rel=\"license\" href=\"http://creativecommons.org/licenses/by-nc-sa/4.0/\"><img alt=\"Creative Commons License\" style=\"border-width:0\" src=\"https://i.creativecommons.org/l/by-nc-sa/4.0/80x15.png\" /></a>\r\n<br />This work is licensed under a <a rel=\"license\" href=\"http://creativecommons.org/licenses/by-nc-sa/4.0/\">Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International License</a>.\r\n\r\n[mit-license]: https://opensource.org/licenses/MIT\r\n"
},
{
"url": "https://api.github.com/repos/GuildCrafts/web-development-js/issues/23",
"repository_url": "https://api.github.com/repos/GuildCrafts/web-development-js",
"labels_url": "https://api.github.com/repos/GuildCrafts/web-development-js/issues/23/labels{/name}",
"comments_url": "https://api.github.com/repos/GuildCrafts/web-development-js/issues/23/comments",
"events_url": "https://api.github.com/repos/GuildCrafts/web-development-js/issues/23/events",
"html_url": "https://github.com/GuildCrafts/web-development-js/issues/23",
"id": 165359444,
"number": 23,
"title": "Great Fence of Learners",
"user": {
"login": "nicosesma",
"id": 18688343,
"avatar_url": "https://avatars.githubusercontent.com/u/18688343?v=3",
"gravatar_id": "",
"url": "https://api.github.com/users/nicosesma",
"html_url": "https://github.com/nicosesma",
"followers_url": "https://api.github.com/users/nicosesma/followers",
"following_url": "https://api.github.com/users/nicosesma/following{/other_user}",
"gists_url": "https://api.github.com/users/nicosesma/gists{/gist_id}",
"starred_url": "https://api.github.com/users/nicosesma/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/nicosesma/subscriptions",
"organizations_url": "https://api.github.com/users/nicosesma/orgs",
"repos_url": "https://api.github.com/users/nicosesma/repos",
"events_url": "https://api.github.com/users/nicosesma/events{/privacy}",
"received_events_url": "https://api.github.com/users/nicosesma/received_events",
"type": "User",
"site_admin": false
},
"labels": [
{
"url": "https://api.github.com/repos/GuildCrafts/web-development-js/labels/draft",
"name": "draft",
"color": "fbca04"
}
],
"state": "open",
"locked": false,
"assignee": {
"login": "Jusdev89",
"id": 8162708,
"avatar_url": "https://avatars.githubusercontent.com/u/8162708?v=3",
"gravatar_id": "",
"url": "https://api.github.com/users/Jusdev89",
"html_url": "https://github.com/Jusdev89",
"followers_url": "https://api.github.com/users/Jusdev89/followers",
"following_url": "https://api.github.com/users/Jusdev89/following{/other_user}",
"gists_url": "https://api.github.com/users/Jusdev89/gists{/gist_id}",
"starred_url": "https://api.github.com/users/Jusdev89/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/Jusdev89/subscriptions",
"organizations_url": "https://api.github.com/users/Jusdev89/orgs",
"repos_url": "https://api.github.com/users/Jusdev89/repos",
"events_url": "https://api.github.com/users/Jusdev89/events{/privacy}",
"received_events_url": "https://api.github.com/users/Jusdev89/received_events",
"type": "User",
"site_admin": false
},
"assignees": [
{
"login": "Jusdev89",
"id": 8162708,
"avatar_url": "https://avatars.githubusercontent.com/u/8162708?v=3",
"gravatar_id": "",
"url": "https://api.github.com/users/Jusdev89",
"html_url": "https://github.com/Jusdev89",
"followers_url": "https://api.github.com/users/Jusdev89/followers",
"following_url": "https://api.github.com/users/Jusdev89/following{/other_user}",
"gists_url": "https://api.github.com/users/Jusdev89/gists{/gist_id}",
"starred_url": "https://api.github.com/users/Jusdev89/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/Jusdev89/subscriptions",
"organizations_url": "https://api.github.com/users/Jusdev89/orgs",
"repos_url": "https://api.github.com/users/Jusdev89/repos",
"events_url": "https://api.github.com/users/Jusdev89/events{/privacy}",
"received_events_url": "https://api.github.com/users/Jusdev89/received_events",
"type": "User",
"site_admin": false
},
{
"login": "harmanisdeep",
"id": 19172766,
"avatar_url": "https://avatars.githubusercontent.com/u/19172766?v=3",
"gravatar_id": "",
"url": "https://api.github.com/users/harmanisdeep",
"html_url": "https://github.com/harmanisdeep",
"followers_url": "https://api.github.com/users/harmanisdeep/followers",
"following_url": "https://api.github.com/users/harmanisdeep/following{/other_user}",
"gists_url": "https://api.github.com/users/harmanisdeep/gists{/gist_id}",
"starred_url": "https://api.github.com/users/harmanisdeep/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/harmanisdeep/subscriptions",
"organizations_url": "https://api.github.com/users/harmanisdeep/orgs",
"repos_url": "https://api.github.com/users/harmanisdeep/repos",
"events_url": "https://api.github.com/users/harmanisdeep/events{/privacy}",
"received_events_url": "https://api.github.com/users/harmanisdeep/received_events",
"type": "User",
"site_admin": false
}
],
"milestone": null,
"comments": 0,
"created_at": "2016-07-13T16:05:33Z",
"updated_at": "2016-07-15T06:17:48Z",
"closed_at": null,
"body": "## Description\r\n\r\n_Tracking movements of people, so that a notification is sent when someone enters or leaves a specific geofence location._\r\n\r\n## Context\r\n\r\n_Why is this goal important? How is it useful? What questions will it raise?_\r\n\r\n_Keeps attendance of participants accountable.\r\n Learn how to pull data from an API, How to use data in forms_\r\n\r\n## Specifications\r\n\r\n_List of specifications (specs) for the completed goal. These are declarative sentences (statements) describing some quality or behavior of the final product._\r\n\r\n- [ ] Spec One.\r\n- [ ] Spec Two.\r\n- [ ] Spec Three.\r\n\r\n### Required\r\n\r\n_Do not remove these specs - they are required for all goals_.\r\n\r\n- [ ] The artifact produced is properly licensed, preferably with the [MIT license][mit-license].\r\n\r\n---\r\n\r\n<!-- LICENSE -->\r\n\r\n<a rel=\"license\" href=\"http://creativecommons.org/licenses/by-nc-sa/4.0/\"><img alt=\"Creative Commons License\" style=\"border-width:0\" src=\"https://i.creativecommons.org/l/by-nc-sa/4.0/80x15.png\" /></a>\r\n<br />This work is licensed under a <a rel=\"license\" href=\"http://creativecommons.org/licenses/by-nc-sa/4.0/\">Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International License</a>.\r\n\r\n[mit-license]: https://opensource.org/licenses/MIT\r\n"
},
{
"url": "https://api.github.com/repos/GuildCrafts/web-development-js/issues/22",
"repository_url": "https://api.github.com/repos/GuildCrafts/web-development-js",
"labels_url": "https://api.github.com/repos/GuildCrafts/web-development-js/issues/22/labels{/name}",
"comments_url": "https://api.github.com/repos/GuildCrafts/web-development-js/issues/22/comments",
"events_url": "https://api.github.com/repos/GuildCrafts/web-development-js/issues/22/events",
"html_url": "https://github.com/GuildCrafts/web-development-js/issues/22",
"id": 165359439,
"number": 22,
"title": "IRL Community Project Sharing ",
"user": {
"login": "asantos3026",
"id": 12879025,
"avatar_url": "https://avatars.githubusercontent.com/u/12879025?v=3",
"gravatar_id": "",
"url": "https://api.github.com/users/asantos3026",
"html_url": "https://github.com/asantos3026",
"followers_url": "https://api.github.com/users/asantos3026/followers",
"following_url": "https://api.github.com/users/asantos3026/following{/other_user}",
"gists_url": "https://api.github.com/users/asantos3026/gists{/gist_id}",
"starred_url": "https://api.github.com/users/asantos3026/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/asantos3026/subscriptions",
"organizations_url": "https://api.github.com/users/asantos3026/orgs",
"repos_url": "https://api.github.com/users/asantos3026/repos",
"events_url": "https://api.github.com/users/asantos3026/events{/privacy}",
"received_events_url": "https://api.github.com/users/asantos3026/received_events",
"type": "User",
"site_admin": false
},
"labels": [
{
"url": "https://api.github.com/repos/GuildCrafts/web-development-js/labels/draft",
"name": "draft",
"color": "fbca04"
}
],
"state": "open",
"locked": false,
"assignee": null,
"assignees": [],
"milestone": null,
"comments": 0,
"created_at": "2016-07-13T16:05:32Z",
"updated_at": "2016-07-13T16:05:32Z",
"closed_at": null,
"body": "## Description\r\n\r\n_Provide a brief, high-level overview of what the final product (artifact) of this goal is. Include any relevant resources or dependencies here._\r\n\r\n## Context\r\n\r\n_Why is this goal important? \r\nIt brings multiple people in a community together to share skills, assets, and other resources.\r\n\r\nHow is it useful? What questions will it raise?_\r\n\r\n1. Community can post projects through a form and inputted into a database\r\n2. Projects will be map - geolocated\r\n\r\n\r\n\r\n## Specifications\r\n\r\n_List of specifications (specs) for the completed goal. These are declarative sentences (statements) describing some quality or behavior of the final product._\r\n\r\n1. Community can post projects through a form and inputted into a database\r\n2. Projects will be map - geolocated\r\n\r\n- [ ] Spec Three.\r\n\r\n### Required\r\n\r\n_Do not remove these specs - they are required for all goals_.\r\n\r\n- [ ] The artifact produced is properly licensed, preferably with the [MIT license][mit-license].\r\n\r\n---\r\n\r\n<!-- LICENSE -->\r\n\r\n<a rel=\"license\" href=\"http://creativecommons.org/licenses/by-nc-sa/4.0/\"><img alt=\"Creative Commons License\" style=\"border-width:0\" src=\"https://i.creativecommons.org/l/by-nc-sa/4.0/80x15.png\" /></a>\r\n<br />This work is licensed under a <a rel=\"license\" href=\"http://creativecommons.org/licenses/by-nc-sa/4.0/\">Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International License</a>.\r\n\r\n[mit-license]: https://opensource.org/licenses/MIT\r\n"
},
{
"url": "https://api.github.com/repos/GuildCrafts/web-development-js/issues/21",
"repository_url": "https://api.github.com/repos/GuildCrafts/web-development-js",
"labels_url": "https://api.github.com/repos/GuildCrafts/web-development-js/issues/21/labels{/name}",
"comments_url": "https://api.github.com/repos/GuildCrafts/web-development-js/issues/21/comments",
"events_url": "https://api.github.com/repos/GuildCrafts/web-development-js/issues/21/events",
"html_url": "https://github.com/GuildCrafts/web-development-js/issues/21",
"id": 165359397,
"number": 21,
"title": "Scramble Word Page",
"user": {
"login": "pllearns",
"id": 20314203,
"avatar_url": "https://avatars.githubusercontent.com/u/20314203?v=3",
"gravatar_id": "",
"url": "https://api.github.com/users/pllearns",
"html_url": "https://github.com/pllearns",
"followers_url": "https://api.github.com/users/pllearns/followers",
"following_url": "https://api.github.com/users/pllearns/following{/other_user}",
"gists_url": "https://api.github.com/users/pllearns/gists{/gist_id}",
"starred_url": "https://api.github.com/users/pllearns/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/pllearns/subscriptions",
"organizations_url": "https://api.github.com/users/pllearns/orgs",
"repos_url": "https://api.github.com/users/pllearns/repos",
"events_url": "https://api.github.com/users/pllearns/events{/privacy}",
"received_events_url": "https://api.github.com/users/pllearns/received_events",
"type": "User",
"site_admin": false
},
"labels": [
{
"url": "https://api.github.com/repos/GuildCrafts/web-development-js/labels/draft",
"name": "draft",
"color": "fbca04"
}
],