Android Calculator - Introduction

Android Calculator - Introduction Author: Knight in Black I. Preface This is the first App I wrote, using the third chapter of Android First Line Code, some knowledge of UI controls. Then the overall structure synthesizes some works on CSDN blogs and short books. Similarly, in writing Android calcu ...

Added by deckrdx on Mon, 29 Jul 2019 16:49:20 +0300

Mybatis Source Code Analysis

In this article, we will read the source code of Mybatis in depth, hoping that we can not be so afraid of the underlying framework in the future, and learn the good ideas of framework design; Architectural principles Architecture diagram Architectural flow chart The two pictures above are from the internet, but they are very good. They basi ...

Added by mjlively on Sun, 28 Jul 2019 16:17:06 +0300

Comparison and induction of several ways of broadcasting registration

Some time ago, I just saw the broadcasting chapters of "First Line Code". In order to facilitate understanding, I collate and summarize the codes in the book, and compare the different ways of registering broadcasting receivers. The codes in the article are all taken from "First Line C ...

Added by stefharley on Sun, 28 Jul 2019 08:36:19 +0300

AucFrame Unified Management Gradle for Android Componentized Best Practices

Preface AucFrame Future Articles: Introduction and Learning of AucFrame AucFrame Makes Your Gradle Smart "AucFrame Unified Management Gradle" Source Port Gradle for managing lib First, let's look at the architecture of the AucFrame again. AucFrameGeneral We start from the bottom up, create lib folders in the root ...

Added by auddog on Thu, 25 Jul 2019 07:17:15 +0300

Working principle of spring security filter

This article introduces the working principle of filter. The configuration is xml. How does Filter go into execution logic Initial configuration: <filter> <filter-name>springSecurityFilterChain</filter-name> <filter-class>org.springframework.web.filter.DelegatingFilterProxy</filter-class> </filter> ...

Added by icyfire624 on Thu, 25 Jul 2019 06:10:54 +0300

Introduction to SCOM ManagementPack [Eighth of the Chinese Series of SCOM]

Original Link: http://www.cnblogs.com/OpsMgr/archive/2011/04/15/2017037.html ManagementPack can be seen as an extension package that extends SCOM functionality, importing the appropriate MP can monitor things that need to be monitored, ...

Added by jonabomer on Thu, 25 Jul 2019 01:51:37 +0300

Stage 12 - Reptile 02: [request; data extraction (regular, Beautiful Soup, xpath)]

Articles Catalogue 1. URLError 2. Use of request Libraries 2.1. Basic Introduction 2.2. get request 2.3. post request 2.4. Custom request header 2.5. Setting timeout time 2.6. Proxy access 2.7. session automatically saves cookies 2.8. ssl verification 2.9. request for information 3. Data extraction ...

Added by Dimwhit on Wed, 24 Jul 2019 12:58:14 +0300

Face Detection and Age and Gender Recognition Based on android opencv

Support technology sharing, reprinting or copying, please point out the source of the article The blogger is Jack__0023 1. Background Because of the different scenarios, the face detection provided by android last time can not satisfy my use, because long time opening, he will have various small conditions, and then to identify (not in this bl ...

Added by tacojohn on Wed, 24 Jul 2019 08:57:52 +0300

Ten new features of HTML 5

Ten new features of HTML 5 (1) Semantic tags (Semantic tags provide better page structure for pages). Semantic tags for HTML5 include: <section> - Represents a paragraph or section in a document; Nav > - Used to build navigation; <article> - Represents integrated content in documents, pages, applications or websites; <a ...

Added by aliahmad on Wed, 24 Jul 2019 06:40:21 +0300

04_MyBatis Single Table CRUD and Multiple Table Processing Association Operations

MyBatis single form CRUD operation The CRUD operation of single standard is mainly based on how to write high-quality SQL statements. If the column and entity attributes in the table do not correspond to each other in single standard operation, it is suggested to use aliases for mapping. # The diffe ...

Added by AlGale on Mon, 22 Jul 2019 09:37:06 +0300