Android Status Bar Introduction

Status bar introduction Status bar introduction Objective of this paper Basic concepts MaterialDesign Immersion effect Full screen with status bar Other Objective of this paper Material Design status bar Immersion effect (visually toolbar and status bar are the same color) Full screen (full screen with status bar) Basic con ...

Posted by rkstevens on Mon, 15 Apr 2019 09:48:33 -0700

Detailed Explanation and Application of SSDT Hook Technology

Detailed Explanation and Application of SSDT Hook Technology Detailed Explanation and Application of SSDT Hook Technology An Introduction to SSDT 1 What is SSDT 2SSDT structure 3 Application Layer Calling Win32 API Complete Execution Flow Two SSDT Hook Principle Introduction of 1SSDT Hook Principle 2 Process Hiding and Protection 3 Fi ...

Posted by Tuss on Sun, 14 Apr 2019 17:03:32 -0700

js Learn from the Past and Learn from the New 2 --- Learn Liao Xuefeng's js Course

function 1. arguments JavaScript also has a free keyword arguments, which only works inside the function and always points to all parameters passed in by the caller of the current function. Arguments is similar to Array, but it is not an Array: function foo(x) { alert(x); // 10 for (var i=0; i<arguments.length; i++) { alert(a ...

Posted by djBuilder on Sun, 14 Apr 2019 14:06:32 -0700

Use PostSharp in. NET project and MemoryCache to implement caching

A previous essay< Using PostSharp in. NET Project to Realize AOP Aspect-Oriented Programming Processing > This paper introduces the use of PostSharp framework. Trial use of PostSharp can bring me a lot of convenience and advantages, reduce code redundancy, improve readability, and more elegant implementation of routine business scenarios ...

Posted by Gustav on Sun, 14 Apr 2019 00:21:32 -0700

ABP Introduction Series (13) - Redis Cache Used

ABP Introductory Series Catalogue: Practical Exercise on Learning Abp FrameworkSource path: Github-Learning MpaAbp 1. introduction When creating tasks, we need to specify who to assign. In Demo, we use a drop-down list to display all users of the current system for user selection. Every time we create a task, we go to the database to fetch the ...

Posted by DapperDanMan on Fri, 12 Apr 2019 02:33:33 -0700

WEB Page Jump and Value Passing between Pages in JAVASCRIPT Implementation

Method other than form submission 1. Jump to a new page and open it in a new window: function gogogo() { //do someghing here... window.open("target.html"); } Windows is a javascript object and can be used with its open method. It should be noted that if the page is not a relative path, then add http://, for example: function gogogo ...

Posted by shai1 on Fri, 12 Apr 2019 00:03:31 -0700

Hexo's Personalized Settings for Blogging (Including More Throughout Next Topics)

Also published in Levi.Blog and OSChina   Add [Reading Quantity] etc. under the heading In the presence of Hexo's Personalized Settings for Blogging This article talks about adding data statistics functions such as no garlic, and then personalizing the display of data. In the previous article, there was a JS code: <script async src= ...

Posted by tcorbeil on Thu, 11 Apr 2019 22:09:32 -0700

Python's serial communication

Serial communication is a kind of communication mode between peripherals and computers, which transmits data bit by bit through data signal lines, ground lines, control lines, etc. This communication mode uses fewer data lines and can save communication cost in long distance communication, but its transmission speed is lower than that of parall ...

Posted by xpherism on Wed, 10 Apr 2019 20:06:31 -0700

NLP First Learning Record-D2 Data Set Download

Data Set Download IMDB Film Review Data Set Download source: http://ai.stanford.edu/~amaas/data/sentiment It takes a long time to download and decompress data sets, perhaps because decompressing tar.gz file format in windows is relatively troublesome. After the data set is acquired, there is a Readme document describing the ...

Posted by PakiGangsta on Wed, 10 Apr 2019 17:18:31 -0700

The Definition of Cursor in MySql and Three Ways of Use (2)

Create a Cursor First create a data table in MySql: CREATE TABLE IF NOT EXISTS `store` (     `id` int(11) NOT NULL AUTO_INCREMENT,     `name` varchar(20) NOT NULL,     `count` int(11) NOT NULL DEFAULT '1',     PRIMARY KEY (`id`)   ) ENGINE=InnoDB  DEFAULT CHARSET=latin1 AUTO_INCREMENT=7;      INSERT INTO `sto ...

Posted by beezza on Mon, 08 Apr 2019 17:51:30 -0700