Nginx Tutorial Nginx (pronounced “engine-x”) is a powerful, high-performance web server, reverse proxy, and load balancer.This tutorial covers basic configurations for common use cases including redirects, port mapp 2023-04-17 #Nginx
Docker Deployment Project - Demo tomcat 0. Relevant File apache-tomcat-9.0.73.tar.gz jdk-8u361-linux-x64.tar.gz 1. Write DockerfileWe will place the apache-tomcat-9.0.73.tar.gz and jdk-8u361-linux-x64.tar.gz files in the same folder.And in 2023-04-17 #Docker
IDEA Automatically Generates Author Information File -> Settings -> Editor -> File and Code Templates -> Includes -> File Header 12345/** * @author HardyHu * @email 1243971719@qq.com * @date ${DATE} ${TIME} */ 2023-03-22
Arco Design Pro https://pro.arco.design/ localesrc/locale/zh-CN.tssrc/locale/en-US.ts 2023-03-07 #Arco
Vue3 - Common Composition API 1. SetupDemo 1: Data, function 123456789101112131415161718192021<template> <h1>一个人的信息</h1> <h2>姓名: {{ name }}</h2> <h2>年龄: {{ age & 2023-02-26 #Vue3
Vue3 - Create a Project 1. Create Project1.1 Create using vue-cliOfficial document 123456789# Viewing the @vue/cli version and ensure that the @vue-cli version is 4.5.0 or highervue --version# Install or update your @vue-cli 2023-02-26 #Vue3
TypeScript Tutorial 0. Offical Dochttps://www.typescriptlang.org/docs/ 1. Installing TypeScript and DemoEnter the command line and following command: 12npm install -g typescripttsc -V Compile the ts file: 1tsc xxx.ts 2023-02-17 #TypeScript
Data Structure and Algorithm - Sort 0. Introduction 0. Introduction 1. Bubble sort 2. Insertion sort 3. Selection sort 4. Merge sort 5. Quick sort 6. Heap sort 1. Bubble sortA simple sorting algorithm that repeatedly steps through the 2023-02-16 #cpp
Installing Nodejs on Linux 0. ForewordNodejs 1. Download Nodejs Installation Package12cd /usr/localwget https://nodejs.org/dist/v16.15.1/node-v16.15.1-linux-x64.tar.xz 2. Decompress12tar -xvf node-v16.15.1-linux-x64.tar.xzmv n 2023-02-02 #Linux #Nodejs