Why learn Grovvy The official recommended language of Gradle is Groovy, which is a jvm language. If you want to perform plug-in modules, hot repairs, complex construction systems, etc., you need a little understanding of Groovy. You don't need to learn the details of Groovvy. Generally, the benefits are too great. Low, like bloggers only use Gradle to build SpringBoot, and the main project language is not Groovy. There are quite a few Gradle users who have no basic concepts at all. Whenever they encounter a need or problem, they need to find it online. This is a misunderstanding. Gradle is not just a configuration script, I personally think that behind it is a combination of two languages: Groovy Language + Gradle DSL The DSL part can also be expanded. If you are using the Android ecosystem, there will also be Android DSL, a total of three. The full name of DSL is Domain Specific Language, that is, "domain specific language", which means that this language is not univer...
Some people use Static CMS to design things like Jekyll and Hexo, but almost none of these things have more user-friendly content editors, such as powerful things like Divi, so there is another trick, which is to edit the website with WordPress. , And then use some static generators to generate static websites. There is a set of the simplest and most effective to try: Simply Static. After installation, select "Save for offline use" in Settings and "Temporary Files Directory" in Advanced settings to set the path to be exported. The permissions of the path must be readable and writable. Then you can go to Generate and click "Generate Static Files". The set path may not allow you to click URL download directly, you can download it in other ways, or write an automatic sftp transmission to other places. After testing, the plug-in can normally produce the design and layout edited by Divi.
Since Nodejs is an ecosystem with great compatibility problems, how to make different versions of Nodejs coexist and manage will be a very important block. NVM is used to deal with this problem. installation First go to the official Github Repo to check the latest version, and remember to replace the command with the latest version. wget -qO- https://raw.githubusercontent.com/nvm-sh/nvm/v0.37.2/install.sh | bash source ~/.bashrc After the installation is complete, check the version. nvm –version List local version nvm ls There should be no Nodejs version when NVM is first installed. List remote installable versions It is recommended to install LTS for the newer versions. For some old applications, only certain old versions can be executed and must be downloaded. nvm ls-remote Install the specified version Will automatically download and install the specified node version from the remote. nvm install v12.20.2 Use node -v to check the version after installation. Use specified versi...
Comments
Post a Comment