├── .gitignore ├── README.md ├── angular └── README.md ├── ar_vr └── README.md ├── browser_extensions └── README.md ├── computer_science ├── Big-0-1.png ├── README.md └── big-oh-graph.jpg ├── docker └── README.md ├── general_resources ├── 10steps.pdf └── README.md ├── general_tooling └── README.md ├── git └── README.md ├── graphql └── README.md ├── hosting └── README.md ├── html_css └── README.MD ├── javascript └── README.md ├── job └── README.md ├── node └── README.md ├── planning └── README.md ├── python └── README.md ├── react ├── README.md └── reactTalk.key ├── redux └── README.md ├── sql ├── Choosing_a_Data_Store.pdf ├── Databases.pdf └── README.md ├── testing └── README.md ├── text_editor_extensions └── README.md ├── typescript └── README.md └── vue └── README.md /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_store 2 | .vscode/ 3 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steven-isbell/resources/HEAD/README.md -------------------------------------------------------------------------------- /angular/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steven-isbell/resources/HEAD/angular/README.md -------------------------------------------------------------------------------- /ar_vr/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steven-isbell/resources/HEAD/ar_vr/README.md -------------------------------------------------------------------------------- /browser_extensions/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steven-isbell/resources/HEAD/browser_extensions/README.md -------------------------------------------------------------------------------- /computer_science/Big-0-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steven-isbell/resources/HEAD/computer_science/Big-0-1.png -------------------------------------------------------------------------------- /computer_science/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steven-isbell/resources/HEAD/computer_science/README.md -------------------------------------------------------------------------------- /computer_science/big-oh-graph.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steven-isbell/resources/HEAD/computer_science/big-oh-graph.jpg -------------------------------------------------------------------------------- /docker/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steven-isbell/resources/HEAD/docker/README.md -------------------------------------------------------------------------------- /general_resources/10steps.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steven-isbell/resources/HEAD/general_resources/10steps.pdf -------------------------------------------------------------------------------- /general_resources/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steven-isbell/resources/HEAD/general_resources/README.md -------------------------------------------------------------------------------- /general_tooling/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steven-isbell/resources/HEAD/general_tooling/README.md -------------------------------------------------------------------------------- /git/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steven-isbell/resources/HEAD/git/README.md -------------------------------------------------------------------------------- /graphql/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steven-isbell/resources/HEAD/graphql/README.md -------------------------------------------------------------------------------- /hosting/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steven-isbell/resources/HEAD/hosting/README.md -------------------------------------------------------------------------------- /html_css/README.MD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steven-isbell/resources/HEAD/html_css/README.MD -------------------------------------------------------------------------------- /javascript/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steven-isbell/resources/HEAD/javascript/README.md -------------------------------------------------------------------------------- /job/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steven-isbell/resources/HEAD/job/README.md -------------------------------------------------------------------------------- /node/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steven-isbell/resources/HEAD/node/README.md -------------------------------------------------------------------------------- /planning/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steven-isbell/resources/HEAD/planning/README.md -------------------------------------------------------------------------------- /python/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steven-isbell/resources/HEAD/python/README.md -------------------------------------------------------------------------------- /react/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steven-isbell/resources/HEAD/react/README.md -------------------------------------------------------------------------------- /react/reactTalk.key: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steven-isbell/resources/HEAD/react/reactTalk.key -------------------------------------------------------------------------------- /redux/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steven-isbell/resources/HEAD/redux/README.md -------------------------------------------------------------------------------- /sql/Choosing_a_Data_Store.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steven-isbell/resources/HEAD/sql/Choosing_a_Data_Store.pdf -------------------------------------------------------------------------------- /sql/Databases.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steven-isbell/resources/HEAD/sql/Databases.pdf -------------------------------------------------------------------------------- /sql/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steven-isbell/resources/HEAD/sql/README.md -------------------------------------------------------------------------------- /testing/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steven-isbell/resources/HEAD/testing/README.md -------------------------------------------------------------------------------- /text_editor_extensions/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steven-isbell/resources/HEAD/text_editor_extensions/README.md -------------------------------------------------------------------------------- /typescript/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steven-isbell/resources/HEAD/typescript/README.md -------------------------------------------------------------------------------- /vue/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steven-isbell/resources/HEAD/vue/README.md --------------------------------------------------------------------------------