Make full use of Git to cancel and improve project quality (recruitment at the end of the article)

0x001 general An excellent front-end engineer must be an excellent engineer first; an excellent engineer must be responsible for every line of code he writes and every commit he submits. That said, I don't want to write a very large and comprehensive article, but I want to write some small things. 0x002 undo git add We know that to submit a com ...

Posted by kkessler on Sat, 13 Jun 2020 11:39:17 +0200

ReactNative: Component encapsulation (e.g. secondary menu components)

1. Introduction Previously, the basic API and UI components of RN are introduced. These components exist in the form of granularity in complex composite components. How to effectively and reasonably use them for packaging is very necessary.There are many benefits to developing composite components, most notably reuse and independent functional ...

Posted by farkewie on Fri, 12 Jun 2020 04:17:07 +0200

Asyncpy use documentation

1 create project Install the required environment python version needs > = 3.6 Installation command: pip install asyncpy After the installation is complete, you can start creating a crawler project. Create project command: asyncpy genspider demo Create a project called demo. After the creation is successful, open the project file. The projec ...

Posted by xnor82 on Thu, 11 Jun 2020 05:39:52 +0200

Go Daily library twirp

brief introduction twirp Is a RPC framework based on Google Protobuf.Trp automatically produces server and client code by defining the service in the.proto file.Let's focus more on business logic.Huh?Isn't this gRPC?Unlike gRPC, which implements its own set of HTTP servers and network transport layers, twirp uses the standard library net/http.I ...

Posted by om.bitsian on Wed, 10 Jun 2020 19:04:20 +0200

Spring Boot Admin manages monitoring data

The spring boot actuator monitors information about the application.The only disadvantage is that the monitoring information returned is data in JSON format. Another is that under the micro-service architecture, there are many instances of services, it seems impossible to see the monitoring information one by one, and so much address informatio ...

Posted by mdnghtblue on Tue, 09 Jun 2020 18:56:02 +0200

Use your own index camera to run orbslam 2 mono, binocular, and depth modes (common to minimax and realsense)

Process Overview Configure ROS ROS environment preparation (take 16.04 ROS Kinetic as an example) Create your own workspace: Configure orblam Compiling ORBSLAM2 ROS Common errors and Solutions Run build-ros.sh Problem 1: Run build-ros.sh Problem 2: the core of this problem is the problem with the ...

Posted by GeXus on Tue, 09 Jun 2020 09:10:33 +0200

Android wifi basic function 1

A summary This paper introduces the development interface and usage of WiFi module in the application layer of Android, including some suggestions for dealing with common problems, and finally provides a github project ...

Posted by TheChief on Tue, 09 Jun 2020 08:27:49 +0200

Using Swagger to test the interface, how do I carry Token in the request header?

Questions from a small partner on WeChat: When he saw this, Songge suddenly thought that I had written Spring Boot+Swagger before: SpringBoot Integration Swagger2 Uses of OAuth2 + Jwt have also been written: Want to have fun with OAuth2 and JWT?See Songgo's performance But they haven't been written together yet, so little buddies have ques ...

Posted by raister on Tue, 09 Jun 2020 02:49:02 +0200

Chinese processing of parameter verification error information

As we explained in the previous section, gin can use the ShouldBind method to bind parameters to a structure, but we don't cover how parameter checking works. In this section, we describe how parameter checking and checking fail and then convert to Chinese to return to the front end. 1. Data Validation Let's start with a simple example: Create ...

Posted by tsukushi on Mon, 08 Jun 2020 18:55:59 +0200

spring-boot blog system

Spring-boot Personal Blog System GitHub: https://github.com/Werdio66/myblog 1. Environmental Construction gradle dependencies: implementation 'org.springframework.boot:spring-boot-starter-data-redis' implementation 'org.springframework.boot:spring-boot-starter-jdbc' implementation 'org.sp ...

Posted by stevietee on Mon, 08 Jun 2020 03:22:50 +0200