Knowledge Points in Peacetime Work and Study

13. Use of meta tags <meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1"> <!-- Use the latest browser by default --> <meta http-equiv="Cache-Control" content="no-siteapp"> <!-- Not being webpage(accelerate)transcoding --> <meta name="robots" content="index,follow"> <!-- Search Engine Grab --> <me ...

Posted by webrajesh on Fri, 11 Oct 2019 17:26:44 +0200

Nepxion Discovery [Exploration] Enterprise Solutions for Micro Services

Nepxion Discovery [Exploration] Enterprise Solutions for Micro Services Nepxion Discovery is based on Spring Cloud Greenwich, Finchley and Hoxton. Users need to modify the Edgware version by themselves. The main functions of the guide include: The gateway is the trigger point of the whole link gray level routing based on Header transmission. ...

Posted by smnovick on Thu, 10 Oct 2019 05:59:27 +0200

Tamping Java Foundation Series 11: Deep Understanding of Callback Mechanisms in Java

Catalog Calls between modules Callback in multithreading Java callback mechanism in practice Example 1: Synchronized invocation Example two: from shallow to deep Example 3: Tom does the problem Reference articles Public address Java Technology Personal Public ...

Posted by fcaserio on Wed, 09 Oct 2019 16:37:59 +0200

Do you know about Android threads and thread pools?

In Android, threads are divided into main threads and sub-threads. The main interface is used to interact with users and perform UI-related operations, while sub-threads are responsible for time-consuming operations. If time-consuming operations are performed in the main thread, the program will not be able to respond in time. Therefore, time-c ...

Posted by lm_a_dope on Wed, 09 Oct 2019 03:06:16 +0200

[Java Concurrency] Foundation

I. overview 1.1 Thread and Process Differences Performance issues caused by 1.2 multithreading 2. Multithread Creation 2.1 First type - inheritance of Thread class 2.2 the second way to implement the Runnable interface 2.3 Third Kind - Implementing Callable Interface 2.4 Common Thread Constructors 2.5 Is it better to inherit ...

Posted by Terrum on Wed, 09 Oct 2019 00:56:05 +0200

Do you know these commonly used H5 codes?

1. Return to the previous pageThe first time you used the mobile phone end to return to the previous page, you only wrote window.history.go(-1).But it only works on the phone. Apple phone compatibility needs to add return false after the jump code.After the jump, refresh the page and add self.location.reload(); this sentence. window.history.go( ...

Posted by itbegary on Mon, 07 Oct 2019 06:48:10 +0200

How to implement resource inlining in webpack4?

This article will systematically introduce the correct posture of resource inlining (HTML/CSS/JS/Image/Font) in Webpack4. First, let's work together to understand what is resource inline. What is resource inlining? inline resource is to insert one resource inline into another resource. We can intuitively feel it through a few small examples. HT ...

Posted by nalkari on Sun, 06 Oct 2019 12:44:13 +0200

Vue project code initialization

Perfecting meta tags <meta name="viewport" content="width=device-width, initial-scale=1.0,initial-scale=1.0,minimum-scale=1.0, maximum-scale=1.0,user-scalable=no"> 2. introduce reset.css to solve different styles of mobile phones. @charset "utf-8";html{background-color:#fff;color:#0 ...

Posted by shann on Wed, 02 Oct 2019 13:08:12 +0200

7. Short Message Verification Code Login Based on Spring Security

Based on the analysis of the process of user login in SpringSecurity, we need to customize the following categories to implement the phone number plus verification code. SmsCodeAuthenticationFilter package com.liaoxiang.smsCodeLogin; import org.springframework.security.authentication.AuthenticationSer ...

Posted by Danicek on Tue, 01 Oct 2019 17:37:40 +0200

Qt Writes Custom Control 59-Histogram Dynamic Diagram

I. Preface Histogram is similar to the display of histogram when playing music. The top provides a horizontal line. When the column rises, the line rushes to the top in the form of a hat, which is equivalent to the feeling on the top of the column. It gives people a dynamic feeling. While listening to music, it is more pleasant to the eye. The ...

Posted by NuMan on Tue, 24 Sep 2019 08:51:13 +0200