[miscellaneous] detailed explanation of the configuration of the C & C + + code beautification tool Uncrustify in VScode

Detailed explanation of Uncrustify configuration of C & C + + code beautification tool in VScode catalog: 1: Overview 2: Download 3: Installation 4: Play Uncrustify in vscode 0: update Journal 2022 / 2 / 5 update: Chapter 3.3: use. Later, other usage methods will be updated and various ides may be used to use Uncrustify. 1: Overv ...

Added by ab4net on Sat, 05 Feb 2022 09:55:00 +0200

Python geospatial analysis guide (2nd Edition) learning notes 01

catalogue preface 1, Mission 2, Implementation and analysis 1. Import and storage 2. Construct data model 3. Render map elements  4. Perform the query operation and complete the drawing 3, Summary preface This book assumes that readers understand the basic knowledge of Pyhon and information technology, and at least have a cer ...

Added by billman on Tue, 25 Jan 2022 09:02:12 +0200

Simple configuration of TeX document writing environment by Visual Studio Code

In the past, when writing papers, I used to use word to roll up documents, and finally save pdf. The pdf documents generated in this way are always uncomfortable, but they feel that the learning cost of latex is high and they are not interested in learning. But sooner or later, I have to learn. I spent an afternoon learning about latex and conf ...

Added by stuartc1 on Fri, 14 Jan 2022 02:26:47 +0200

JavaScript scripting language - usage details of all basic data types (comprehensive)

notes Single line comment ctrl + / (VSCode) // Multiline comment Shift + alt + a(VSCode) /**/ There are keyboard shortcut settings in the lower right corner of VSCode - > Enter default shortcut - > double click to change JS input / output statement methodexplainascriptionalert(msg)Browser pop-up alert boxbrowserconsole.log ...

Added by rblais666 on Thu, 13 Jan 2022 18:39:03 +0200

Installation and use of cpp boost library based on ubuntu and windows, including Jupiter notebook / Lab exus clicking kernel and vs code to add a third-party library

reference material All references are from the boost official website https://www.boost.org/ Introduction to boost library Too lazy to write Installation of boost library ubuntu based on linux Official guide https://www.boost.org/doc/libs/1_78_0/more/getting_started/unix-variants.html The writing is vague Download and unzip https:// ...

Added by gojiita on Tue, 04 Jan 2022 22:16:19 +0200

Detailed explanation of vscode MinGw 8 configuring C + + environment variables

1. Download MinGW compiler The difference between IDE and compiler IDE (integrated development environment) is an application program used to provide a program development environment. It generally includes tools such as editor, compiler, debugger and graphical user interface. It is a development software suite Compiler: converts one languag ...

Added by jaapoost on Sun, 19 Dec 2021 09:37:51 +0200

Data visualization - ecarts - pie chart

Data visualization - ecarts - pie chart (VI) Baidu Encyclopedia - pie chart Echarts series titleaddressEcharts first experiencePortalEcharts general configurationPortalHistogramPortalLine chartPortalScatter diagramPortalEcharts official websitePortal Basic implementation of pie chart Implementation steps I Build the most basic code structu ...

Added by sandrol76 on Sun, 19 Dec 2021 00:05:36 +0200

ubuntu vscode configures c + + through cmake and debugs like VS2019

  previous   Configure c + + for vscode under linux to debug it like visual studio 2019 Similar to this article, the article configures vscode to debug and compile with vs2019, but the previous article is not very practical. It is configured in the form of command line. This method is good for small projects. If it is a very complex p ...

Added by Dan The Man on Thu, 09 Dec 2021 00:05:32 +0200

Learn and discard the scope and scope chain in JavaScript

What is scope? A scope defines the visibility or accessibility of a variable. In vernacular, whether a variable can be accessed or referenced is determined by its scope. There are three scopes in JavaScript. global scopeFunction scope (local scope)Block scope let globalVariable = "I am a variable under global scope" function func() { let ...

Added by php1999 on Wed, 01 Dec 2021 16:13:23 +0200

Difference between export default and export

Difference between export default and export: 1. Default export and default import Default export syntax: export default is the default exported memberDefault import syntax: import receive name from 'module identifier' export default //a.js const str = "blablabla~"; export default str; Corresponding import method: //b.js import str from 'a ...

Added by Blu_Smurf on Mon, 29 Nov 2021 00:53:24 +0200