Send mail regularly

background Party A's father: During the National Day and the Military Games, the new access business needs to inspect the business daily and send an email to inform the specific situation!Division I: No problem.Party A's father: Holidays should be issued, too.Division I: No problem (grass mud horse). Initially, it was planned to designate seve ...

Posted by dannyluked on Fri, 20 Sep 2019 02:32:40 -0700

api of jquery and summary of usage

Summary of jQuery API and usage selector Basic selector *Universal selector .class class class selector, an element can have multiple classes (chrome is implemented using the native js function getElementByClassName()) Changing the style of an element using a class selector <div class="demo"></div> <script type="text/javascrip ...

Posted by bizerk on Thu, 19 Sep 2019 18:42:14 -0700

Multithreaded programming learning eleven (ThreadPoolExecutor details).

1. Description of ThreadPoolExecutor parameters public ThreadPoolExecutor(int corePoolSize, int maximumPoolSize, long keepAliveTime, TimeUnit unit, BlockingQueue<Runnable> workQueue, Thr ...

Posted by DotSPF on Thu, 19 Sep 2019 17:45:55 -0700

Usage of regular sed/awk

*sed implements some grep functionality, but it's a little more cumbersome, sed's strength is to delete the contents of the file and replace it sed implements grep retrieval: 1. Retrieve by keyword: [root@localhost ~]# sed -n '/root/'p passwd.txt * Retrieval with sed requires a -n parameter before the keyword, p after the keyword, and / or in ...

Posted by koray on Thu, 19 Sep 2019 10:10:41 -0700

Haproxy service tuning and configuration details

Through blog posts: Nginx+Tomcat to achieve load balancing cluster instance, can follow!!!LVS Load Balancing Cluster ExplanationWe have been able to use Nginx and LVS as load balancing cluster. They have their own characteristics. Today, we know a popular cluster scheduling tool, Haproxy. I. Overview of Haproxy Haproxy is a popular cluster sch ...

Posted by mikie46 on Thu, 19 Sep 2019 04:13:57 -0700

Detailed operation of MySQL library table

One library operation 1. Creating a database 1.1 Grammar CREATE DATABASE database name charset utf8; 1.2 Database Naming Rules By letters, numbers, underscores, bars, bars, and dollars Case-sensitive Uniqueness Keyword cannot be used such as create select Numbers cannot be used alone Maximum 128 bits Basically the same naming rules as python or ...

Posted by globetrottingmike on Thu, 19 Sep 2019 00:57:29 -0700

Some people say that these linked list algorithms are very simple.

1. The sum of two numbers Title Description problem analysis Solution 2. Flipping list Title Description problem analysis Solution 3. The reciprocal k node in the list Title Description problem analysis Solution 4. Delete the penultimate N node of the list problem anal ...

Posted by baber_abbasi on Wed, 18 Sep 2019 21:38:37 -0700

HiveQL table and table query

HiveQL Data Operation 1. Loading data into tables load data local inpath '/data/employees' overwrite into table employees partition (country='US',state='CA') If the partition directory does not exist, this command automatically creates the part ...

Posted by scross on Wed, 18 Sep 2019 04:24:15 -0700

usermod command, user password management, mkpasswd

Mission 12 June 3.4 usermod command 3.5 User Password Management 3.6 mkpasswd command         3.4 The usermod command: Commands for usermod to change user attributes   Usermod-u 1000 file to change uid Usermod-g 111 file to change gid (with ID or group name) Usermod-d/home/gdsgsdg file to change home directory Usermod-s/sbin/nolog ...

Posted by eelmitchell on Tue, 17 Sep 2019 23:50:27 -0700

Automatic recognition of multiple cross targets based on opencv and matlab and multiple matching of template matching

Camera calibration often uses calibration boards. The common calibration methods are teacher Zhang Zhengyou's plate calibration. The common calibration boards are chessboard calibration board and disc calibration board. But in many places, when u ...

Posted by lordofgore on Tue, 17 Sep 2019 06:01:45 -0700