Construction of esp8266 Linux subsystem (WSL)-VSCode compilation environment

Construction of esp8266 Linux subsystem (WSL)-VSCode compilation environment Install and configure wsl (I use Debian) Install wsl View system version cat /etc/os-release Switch software installation source (Tsinghua image is used here) https://mirrors.tuna.tsinghua.edu.cn/help/debian/ Edit source list sudo nano /etc/apt/source ...

Posted by Nymphetamine on Tue, 21 Dec 2021 06:27:14 +0100

Rapid development of grain mall VUE

This article is a personal note to deepen your impression. Please see the original author's article Original link: https://blog.csdn.net/hancoder/article/details/107007605 1, ES6 ECMAScript is a standard javascript implementation VS environment construction As I wrote before, you need to install the following plug-ins in VScode: Auto Clos ...

Posted by dechamp on Sun, 19 Dec 2021 02:04:54 +0100

[learning notes] basic JavaScript

preface If you want to do well, you must first sharpen your tools. In order to improve development efficiency, VScode is selected. Management - Settings - common settings - font Consolas, 'Microsoft YaHei Light', monospace Chinese vscade Prettier formatting code (indented 2 cells) Auto Rename Tag synchronously modifies tags CSS support f ...

Posted by Braveheartt on Sat, 18 Dec 2021 19:34:58 +0100

Using Vue JS build VS Code extension

Using Vue JS build VS Code extension Visual Studio (VS) Code is one of the favorite code editors used by developers in their daily tasks. It is built with scalability in mind. To some extent, most of the core functions of VS Code are built as extensions. You can view the VS Code extension repository( https://github.com/microsoft/vscode/tree/ ...

Posted by osusano on Fri, 17 Dec 2021 17:32:57 +0100

Summary of common methods of operating arrays

1.length() method Gets the length of the array let a = [1,2,3,4,5,6]; console.log(a.length); // 6 starts with 1 2.join() method, toString() method and toLocaleString() method Array to string let a = [1, 2, 3, 4, 5, 6]; console.log(a.join()); //1,2,3,4,5,6 console.log(a.join("?")); //1?2?3?4?5?6 3.reverse() method Invert the order of arr ...

Posted by bilbot on Fri, 17 Dec 2021 10:57:55 +0100

After vscode is saved, the code is automatically formatted and configured

1. Recently, I took over the second project. The previous project was built based on vue + element + admin, an excellent background management platform. It was directly built by the company leaders. When I took over, I just did some simple business development. Recently, I took over a system written by an outsourcing company, which is based on ...

Posted by Devsense on Thu, 09 Dec 2021 01:38:57 +0100

My first experience of Go + language -- zero basic learning Go + crawler

My first experience of Go + language - (4) zero basic learning Go + crawler "My first experience of Go + language" | the essay solicitation activity is in progress Go + language is very suitable for writing crawler programs. It has the advantages of perfect concurrency mechanism, large number of concurrency, less resource occupat ...

Posted by McManCSU on Wed, 01 Dec 2021 12:54:19 +0100

Struct of Rust: defining and instantiating structs

development environment Windows 10Rust 1.56.1     VS Code 1.62.3   Project engineering The last project trust demo will continue here structural morphology   A structure is similar to a tuple. Like tuples, fragments of structures can be of different types. Unlike tuples, we will name each data segment so that we can clearly un ...

Posted by daveoliveruk on Mon, 29 Nov 2021 10:27:34 +0100

20211115-20211121: the difference between less and sass; Scope; Reflow redrawing; this point; Applet learning

1, Precompiled style is more powerful than css style, including variables, nesting, operation, mixing, inheritance, color processing, and functions The difference between less and sass Variable symbol: sass$,less@ less has a block level scope and sass is a global scope Conditional statements: sass supports ifelse, for; less not supported File r ...

Posted by waseembari1985 on Mon, 22 Nov 2021 04:45:08 +0100

2 - branch and loop statements

2 - branch and loop statements 1. Branch statement if switch 2. Circular statement while for do while 3. goto statement (jump statement) 1. What is a statement? C statements can be divided into the following five categories: Expression statementFunction call statementControl statementCompound statementEmpty statement Control statements a ...

Posted by radi8 on Wed, 17 Nov 2021 10:31:53 +0100