Front end applications such as React/Vue are automatically packaged and upgraded through jenkins, and the whole process is demonstrated (more than 10000 words are a little long)

At present, the development environment is managed by the front-end team. There are more and more version distribution projects. I decided to develop a set of jinkens automatic packaging and deployment. After searching online, they are too old or unavailable. After three days of research, I finally completed it and wrote it down and shared it w ...

Added by venkyphp on Wed, 09 Mar 2022 00:35:23 +0200

Development of WEB template printing program

Transferred from: https://www.cnblogs.com/gzggyy/p/3167208.html This paper uses the free control Lodop+JavaScript to realize accurate template printing. The client needs to install Lodop printing application. In fact, this scheme is relatively simple. The template design process can be realized by using an htm file, but it still takes some t ...

Added by alexweb on Mon, 07 Mar 2022 19:02:33 +0200

Distributed file system FastDFS installation tutorial

Introduction: the virtual machine system is CentOS7. FastDFS has been installed on the original virtual machine. Due to the version problem, it cannot run. Therefore, delete the original FastDFS system and reinstall it.Note: due to the unclean deletion of FastDFS at the beginning, the incorrect version of cmake and various small problems, t ...

Added by irish21 on Fri, 04 Mar 2022 15:11:15 +0200

Java -- generics and collections

generic paradigm A generic type is actually a type parameter used to specify a type. In order to count students' scores, it is required to design a Score object, including course name, course number and course Score. However, there are two kinds of scores: one is to take excellent, good and qualified as the result, and the other is to use dig ...

Added by saami123 on Tue, 01 Mar 2022 12:45:50 +0200

Git series tutorial git basic operation 4

Git basic operation Git's job is to create and save snapshots of your project and compare them with subsequent snapshots. This chapter describes the commands for creating and submitting snapshots of your project. Git commonly uses the following six commands: git clone, git push, git add, git commit, git checkout and git pull, which will be d ...

Added by weekenthe9 on Thu, 24 Feb 2022 03:48:07 +0200

#Basic management of Linux storage

1, Equipment identification After the equipment is connected to the system, it exists in the form of files Equipment file name: SATA/SAS/USB /dev/sda,/dev/sdb #s means SATA or SAS or USB,; d is hard DISK; a represents the first block, b represents the second block /dev/sda1 express SATA The first partition of the first hard d ...

Added by T_Hayden on Mon, 21 Feb 2022 09:46:00 +0200

Package cannot be found in vscode virtual environment

​ Error details: Traceback (most recent call last): File "D:\software\Anaconda3\envs\swim\lib\site-packages\numpy\core\__init__.py", line 22, in <module> from . import multiarray File "D:\software\Anaconda3\envs\swim\lib\site-packages\numpy\core\multiarray.py", line 12, in <module> from . import overrides File "D:\sof ...

Added by fwbbetsy on Thu, 17 Feb 2022 07:39:14 +0200

Docker Compose rapid deployment of multi Container Services

1 what is Docker Compose When we define the container, we use the command of Docker and build Docker, and then use the command of Docker. However, the application system of microservice architecture generally includes several microservices, and each microservice will generally deploy multiple instances. If each microservice needs to be started ...

Added by codeman on Sun, 13 Feb 2022 15:55:07 +0200

Git study notes

Git common syntax [TOC] Introduction to Git describe Git (pronounced / g) ɪ t/. ) It is an open source distributed version control system, which can effectively and quickly deal with the version management of projects from very small to very large. Git is an open source version control software developed by Linus Torvalds to help manage Lin ...

Added by amir1985 on Sun, 13 Feb 2022 12:51:18 +0200

Using Web Uploader file upload component to assist Java to realize breakpoint continuation

1, Breakpoint continuation Breakpoint continuation overview Breakpoint continuation means that when downloading or uploading, the download or upload task is divided into several parts, and each part is uploaded or downloaded by one thread. In case of network failure, you can continue to upload and download the unfinished part from the ...

Added by simwiz on Sat, 12 Feb 2022 06:09:26 +0200