CardView of Android Research Material Design 11

LZ-Says: Everything, always after experience, will gain more. Sometimes what we want is really simple, but we gradually forget the original intention in the pursuit process. May you all forgive your first thoughts and go ahead with your best wishes on the way forward!!!!!!!!!!!!!!!!!!!!!!!!!!! Preface Material Design, the consci ...

Posted by olygolfer on Wed, 09 Jan 2019 19:18:10 -0800

Istio: Google, IBM and Lyft Joint Open Source Microsoft Service Mesh Framework

Istio is an open-source micro-service Service Mesh framework that combines Google, IBM and Lyft. It aims to solve the problems of discovery, connection, management, monitoring and security of a large number of micro-services. The main characteristics of Istio include: Automatic Load Balancing of HTTP, gRPC and TCP Netw ...

Posted by Butthead on Mon, 07 Jan 2019 01:00:10 -0800

iOS Camera Stream Face Recognition (II) - Key Point Detection (Dlib)

image.png Last article Face Frame Detection It has been introduced that if we detect the information of face location from video stream, based on these contents, we continue to expand downward to get the information of 68 key points of face. The reason why we want to get the information of face location is to prepare for the ...

Posted by gregmiller on Sun, 06 Jan 2019 17:00:09 -0800

Android OTA Upgrade Principle and Process Analysis (7) - - The Core Installat_package Function of Recovery Service

Principle and Process Analysis of Android OTA Upgrade (7) - The Core Installat_package Function of Recovery Service 1. Recovery service core install_package (update.zip-specific) Unlike wipe_data and wipe_cache in Recovery Services, install_package() is a unique and core part of upgrading update.zip. This is where we really started ...

Posted by agentsmith on Fri, 04 Jan 2019 17:45:09 -0800

Building your DNN & DNN for Image Classification: Application-1

Copyright is owned by Mr. Wu Enda for reference. Koala_Tree'sBlog Some of them are added according to their own practice Using google translation, part of manual translation Part 1: Construction of deep neural network: 1 - bag Let's first import all the packages you need during this allocation.   - numpy Python is the ...

Posted by Paris! on Fri, 04 Jan 2019 15:57:09 -0800

Differences between Activity Start Mode SingleTask and Intent.FLAG_ACTIVITY_CLEAR_TOP

singleTask: In-stack multiplexing mode. In this mode, if the Activity exists on the stack, it will not recreate the instance but destroy all the activities on it (excluding itself), reuse the Activity and call its onNewIntent method. If the Activity does not exist, it will be created and stacked to the required Activity. Task s ...

Posted by laura_richer on Thu, 03 Jan 2019 13:33:12 -0800

Android shortcut implements desktop icon shortcuts to jump Android 7.1.1, similar to IOS3d touch

Background introduction: 3D Touch is a three-dimensional touch technology, which Apple calls a new generation of multi-touch technology. It is Force Touch used on Apple Watch. The screen can sense different pressure touch. 3D Touch, the new feature of Apple's iPhone 6s, looks like a right-click on a PC. There are two new gestur ...

Posted by sgalatas on Wed, 02 Jan 2019 17:06:09 -0800

Google Protocol Buffer (protoc, protobuf, pb) Learning Notes

I used to play C, Json, XML and so on, but now I start to play C++, only to find that the world I know is too small - the original C++ and Google Protocol Buffers are such good things. Sure enough, it's good to develop on PC. Without considering the size of executable program, you can use C++ freely. Reference Protocol Buffer Basics: C++Google ...

Posted by ud2008 on Tue, 01 Jan 2019 10:03:08 -0800

git push problem: committer'x x x (x)'does not match your user account

Written in front When you use multiple git accounts locally, or when multiple people deploy multiple git accounts with one machine, there are often conflicts. Today, you have encountered one. Problem description Many of us use a machine together. When we reconfigured yesterday, we accidentally set my username and mailbox to the global configura ...

Posted by nads1982 on Mon, 31 Dec 2018 08:09:08 -0800

Python 3-asyncio Learning Notes 2-call_at

Asynchronous function invocation, in addition to call_soon(call_soon_threadsafe), there is also a delay call, that is, call_later,call_at. By looking at the source code, you can easily find that call_late is actually achieved through call_at. def call_later(self, delay, callback, *args): timer = self.call_at(self.time() + delay, callback, ...

Posted by spivey on Thu, 27 Dec 2018 09:27:06 -0800