├── .gitattributes ├── .gitignore ├── CONTRIBUTING.md ├── README.md ├── changing_encoding.py ├── combine.py ├── convert_json.py ├── convert_md.py ├── file.json ├── helpers.py ├── internships.csv ├── internships.md ├── internships_temp.csv ├── package.json ├── public ├── images │ └── favicon │ │ ├── android-chrome-192x192.png │ │ ├── android-chrome-512x512.png │ │ ├── apple-touch-icon.png │ │ ├── favicon-16x16.png │ │ ├── favicon-32x32.png │ │ ├── favicon.ico │ │ └── site.webmanifest ├── index.html └── manifest.json ├── repo_info.md ├── requirements.txt ├── sort.py ├── src ├── App.js ├── components │ ├── instructions │ │ ├── Panel.css │ │ └── Panel.js │ ├── layout │ │ └── NavBar.js │ └── matrix │ │ ├── BtnScripts.js │ │ ├── Constants.js │ │ ├── Matrix.css │ │ ├── Matrix.js │ │ ├── MatrixRenderers.js │ │ ├── helpers │ │ └── Helpers.js │ │ └── internships.json ├── images │ ├── logo.png │ └── man_technologist.png ├── index.css └── index.js ├── update_commit_push.sh └── update_data.py /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zackhardtoname/internships/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zackhardtoname/internships/HEAD/.gitignore -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zackhardtoname/internships/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zackhardtoname/internships/HEAD/README.md -------------------------------------------------------------------------------- /changing_encoding.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zackhardtoname/internships/HEAD/changing_encoding.py -------------------------------------------------------------------------------- /combine.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zackhardtoname/internships/HEAD/combine.py -------------------------------------------------------------------------------- /convert_json.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zackhardtoname/internships/HEAD/convert_json.py -------------------------------------------------------------------------------- /convert_md.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zackhardtoname/internships/HEAD/convert_md.py -------------------------------------------------------------------------------- /file.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zackhardtoname/internships/HEAD/file.json -------------------------------------------------------------------------------- /helpers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zackhardtoname/internships/HEAD/helpers.py -------------------------------------------------------------------------------- /internships.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zackhardtoname/internships/HEAD/internships.csv -------------------------------------------------------------------------------- /internships.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zackhardtoname/internships/HEAD/internships.md -------------------------------------------------------------------------------- /internships_temp.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zackhardtoname/internships/HEAD/internships_temp.csv -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zackhardtoname/internships/HEAD/package.json -------------------------------------------------------------------------------- /public/images/favicon/android-chrome-192x192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zackhardtoname/internships/HEAD/public/images/favicon/android-chrome-192x192.png -------------------------------------------------------------------------------- /public/images/favicon/android-chrome-512x512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zackhardtoname/internships/HEAD/public/images/favicon/android-chrome-512x512.png -------------------------------------------------------------------------------- /public/images/favicon/apple-touch-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zackhardtoname/internships/HEAD/public/images/favicon/apple-touch-icon.png -------------------------------------------------------------------------------- /public/images/favicon/favicon-16x16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zackhardtoname/internships/HEAD/public/images/favicon/favicon-16x16.png -------------------------------------------------------------------------------- /public/images/favicon/favicon-32x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zackhardtoname/internships/HEAD/public/images/favicon/favicon-32x32.png -------------------------------------------------------------------------------- /public/images/favicon/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zackhardtoname/internships/HEAD/public/images/favicon/favicon.ico -------------------------------------------------------------------------------- /public/images/favicon/site.webmanifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zackhardtoname/internships/HEAD/public/images/favicon/site.webmanifest -------------------------------------------------------------------------------- /public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zackhardtoname/internships/HEAD/public/index.html -------------------------------------------------------------------------------- /public/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zackhardtoname/internships/HEAD/public/manifest.json -------------------------------------------------------------------------------- /repo_info.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zackhardtoname/internships/HEAD/repo_info.md -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zackhardtoname/internships/HEAD/requirements.txt -------------------------------------------------------------------------------- /sort.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zackhardtoname/internships/HEAD/sort.py -------------------------------------------------------------------------------- /src/App.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zackhardtoname/internships/HEAD/src/App.js -------------------------------------------------------------------------------- /src/components/instructions/Panel.css: -------------------------------------------------------------------------------- 1 | .card { 2 | font-size: 17px 3 | } -------------------------------------------------------------------------------- /src/components/instructions/Panel.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zackhardtoname/internships/HEAD/src/components/instructions/Panel.js -------------------------------------------------------------------------------- /src/components/layout/NavBar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zackhardtoname/internships/HEAD/src/components/layout/NavBar.js -------------------------------------------------------------------------------- /src/components/matrix/BtnScripts.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zackhardtoname/internships/HEAD/src/components/matrix/BtnScripts.js -------------------------------------------------------------------------------- /src/components/matrix/Constants.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zackhardtoname/internships/HEAD/src/components/matrix/Constants.js -------------------------------------------------------------------------------- /src/components/matrix/Matrix.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zackhardtoname/internships/HEAD/src/components/matrix/Matrix.css -------------------------------------------------------------------------------- /src/components/matrix/Matrix.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zackhardtoname/internships/HEAD/src/components/matrix/Matrix.js -------------------------------------------------------------------------------- /src/components/matrix/MatrixRenderers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zackhardtoname/internships/HEAD/src/components/matrix/MatrixRenderers.js -------------------------------------------------------------------------------- /src/components/matrix/helpers/Helpers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zackhardtoname/internships/HEAD/src/components/matrix/helpers/Helpers.js -------------------------------------------------------------------------------- /src/components/matrix/internships.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zackhardtoname/internships/HEAD/src/components/matrix/internships.json -------------------------------------------------------------------------------- /src/images/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zackhardtoname/internships/HEAD/src/images/logo.png -------------------------------------------------------------------------------- /src/images/man_technologist.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zackhardtoname/internships/HEAD/src/images/man_technologist.png -------------------------------------------------------------------------------- /src/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zackhardtoname/internships/HEAD/src/index.css -------------------------------------------------------------------------------- /src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zackhardtoname/internships/HEAD/src/index.js -------------------------------------------------------------------------------- /update_commit_push.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zackhardtoname/internships/HEAD/update_commit_push.sh -------------------------------------------------------------------------------- /update_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zackhardtoname/internships/HEAD/update_data.py --------------------------------------------------------------------------------