Anaconda's installation and use

1, Download Anaconda Official website address: https://www.anaconda.com/ Download steps 1. Click Get Started 2. Click Download Anaconda installers 3. Select the corresponding system 4. Select the number of digits corresponding to the system 2, Install Anaconda 1. Find the downloaded installation package and right-click to run as ...

Posted by danf_1979 on Wed, 09 Feb 2022 07:08:24 +0100

[algorithm competition learning] academic frontier trend - paper code statistics

Task 3: thesis code statistics 3.1 task description Task topic: thesis code statistics, statistics related to the codes in all papers;Task content: use regular expressions to count code connections, pages and chart data;Task achievement: learn regular expression statistics; 3.2 data processing steps In the original arxiv data set, the autho ...

Posted by sunilj20 on Wed, 09 Feb 2022 06:40:29 +0100

Use webpack to build projects

  1. You can see on the official website of webpack that webpack is a File packaging tool, which packages complex File Dependencies into independent resource files. let me put it another way, In webpack, all files are modules. Load files through loader, inject hooks through plugin, and finally output files combined by m ...

Posted by acey99 on Wed, 09 Feb 2022 03:41:34 +0100

Learn more about Webpack - writing loader

How to write a Loader Official documentation: https://webpack.docschina.org/contribute/writing-a-loader/https://webpack.docschina.org/api/loaders/ Loader is just a JavaScript module exported as a function. This function is called when the loader converts resources. The given function will call loader API And accessed through this context. loa ...

Posted by Pryach on Wed, 09 Feb 2022 02:46:48 +0100

Front end basics Chapter 8 - CSS

preface❤️ In order to illuminate the night sky, the stars stand high in the sky ❤️ 1, CSS Chapter 8 (1) 2D conversion one ️⃣ Transformation is one of the subversive features in CSS3, which can realize the effects of element displacement, rotation, scaling and so on; two ️⃣ transform can be simply understood as deformation: Move: transl ...

Posted by sheckel on Wed, 09 Feb 2022 00:17:30 +0100

Front end learning [html basics]

Html basic learning Learning website: freeCodeCamp 1. Title element h <h1> Primary title </h1> <h2> Secondary title </h2> ....... 2. Paragraph element p <p> paragraph </p> By convention, all HTML tags should be lowercase 3. Notes <!-- I am html Notes for --> <p> There are notes on it & ...

Posted by ASDen on Tue, 08 Feb 2022 18:14:45 +0100

Vue3 - Vuex use

Vuex is suitable for complex state management Install the specified version in Vue3 npm install vuex@next Basic use process of Vuex Simple version Create a folder at the same level as components store / index js import {createStore} from 'vuex' const store = createStore({ state(){ return{ count:0 } }, mutations:{ ...

Posted by Aérolithe on Tue, 08 Feb 2022 13:42:16 +0100

Using CSS Grid to build complex layout is a super practical skill!

Author: shadeTranslator: front end XiaozhiSource: dmitripavlutinThere are dreams and dry goods. Wechat search [Daqian world] pays attention to this dish washing wisdom who is still washing dishes in the early morning.This article GitHub https://github.com/qq449245884/xiaozhi There are some complete series of articles and interview materials in ...

Posted by jasonscherer on Tue, 08 Feb 2022 09:29:48 +0100

Springboot integrates web related technologies

1, Introduction to spring boot filter Foundation & actual combat 1.1 filter What is a filter It is implemented based on Servlet Technology. In short, the filter plays the role of filtering. It helps us filter some specified URLs and do some special processing in the development of web projects What does the filter mainly achieve ...

Posted by m2babaey on Tue, 08 Feb 2022 07:01:11 +0100

Build component library from 0 to 1

brief introductionFrom implementing the basic architecture of the project - > supporting multi specification packaging - > implementing on-demand loading - > publishing npm packages, take you to build component libraries from 0 to 1.Construction projectInitialize project directorymkdir lyn-comp-lib && cd lyn-comp-lib && ...

Posted by Gokul on Tue, 08 Feb 2022 05:50:32 +0100