├── .gitattributes ├── .github └── workflows │ ├── build-test.yml │ └── gh-pages.yml ├── .gitignore ├── README.md ├── book.toml └── src ├── 404.md ├── README.md ├── SUMMARY.md ├── anecdotes ├── README.md ├── college-life.md └── hacker-how-to.md ├── begin-programming ├── README.md ├── assets │ ├── choose-vs-workload.jpg │ ├── common-causes-of-messy-code.jpg │ └── download-vs-installer.jpg ├── cli │ ├── assets │ │ ├── powershell-in-win32-console.png │ │ ├── running-self-built-cli-app.svg │ │ ├── shell-command-example.svg │ │ ├── shell-hierarchy.svg │ │ ├── terminal-colorful-text-demo.svg │ │ ├── terminal-in-ubuntu-gnome.png │ │ ├── win-run-dialog.png │ │ └── windows-search-powershell.png │ ├── cli-and-shell.md │ ├── common-cli-tools.md │ └── common-commands.md ├── coding-practice.md ├── ds-algo-intro.md ├── first-cpp-program.md ├── new-to-python.md ├── read-cpp │ ├── branches-and-loops.md │ ├── coding-convention.md │ ├── common-signs.md │ ├── conclusion.md │ ├── function.md │ ├── intro.md │ ├── macro-and-preprocess.md │ ├── pointers-and-references.md │ ├── struct-and-class.md │ └── variable-declaration.md ├── setup-develop-environment.md ├── software-build.md ├── uml │ ├── class-diagram.assets │ │ ├── uml-aggregation-example.svg │ │ ├── uml-association-example.svg │ │ ├── uml-class-diagram-example.drawio │ │ ├── uml-class-diagram-example.svg │ │ ├── uml-composition-example.svg │ │ ├── uml-dependency-example.svg │ │ ├── uml-full-class-example.svg │ │ ├── uml-generalization-example.svg │ │ └── uml-interface-inheritance-example.svg │ ├── class-diagram.md │ └── intro-to-uml.md ├── vm │ ├── README.md │ ├── assets │ │ ├── ubuntu-change-source-gui.jpg │ │ └── ubuntu-package-manager-example.jpg │ └── try-ubuntu-on-windows.md └── what-is-programming.md ├── code-sharing ├── README.md ├── about-github.md ├── build-static-pages.md ├── code-hosting-platform-and-vcs.md ├── try-code-hosting-and-vcs.md └── where-it-all-began.md ├── cpp └── README.md ├── know-your-computer ├── README.md ├── buying-a-computer.md ├── interface-and-protocol.md ├── use-electronic-products.md └── what-are-computers.md ├── preface.md ├── security ├── README.md ├── TODO.md └── pgp-and-gpg.md ├── use-your-computer ├── README.md ├── acquire-and-install-apps.md ├── assets │ ├── default-name-to-be-replaced.jpg │ ├── input-chinese-by-pinyin.jpg │ ├── right-click-on-desktop.jpg │ ├── win-11-explorer-show-file-extension.jpg │ ├── win-explorer-default.jpg │ ├── win-explorer-show-file-extension.jpg │ ├── win-notepad-with-contents.jpg │ ├── windows-desktop-capture.jpg │ └── windows-running-notepad.jpg ├── browsing-internet.md ├── file-format.md ├── files-and-directories.md ├── font-and-font-rendering.md ├── interact-with-pc.md ├── io-devices.md ├── markup-lang-and-rich-text.md ├── network-and-internet.md ├── organize-your-files.md ├── safe-internet-connection.md ├── what-can-internet-do.md └── work-efficiently.md └── web-surfing ├── README.md ├── better-web-experience.md ├── intro-to-mastodon.md ├── learn-english.md ├── markdown-tips.md ├── mfa-intro.md ├── notes-taking.md ├── obtain-information.md ├── search-for-help.md └── web-accessibility-intro.md /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kLiHz/Newly-Programmer-ABC/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/workflows/build-test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kLiHz/Newly-Programmer-ABC/HEAD/.github/workflows/build-test.yml -------------------------------------------------------------------------------- /.github/workflows/gh-pages.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kLiHz/Newly-Programmer-ABC/HEAD/.github/workflows/gh-pages.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kLiHz/Newly-Programmer-ABC/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kLiHz/Newly-Programmer-ABC/HEAD/README.md -------------------------------------------------------------------------------- /book.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kLiHz/Newly-Programmer-ABC/HEAD/book.toml -------------------------------------------------------------------------------- /src/404.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kLiHz/Newly-Programmer-ABC/HEAD/src/404.md -------------------------------------------------------------------------------- /src/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kLiHz/Newly-Programmer-ABC/HEAD/src/README.md -------------------------------------------------------------------------------- /src/SUMMARY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kLiHz/Newly-Programmer-ABC/HEAD/src/SUMMARY.md -------------------------------------------------------------------------------- /src/anecdotes/README.md: -------------------------------------------------------------------------------- 1 | # 计算机人漫谈 2 | -------------------------------------------------------------------------------- /src/anecdotes/college-life.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kLiHz/Newly-Programmer-ABC/HEAD/src/anecdotes/college-life.md -------------------------------------------------------------------------------- /src/anecdotes/hacker-how-to.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kLiHz/Newly-Programmer-ABC/HEAD/src/anecdotes/hacker-how-to.md -------------------------------------------------------------------------------- /src/begin-programming/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kLiHz/Newly-Programmer-ABC/HEAD/src/begin-programming/README.md -------------------------------------------------------------------------------- /src/begin-programming/assets/choose-vs-workload.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kLiHz/Newly-Programmer-ABC/HEAD/src/begin-programming/assets/choose-vs-workload.jpg -------------------------------------------------------------------------------- /src/begin-programming/assets/common-causes-of-messy-code.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kLiHz/Newly-Programmer-ABC/HEAD/src/begin-programming/assets/common-causes-of-messy-code.jpg -------------------------------------------------------------------------------- /src/begin-programming/assets/download-vs-installer.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kLiHz/Newly-Programmer-ABC/HEAD/src/begin-programming/assets/download-vs-installer.jpg -------------------------------------------------------------------------------- /src/begin-programming/cli/assets/powershell-in-win32-console.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kLiHz/Newly-Programmer-ABC/HEAD/src/begin-programming/cli/assets/powershell-in-win32-console.png -------------------------------------------------------------------------------- /src/begin-programming/cli/assets/running-self-built-cli-app.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kLiHz/Newly-Programmer-ABC/HEAD/src/begin-programming/cli/assets/running-self-built-cli-app.svg -------------------------------------------------------------------------------- /src/begin-programming/cli/assets/shell-command-example.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kLiHz/Newly-Programmer-ABC/HEAD/src/begin-programming/cli/assets/shell-command-example.svg -------------------------------------------------------------------------------- /src/begin-programming/cli/assets/shell-hierarchy.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kLiHz/Newly-Programmer-ABC/HEAD/src/begin-programming/cli/assets/shell-hierarchy.svg -------------------------------------------------------------------------------- /src/begin-programming/cli/assets/terminal-colorful-text-demo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kLiHz/Newly-Programmer-ABC/HEAD/src/begin-programming/cli/assets/terminal-colorful-text-demo.svg -------------------------------------------------------------------------------- /src/begin-programming/cli/assets/terminal-in-ubuntu-gnome.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kLiHz/Newly-Programmer-ABC/HEAD/src/begin-programming/cli/assets/terminal-in-ubuntu-gnome.png -------------------------------------------------------------------------------- /src/begin-programming/cli/assets/win-run-dialog.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kLiHz/Newly-Programmer-ABC/HEAD/src/begin-programming/cli/assets/win-run-dialog.png -------------------------------------------------------------------------------- /src/begin-programming/cli/assets/windows-search-powershell.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kLiHz/Newly-Programmer-ABC/HEAD/src/begin-programming/cli/assets/windows-search-powershell.png -------------------------------------------------------------------------------- /src/begin-programming/cli/cli-and-shell.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kLiHz/Newly-Programmer-ABC/HEAD/src/begin-programming/cli/cli-and-shell.md -------------------------------------------------------------------------------- /src/begin-programming/cli/common-cli-tools.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kLiHz/Newly-Programmer-ABC/HEAD/src/begin-programming/cli/common-cli-tools.md -------------------------------------------------------------------------------- /src/begin-programming/cli/common-commands.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kLiHz/Newly-Programmer-ABC/HEAD/src/begin-programming/cli/common-commands.md -------------------------------------------------------------------------------- /src/begin-programming/coding-practice.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kLiHz/Newly-Programmer-ABC/HEAD/src/begin-programming/coding-practice.md -------------------------------------------------------------------------------- /src/begin-programming/ds-algo-intro.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kLiHz/Newly-Programmer-ABC/HEAD/src/begin-programming/ds-algo-intro.md -------------------------------------------------------------------------------- /src/begin-programming/first-cpp-program.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kLiHz/Newly-Programmer-ABC/HEAD/src/begin-programming/first-cpp-program.md -------------------------------------------------------------------------------- /src/begin-programming/new-to-python.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kLiHz/Newly-Programmer-ABC/HEAD/src/begin-programming/new-to-python.md -------------------------------------------------------------------------------- /src/begin-programming/read-cpp/branches-and-loops.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kLiHz/Newly-Programmer-ABC/HEAD/src/begin-programming/read-cpp/branches-and-loops.md -------------------------------------------------------------------------------- /src/begin-programming/read-cpp/coding-convention.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kLiHz/Newly-Programmer-ABC/HEAD/src/begin-programming/read-cpp/coding-convention.md -------------------------------------------------------------------------------- /src/begin-programming/read-cpp/common-signs.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kLiHz/Newly-Programmer-ABC/HEAD/src/begin-programming/read-cpp/common-signs.md -------------------------------------------------------------------------------- /src/begin-programming/read-cpp/conclusion.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kLiHz/Newly-Programmer-ABC/HEAD/src/begin-programming/read-cpp/conclusion.md -------------------------------------------------------------------------------- /src/begin-programming/read-cpp/function.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kLiHz/Newly-Programmer-ABC/HEAD/src/begin-programming/read-cpp/function.md -------------------------------------------------------------------------------- /src/begin-programming/read-cpp/intro.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kLiHz/Newly-Programmer-ABC/HEAD/src/begin-programming/read-cpp/intro.md -------------------------------------------------------------------------------- /src/begin-programming/read-cpp/macro-and-preprocess.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kLiHz/Newly-Programmer-ABC/HEAD/src/begin-programming/read-cpp/macro-and-preprocess.md -------------------------------------------------------------------------------- /src/begin-programming/read-cpp/pointers-and-references.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kLiHz/Newly-Programmer-ABC/HEAD/src/begin-programming/read-cpp/pointers-and-references.md -------------------------------------------------------------------------------- /src/begin-programming/read-cpp/struct-and-class.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kLiHz/Newly-Programmer-ABC/HEAD/src/begin-programming/read-cpp/struct-and-class.md -------------------------------------------------------------------------------- /src/begin-programming/read-cpp/variable-declaration.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kLiHz/Newly-Programmer-ABC/HEAD/src/begin-programming/read-cpp/variable-declaration.md -------------------------------------------------------------------------------- /src/begin-programming/setup-develop-environment.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kLiHz/Newly-Programmer-ABC/HEAD/src/begin-programming/setup-develop-environment.md -------------------------------------------------------------------------------- /src/begin-programming/software-build.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kLiHz/Newly-Programmer-ABC/HEAD/src/begin-programming/software-build.md -------------------------------------------------------------------------------- /src/begin-programming/uml/class-diagram.assets/uml-aggregation-example.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kLiHz/Newly-Programmer-ABC/HEAD/src/begin-programming/uml/class-diagram.assets/uml-aggregation-example.svg -------------------------------------------------------------------------------- /src/begin-programming/uml/class-diagram.assets/uml-association-example.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kLiHz/Newly-Programmer-ABC/HEAD/src/begin-programming/uml/class-diagram.assets/uml-association-example.svg -------------------------------------------------------------------------------- /src/begin-programming/uml/class-diagram.assets/uml-class-diagram-example.drawio: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kLiHz/Newly-Programmer-ABC/HEAD/src/begin-programming/uml/class-diagram.assets/uml-class-diagram-example.drawio -------------------------------------------------------------------------------- /src/begin-programming/uml/class-diagram.assets/uml-class-diagram-example.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kLiHz/Newly-Programmer-ABC/HEAD/src/begin-programming/uml/class-diagram.assets/uml-class-diagram-example.svg -------------------------------------------------------------------------------- /src/begin-programming/uml/class-diagram.assets/uml-composition-example.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kLiHz/Newly-Programmer-ABC/HEAD/src/begin-programming/uml/class-diagram.assets/uml-composition-example.svg -------------------------------------------------------------------------------- /src/begin-programming/uml/class-diagram.assets/uml-dependency-example.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kLiHz/Newly-Programmer-ABC/HEAD/src/begin-programming/uml/class-diagram.assets/uml-dependency-example.svg -------------------------------------------------------------------------------- /src/begin-programming/uml/class-diagram.assets/uml-full-class-example.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kLiHz/Newly-Programmer-ABC/HEAD/src/begin-programming/uml/class-diagram.assets/uml-full-class-example.svg -------------------------------------------------------------------------------- /src/begin-programming/uml/class-diagram.assets/uml-generalization-example.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kLiHz/Newly-Programmer-ABC/HEAD/src/begin-programming/uml/class-diagram.assets/uml-generalization-example.svg -------------------------------------------------------------------------------- /src/begin-programming/uml/class-diagram.assets/uml-interface-inheritance-example.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kLiHz/Newly-Programmer-ABC/HEAD/src/begin-programming/uml/class-diagram.assets/uml-interface-inheritance-example.svg -------------------------------------------------------------------------------- /src/begin-programming/uml/class-diagram.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kLiHz/Newly-Programmer-ABC/HEAD/src/begin-programming/uml/class-diagram.md -------------------------------------------------------------------------------- /src/begin-programming/uml/intro-to-uml.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kLiHz/Newly-Programmer-ABC/HEAD/src/begin-programming/uml/intro-to-uml.md -------------------------------------------------------------------------------- /src/begin-programming/vm/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kLiHz/Newly-Programmer-ABC/HEAD/src/begin-programming/vm/README.md -------------------------------------------------------------------------------- /src/begin-programming/vm/assets/ubuntu-change-source-gui.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kLiHz/Newly-Programmer-ABC/HEAD/src/begin-programming/vm/assets/ubuntu-change-source-gui.jpg -------------------------------------------------------------------------------- /src/begin-programming/vm/assets/ubuntu-package-manager-example.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kLiHz/Newly-Programmer-ABC/HEAD/src/begin-programming/vm/assets/ubuntu-package-manager-example.jpg -------------------------------------------------------------------------------- /src/begin-programming/vm/try-ubuntu-on-windows.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kLiHz/Newly-Programmer-ABC/HEAD/src/begin-programming/vm/try-ubuntu-on-windows.md -------------------------------------------------------------------------------- /src/begin-programming/what-is-programming.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kLiHz/Newly-Programmer-ABC/HEAD/src/begin-programming/what-is-programming.md -------------------------------------------------------------------------------- /src/code-sharing/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kLiHz/Newly-Programmer-ABC/HEAD/src/code-sharing/README.md -------------------------------------------------------------------------------- /src/code-sharing/about-github.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kLiHz/Newly-Programmer-ABC/HEAD/src/code-sharing/about-github.md -------------------------------------------------------------------------------- /src/code-sharing/build-static-pages.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kLiHz/Newly-Programmer-ABC/HEAD/src/code-sharing/build-static-pages.md -------------------------------------------------------------------------------- /src/code-sharing/code-hosting-platform-and-vcs.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kLiHz/Newly-Programmer-ABC/HEAD/src/code-sharing/code-hosting-platform-and-vcs.md -------------------------------------------------------------------------------- /src/code-sharing/try-code-hosting-and-vcs.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kLiHz/Newly-Programmer-ABC/HEAD/src/code-sharing/try-code-hosting-and-vcs.md -------------------------------------------------------------------------------- /src/code-sharing/where-it-all-began.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kLiHz/Newly-Programmer-ABC/HEAD/src/code-sharing/where-it-all-began.md -------------------------------------------------------------------------------- /src/cpp/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kLiHz/Newly-Programmer-ABC/HEAD/src/cpp/README.md -------------------------------------------------------------------------------- /src/know-your-computer/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kLiHz/Newly-Programmer-ABC/HEAD/src/know-your-computer/README.md -------------------------------------------------------------------------------- /src/know-your-computer/buying-a-computer.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kLiHz/Newly-Programmer-ABC/HEAD/src/know-your-computer/buying-a-computer.md -------------------------------------------------------------------------------- /src/know-your-computer/interface-and-protocol.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kLiHz/Newly-Programmer-ABC/HEAD/src/know-your-computer/interface-and-protocol.md -------------------------------------------------------------------------------- /src/know-your-computer/use-electronic-products.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kLiHz/Newly-Programmer-ABC/HEAD/src/know-your-computer/use-electronic-products.md -------------------------------------------------------------------------------- /src/know-your-computer/what-are-computers.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kLiHz/Newly-Programmer-ABC/HEAD/src/know-your-computer/what-are-computers.md -------------------------------------------------------------------------------- /src/preface.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kLiHz/Newly-Programmer-ABC/HEAD/src/preface.md -------------------------------------------------------------------------------- /src/security/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kLiHz/Newly-Programmer-ABC/HEAD/src/security/README.md -------------------------------------------------------------------------------- /src/security/TODO.md: -------------------------------------------------------------------------------- 1 | PGP 发明秩事 2 | 吊销证书 3 | WKD 4 | 公钥服务器 5 | 6 | gpg 超长 RSA 7 | ed25519 8 | SSH 9 | 10 | 图片 11 | -------------------------------------------------------------------------------- /src/security/pgp-and-gpg.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kLiHz/Newly-Programmer-ABC/HEAD/src/security/pgp-and-gpg.md -------------------------------------------------------------------------------- /src/use-your-computer/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kLiHz/Newly-Programmer-ABC/HEAD/src/use-your-computer/README.md -------------------------------------------------------------------------------- /src/use-your-computer/acquire-and-install-apps.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kLiHz/Newly-Programmer-ABC/HEAD/src/use-your-computer/acquire-and-install-apps.md -------------------------------------------------------------------------------- /src/use-your-computer/assets/default-name-to-be-replaced.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kLiHz/Newly-Programmer-ABC/HEAD/src/use-your-computer/assets/default-name-to-be-replaced.jpg -------------------------------------------------------------------------------- /src/use-your-computer/assets/input-chinese-by-pinyin.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kLiHz/Newly-Programmer-ABC/HEAD/src/use-your-computer/assets/input-chinese-by-pinyin.jpg -------------------------------------------------------------------------------- /src/use-your-computer/assets/right-click-on-desktop.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kLiHz/Newly-Programmer-ABC/HEAD/src/use-your-computer/assets/right-click-on-desktop.jpg -------------------------------------------------------------------------------- /src/use-your-computer/assets/win-11-explorer-show-file-extension.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kLiHz/Newly-Programmer-ABC/HEAD/src/use-your-computer/assets/win-11-explorer-show-file-extension.jpg -------------------------------------------------------------------------------- /src/use-your-computer/assets/win-explorer-default.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kLiHz/Newly-Programmer-ABC/HEAD/src/use-your-computer/assets/win-explorer-default.jpg -------------------------------------------------------------------------------- /src/use-your-computer/assets/win-explorer-show-file-extension.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kLiHz/Newly-Programmer-ABC/HEAD/src/use-your-computer/assets/win-explorer-show-file-extension.jpg -------------------------------------------------------------------------------- /src/use-your-computer/assets/win-notepad-with-contents.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kLiHz/Newly-Programmer-ABC/HEAD/src/use-your-computer/assets/win-notepad-with-contents.jpg -------------------------------------------------------------------------------- /src/use-your-computer/assets/windows-desktop-capture.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kLiHz/Newly-Programmer-ABC/HEAD/src/use-your-computer/assets/windows-desktop-capture.jpg -------------------------------------------------------------------------------- /src/use-your-computer/assets/windows-running-notepad.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kLiHz/Newly-Programmer-ABC/HEAD/src/use-your-computer/assets/windows-running-notepad.jpg -------------------------------------------------------------------------------- /src/use-your-computer/browsing-internet.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kLiHz/Newly-Programmer-ABC/HEAD/src/use-your-computer/browsing-internet.md -------------------------------------------------------------------------------- /src/use-your-computer/file-format.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kLiHz/Newly-Programmer-ABC/HEAD/src/use-your-computer/file-format.md -------------------------------------------------------------------------------- /src/use-your-computer/files-and-directories.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kLiHz/Newly-Programmer-ABC/HEAD/src/use-your-computer/files-and-directories.md -------------------------------------------------------------------------------- /src/use-your-computer/font-and-font-rendering.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kLiHz/Newly-Programmer-ABC/HEAD/src/use-your-computer/font-and-font-rendering.md -------------------------------------------------------------------------------- /src/use-your-computer/interact-with-pc.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kLiHz/Newly-Programmer-ABC/HEAD/src/use-your-computer/interact-with-pc.md -------------------------------------------------------------------------------- /src/use-your-computer/io-devices.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kLiHz/Newly-Programmer-ABC/HEAD/src/use-your-computer/io-devices.md -------------------------------------------------------------------------------- /src/use-your-computer/markup-lang-and-rich-text.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kLiHz/Newly-Programmer-ABC/HEAD/src/use-your-computer/markup-lang-and-rich-text.md -------------------------------------------------------------------------------- /src/use-your-computer/network-and-internet.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kLiHz/Newly-Programmer-ABC/HEAD/src/use-your-computer/network-and-internet.md -------------------------------------------------------------------------------- /src/use-your-computer/organize-your-files.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kLiHz/Newly-Programmer-ABC/HEAD/src/use-your-computer/organize-your-files.md -------------------------------------------------------------------------------- /src/use-your-computer/safe-internet-connection.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kLiHz/Newly-Programmer-ABC/HEAD/src/use-your-computer/safe-internet-connection.md -------------------------------------------------------------------------------- /src/use-your-computer/what-can-internet-do.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kLiHz/Newly-Programmer-ABC/HEAD/src/use-your-computer/what-can-internet-do.md -------------------------------------------------------------------------------- /src/use-your-computer/work-efficiently.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kLiHz/Newly-Programmer-ABC/HEAD/src/use-your-computer/work-efficiently.md -------------------------------------------------------------------------------- /src/web-surfing/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kLiHz/Newly-Programmer-ABC/HEAD/src/web-surfing/README.md -------------------------------------------------------------------------------- /src/web-surfing/better-web-experience.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kLiHz/Newly-Programmer-ABC/HEAD/src/web-surfing/better-web-experience.md -------------------------------------------------------------------------------- /src/web-surfing/intro-to-mastodon.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kLiHz/Newly-Programmer-ABC/HEAD/src/web-surfing/intro-to-mastodon.md -------------------------------------------------------------------------------- /src/web-surfing/learn-english.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kLiHz/Newly-Programmer-ABC/HEAD/src/web-surfing/learn-english.md -------------------------------------------------------------------------------- /src/web-surfing/markdown-tips.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kLiHz/Newly-Programmer-ABC/HEAD/src/web-surfing/markdown-tips.md -------------------------------------------------------------------------------- /src/web-surfing/mfa-intro.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kLiHz/Newly-Programmer-ABC/HEAD/src/web-surfing/mfa-intro.md -------------------------------------------------------------------------------- /src/web-surfing/notes-taking.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kLiHz/Newly-Programmer-ABC/HEAD/src/web-surfing/notes-taking.md -------------------------------------------------------------------------------- /src/web-surfing/obtain-information.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kLiHz/Newly-Programmer-ABC/HEAD/src/web-surfing/obtain-information.md -------------------------------------------------------------------------------- /src/web-surfing/search-for-help.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kLiHz/Newly-Programmer-ABC/HEAD/src/web-surfing/search-for-help.md -------------------------------------------------------------------------------- /src/web-surfing/web-accessibility-intro.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kLiHz/Newly-Programmer-ABC/HEAD/src/web-surfing/web-accessibility-intro.md --------------------------------------------------------------------------------