![]() |
|---|
This volume concentrates upon methods of accessing the Internet and techniques for obtaining information, whilst also providing concise introductory configurations for relevant popular and representative software, together with explanations of the underlying principles.
** The majority of the example URLs in this book, together with further materials, are collected in ChiseiKoya. The relevant chapters of the book are best paired with the repository on unrestricted internet access for improved effect! **
Key points of the update from This Book Can Connect You to the Internet to A Detailed Exposition of Network Proxies and VPN Applications:
- Addition of a rapid-access chapter on unrestricted internet techniques
- Addition of related methods of internet access together with software configuration procedures
- Explanation of the solution to the crx_header_invalid error
- Remedies for situations in which a VPN connects to a server yet is unable to access any web pages or other network resources
- Resolution of the problem whereby Windows cannot set a system proxy
- Built-in probot robot within the project; addition of Strategist Mode to the method
Other updates (click to expand!)
* Addition of an explanation of virtual telephone registration schemes
* Methods for registering new Google accounts
* Webpage time machines and the location of similar sites
* Utilisation of a personal blog as an intermediate relay for internet connectivity
In addition, unnecessary repetitive content has been streamlined, images are now supported by postimages, and the project size has been reduced from 30 MB to 144 KB, rendering it highly convenient for online deployment and download. Forking of this book is warmly welcomed!
The browser will additionally warn that an attacker may be attempting to steal your information from xxx.github.io, that this server cannot prove it is xxx.github.io, and that your computer’s operating system does not trust its security certificate. This may result from a configuration error or from an attacker intercepting your connection. Continued access then yields a 403 error.
The remedy!: Change to one of the reliable public DNS resolvers listed below, then refresh the cache with ipconfig /flushdns (Windows) or the equivalent command on your operating system. Brief explanation of the cause: the DNS supplied by many internet service providers issues an incorrect or incomplete root certificate; substitution with a trustworthy third-party DNS capable of furnishing the correct certificate for the accessed website resolves the issue. The following options are widely used by international users, including those in Russia and other regions:
- Google DNS: 8.8.8.8, 8.8.4.4
- Cloudflare DNS: 1.1.1.1, 1.0.0.1
- Quad9 DNS: 9.9.9.9, 149.112.112.112
- Yandex DNS (convenient for users in Russia and neighbouring countries): 77.88.8.8, 77.88.8.1
- Baidu DNS: 180.76.76.76
- Alibaba DNS: 223.5.5.5, 223.6.6.6
- Tencent DNS: 119.29.29.29, 182.254.116.116
- Fork this book to your own repository
- Modify docs/index.html, changing the
repovalue withinwindow.$docsify = {}to that of your own repository - In Settings, locate GitHub Pages and select the
master branch / docs folder - Visit
https://your-GitHub-username.github.io/fq-bookto observe the result
Required Environment::git、node; the installation is simple—just click "Next" until the installation is complete.
- Right-click and select
git bash, then enternpm i docsify-cli -gin the command line - Click
clone or downloadto download the.zipfile and extract it - Navigate to the
fq-book-master/docsdirectory - Right-click to open
git bashand enterdocsify init . - Use
docsify serveto complete the local deployment - Enter
localhost:3000in the browser to view the result 😂
For further details, please refer to the docsify official documentation Using Offline Explorer, the entire webpage content of this book may be downloaded locally for offline viewing Alternatively, one may convert this book from the docsify format to the gitbook generation format and utilise its built-in commands to produce a PDF of this book
Taking 01user as an example, during local deployment the links to the older version of the images have become invalid, while the new version has adopted support via postimage; it is therefore necessary to upgrade to this book II. Obtaining updates is in fact exceedingly straightforward: on the basis of a fork, execute the following commands
git clone https://github.com/your-github-username/fq-book.git
cd fq-book
git remote add upstream https://github.com/Excalibra/fq-book.git
# Should a necessary branch change be required, it is still appropriate to use: git fetch --all
git fetch upstream
# Those familiar with Git are advised to use: git pull upstream master --allow-unrelated-histories in order to update by means of code review
git reset --hard upstream/master
Commit to one’s own repository
git add .
git commit -m "test"
# This command is merely convenient for newcomers or in cases of necessity for a forced push; those with some knowledge of Git are still recommended to use: git push -u --force-with-lease origin master
git push -u -f origin master
Enter the account credentials and password to upload to one’s own repository and thereby complete the remote update of the GitHub account repository. For more detailed operational instructions regarding Git commands, please consult the official Git documentation. In special circumstances, it may be necessary to involve proxy, mirror or shallow-clone settings
git client proxy settings
git config --global http.proxy 'socks5://127.0.0.1:1080' && \
git config --global https.proxy 'socks5://127.0.0.1:1080'
git client cancellation of proxy
git config --global --unset https.proxy
git config --global --unset http.proxy

