-
Notifications
You must be signed in to change notification settings - Fork 30
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
6b889df
commit 1b023fd
Showing
20 changed files
with
223 additions
and
34 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
import codeacademy from './bootcamps/codeacademy'; | ||
import freecodecamp from './bootcamps/free-code-camp'; | ||
import khan from './bootcamps/khan-academy'; | ||
import nodeschool from './bootcamps/node-school'; | ||
import odin from './bootcamps/odin-project'; | ||
|
||
export default [codeacademy, freecodecamp, odin, khan, nodeschool]; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
import { Resource } from '../../resource'; | ||
|
||
const r: Resource = { | ||
categoryIds: [ | ||
['bootcamp'], | ||
['dataScience'], | ||
['languages', 'javascript'], | ||
['languages', 'python'], | ||
['languages', 'ruby'], | ||
['languages', 'java'], | ||
], | ||
description: 'Free platform for online learning web technologies, computer programming and data science.', | ||
id: 'codeacademy', | ||
name: 'Codeacademy', | ||
platforms: ['web'], | ||
price: 0, | ||
type: 'learning-platform', | ||
url: 'https://www.codecademy.com/', | ||
}; | ||
|
||
export default r; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
import { Resource } from '../../resource'; | ||
|
||
const r: Resource = { | ||
categoryIds: [['bootcamp'], ['languages', 'javascript']], | ||
description: 'The king of free coding camps. Learn to code and help nonprofits. Extensive curriculum.', | ||
id: 'freecodecamp', | ||
name: 'Free Code Camp', | ||
platforms: ['web'], | ||
price: 0, | ||
type: 'learning-platform', | ||
url: 'https://www.freecodecamp.org/', | ||
}; | ||
|
||
export default r; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
import { Resource } from '../../resource'; | ||
|
||
const r: Resource = { | ||
categoryIds: [['bootcamp'], ['generalProgramming']], | ||
description: 'Learn anything for free, forever.', | ||
id: 'khan-academy', | ||
name: 'Khan Academy', | ||
platforms: ['web'], | ||
price: 0, | ||
type: 'learning-platform', | ||
url: 'https://www.khanacademy.org/', | ||
}; | ||
|
||
export default r; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
import { Resource } from '../../resource'; | ||
|
||
const r: Resource = { | ||
categoryIds: [['bootcamp'], ['languages', 'javascript', 'node']], | ||
description: 'Open source workshops that teach web software skills. Do them on your own or at a workshop nearby.', | ||
id: 'nodeschool', | ||
name: 'Node School', | ||
platforms: ['web'], | ||
price: 0, | ||
type: 'learning-platform', | ||
url: 'https://nodeschool.io/', | ||
}; | ||
|
||
export default r; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
import { Resource } from '../../resource'; | ||
|
||
const r: Resource = { | ||
categoryIds: [['bootcamp'], ['languages', 'ruby'], ['languages', 'javascript']], | ||
description: 'A full stack (and open source) Ruby/JS bootcamp', | ||
id: 'odin-project', | ||
name: 'The Odin Project', | ||
platforms: ['web'], | ||
price: 0, | ||
type: 'learning-platform', | ||
url: 'https://www.theodinproject.com/', | ||
}; | ||
|
||
export default r; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
import codeWars from './practice-platforms/code-wars'; | ||
import cyberDojo from './practice-platforms/cyber-dojo'; | ||
import edabit from './practice-platforms/edabit'; | ||
import techio from './practice-platforms/tech-io'; | ||
|
||
export default [edabit, techio, codeWars, cyberDojo]; |
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
import { Resource } from '../../resource'; | ||
|
||
const r: Resource = { | ||
categoryIds: [ | ||
['practicePlatform'], | ||
['languages', 'javascript'], | ||
['languages', 'python'], | ||
['languages', 'ruby'], | ||
['languages', 'java'], | ||
['languages', 'swift'], | ||
['languages', 'php'], | ||
['languages', 'cSharp'], | ||
['languages', 'c++'], | ||
], | ||
description: | ||
'Work through a wide array of bite-sized programming challenges, that increase in difficulty as you progress', | ||
id: 'edabit', | ||
name: 'Edabit', | ||
platforms: ['web'], | ||
price: 0, | ||
type: 'learning-platform', | ||
url: 'https://edabit.com/', | ||
}; | ||
|
||
export default r; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,33 @@ | ||
import { Resource } from '../../resource'; | ||
|
||
const techio: Resource = { | ||
categoryIds: [ | ||
['practicePlatform'], | ||
['languages', 'bash'], | ||
['languages', 'cSharp'], | ||
['languages', 'c++'], | ||
['languages', 'css'], | ||
['languages', 'elixir'], | ||
['languages', 'go'], | ||
['languages', 'groovy'], | ||
['languages', 'haskell'], | ||
['languages', 'java'], | ||
['languages', 'javascript'], | ||
['languages', 'kotlin'], | ||
['languages', 'php'], | ||
['languages', 'python'], | ||
['languages', 'ruby'], | ||
['languages', 'rust'], | ||
['languages', 'scala'], | ||
['languages', 'swift'], | ||
], | ||
description: 'Design, share, and learn from community-sourced tutorials quizzes and interactive exercises', | ||
id: 'techio', | ||
name: 'TechIO', | ||
platforms: ['web'], | ||
price: 0, | ||
type: ['playground', 'learning-platform'], | ||
url: 'https://tech.io/', | ||
}; | ||
|
||
export default techio; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.