H5 series Ten Ways to Optimize Page Loading Speed Essay classification-HTML5 40 Most Important Technical Points in HTML5 Meta collation Details of Web Performance Management HTML5 offline cache -manifest introduction JS series Writing High Performance JavaScript Interesting JavaScript Native Array Function JavaScript Data Access Performance Optimization Scheme Nine Sorting Algorithms Implemented by JavaScript Javascript-Arguments Object ..
Tag : GitHub
Pro Git study notes Document address:Pro GitOriginal address:PRO GIT study notes 1. Git Starts Configuration before first running Git User information git config –global user.name “your user name” git config –global user.email “your email address” Text editor To set the default text editor:git config –global core.editor emacs View configuration information git config –list 2. Git ..
Based onvue-cliOptimizedwebpackConfiguration It can be roughly divided into the following points viaexternalsConfigure to extract common libraries and reference external chains ConfigurationCommonsChunkPluginExtract common codes (vue-cli(already done) Make good use ofalias(vue-cliPart of it is configured) EnableDllPluginAndDllReferencePluginPrecompiled library files happypackStart a multi-core build project willwebpack-parallel-uglify-pluginTo replacewebpackin-houseUglifyJSFor code compression confusion UpgradewebpackTo version 3.x onScope Hoisting externals Document addresshttps://doc.webpack-china.org … ..
For people who love writing, it is very important to choose a suitable blog platform. As a Web developer, we certainly hope to have a highly customized blog platform to show our unique personality and record our long-term learning work. At the same time, we also hope that this platform can make it easy for ..
Before, when using Github issues to build a blog platform, I studied how to obtain Github authorization and call API. Later, I chose a simpler account password and Token method. However, there is feedback from readers that such operations are still somewhat troublesome, and it is always unsafe to enter an account password on a ..
Introduction At the time of graduation, some articles that came into contact with talked about iOS engineering modularization (cocopodization) everywhere. I have also been trying to decouple the company’s project codes. however, because it is really unnecessary for one person to develop engineering cocopodization, I have not studied the method of engineering cocopodization for a ..
Now I have an open source project that uses Docker and is developed in JAVA, but now the process of Docker image compilation is that I compile JAVA programs locally, then make Docker images locally, and then push them into DockerHub. However, there are many problems in the middle, such as using them to mirror ..
Normally, if there is no hello-world image locally, it will be downloaded to github in the remote warehouse automatically, but this phenomenon will occur when I run docker run hello-world for the first time. What seems to be the dialing timeout? Thank you very much for the solution. Docker download image is downloaded from the ..
Is this a Ruby project? If it can work, how will it work? The link is as follows:https://github.com/clarkgrubb … A typical Ruby project will have one under its root directory.GemfileFile, this project does not have. In addition, I checked the ruby file in this project and found only two scripts. From the file name, I ..
When Jekyll writes a blog post, the default code block format is: {% highlight javascript %}var a = 1;var b = 2;var c = a + b;{% endhighlight %} How to configure it to support Markdown’s code block format, namely: “`rubyvar a = 1;var b = 2;var c = a + b;“` In_config.ymlFor configuration in ..
1. First, use jekyll to generate the simplest blog: jekyll new manxisuo.github.io It operates normally locally, as shown in the following figure: 2. Build a new warehouse in GitHub: Address:https://github.com/manxisuo/manxisuo.github.io Upload the blog code to the master branch of the repository.Not functioning properly, as shown in the figure below: That is, there is no list ..
I want to use octopress on another computer and read various articles introducing that it is a source branch of clone, but I found that there is no such branch on my github. Have you encountered this problem and how did you solve it? Branch created by itself ~~rake deploy will create gh-pages branch by ..