├── .DS_Store ├── .github └── workflows │ └── mdbook.yml ├── .gitignore ├── .idea ├── .gitignore ├── bhe.iml ├── dictionaries │ └── project.xml ├── material_theme_project_new.xml ├── misc.xml ├── modules.xml └── vcs.xml ├── .vscode └── settings.json ├── Justfile ├── LICENSE ├── README.md ├── book.toml ├── plugins ├── .DS_Store ├── last-changed │ └── last-changed.css ├── line-number │ ├── code-line-number-plugin.js │ └── line-number.css ├── main.css ├── mermaid │ ├── mermaid-init.js │ └── mermaid.min.js └── tabs │ ├── tabs.css │ └── tabs.js └── src ├── .DS_Store ├── .gitignore ├── SUMMARY.md ├── acknowldegement.md ├── assets ├── .DS_Store ├── Backend for Humans.pdf ├── bhe.png ├── binay_numbers.png ├── cli.png ├── code-vs-programming-language.png ├── git-bash-in-folder.jpg ├── javascript-logo.png ├── js-code-run.png ├── network_request.png ├── open-git-bash.png ├── program.png ├── rust-logo.png ├── shell-scripting │ ├── Screenshot 2024-12-03 at 18.40.54.png │ ├── clear.mp4 │ ├── echo-single-word.png │ ├── echo.png │ ├── ls.png │ ├── mkdir-multiple.png │ ├── mkdir.png │ ├── module_5-is-my-name.png │ ├── module_5_is-rainbow-color.png │ ├── pwd.png │ ├── read-from-a-file.png │ ├── stderr.png │ ├── touch-multiple.png │ ├── touch.png │ └── writing-to-file.png ├── source-file.png ├── terminal-in-folder.png ├── using-vs-code │ ├── new-file.png │ ├── new-text-file.png │ ├── new-window.png │ ├── using-vscode.mp4 │ └── vs-code-new-file.mp4 └── vs-code.png ├── code-samples ├── banking-system │ ├── .gitignore │ ├── account.js │ ├── account.test.js │ ├── bank.js │ ├── bank.test.js │ ├── bankOperation.js │ ├── bankOperation.test.js │ ├── currency.js │ ├── currency.test.js │ ├── db.js │ ├── db.test.js │ ├── errors.js │ ├── index.js │ ├── lib.js │ ├── lib.test.js │ ├── package-lock.json │ ├── package.json │ ├── transactionKind.js │ ├── transactionKind.test.js │ └── transactions.js ├── javascript │ ├── Justfile │ ├── function.js │ ├── iife.js │ ├── values.js │ └── var.js ├── module_4 │ └── hello ├── module_5 │ ├── accepting-inputs │ ├── hello │ ├── hello-js │ ├── introduction_to_variables.js │ ├── is-my-name │ ├── is-rainbow-color │ ├── make-script-executable │ ├── shell-array │ ├── shell-for-loop │ └── shell-variables └── module_9 │ ├── .gitignore │ ├── hello_world.js │ └── hello_world.rs ├── dedication.md ├── forward.md ├── index.md ├── misc └── contributors.md ├── mode_of_learning.md ├── module_1 ├── classification_of_programming_languages.md ├── index.md ├── introduction_to_programming.md ├── introduction_to_programming_languages.md ├── quiz.md └── review.md ├── module_2 ├── a_closer_look.md ├── common_protocols.md ├── index.md ├── network_request.md ├── networks.md ├── protocol.md ├── quiz.md ├── resources_and_network_request.md └── review.md ├── module_3 ├── common_operating_systems.md ├── index.md ├── meeting_the_house_keeper.md ├── quiz.md └── review.md ├── module_4 ├── commands │ ├── clear.md │ ├── echo.md │ ├── find.md │ ├── index.md │ ├── inspecting-the-content-of-a-file.md │ ├── ls.md │ ├── mkdir.md │ ├── pwd.md │ ├── rm.md │ ├── rmdir.md │ ├── std.md │ ├── touch.md │ └── writing-content-to-file.md ├── index.md ├── installing-git-and-git-bash.md ├── learning-shell-scripting.md ├── quiz.md ├── review.md ├── shell-commands.md ├── tools │ ├── index.md │ ├── vs-code.md │ └── wsl.md ├── using-flags.md └── what-is-a-shell.md ├── module_5 ├── additional-resources.md ├── index.md ├── quiz.md ├── review.md └── scripts │ ├── accepting-inputs.md │ ├── anatomy.md │ ├── conditional.md │ ├── first-script.md │ ├── for-loop.md │ ├── index.md │ ├── making-script-executable.md │ ├── sample-scripts.md │ ├── using-arrays.md │ └── using-variables.md ├── module_6 └── index.md ├── module_7 └── index.md ├── module_8 └── index.md ├── module_9 ├── golang │ └── index.md ├── index.md ├── javascript │ ├── hello-world.md │ ├── history.md │ ├── index.md │ ├── intro.md │ └── use-cases.md ├── python │ └── index.md ├── quiz.md ├── rust │ ├── hello-world.md │ ├── history.md │ ├── index.md │ └── use-cases.md └── summary.md ├── quizzes ├── module_1.toml ├── module_2.toml ├── module_3.toml ├── module_4.toml ├── module_5.toml └── module__9.toml ├── requirements.md ├── review.md ├── scripts ├── first-script.md └── index.md ├── theme ├── book.js ├── css │ ├── chrome.css │ ├── general.css │ ├── print.css │ └── variables.css ├── favicon.png ├── fonts │ ├── OPEN-SANS-LICENSE.txt │ ├── SOURCE-CODE-PRO-LICENSE.txt │ ├── fonts.css │ ├── open-sans-v17-all-charsets-300.woff2 │ ├── open-sans-v17-all-charsets-300italic.woff2 │ ├── open-sans-v17-all-charsets-600.woff2 │ ├── open-sans-v17-all-charsets-600italic.woff2 │ ├── open-sans-v17-all-charsets-700.woff2 │ ├── open-sans-v17-all-charsets-700italic.woff2 │ ├── open-sans-v17-all-charsets-800.woff2 │ ├── open-sans-v17-all-charsets-800italic.woff2 │ ├── open-sans-v17-all-charsets-italic.woff2 │ ├── open-sans-v17-all-charsets-regular.woff2 │ └── source-code-pro-v11-all-charsets-500.woff2 ├── highlight.css ├── highlight.js └── index.hbs └── what-you-should-know.md /.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opeolluwa/backend-for-humans/HEAD/.DS_Store -------------------------------------------------------------------------------- /.github/workflows/mdbook.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opeolluwa/backend-for-humans/HEAD/.github/workflows/mdbook.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opeolluwa/backend-for-humans/HEAD/.gitignore -------------------------------------------------------------------------------- /.idea/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opeolluwa/backend-for-humans/HEAD/.idea/.gitignore -------------------------------------------------------------------------------- /.idea/bhe.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opeolluwa/backend-for-humans/HEAD/.idea/bhe.iml -------------------------------------------------------------------------------- /.idea/dictionaries/project.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opeolluwa/backend-for-humans/HEAD/.idea/dictionaries/project.xml -------------------------------------------------------------------------------- /.idea/material_theme_project_new.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opeolluwa/backend-for-humans/HEAD/.idea/material_theme_project_new.xml -------------------------------------------------------------------------------- /.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opeolluwa/backend-for-humans/HEAD/.idea/misc.xml -------------------------------------------------------------------------------- /.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opeolluwa/backend-for-humans/HEAD/.idea/modules.xml -------------------------------------------------------------------------------- /.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opeolluwa/backend-for-humans/HEAD/.idea/vcs.xml -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- 1 | { 2 | "cSpell.words": ["evedropping"] 3 | } 4 | -------------------------------------------------------------------------------- /Justfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opeolluwa/backend-for-humans/HEAD/Justfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opeolluwa/backend-for-humans/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opeolluwa/backend-for-humans/HEAD/README.md -------------------------------------------------------------------------------- /book.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opeolluwa/backend-for-humans/HEAD/book.toml -------------------------------------------------------------------------------- /plugins/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opeolluwa/backend-for-humans/HEAD/plugins/.DS_Store -------------------------------------------------------------------------------- /plugins/last-changed/last-changed.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opeolluwa/backend-for-humans/HEAD/plugins/last-changed/last-changed.css -------------------------------------------------------------------------------- /plugins/line-number/code-line-number-plugin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opeolluwa/backend-for-humans/HEAD/plugins/line-number/code-line-number-plugin.js -------------------------------------------------------------------------------- /plugins/line-number/line-number.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opeolluwa/backend-for-humans/HEAD/plugins/line-number/line-number.css -------------------------------------------------------------------------------- /plugins/main.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opeolluwa/backend-for-humans/HEAD/plugins/main.css -------------------------------------------------------------------------------- /plugins/mermaid/mermaid-init.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opeolluwa/backend-for-humans/HEAD/plugins/mermaid/mermaid-init.js -------------------------------------------------------------------------------- /plugins/mermaid/mermaid.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opeolluwa/backend-for-humans/HEAD/plugins/mermaid/mermaid.min.js -------------------------------------------------------------------------------- /plugins/tabs/tabs.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opeolluwa/backend-for-humans/HEAD/plugins/tabs/tabs.css -------------------------------------------------------------------------------- /plugins/tabs/tabs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opeolluwa/backend-for-humans/HEAD/plugins/tabs/tabs.js -------------------------------------------------------------------------------- /src/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opeolluwa/backend-for-humans/HEAD/src/.DS_Store -------------------------------------------------------------------------------- /src/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opeolluwa/backend-for-humans/HEAD/src/.gitignore -------------------------------------------------------------------------------- /src/SUMMARY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opeolluwa/backend-for-humans/HEAD/src/SUMMARY.md -------------------------------------------------------------------------------- /src/acknowldegement.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opeolluwa/backend-for-humans/HEAD/src/acknowldegement.md -------------------------------------------------------------------------------- /src/assets/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opeolluwa/backend-for-humans/HEAD/src/assets/.DS_Store -------------------------------------------------------------------------------- /src/assets/Backend for Humans.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opeolluwa/backend-for-humans/HEAD/src/assets/Backend for Humans.pdf -------------------------------------------------------------------------------- /src/assets/bhe.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opeolluwa/backend-for-humans/HEAD/src/assets/bhe.png -------------------------------------------------------------------------------- /src/assets/binay_numbers.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opeolluwa/backend-for-humans/HEAD/src/assets/binay_numbers.png -------------------------------------------------------------------------------- /src/assets/cli.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opeolluwa/backend-for-humans/HEAD/src/assets/cli.png -------------------------------------------------------------------------------- /src/assets/code-vs-programming-language.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opeolluwa/backend-for-humans/HEAD/src/assets/code-vs-programming-language.png -------------------------------------------------------------------------------- /src/assets/git-bash-in-folder.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opeolluwa/backend-for-humans/HEAD/src/assets/git-bash-in-folder.jpg -------------------------------------------------------------------------------- /src/assets/javascript-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opeolluwa/backend-for-humans/HEAD/src/assets/javascript-logo.png -------------------------------------------------------------------------------- /src/assets/js-code-run.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opeolluwa/backend-for-humans/HEAD/src/assets/js-code-run.png -------------------------------------------------------------------------------- /src/assets/network_request.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opeolluwa/backend-for-humans/HEAD/src/assets/network_request.png -------------------------------------------------------------------------------- /src/assets/open-git-bash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opeolluwa/backend-for-humans/HEAD/src/assets/open-git-bash.png -------------------------------------------------------------------------------- /src/assets/program.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opeolluwa/backend-for-humans/HEAD/src/assets/program.png -------------------------------------------------------------------------------- /src/assets/rust-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opeolluwa/backend-for-humans/HEAD/src/assets/rust-logo.png -------------------------------------------------------------------------------- /src/assets/shell-scripting/Screenshot 2024-12-03 at 18.40.54.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opeolluwa/backend-for-humans/HEAD/src/assets/shell-scripting/Screenshot 2024-12-03 at 18.40.54.png -------------------------------------------------------------------------------- /src/assets/shell-scripting/clear.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opeolluwa/backend-for-humans/HEAD/src/assets/shell-scripting/clear.mp4 -------------------------------------------------------------------------------- /src/assets/shell-scripting/echo-single-word.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opeolluwa/backend-for-humans/HEAD/src/assets/shell-scripting/echo-single-word.png -------------------------------------------------------------------------------- /src/assets/shell-scripting/echo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opeolluwa/backend-for-humans/HEAD/src/assets/shell-scripting/echo.png -------------------------------------------------------------------------------- /src/assets/shell-scripting/ls.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opeolluwa/backend-for-humans/HEAD/src/assets/shell-scripting/ls.png -------------------------------------------------------------------------------- /src/assets/shell-scripting/mkdir-multiple.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opeolluwa/backend-for-humans/HEAD/src/assets/shell-scripting/mkdir-multiple.png -------------------------------------------------------------------------------- /src/assets/shell-scripting/mkdir.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opeolluwa/backend-for-humans/HEAD/src/assets/shell-scripting/mkdir.png -------------------------------------------------------------------------------- /src/assets/shell-scripting/module_5-is-my-name.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opeolluwa/backend-for-humans/HEAD/src/assets/shell-scripting/module_5-is-my-name.png -------------------------------------------------------------------------------- /src/assets/shell-scripting/module_5_is-rainbow-color.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opeolluwa/backend-for-humans/HEAD/src/assets/shell-scripting/module_5_is-rainbow-color.png -------------------------------------------------------------------------------- /src/assets/shell-scripting/pwd.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opeolluwa/backend-for-humans/HEAD/src/assets/shell-scripting/pwd.png -------------------------------------------------------------------------------- /src/assets/shell-scripting/read-from-a-file.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opeolluwa/backend-for-humans/HEAD/src/assets/shell-scripting/read-from-a-file.png -------------------------------------------------------------------------------- /src/assets/shell-scripting/stderr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opeolluwa/backend-for-humans/HEAD/src/assets/shell-scripting/stderr.png -------------------------------------------------------------------------------- /src/assets/shell-scripting/touch-multiple.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opeolluwa/backend-for-humans/HEAD/src/assets/shell-scripting/touch-multiple.png -------------------------------------------------------------------------------- /src/assets/shell-scripting/touch.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opeolluwa/backend-for-humans/HEAD/src/assets/shell-scripting/touch.png -------------------------------------------------------------------------------- /src/assets/shell-scripting/writing-to-file.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opeolluwa/backend-for-humans/HEAD/src/assets/shell-scripting/writing-to-file.png -------------------------------------------------------------------------------- /src/assets/source-file.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opeolluwa/backend-for-humans/HEAD/src/assets/source-file.png -------------------------------------------------------------------------------- /src/assets/terminal-in-folder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opeolluwa/backend-for-humans/HEAD/src/assets/terminal-in-folder.png -------------------------------------------------------------------------------- /src/assets/using-vs-code/new-file.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opeolluwa/backend-for-humans/HEAD/src/assets/using-vs-code/new-file.png -------------------------------------------------------------------------------- /src/assets/using-vs-code/new-text-file.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opeolluwa/backend-for-humans/HEAD/src/assets/using-vs-code/new-text-file.png -------------------------------------------------------------------------------- /src/assets/using-vs-code/new-window.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opeolluwa/backend-for-humans/HEAD/src/assets/using-vs-code/new-window.png -------------------------------------------------------------------------------- /src/assets/using-vs-code/using-vscode.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opeolluwa/backend-for-humans/HEAD/src/assets/using-vs-code/using-vscode.mp4 -------------------------------------------------------------------------------- /src/assets/using-vs-code/vs-code-new-file.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opeolluwa/backend-for-humans/HEAD/src/assets/using-vs-code/vs-code-new-file.mp4 -------------------------------------------------------------------------------- /src/assets/vs-code.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opeolluwa/backend-for-humans/HEAD/src/assets/vs-code.png -------------------------------------------------------------------------------- /src/code-samples/banking-system/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opeolluwa/backend-for-humans/HEAD/src/code-samples/banking-system/.gitignore -------------------------------------------------------------------------------- /src/code-samples/banking-system/account.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opeolluwa/backend-for-humans/HEAD/src/code-samples/banking-system/account.js -------------------------------------------------------------------------------- /src/code-samples/banking-system/account.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opeolluwa/backend-for-humans/HEAD/src/code-samples/banking-system/account.test.js -------------------------------------------------------------------------------- /src/code-samples/banking-system/bank.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opeolluwa/backend-for-humans/HEAD/src/code-samples/banking-system/bank.js -------------------------------------------------------------------------------- /src/code-samples/banking-system/bank.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opeolluwa/backend-for-humans/HEAD/src/code-samples/banking-system/bank.test.js -------------------------------------------------------------------------------- /src/code-samples/banking-system/bankOperation.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opeolluwa/backend-for-humans/HEAD/src/code-samples/banking-system/bankOperation.js -------------------------------------------------------------------------------- /src/code-samples/banking-system/bankOperation.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opeolluwa/backend-for-humans/HEAD/src/code-samples/banking-system/bankOperation.test.js -------------------------------------------------------------------------------- /src/code-samples/banking-system/currency.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opeolluwa/backend-for-humans/HEAD/src/code-samples/banking-system/currency.js -------------------------------------------------------------------------------- /src/code-samples/banking-system/currency.test.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/code-samples/banking-system/db.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opeolluwa/backend-for-humans/HEAD/src/code-samples/banking-system/db.js -------------------------------------------------------------------------------- /src/code-samples/banking-system/db.test.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/code-samples/banking-system/errors.js: -------------------------------------------------------------------------------- 1 | export const INVALID_STRING_ARGUMENT = new Error( 2 | `Expected string but got ${typeof str}` 3 | ); -------------------------------------------------------------------------------- /src/code-samples/banking-system/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opeolluwa/backend-for-humans/HEAD/src/code-samples/banking-system/index.js -------------------------------------------------------------------------------- /src/code-samples/banking-system/lib.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opeolluwa/backend-for-humans/HEAD/src/code-samples/banking-system/lib.js -------------------------------------------------------------------------------- /src/code-samples/banking-system/lib.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opeolluwa/backend-for-humans/HEAD/src/code-samples/banking-system/lib.test.js -------------------------------------------------------------------------------- /src/code-samples/banking-system/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opeolluwa/backend-for-humans/HEAD/src/code-samples/banking-system/package-lock.json -------------------------------------------------------------------------------- /src/code-samples/banking-system/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opeolluwa/backend-for-humans/HEAD/src/code-samples/banking-system/package.json -------------------------------------------------------------------------------- /src/code-samples/banking-system/transactionKind.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opeolluwa/backend-for-humans/HEAD/src/code-samples/banking-system/transactionKind.js -------------------------------------------------------------------------------- /src/code-samples/banking-system/transactionKind.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opeolluwa/backend-for-humans/HEAD/src/code-samples/banking-system/transactionKind.test.js -------------------------------------------------------------------------------- /src/code-samples/banking-system/transactions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opeolluwa/backend-for-humans/HEAD/src/code-samples/banking-system/transactions.js -------------------------------------------------------------------------------- /src/code-samples/javascript/Justfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opeolluwa/backend-for-humans/HEAD/src/code-samples/javascript/Justfile -------------------------------------------------------------------------------- /src/code-samples/javascript/function.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opeolluwa/backend-for-humans/HEAD/src/code-samples/javascript/function.js -------------------------------------------------------------------------------- /src/code-samples/javascript/iife.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/code-samples/javascript/values.js: -------------------------------------------------------------------------------- 1 | console.log(Boolean([])) -------------------------------------------------------------------------------- /src/code-samples/javascript/var.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opeolluwa/backend-for-humans/HEAD/src/code-samples/javascript/var.js -------------------------------------------------------------------------------- /src/code-samples/module_4/hello: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | echo "Hello, World" 4 | -------------------------------------------------------------------------------- /src/code-samples/module_5/accepting-inputs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opeolluwa/backend-for-humans/HEAD/src/code-samples/module_5/accepting-inputs -------------------------------------------------------------------------------- /src/code-samples/module_5/hello: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | echo "Hello, World" 4 | -------------------------------------------------------------------------------- /src/code-samples/module_5/hello-js: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env node 2 | 3 | console.log("Hello, World"); 4 | -------------------------------------------------------------------------------- /src/code-samples/module_5/introduction_to_variables.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opeolluwa/backend-for-humans/HEAD/src/code-samples/module_5/introduction_to_variables.js -------------------------------------------------------------------------------- /src/code-samples/module_5/is-my-name: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opeolluwa/backend-for-humans/HEAD/src/code-samples/module_5/is-my-name -------------------------------------------------------------------------------- /src/code-samples/module_5/is-rainbow-color: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opeolluwa/backend-for-humans/HEAD/src/code-samples/module_5/is-rainbow-color -------------------------------------------------------------------------------- /src/code-samples/module_5/make-script-executable: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opeolluwa/backend-for-humans/HEAD/src/code-samples/module_5/make-script-executable -------------------------------------------------------------------------------- /src/code-samples/module_5/shell-array: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opeolluwa/backend-for-humans/HEAD/src/code-samples/module_5/shell-array -------------------------------------------------------------------------------- /src/code-samples/module_5/shell-for-loop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opeolluwa/backend-for-humans/HEAD/src/code-samples/module_5/shell-for-loop -------------------------------------------------------------------------------- /src/code-samples/module_5/shell-variables: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opeolluwa/backend-for-humans/HEAD/src/code-samples/module_5/shell-variables -------------------------------------------------------------------------------- /src/code-samples/module_9/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opeolluwa/backend-for-humans/HEAD/src/code-samples/module_9/.gitignore -------------------------------------------------------------------------------- /src/code-samples/module_9/hello_world.js: -------------------------------------------------------------------------------- 1 | console.log("Hello World!"); 2 | -------------------------------------------------------------------------------- /src/code-samples/module_9/hello_world.rs: -------------------------------------------------------------------------------- 1 | fn main() { 2 | println!("Hello, world!"); 3 | } 4 | -------------------------------------------------------------------------------- /src/dedication.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opeolluwa/backend-for-humans/HEAD/src/dedication.md -------------------------------------------------------------------------------- /src/forward.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opeolluwa/backend-for-humans/HEAD/src/forward.md -------------------------------------------------------------------------------- /src/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opeolluwa/backend-for-humans/HEAD/src/index.md -------------------------------------------------------------------------------- /src/misc/contributors.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opeolluwa/backend-for-humans/HEAD/src/misc/contributors.md -------------------------------------------------------------------------------- /src/mode_of_learning.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opeolluwa/backend-for-humans/HEAD/src/mode_of_learning.md -------------------------------------------------------------------------------- /src/module_1/classification_of_programming_languages.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opeolluwa/backend-for-humans/HEAD/src/module_1/classification_of_programming_languages.md -------------------------------------------------------------------------------- /src/module_1/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opeolluwa/backend-for-humans/HEAD/src/module_1/index.md -------------------------------------------------------------------------------- /src/module_1/introduction_to_programming.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opeolluwa/backend-for-humans/HEAD/src/module_1/introduction_to_programming.md -------------------------------------------------------------------------------- /src/module_1/introduction_to_programming_languages.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opeolluwa/backend-for-humans/HEAD/src/module_1/introduction_to_programming_languages.md -------------------------------------------------------------------------------- /src/module_1/quiz.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opeolluwa/backend-for-humans/HEAD/src/module_1/quiz.md -------------------------------------------------------------------------------- /src/module_1/review.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opeolluwa/backend-for-humans/HEAD/src/module_1/review.md -------------------------------------------------------------------------------- /src/module_2/a_closer_look.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opeolluwa/backend-for-humans/HEAD/src/module_2/a_closer_look.md -------------------------------------------------------------------------------- /src/module_2/common_protocols.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opeolluwa/backend-for-humans/HEAD/src/module_2/common_protocols.md -------------------------------------------------------------------------------- /src/module_2/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opeolluwa/backend-for-humans/HEAD/src/module_2/index.md -------------------------------------------------------------------------------- /src/module_2/network_request.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/module_2/networks.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opeolluwa/backend-for-humans/HEAD/src/module_2/networks.md -------------------------------------------------------------------------------- /src/module_2/protocol.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opeolluwa/backend-for-humans/HEAD/src/module_2/protocol.md -------------------------------------------------------------------------------- /src/module_2/quiz.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opeolluwa/backend-for-humans/HEAD/src/module_2/quiz.md -------------------------------------------------------------------------------- /src/module_2/resources_and_network_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opeolluwa/backend-for-humans/HEAD/src/module_2/resources_and_network_request.md -------------------------------------------------------------------------------- /src/module_2/review.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opeolluwa/backend-for-humans/HEAD/src/module_2/review.md -------------------------------------------------------------------------------- /src/module_3/common_operating_systems.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opeolluwa/backend-for-humans/HEAD/src/module_3/common_operating_systems.md -------------------------------------------------------------------------------- /src/module_3/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opeolluwa/backend-for-humans/HEAD/src/module_3/index.md -------------------------------------------------------------------------------- /src/module_3/meeting_the_house_keeper.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opeolluwa/backend-for-humans/HEAD/src/module_3/meeting_the_house_keeper.md -------------------------------------------------------------------------------- /src/module_3/quiz.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opeolluwa/backend-for-humans/HEAD/src/module_3/quiz.md -------------------------------------------------------------------------------- /src/module_3/review.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opeolluwa/backend-for-humans/HEAD/src/module_3/review.md -------------------------------------------------------------------------------- /src/module_4/commands/clear.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opeolluwa/backend-for-humans/HEAD/src/module_4/commands/clear.md -------------------------------------------------------------------------------- /src/module_4/commands/echo.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opeolluwa/backend-for-humans/HEAD/src/module_4/commands/echo.md -------------------------------------------------------------------------------- /src/module_4/commands/find.md: -------------------------------------------------------------------------------- 1 | # find 2 | -------------------------------------------------------------------------------- /src/module_4/commands/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opeolluwa/backend-for-humans/HEAD/src/module_4/commands/index.md -------------------------------------------------------------------------------- /src/module_4/commands/inspecting-the-content-of-a-file.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opeolluwa/backend-for-humans/HEAD/src/module_4/commands/inspecting-the-content-of-a-file.md -------------------------------------------------------------------------------- /src/module_4/commands/ls.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opeolluwa/backend-for-humans/HEAD/src/module_4/commands/ls.md -------------------------------------------------------------------------------- /src/module_4/commands/mkdir.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opeolluwa/backend-for-humans/HEAD/src/module_4/commands/mkdir.md -------------------------------------------------------------------------------- /src/module_4/commands/pwd.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opeolluwa/backend-for-humans/HEAD/src/module_4/commands/pwd.md -------------------------------------------------------------------------------- /src/module_4/commands/rm.md: -------------------------------------------------------------------------------- 1 | # rm 2 | -------------------------------------------------------------------------------- /src/module_4/commands/rmdir.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opeolluwa/backend-for-humans/HEAD/src/module_4/commands/rmdir.md -------------------------------------------------------------------------------- /src/module_4/commands/std.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opeolluwa/backend-for-humans/HEAD/src/module_4/commands/std.md -------------------------------------------------------------------------------- /src/module_4/commands/touch.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opeolluwa/backend-for-humans/HEAD/src/module_4/commands/touch.md -------------------------------------------------------------------------------- /src/module_4/commands/writing-content-to-file.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opeolluwa/backend-for-humans/HEAD/src/module_4/commands/writing-content-to-file.md -------------------------------------------------------------------------------- /src/module_4/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opeolluwa/backend-for-humans/HEAD/src/module_4/index.md -------------------------------------------------------------------------------- /src/module_4/installing-git-and-git-bash.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opeolluwa/backend-for-humans/HEAD/src/module_4/installing-git-and-git-bash.md -------------------------------------------------------------------------------- /src/module_4/learning-shell-scripting.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opeolluwa/backend-for-humans/HEAD/src/module_4/learning-shell-scripting.md -------------------------------------------------------------------------------- /src/module_4/quiz.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opeolluwa/backend-for-humans/HEAD/src/module_4/quiz.md -------------------------------------------------------------------------------- /src/module_4/review.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opeolluwa/backend-for-humans/HEAD/src/module_4/review.md -------------------------------------------------------------------------------- /src/module_4/shell-commands.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/module_4/tools/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opeolluwa/backend-for-humans/HEAD/src/module_4/tools/index.md -------------------------------------------------------------------------------- /src/module_4/tools/vs-code.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opeolluwa/backend-for-humans/HEAD/src/module_4/tools/vs-code.md -------------------------------------------------------------------------------- /src/module_4/tools/wsl.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opeolluwa/backend-for-humans/HEAD/src/module_4/tools/wsl.md -------------------------------------------------------------------------------- /src/module_4/using-flags.md: -------------------------------------------------------------------------------- 1 | # Using flags 2 | -------------------------------------------------------------------------------- /src/module_4/what-is-a-shell.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opeolluwa/backend-for-humans/HEAD/src/module_4/what-is-a-shell.md -------------------------------------------------------------------------------- /src/module_5/additional-resources.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opeolluwa/backend-for-humans/HEAD/src/module_5/additional-resources.md -------------------------------------------------------------------------------- /src/module_5/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opeolluwa/backend-for-humans/HEAD/src/module_5/index.md -------------------------------------------------------------------------------- /src/module_5/quiz.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opeolluwa/backend-for-humans/HEAD/src/module_5/quiz.md -------------------------------------------------------------------------------- /src/module_5/review.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opeolluwa/backend-for-humans/HEAD/src/module_5/review.md -------------------------------------------------------------------------------- /src/module_5/scripts/accepting-inputs.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opeolluwa/backend-for-humans/HEAD/src/module_5/scripts/accepting-inputs.md -------------------------------------------------------------------------------- /src/module_5/scripts/anatomy.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opeolluwa/backend-for-humans/HEAD/src/module_5/scripts/anatomy.md -------------------------------------------------------------------------------- /src/module_5/scripts/conditional.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opeolluwa/backend-for-humans/HEAD/src/module_5/scripts/conditional.md -------------------------------------------------------------------------------- /src/module_5/scripts/first-script.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opeolluwa/backend-for-humans/HEAD/src/module_5/scripts/first-script.md -------------------------------------------------------------------------------- /src/module_5/scripts/for-loop.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opeolluwa/backend-for-humans/HEAD/src/module_5/scripts/for-loop.md -------------------------------------------------------------------------------- /src/module_5/scripts/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opeolluwa/backend-for-humans/HEAD/src/module_5/scripts/index.md -------------------------------------------------------------------------------- /src/module_5/scripts/making-script-executable.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opeolluwa/backend-for-humans/HEAD/src/module_5/scripts/making-script-executable.md -------------------------------------------------------------------------------- /src/module_5/scripts/sample-scripts.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opeolluwa/backend-for-humans/HEAD/src/module_5/scripts/sample-scripts.md -------------------------------------------------------------------------------- /src/module_5/scripts/using-arrays.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opeolluwa/backend-for-humans/HEAD/src/module_5/scripts/using-arrays.md -------------------------------------------------------------------------------- /src/module_5/scripts/using-variables.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opeolluwa/backend-for-humans/HEAD/src/module_5/scripts/using-variables.md -------------------------------------------------------------------------------- /src/module_6/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opeolluwa/backend-for-humans/HEAD/src/module_6/index.md -------------------------------------------------------------------------------- /src/module_7/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opeolluwa/backend-for-humans/HEAD/src/module_7/index.md -------------------------------------------------------------------------------- /src/module_8/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opeolluwa/backend-for-humans/HEAD/src/module_8/index.md -------------------------------------------------------------------------------- /src/module_9/golang/index.md: -------------------------------------------------------------------------------- 1 | # Golang 2 | 3 | -------------------------------------------------------------------------------- /src/module_9/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opeolluwa/backend-for-humans/HEAD/src/module_9/index.md -------------------------------------------------------------------------------- /src/module_9/javascript/hello-world.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opeolluwa/backend-for-humans/HEAD/src/module_9/javascript/hello-world.md -------------------------------------------------------------------------------- /src/module_9/javascript/history.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opeolluwa/backend-for-humans/HEAD/src/module_9/javascript/history.md -------------------------------------------------------------------------------- /src/module_9/javascript/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opeolluwa/backend-for-humans/HEAD/src/module_9/javascript/index.md -------------------------------------------------------------------------------- /src/module_9/javascript/intro.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opeolluwa/backend-for-humans/HEAD/src/module_9/javascript/intro.md -------------------------------------------------------------------------------- /src/module_9/javascript/use-cases.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opeolluwa/backend-for-humans/HEAD/src/module_9/javascript/use-cases.md -------------------------------------------------------------------------------- /src/module_9/python/index.md: -------------------------------------------------------------------------------- 1 | # Python 2 | 3 | -------------------------------------------------------------------------------- /src/module_9/quiz.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opeolluwa/backend-for-humans/HEAD/src/module_9/quiz.md -------------------------------------------------------------------------------- /src/module_9/rust/hello-world.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opeolluwa/backend-for-humans/HEAD/src/module_9/rust/hello-world.md -------------------------------------------------------------------------------- /src/module_9/rust/history.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opeolluwa/backend-for-humans/HEAD/src/module_9/rust/history.md -------------------------------------------------------------------------------- /src/module_9/rust/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opeolluwa/backend-for-humans/HEAD/src/module_9/rust/index.md -------------------------------------------------------------------------------- /src/module_9/rust/use-cases.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opeolluwa/backend-for-humans/HEAD/src/module_9/rust/use-cases.md -------------------------------------------------------------------------------- /src/module_9/summary.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opeolluwa/backend-for-humans/HEAD/src/module_9/summary.md -------------------------------------------------------------------------------- /src/quizzes/module_1.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opeolluwa/backend-for-humans/HEAD/src/quizzes/module_1.toml -------------------------------------------------------------------------------- /src/quizzes/module_2.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opeolluwa/backend-for-humans/HEAD/src/quizzes/module_2.toml -------------------------------------------------------------------------------- /src/quizzes/module_3.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opeolluwa/backend-for-humans/HEAD/src/quizzes/module_3.toml -------------------------------------------------------------------------------- /src/quizzes/module_4.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opeolluwa/backend-for-humans/HEAD/src/quizzes/module_4.toml -------------------------------------------------------------------------------- /src/quizzes/module_5.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opeolluwa/backend-for-humans/HEAD/src/quizzes/module_5.toml -------------------------------------------------------------------------------- /src/quizzes/module__9.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opeolluwa/backend-for-humans/HEAD/src/quizzes/module__9.toml -------------------------------------------------------------------------------- /src/requirements.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opeolluwa/backend-for-humans/HEAD/src/requirements.md -------------------------------------------------------------------------------- /src/review.md: -------------------------------------------------------------------------------- 1 | # Module review 2 | -------------------------------------------------------------------------------- /src/scripts/first-script.md: -------------------------------------------------------------------------------- 1 | # Your first script 2 | -------------------------------------------------------------------------------- /src/scripts/index.md: -------------------------------------------------------------------------------- 1 | # Writing shell scripts 2 | -------------------------------------------------------------------------------- /src/theme/book.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opeolluwa/backend-for-humans/HEAD/src/theme/book.js -------------------------------------------------------------------------------- /src/theme/css/chrome.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opeolluwa/backend-for-humans/HEAD/src/theme/css/chrome.css -------------------------------------------------------------------------------- /src/theme/css/general.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opeolluwa/backend-for-humans/HEAD/src/theme/css/general.css -------------------------------------------------------------------------------- /src/theme/css/print.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opeolluwa/backend-for-humans/HEAD/src/theme/css/print.css -------------------------------------------------------------------------------- /src/theme/css/variables.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opeolluwa/backend-for-humans/HEAD/src/theme/css/variables.css -------------------------------------------------------------------------------- /src/theme/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opeolluwa/backend-for-humans/HEAD/src/theme/favicon.png -------------------------------------------------------------------------------- /src/theme/fonts/OPEN-SANS-LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opeolluwa/backend-for-humans/HEAD/src/theme/fonts/OPEN-SANS-LICENSE.txt -------------------------------------------------------------------------------- /src/theme/fonts/SOURCE-CODE-PRO-LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opeolluwa/backend-for-humans/HEAD/src/theme/fonts/SOURCE-CODE-PRO-LICENSE.txt -------------------------------------------------------------------------------- /src/theme/fonts/fonts.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opeolluwa/backend-for-humans/HEAD/src/theme/fonts/fonts.css -------------------------------------------------------------------------------- /src/theme/fonts/open-sans-v17-all-charsets-300.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opeolluwa/backend-for-humans/HEAD/src/theme/fonts/open-sans-v17-all-charsets-300.woff2 -------------------------------------------------------------------------------- /src/theme/fonts/open-sans-v17-all-charsets-300italic.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opeolluwa/backend-for-humans/HEAD/src/theme/fonts/open-sans-v17-all-charsets-300italic.woff2 -------------------------------------------------------------------------------- /src/theme/fonts/open-sans-v17-all-charsets-600.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opeolluwa/backend-for-humans/HEAD/src/theme/fonts/open-sans-v17-all-charsets-600.woff2 -------------------------------------------------------------------------------- /src/theme/fonts/open-sans-v17-all-charsets-600italic.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opeolluwa/backend-for-humans/HEAD/src/theme/fonts/open-sans-v17-all-charsets-600italic.woff2 -------------------------------------------------------------------------------- /src/theme/fonts/open-sans-v17-all-charsets-700.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opeolluwa/backend-for-humans/HEAD/src/theme/fonts/open-sans-v17-all-charsets-700.woff2 -------------------------------------------------------------------------------- /src/theme/fonts/open-sans-v17-all-charsets-700italic.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opeolluwa/backend-for-humans/HEAD/src/theme/fonts/open-sans-v17-all-charsets-700italic.woff2 -------------------------------------------------------------------------------- /src/theme/fonts/open-sans-v17-all-charsets-800.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opeolluwa/backend-for-humans/HEAD/src/theme/fonts/open-sans-v17-all-charsets-800.woff2 -------------------------------------------------------------------------------- /src/theme/fonts/open-sans-v17-all-charsets-800italic.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opeolluwa/backend-for-humans/HEAD/src/theme/fonts/open-sans-v17-all-charsets-800italic.woff2 -------------------------------------------------------------------------------- /src/theme/fonts/open-sans-v17-all-charsets-italic.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opeolluwa/backend-for-humans/HEAD/src/theme/fonts/open-sans-v17-all-charsets-italic.woff2 -------------------------------------------------------------------------------- /src/theme/fonts/open-sans-v17-all-charsets-regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opeolluwa/backend-for-humans/HEAD/src/theme/fonts/open-sans-v17-all-charsets-regular.woff2 -------------------------------------------------------------------------------- /src/theme/fonts/source-code-pro-v11-all-charsets-500.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opeolluwa/backend-for-humans/HEAD/src/theme/fonts/source-code-pro-v11-all-charsets-500.woff2 -------------------------------------------------------------------------------- /src/theme/highlight.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opeolluwa/backend-for-humans/HEAD/src/theme/highlight.css -------------------------------------------------------------------------------- /src/theme/highlight.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opeolluwa/backend-for-humans/HEAD/src/theme/highlight.js -------------------------------------------------------------------------------- /src/theme/index.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opeolluwa/backend-for-humans/HEAD/src/theme/index.hbs -------------------------------------------------------------------------------- /src/what-you-should-know.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opeolluwa/backend-for-humans/HEAD/src/what-you-should-know.md --------------------------------------------------------------------------------