forked from OperationCode/resources_api
-
Notifications
You must be signed in to change notification settings - Fork 0
/
resources.yml
1419 lines (1218 loc) · 31.9 KB
/
resources.yml
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
# Operation Code Resource Listing
# Each entry should contain the following:
#- name: <Resource Name>
# url: <Resource URL>
# category: <Area of Interest>
# languages: ["<Programming language> (if multiple, this should be 'multiple') [optional]"]
# paid: Must you pay to use this resource? [true|false]
# notes: <Addtional Comments> [optional]
#
# Nota Bene:
# Each entry must start on a new line with "- name:"
# HTML can be included in the notes key
- name: Free Programming Books
url: https://github.com/vhf/free-programming-books
category: Books
languages: ["multiple"]
paid: false
notes:
- name: Packtpub free programming books
url: https://www.packtpub.com/packt/offers/free-learning
category: Books
languages: ["multiple"]
paid: false
notes: Different free book daily
- name: Free Tech Books
url: http://www.freetechbooks.com/
category: Books
languages:
paid: false
notes: Focuses on general computer science concepts rather than a specific language
- name: Programming from the Ground Up
url: http://mirror.cedia.org.ec/nongnu//pgubook/ProgrammingGroundUp-1-0-booksize.pdf
category: Books
languages: ["multiple"]
paid: false
notes: Focuses on general computer science concepts rather than a specific language
- name: Teach Your Kids to Code
url: http://teachyourkidstocode.com/
category: Books
languages: ["Python"]
paid: true
notes:
- name: Ed Yourdan Books
url: https://en.wikipedia.org/wiki/Edward_Yourdon#Publications
category: Books
languages:
paid: true
notes: You'll have to find these books yourself to read, but they are classic CS books
- name: Safari Books Online
url: https://www.safaribooksonline.com/our-library/#books
category: Books
languages: ["multiple"]
paid: true
notes: Free trial available
- name: The Art of Computer Programming
url: http://broiler.astrometry.net/~kilian/The_Art_of_Computer_Programming%20-%20Vol%201.pdf
category: Books
languages:
paid: false
notes: General Computer Science concepts
- name: The Mythical Man Month
url: https://archive.org/details/mythicalmanmonth00fred
category: Books
languages:
paid: false
notes:
- name: Thinking Forth
url: http://thinking-forth.sourceforge.net/
category: Books
languages:
paid: false
notes:
- name: The Art of Unix Programming
url: http://www.faqs.org/docs/artu/
category: Books
languages: ["Unix/Linux/*nix"]
paid: false
notes:
- name: The Cathedral and the Bazaar
url: http://www.catb.org/esr/writings/cathedral-bazaar/cathedral-bazaar/
category: Books
languages:
paid: false
notes:
- name: Bash Beginner's Guide
url: http://www.tldp.org/LDP/Bash-Beginners-Guide/html/
category: Books
languages: ["Bash"]
paid: false
notes:
- name: The C Programming Language
url: https://hassanolity.files.wordpress.com/2013/11/the_c_programming_language_2.pdf
category: Books
languages: ["C"]
paid: false
notes:
- name: The Computer Revolution
url: https://en.wikibooks.org/wiki/The_Computer_Revolution
category: Books
languages: ["multiple"]
paid: false
notes: Wiki book on everything computers
- name: Computer Science from the Bottom Up
url: http://feederio.com/book/33/computer-science-from-the-bottom-up
category: Books
languages: ["multiple"]
paid: false
notes: This book goes from operating systems fundamentals through to how applications are complied and executed
- name: Zero to One
url: http://buff.ly/2b7sg2E
category: Books
languages:
paid: true
notes: Good info for start ups
- name: Hacking The Art of Exploitation
url: https://leaksource.files.wordpress.com/2014/08/hacking-the-art-of-exploitation.pdf
category: Books
languages: ["C"]
paid: false
notes:
- name: Debian System Administration
url: https://debian-handbook.info/browse/stable/
category: Books
languages: ["Sysadmin"]
paid: false
notes:
- name: Project Gutenberg
url: http://www.gutenberg.org/
category: Books
languages:
paid: false
notes: Thousands of free e-books, some computer related, some not.
- name: Internet Archive
url: https://archive.org/
category: Books
languages:
paid: false
notes: Thousands of free e-books, some computer related, some not.
- name: Learn to Code C with Raspberry Pi
url: https://www.raspberrypi.org/magpi-issues/Essentials_C_v1.pdf
category: Books
languages: ["C"]
paid: false
notes: Raspberry Pi
- name: Eloquent JavaScript
url: http://eloquentjavascript.net
category: Books
languages: ["JavaScript"]
paid: false
notes:
- name: Programming JavaScript applications
url: http://pdf.th7.cn/down/files/1411/Programming%20JavaScript%20Applications.pdf
category: Books
languages: ["JavaScript"]
paid: false
notes:
- name: Angular 2
url: https://angular-2-training-book.rangle.io
category: Books
languages: ["JavaScript"]
paid: false
notes: Angular framework
- name: A Smarter Way to Learn JavaScript
url: https://works.bepress.com/groupsix649/1/
category: Books
languages: ["JavaScript"]
paid: false
notes:
- name: You Don't Know JS
url: https://github.com/getify/You-Dont-Know-JS
category: Books
languages: ["JavaScript"]
paid: false
notes:
- name: A Smarter Way to Learn HTML and CSS
url: http://www.asmarterwaytolearn.com/index.html
category: Books
languages: ["HTML"]
paid: false
notes: HTML and CSS
- name: 19 Free Python Books
url: https://medium.mybridge.co/19-free-ebooks-to-learn-programming-with-python-8f6f0ad4a7f8?gi=3cd835d59f6e#.ja176d9ih
category: Books
languages: ["Python"]
paid: false
notes: Blog Post
- name: Modern PHP
url: http://pdf.th7.cn/down/files/1502/Modern%20PHP.pdf
category: Books
languages: ["PHP"]
paid: false
notes:
- name: Exercism
url: http://exercism.io/
category: Code Challenges
languages: ["multiple"]
paid: false
notes:
- name: Code Wars
url: http://www.codewars.com/
category: Code Challenges
languages: ["multiple"]
paid: false
notes: Join the Operation Code Clan!!!
- name: Hacker Rank
url: https://www.hackerrank.com/
category: Code Challenges
languages: ["multiple"]
paid: false
notes: Also have interview resources, etc.
- name: Coder Byte
url: https://coderbyte.com/
category: Code Challenges
languages: ["multiple"]
paid: true
notes:
- name: Code Fights
url: https://codefights.com/
category: Code Challenges
languages: ["multiple"]
paid: false
notes: Someone who has used this resource, please update the "paid" field in resources.yml to "true" or "false"
- name: Code Combat
url: https://codecombat.com
category: Code Challenges
languages: ["multiple"]
paid: false
notes:
- name: CodinGame
url: https://www.codingame.com/start
category: Code Challenges
languages: ["multiple"]
paid: false
notes:
- name: Code RPGify
url: http://code.rpgify.com/
category: Code Challenges
languages: ["multiple"]
paid: false
notes:
- name: Dev Draft
url: http://www.devdraft.com/
category: Code Challenges
languages: ["multiple"]
paid: false
notes:
- name: Hacker Earth
url: http://hackerearth.com/
category: Code Challenges
languages: ["multiple"]
paid: false
notes:
- name: Core Wars
url: http://www.corewars.org/
category: Code Challenges
languages: ["multiple"]
paid: false
notes:
- name: Code Eval
url: https://www.codeeval.com/
category: Code Challenges
languages: ["multiple"]
paid: true
notes: Someone who has used this resource, please update the "paid" field in resources.yml to "true" or "false"
- name: Rosetta Code
url: http://rosettacode.org/wiki/Rosetta_Code
category: Code Challenges
languages: ["multiple"]
paid: false
notes:
- name: Advent of Code
url: https://adventofcode.com/
category: Code Challenges
languages: ["multiple"]
paid: false
notes: This is only supposed to be for the month of December, however the challenges are still up from 2016.
- name: Cyber Dojo
url: http://www.cyber-dojo.org/
category: Code Challenges
languages: ["multiple"]
paid: false
notes:
- name: Check IO
url: https://checkio.org/
category: Code Challenges
languages: ["Python", "JavaScript"]
paid: false
notes: Someone who has used this resource, please update the "paid" field in resources.yml to "true" or "false"
- name: Learn Code in 1 Year
url: https://medium.com/@javier_noris/an-outline-to-learning-to-code-in-1-year-572a1a78fa62#.1gn9x76sb
category: Getting Started
languages:
paid: false
notes: Blog Post
- name: Teach Yourself Programming in 10 Years
url: http://norvig.com/21-days.html
category: Getting Started
languages:
paid: false
notes: Blog Post
- name: Principles of Good Programming
url: http://www.artima.com/weblogs/viewpost.jsp?thread=331531
category: Getting Started
languages:
paid: false
notes: Blog Post
- name: Which Programming Language to Choose
url: http://lifehacker.com/learn-which-programming-language-to-choose-with-this-in-1669612111
category: Getting Started
languages:
paid: false
notes: Infographic
- name: Hackr.io
url: https://hackr.io
category: Tutorials
languages: ["multiple"]
paid: false
notes: All of the best tutorials
- name: The Code Player
url: http://thecodeplayer.com/
category: Tutorials
languages: ["multiple"]
paid: false
notes:
- name: Implementing Functional Languages A Tutorial
url: http://research.microsoft.com/en-us/um/people/simonpj/papers/pj-lester-book/
category: Tutorials
languages:
paid: false
notes: Functional Programming
- name: Learn to Program by Chris Pine
url: https://pine.fm/LearnToProgram/chap_00.html
category: Books
languages: ["Ruby"]
paid: false
notes:
- name: Watch and Code
url: https://watchandcode.com/
category: Tutorials
languages: ["JavaScript"]
paid: false
notes: Free and Paid courses available
- name: Free Code Camp
url: http://freecodecamp.com/
category: Online Courses
languages: ["multiple"]
paid: false
notes:
- name: Rithm School
url: https://www.rithmschool.com/courses
category: Online Courses
languages: ["multiple"]
paid: false
notes:
- name: Code Academy
url: http://www.codecademy.com/
category: Online Courses
languages: ["multiple"]
paid: false
notes:
- name: Khan Academy
url: https://www.khanacademy.org/computing/computer-programming
category: Online Courses
languages: ["multiple"]
paid: false
notes:
- name: The Odin Project
url: http://www.theodinproject.com/
category: Online Courses
languages: ["multiple"]
paid: false
notes: Web Development
- name: Microsoft Virtual Academy
url: https://mva.microsoft.com/
category: Online Courses
languages: ["multiple"]
paid: false
notes:
- name: Revature
url: https://revature.com/revatureonline.html
category: Online Courses
languages:
paid: false
notes:
- name: edX
url: https://www.edx.org/
category: Online Courses
languages:
paid: false
notes: Courses for more than just Computers available
- name: Coursera
url: https://www.coursera.org/
category: Online Courses
languages:
paid: false
notes: Courses for more than just Computers available
- name: MIT
url: https://ocw.mit.edu/index.htm
category: Online Courses
languages:
paid: false
notes: Courses for more than just Computers available
- name: Learn Enough
url: https://www.learnenough.com/
category: Tutorials
languages: ["multiple"]
paid: false
notes:
- name: Aspect Oriented Programming
url: http://www.onjava.com/pub/a/onjava/2004/01/14/aop.html
category: Tutorials
languages: ["Aspectwerkz"]
paid: false
notes:
- name: Lifehacker U
url: http://lifehacker.com/tag/lifehacker-u
category: Online Courses
languages: ["multiple"]
paid: false
notes:
- name: Best Free Online Classes of All Time
url: https://www.class-central.com/collection/top-free-online-courses?subject=cs&sort=rating-up
category: Online Courses
languages: ["multiple"]
paid: false
notes:
- name: Google Interview University
url: https://github.com/jwasham/google-interview-university
category: Jobs
languages: ["multiple"]
paid: false
notes:
- name: Star Wars API
url: https://swapi.co/
category: Tools
languages:
paid: false
notes:
- name: Merlot
url: https://www.merlot.org/merlot/index.htm
category: Online Courses
languages:
paid: false
notes: Someone who has used this resource, please update the "paid" field in resources.yml to "true" or "false"
- name: College Open Text Books
url: http://www.collegeopentextbooks.org/
category: Books
languages:
paid: false
notes: There are several dead links on this site, it doesn't appear to be very well maintained. In spite of this, there are a lot of great books listed.
- name: BC Campus Open Text Books
url: https://open.bccampus.ca/
category: Books
languages:
paid: false
notes: There are some paid text books. The "Open" text books are available for free.
- name: PluralSight
url: https://www.pluralsight.com/product/paths
category: Online Courses
languages: ["multiple"]
paid: true
notes: Free Trial Available
- name: PluralSight Courses
url: http://www.pluralsight.com/courses/
category: Online Courses
languages: ["multiple"]
paid: true
notes: Free Trial Available
- name: Team Tree House
url: https://teamtreehouse.com/
category: Online Courses
languages: ["multiple"]
paid: true
notes: Free Trials and Operation Code Scholarships available
- name: Code Avengers
url: https://codeavengers.com
category: Online Courses
languages: ["multiple"]
paid: true
notes: Free trials available
- name: Learn.co
url: https://learn.co/
category: Online Courses
languages: ["multiple"]
paid: true
notes: Free intro courses available
- name: Code School
url: https://www.codeschool.com/
category: Online Courses
languages: ["multiple"]
paid: true
notes: Discounts available
- name: Udemy
url: https://www.udemy.com/
category: Online Courses
languages: ["multiple"]
paid: true
notes: Coupons at https://retailmenot.com/view/udemy.com
- name: Udacity
url: https://www.udacity.com/
category: Online Courses
languages: ["multiple"]
paid: true
notes: Udacity Blitz available for job seekers! https://blitz.com/
- name: Crunchzilla
url: http://www.crunchzilla.com/
category: Programming for Kids
languages: ["JavaScript"]
paid: false
notes: For kids or adults
- name: Scratch
url: https://scratch.mit.edu/
category: Programming for Kids
languages:
paid: false
notes: Not an actual programming language. But useful for learning concepts
- name: Programmr
url: http://www.programmr.com/
category: REPL/Code Simulators
languages: ["multiple"]
paid: true
notes: some content available free
- name: Code.org
url: https://code.org/
category: Programming for Kids
languages: ["multiple"]
paid: false
notes:
- name: Coder Dojo
url: http://coderdojo.com/
category: Programming for Kids
languages: ["multiple"]
paid: true
notes: This may or may not be paid depending on the dojo
- name: AI Books
url: http://alumni.media.mit.edu/~jorkin/aibooks.html
category: Books
languages: ["Artificial Intelligence"]
paid: true
notes: These links all appear to go to Amazon
- name: How to get started in UX design
url: http://uxmastery.com/how-to-get-started-in-ux-design/
category: Design
languages:
paid: false
notes: Blog Post
- name: How to Build a PC step by step
url: http://www.pcworld.com/article/2987057/computers/how-to-build-a-pc-a-step-by-step-comprehensive-guide.html
category: Computer Hardware
languages:
paid: false
notes:
- name: Hackster
url: https://www.hackster.io/
category: Computer Hardware
languages:
paid: false
notes: You have do have to buy your own hardware... but the project information is free
- name: CCNA Pluralsight course
url: https://www.pluralsight.com/courses/ccna-routing-vlans
category: Computer Networking
languages:
paid: true
notes:
- name: Cloud 9
url: https://c9.io
category: Cloud IDEs
languages: ["multiple"]
paid: false
notes:
- name: Koding
url: http://www.koding.com/
category: Cloud IDEs
languages: ["multiple"]
paid: true
notes: Free trial available
- name: Code Anywhere
url: https://codeanywhere.com/
category: Cloud IDEs
languages: ["multiple"]
paid: false
notes: The service is free, support is paid
- name: Docker Tutorial from Prakhar.me
url: https://prakhar.me/docker-curriculum
category: Docker
languages:
paid: false
notes:
- name: Containerize your web development
url: http://usersnap.com/blog/docker-for-web-developers/
category: Docker
languages:
paid: false
notes: Blog Post
- name: Google's C++ course
url: https://developers.google.com/edu/c++/
category: Online Courses
languages: ["C++"]
paid: false
notes:
- name: RegexOne
url: https://regexone.com/
category: Regular Expressions
languages:
paid: false
notes:
- name: Regex101
url: https://regex101.com/
category: Regular Expressions
languages:
paid: false
notes: Regular Expression tester
- name: RegexR
url: http://regexr.com/
category: Regular Expressions
languages:
paid: false
notes: Regular Expression tester
- name: Operation Code
url: https://operationcode.org
category: Mentorship
languages: ["multiple"]
paid: false
notes:
- name: Code Mentor
url: https://www.codementor.io/
category: Mentorship
languages: ["multiple"]
paid: true
notes:
- name: Hack Hands
url: https://hackhands.com/
category: Mentorship
languages: ["multiple"]
paid: true
notes:
- name: My Bridge
url: https://www.mybridge.co/
category: News
languages: ["multiple"]
paid: false
notes:
- name: Technical Interview Prep Video
url: https://www.youtube.com/watch?v=qIi-tIrcaww&feature=em-lss
category: Jobs
languages:
paid: false
notes:
- name: How to Break into Tech Job Hunting and Interviews
url: http://haseebq.com/how-to-break-into-tech-job-hunting-and-interviews/
category: Jobs
languages:
paid: false
notes: Blog Post
- name: Which questions to ask in an interview
url: http://ventureforamerica.org/blog/questionable-questions-avoid-without-question/
category: Jobs
languages:
paid: false
notes: Blog Post
- name: What I look for in a Junior Developer
url: http://www.codenewbie.org/blogs/what-i-look-for-in-a-junior-developer
category: Jobs
languages:
paid: false
notes: Blog Post
- name: Post Boot-camp job search
url: https://medium.freecodecamp.com/5-key-learnings-from-the-post-bootcamp-job-search-9a07468d2331#.qqnl5nkov
category: Jobs
languages:
paid: false
notes: Blog Post
- name: 2016 Best Places to work in IT (ComputerWorld)
url: http://www.computerworld.com/article/3083165/bestplaces2016/the-complete-listings-computerworlds-100-best-places-to-work-in-it-for-2016.html
category: Jobs
languages:
paid: false
notes: Blog Post
- name: Triple Byte
url: https://triplebyte.com/
category: Jobs
languages:
paid: false
notes: Job Board
- name: Jr Dev Jobs
url: https://www.jrdevjobs.com/
category: Jobs
languages:
paid: false
notes: Job Board
- name: CASY (Corporate America Supports You) Job Board
url: http://casy.msccn.org
category: Jobs
languages:
paid: false
notes: Job Board
- name: Career Score
url: https://careerscore.com/
category: Jobs
languages:
paid: false
notes: Job Board
- name: Just Junior Jobs
url: http://justjuniorjobs.com/
category: Jobs
languages:
paid: false
notes: Job Board
- name: Kanone
url: https://www.kanone.com/
category: Jobs
languages:
paid: false
notes: Apprenticeship
- name: Coding Internships
url: https://codinginternships.com/
category: Jobs
languages:
paid: false
notes: Apprenticeship
- name: Google Summer of Code
url: https://developers.google.com/open-source/gsoc/
category: Jobs
languages:
paid: false
notes: Apprenticeship
- name: Freelancing advice from Eric Dodd
url: https://github.com/ericdodds/the-little-freelancer
category: Jobs
languages:
paid: false
notes:
- name: Remote Ok
url: https://remoteok.io/
category: Jobs
languages:
paid: false
notes: Remote Job Board
- name: Remote Jobs
url: https://remotejobs.com/
category: Jobs
languages:
paid: false
notes: Remote Job Board
- name: We Work Remotely
url: https://weworkremotely.com/
category: Jobs
languages:
paid: false
notes: Remote Job Board
- name: WFH
url: https://www.wfh.io/
category: Jobs
languages:
paid: false
notes: Remote Job Board
- name: Product Hunt Remote
url: https://www.producthunt.com/e/find-a-remote-job
category: Jobs
languages:
paid: false
notes: Remote Job Board
- name: Remotive
url: http://remotive.io/
category: Jobs
languages:
paid: false
notes: Remote Job Board
- name: Start Up Weekend
url: https://startupweekend.org
category: Jobs
languages:
paid: false
notes: Good for networking locally
- name: Meetup
url: https://www.meetup.com/
category: Jobs
languages:
paid: false
notes: Good for networking locally (not necessarily for jobs in particular)
- name: Professor Messer
url: http://www.professormesser.com
category: Jobs
languages:
paid: false
notes: Certifications
- name: Tech Exams
url: http://www.techexams.net/
category: Jobs
languages:
paid: false
notes: Certifications
- name: The Muse
url: https://www.themuse.com/
category: Jobs
languages:
paid: true
notes: General Career Help
- name: Standard Resume
url: https://standardresume.co/
category: Jobs
languages:
paid: false
notes: Resume help
- name: Career Cup
url: https://www.careercup.com/resume
category: Jobs
languages:
paid: false
notes: Resume help
- name: Hire Heroes USA
url: https://www.hireheroesusa.org/
category: Jobs
languages:
paid: false
notes: Resume help (and other services)
- name: CS Career Questions
url: http://reddit.com/r/cscareerquestions
category: Jobs
languages:
paid: false
notes:
- name: Git Showcase
url: https://www.gitshowcase.com/
category: Jobs
languages:
paid: false
notes: Make your github profile into a portfolio
- name: Bento
url: https://bento.io/
category: Back End Dev
languages: ["multiple"]
paid: true
notes: Free Courses available
- name: Ruby Koans
url: http://github.com/edgecase/ruby_koans
category: Back End Dev
languages: ["Ruby"]
paid: false
notes:
- name: Ruby on Rails Tutorial
url: https://www.railstutorial.org/book
category: Back End Dev
languages: ["Ruby"]
paid: false
notes:
- name: Learn Ruby the Hard Way
url: http://learnrubythehardway.org/book
category: Back End Dev
languages: ["Ruby"]
paid: false
notes:
- name: Jump Start Lab Tutorials
url: http://tutorials.jumpstartlab.com/
category: Back End Dev
languages: ["Ruby"]
paid: false
notes: