Open source PoemKit toolkit, based on React, builds a front-end and back-end separation website from zero
At a certain time, we should also summarize. Four years ago, we did a lot of UI work. At present, we have a lot of contact with development work. In fact, we don't ask people for the landing of the project. We unconsciously learned something and did something in our spare time.There are countless React UI toolkits and libraries today. Facing so ...
Posted by jajtiii on Fri, 26 Nov 2021 10:42:10 -0800
Docker ------ first command
preface
Following the content of the previous blog, let's learn about the types of docker commands
1, Mirror operation
1. View docker version
docker version
2. Search for images
Format: docker search keyword
docker search //Find images from Docker Hub
docker search nginx
NAME DESCRIPTION STARS OFFICIAL AUTOMATED
#Parameter Desc ...
Posted by Snart on Fri, 26 Nov 2021 10:13:50 -0800
JavaIO stream learning notes 03
Do the last task, create a new file, put in the QR code and output:
First, let's talk about how to make java generate QR codes. There are actually many open source tools here. I recommend using Zxing. First, let's explain how to use Zxing:
First visit https://github.com/zxing , and download:
After downloading, unzip it, as shown in the fo ...
Posted by robertaccettura on Fri, 26 Nov 2021 09:38:14 -0800
Tools | pg_recovery design principle and source code interpretation
Author: Zhang Lianzhuang, PostgreSQL R & D Engineer
He has been engaged in the development of PostgreSQL database kernel for many years and has a very in-depth research on citus.
In the last issue, we introduced the PostgreSQL data retrieval tool: pg_reconvery
This article will take you to understand PG_ The implementation principle a ...
Posted by Ulysses Freeman on Fri, 26 Nov 2021 09:37:45 -0800
JavaScript+css+html controls whether the password is displayed or hidden by clicking the switch in the right eye
1 case description and renderings
[case] display hidden password plaintext
Case analysis: on the login page, in order to optimize the user experience and facilitate the user to enter the password. Therefore, when designing the password box, there will be an "eye" picture to act as a button function. Click to switch the state ...
Posted by crouse on Fri, 26 Nov 2021 09:25:10 -0800
Database principle and application update, view and index
insert data
Single tuple insertion
insert into Student(Sno,Sname) Values ('95020','Chen Dong')
Insert subquery results
Insert into Deptage(Sdept,Avgage)
select Sdept,AVG(Sage)
from Student
Group by Sdept
Modify data
update...set...where
update Sutdent set Sage ...
Posted by novice4eva on Fri, 26 Nov 2021 09:22:56 -0800
Qt QCustomPlot (Graphics Library)
sketch
QCustomPlot is a graphic library based on Qt C + +, which is used for drawing and data visualization - making beautiful 2D charts - curves, trends, coordinate charts, histograms, etc., and providing high-performance services for real-time visualization applications. It has no further dependencies and is well documented.
download
get i ...
Posted by sapna on Fri, 26 Nov 2021 09:16:20 -0800
Android network programming
Chapter 9 network programming
Android system provides the following ways to realize network communication: Socket communication, HTTP communication, URL communication and WebView.
One of the most commonly used is HTTP communication. This chapter describes how to use HTTP protocol to communicate with the server on the mobile phone.
9.1 introd ...
Posted by n00854180t on Fri, 26 Nov 2021 09:12:19 -0800
Java 8 | how to initialize Map & List2Map gracefully
The great Java 18 is coming out soon, and we may not be familiar with the core Lambda usage of Java 8. This article shares several tips for operating Map in the development process on Stream technology. After reading this article, I believe you will have a new understanding of Stream.
1, Gracefully initialize a Map
Before looking down, firs ...
Posted by cuteflower on Fri, 26 Nov 2021 08:43:41 -0800
Maven automated build tool
Maven automated build tool
This post is reproduced from the Up Master of station B: Guard the most beautiful old Du in the world
Chapter I Introduction to Maven
1.1 stages in software development
Need analysis: analyze the specific functions completed by the project, what requirements are there, and how to implement them.
Design stage: acc ...
Posted by pearjam on Fri, 26 Nov 2021 08:27:10 -0800