Simple realization and thinking of burying point tool based on babel
Relevant knowledge points
What is AST abstract syntax tree
Compilation process of program
Use of AST
Babel's principle
Examples and thoughts of burying points based on babel in personal implementation
What is AST abstract syntax tree
Compilation process of program
What i ...
Posted by gid on Thu, 10 Feb 2022 10:31:32 +0100
The most complete summary of JDK new features in history, covering jdk8 to jdk15!
preface
In this article, I will describe the most important and developer friendly features of Java since version 8. Why do you have such an idea? On the Web, you can find many articles containing a list of new features for each java version. However, due to the lack of articles, it is not possible to briefly outline the most important changes ...
Posted by GundamSV7 on Thu, 10 Feb 2022 10:31:44 +0100
ByxContainerAnnotation -- an annotation based lightweight IOC container
ByxContainerAnnotation is a lightweight IOC container based on annotations that mimics Spring IOC. It supports constructor injection and field injection, circular dependency processing and detection, and has a highly extensible plug-in system.
Project address: https://github.com/byx2000/byx-container-annotation
Maven introduction
<reposit ...
Posted by brewmiser on Thu, 10 Feb 2022 10:27:34 +0100
File upload and download
Concept and principle of file upload
Local file copy of file upload
File copy for different devices
concept
The essence is to transfer the files in one computer to another computer (server) through io stream according to the network protocol
principle
Network communication protocol
ip
The corresponding device can be fo ...
Posted by yacaph on Thu, 10 Feb 2022 10:27:15 +0100
Android performance optimization memory leak, you want here~
prefaceIn Android, memory leakage is very common; The consequences of memory leakage will make the application Crash This article comprehensively introduces the essence, causes and solutions of memory leakage, and finally provides some common memory leakage analysis tools. I hope you will like them.catalogue1.png1. IntroductionML (Memory Leak) ...
Posted by happypete on Thu, 10 Feb 2022 10:26:17 +0100
C language Yang Hui triangle - completed independently
Author:beiyanyunyi A confident man majoring in software engineering Not so many people are diligent, but you don't act and fear others. CSDN:weixin_62688213
preface
We transform Yang Hui's triangle into an image similar to the mathematical coordinate system. In this way, you can take the array to save the data.
1, Initialize
1. Heade ...
Posted by ldoozer on Thu, 10 Feb 2022 10:22:41 +0100
SQL project practice: user behavior analysis of Taobao
1. Introduction to data: Tianchi Taobao User Data
2. Data Import and Cleaning
SQL interface tool used this time - SQL workbench
2.1 Importing data
create table userbehavior(
userID int,
itemID int,
categoryID int,
bahaviortype text,
timestamp int
);
load data infile "C:/ProgramData/MySQL/MySQL Server 8.0/Uploads/UserBehavior.csv"
into ta ...
Posted by CBR on Thu, 10 Feb 2022 10:17:54 +0100
RocketMQ Dual Primary Double Slave Cluster Setup
1 Introduction to roles
Producer: The sender of the message; Example: SenderConsumer: Message recipient; Example: RecipientBroker: Stay and transfer messages; Example: Post OfficeNameServer: Manage Broker; Examples: the administrative bodies of various post officesTopic: Differentiate the types of messages; One sender can send a message to one ...
Posted by somedude on Thu, 10 Feb 2022 10:14:19 +0100
Python crawls web page data and arranges and analyzes basic data
This is the first project I made with python. I also felt the power of python through this project. I randomly found two web pages containing a lot of data, both about solar flares. I will crawl the data of the two web pages together for analysis and sorting
The website is: https://cmsc320.github.io/files/top-50-solar-flares.html
The URL of a ...
Posted by Mikedean on Thu, 10 Feb 2022 10:13:31 +0100
The first step of object-oriented in Java is to polish the foundation
A program is a world with many things (objects [properties, behaviors])
Classes and objects
Class represents a common product and a comprehensive feature, while the object is a product of personality and an individual's sign
A class is a template of an object. An object is an individual of a class, corresponding to an instance
Class is ...
Posted by Darkmatter5 on Thu, 10 Feb 2022 10:13:36 +0100