Principles of Android DEPPLINK and APPLink
App development often has this requirement: to wake up APP in browsers or text messages, if installed, or to boot downloads. For Android, the main technology involved here is deeplink, which can also be simply regarded as scheme. Android has always supported scheme. However, due to the open source nature of Android, different mobil ...
Posted by engelsol on Wed, 20 Mar 2019 08:33:42 -0700
Locating Android Native Memory Leakage Using Wrap Shell Script
Prerequisite
Android version is over 8.0
Environmental configuration
cd to / src/main directory, create a new shell directory, and configure the directory of the same platform under the shell directory and libs directory. The hierarchical structure under app can be seen that the shell/lib directory has the same platform directory structure as l ...
Posted by rachelk on Wed, 20 Feb 2019 22:42:20 -0800
SUSE12Sp3 installation configuration. net core production environment - install and use the Supervisor daemon. net core process
1. Install setuptools
Place the setuptools-0.6c11.tar.gz installation package on the server
tar zxvf setuptools-0.6c11.tar.gz
cd setuptools-0.6c11
sudo python setup.py build
sudo python setup.py install
2. Installing meld
Place the meld3-1.0.2.tar.gz installation package on the server
tar -zxvf meld3-1.0.2.tar.gz
cd meld3-1.0.2
sudo python s ...
Posted by bhavik_thegame on Mon, 18 Feb 2019 18:45:19 -0800
shell special symbols and cut, sort, wc, uniq, tr, split commands
shell special symbol* Any character? Any character# Annotation character\ Definition characterPipe symbolVariable prefix,!$combination, which means end of lineMultiple commands are written on one line, separated by semicolons~ User's home directory, followed by regular expressions to represent matchers& Put it behind the command and drop it ...
Posted by darga333 on Thu, 14 Feb 2019 08:12:19 -0800
Upload and activate solution(.wsp) to the SharePoint online environment through PowerShell (command line)
As you all know, in SharePoint on-prem environment, we can upload the solution(.wsp) file to our SharePoint through PowerShell and activate it. But how to use power shell in SharePoint online environment? Because we can't touch the machine in online environment, we can't use power shell on the machine in online environment. If you think you can ...
Posted by Ansel_Tk1 on Tue, 12 Feb 2019 05:54:18 -0800
Ambari installation client error reporting OSError:[Error 17] File exists
During Ambari's new cluster expansion process, one node installed multiple client s to report errors
Traceback (most recent call last):
File "/var/lib/ambari-agent/cache/stacks/HDP/2.0.6/hooks/after-INSTALL/scripts/hook.py", line 37, in <module>
AfterInstallHook().execute()
File "/usr/lib/python2.6/site-packages/resource_managem ...
Posted by stratguitar on Sun, 10 Feb 2019 14:48:17 -0800
u-boot. img u boot. bin u boot_crc. bin and u boot_crc. bin. CRC
Compiling u boot generates many images: u-boot.img u boot.bin u boot_crc.bin and u boot_crc.bin.crc. What are the differences and connections between these image files? We will do the following detailed analysis: 1. u-boot.bin
It is the original image file generated by u-boot compilation, and many image files need to be generated on it.
2. ...
Posted by AudiS2 on Sat, 09 Feb 2019 01:18:17 -0800
Re-study Python-Day 04-python Foundation - > tuple + dictionary + string learning
tuple
Tuple: The feature is that the content is immutable. It is a read-only list that can be queried and not modified.
a = 2,
print(a)
print(type(a))
b = ('a','b','c')
print(b[1])
Operation results:
(2,)
<class 'tuple'>
b
Dictionaries
Dictionary: The internal data is printed out in disorder, the key value ...
Posted by dhaselho on Thu, 07 Feb 2019 09:30:17 -0800
Building and Flashing AOSP for Device Nexus 5 hammerhead
Compile Android 6.0 in the wall and burn it into the record of Nexus 5
Refer to
http://saurabhsharma123k.blogspot.hk/2017/02/building-and-flashing-aosp-for-device.html https://lug.ustc.edu.cn/wiki/mirrors/help/aosp
Source download
https://lug.ustc.edu.cn/wiki/mirrors/help/aosp
Download driver
https: ...
Posted by riex1 on Thu, 07 Feb 2019 03:36:18 -0800
linux sh : Makefile_userland_pf_ring_template
Preface
Put the project in hand into pf_ring, organize a Makefile template, and make a template for the later test project of pf_ring.
Think of the Makefile content previously posted on the blog, copy and paste it to the local Makefile, and then r\n appears at the end, causing Makefile to not run.
There are two sim ...
Posted by scast on Tue, 05 Feb 2019 19:39:16 -0800