├── README.md └── .gitmodules /README.md: -------------------------------------------------------------------------------- 1 | # codecademy-courses -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- 1 | [submodule "codecademy-learn-react-2022"] 2 | path = codecademy-learn-react-2022 3 | url = https://github.com/somekindofwallflower/codecademy-learn-react-2022 4 | [submodule "codecademy-learn-javascript"] 5 | path = codecademy-learn-javascript 6 | url = git@github.com:somekindofwallflower/codecademy-learn-javascript.git 7 | [submodule "codecademy-pass-the-technical-interview-with-javascript"] 8 | path = codecademy-pass-the-technical-interview-with-javascript 9 | url = git@github.com:somekindofwallflower/codecademy-pass-the-technical-interview-with-javascript.git 10 | [submodule "codecademy-full-stack-engineer"] 11 | path = codecademy-full-stack-engineer 12 | url = git@github.com:somekindofwallflower/codecademy-full-stack-engineer.git 13 | [submodule "codecademy-intermediate-javascript"] 14 | path = codecademy-intermediate-javascript 15 | url = git@github.com:somekindofwallflower/codecademy-intermediate-javascript.git 16 | --------------------------------------------------------------------------------