Beginners can understand it at a glance. Python 1

Beginners can understand the introduction of python at a glance First introduce the most basic usage of math. Using math can help you better perform simple calculations, such as square, root, etc. import math math.sqrt(12.0) dir(math) dir() returns all properties and methods of the specified object without values. This function will return ...

Posted by nocniagenti on Thu, 28 Oct 2021 22:30:44 +0200

Basic introduction of ESLint

What is eslint ESLint Is a code checking tool used to check whether your code meets the specified specifications (for example, there must be a space before and after =). standard Industry recommended specifications; When creating the project, we use the rules of JavaScript Standard Style code styleCustom specification. You and your team c ...

Posted by jonnypixel on Mon, 18 Oct 2021 22:44:27 +0200

Tsinghua boss tells you the perfect terminal tool for Python developers

Rich is a Python library that can provide you with rich text and beautiful and exquisite formats in the terminal. Using Rich API, you can easily add various colors and styles to the terminal output. It can draw beautiful tables, progress bars, markdown, highlight the source code of syntax and backtracking, and so on. There are countless exce ...

Posted by jamesflynn on Thu, 14 Oct 2021 23:22:59 +0200

2. HTML/CSS learning notes 2 - try to write out my first web page and the concept of elements

First page Software used: vscode Recommended plug-ins to install in vscode: 1. Emmet plug-in: it can automatically generate HTML code fragments. It can quickly generate batches containing nested structures through tab key combined with its specific syntax. This plug-in is built-in in vscode, and I can use it directly without relevant configu ...

Posted by tinyashcities on Tue, 05 Oct 2021 02:54:18 +0200

Big data ELK in 2021: using VSCode to operate job search case of liepin.com

The most detailed big data ELK article series in the whole network. It is strongly recommended to collect and pay attention!   The new articles have listed the historical article directory to help you review the previous knowledge focus. catalogue Job search case of liepin.com 1, Demand Data set introduction 2, Create index 1. Cr ...

Posted by stunna671 on Sat, 02 Oct 2021 02:56:13 +0200

Scss study notes

In vscode, you first need to install live sass compiler to compile sass into css in real time. Click watch sass at the bottom to compile the sass file into a css file with the same name in real time. nesting I think the most important function of sass is that it can be nested layer by layer in html, instead of selecting an element in css ...

Posted by spider22 on Fri, 24 Sep 2021 17:03:24 +0200

C + + print files -- files and streams

Files and streams Due to the needs of the project, it is required to output the image data to the file after processing. In the file, different kinds of data will be displayed in table layout. At first, it was not easy to do, and then try it 1. Basic knowledge To process files in C + +, you must include header files and in the C + + source ...

Posted by scottb1 on Thu, 23 Sep 2021 09:12:41 +0200

TypeScript core foundation

Configure VScode to automatically generate TS files Generate ts configuration file tsc --init Activate output path When the configuration is saved, it is output to the specified path Click Run task under the terminal Click typescript Click tsc monitor Basic data types in TS boolean type let flag: boolean = true; flag = false; num ...

Posted by grayscale2005. on Thu, 23 Sep 2021 03:06:10 +0200

[project series] - Fundamentals of grain Mall (second brush)

1. Environmental construction 1.1 create project microservices Paste a pom file from the sub module into the parent project, and then modify it: <?xml version="1.0" encoding="UTF-8"?> <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://mav ...

Posted by Possum on Tue, 21 Sep 2021 19:09:39 +0200

Using vtune on the server

install Select the appropriate download method here: https://software.intel.com/content/www/cn/zh/develop/tools/oneapi/base-toolkit/download.html If there is no GUI, use the command in Command Line Installation to download and install. My is this: wget https://registrationcenter-download.intel.com/akdlm/irc_nas/17769/l_BaseKit_p_2021.2.0.288 ...

Posted by Ilovetopk on Mon, 20 Sep 2021 16:03:13 +0200