The Realization of Data Statistics and Error Statistics of Wechat Small Program
In some cases, we need to count the behavior of some users of the applet, such as the UV of a page.PV, etc., statistics of the use of a function, etc. So that the product can understand the whole function of the product.In the website, many of us have used Google statistics. There are also some third-party databases in the applet, such as Tence ...
Posted by websesame on Tue, 25 Jun 2019 10:04:32 -0700
Kotlin Learn Notes (1) Basic Grammar
For Kotlin installation, Android studio 3.0 and above comes with it, others can be installed by searching for the plug-in Kotlin.Here's the syntax for Kotlin.
Here are my learning notes. Any inappropriate entry is welcome to make corrections.
Thank you ^^
1. Kotlin Android Extension
The Kotlin plug-in comes with an Android extension, so ...
Posted by Lee on Mon, 24 Jun 2019 09:46:41 -0700
TensorFlow: Neural Style
Neural Style is a very interesting in-depth learning application: input a picture of the representative content and a picture of the representative style, and the in-depth learning network will output a new work that combines the style and content.
TensorFlow is Google's most popular open source in-depth learning framework. Author anishathalye ...
Posted by levidyllan on Fri, 21 Jun 2019 17:38:42 -0700
Android About Handler Memory Leakage
In the last article Full Analysis of Android Handler Mechanism In this article, we analyze the Hanlder mechanism from the point of view of source code, and then continue to learn about Handler. This article focuses on the memory leaks that Handler may cause and solutions.
1. Why does memory leak occur?
When we use Handler in our daily life ...
Posted by Mijii on Fri, 21 Jun 2019 17:22:43 -0700
Research on the Visible Location of item in Recycler View
The most painful thing for a programmer ape is that it took nine bulls and two bulls to find out the problem and solve it. So we have to pay attention to everything. This ape only realized this when we did another iteration recently.
Iterative requirements: To make a headline-like thing, there will be demographics in three places, and the da ...
Posted by chadt on Fri, 21 Jun 2019 15:13:16 -0700
curl of linux command
Curl command is a file transfer tool that uses URL rules to work on the command line. It supports the upload and download of files, so it is a comprehensive transmission tool, but according to tradition, curl is customarily called the download tool.
It supports many protocols including HTTP, HTTPS, ftp, etc. It also supports POST, cookies, aut ...
Posted by kalpesh on Fri, 21 Jun 2019 12:33:26 -0700
Loading SO Library in SD Card Supplemented by Android Dynamic Loading
Reprinted from: https://segmentfault.com/a/1190000004062899
JNI and NDK
In fact, the use of JNI in Android includes dynamic loading, dynamic loading of the. so library at APP runtime and invoking its encapsulated method through JNI. The latter is usually compiled from C/C++ code using NDK tools, running in the Native layer, which is muc ...
Posted by LoganK on Wed, 19 Jun 2019 15:49:41 -0700
User Description of Security Detection API in Google Play Service
This blog mainly records how to use Google Play Service for security detection.
1 Principles of Use of Google Play Service
Google Play Service provides a large number of API s for users to use.
In order to enable applications to integrate Google's latest products and functions at low cost.
When using Google Play Service, the basic principl ...
Posted by alin19 on Wed, 19 Jun 2019 14:08:41 -0700
Android Development, Docking Background Server, Getting Started with JSON Resolution
First of all, the tool we're using here is Google encapsulated Gson. This post was written for gson 2.7 and the following dependencies need to be added to Gradle.build when calling
compile 'com.google.code.gson:gson:2.7'
Here are some concepts explained in this json string
{
"status": [],
"message": "logout successfully",
"d ...
Posted by sarakmo on Wed, 19 Jun 2019 09:12:01 -0700
Spring Cloud Ribbon 5-minute Quick Guide
"It takes about 4 minutes to read this article"
In the previous five-minute guides to Spring Cloud, we have introduced several core components of Spring Cloud in turn, covering the fundamental functions required in a microservice architecture, such as service discovery, melting, centralized configuration.The protagonist ...
Posted by Stasonis on Tue, 18 Jun 2019 09:18:35 -0700