APScheduler of python third-party module - scheduled task
introduce
The full name of APScheduler is Advanced Python Scheduler. It is a lightweight Python timing task scheduling framework. APScheduler supports three scheduling tasks: fixed time interval, fixed time point (date), and cronab command under Linux. At the same time, it also supports asynchronous execution and background execution of schedu ...
Posted by magic123 on Sat, 19 Feb 2022 13:23:48 +0100
Java Basics - other new features of Java 8
1, Lambda expression
1. Examples of Lambda expressions
@Test
public void test1(){
Runnable r1 = new Runnable() {
@Override
public void run() {
System.out.println("I Love Beijing Tiananmen ");
}
};
r1.run();
System.out.println("********************** ...
Posted by BenS on Sat, 19 Feb 2022 13:10:46 +0100
[workshop scheduling] production scheduling optimization based on MATLAB particle swarm optimization [Matlab 720]
1, Introduction
Particle swarm optimization (PSO) is a numerical optimization algorithm based on swarm intelligence. It was proposed by social psychologist James Kennedy and electrical engineer Russell Eberhart in 1995. Since the birth of PSO, it has been improved in many aspects. This part will introduce the basic principle and process of par ...
Posted by taskhill on Sat, 19 Feb 2022 13:10:08 +0100
UVA122 traverses Trees on the level
Title Description
input
(11,LL) (7,LLL) (8,R) (5,) (4,L) (13,RL) (2,LLR) (1,RRR) (4,RR) ()
(3,L) (4,R) ()
output
5 4 8 11 13 4 7 2 1
not complete
Idea 1: implement binary tree in pointer mode (chain storage) First define a structure, and then define a structure pointer root as the root node of the whole tree. If the left and right nodes ...
Posted by henrygao on Sat, 19 Feb 2022 13:08:37 +0100
How to use C + + pointer correctly
Smart pointer
When using heap memory, when a piece of heap memory is no longer needed, this memory must be released in order to reallocate this memory. If a programmer accidentally makes an error when writing code for object reallocation, it will lead to serious problems, such as memory leakage, which will lead to program crash. In C ++ 11 ...
Posted by robin339 on Sat, 19 Feb 2022 12:57:30 +0100
Exploration of JNDI vulnerability utilization
Recently, I have learned some JNDI vulnerability utilization chains that master is looking for, and I have benefited a lot. I also try to do some mining on JNDI vulnerability utilization. At present, I think of two questions in the process of JNDI utilization.
It is inconvenient to test that every JNDI Bypass chain needs to change the URL manu ...
Posted by eyaly on Sat, 19 Feb 2022 12:56:24 +0100
spring basic usage
applicationContext basic configuration
IOC configuration
1. Basic configuration
<?xml version="1.0" encoding="UTF-8"?>
<beans
xmlns="http://www.springframework.org/schema/beans"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://www.springframework.org/schema/beans
http://www.springframework.org/ ...
Posted by Pavel_Nedved on Sat, 19 Feb 2022 12:49:54 +0100
Release memo of gin project (including template static resources)
If you are Xiaobai, this set of information can help you become a big bull. If you have rich development experience, this set of information can help you break through the bottleneck 2022web full set of video tutorial front-end architecture H5 vue node applet Video + data + code + interview questions.
On January 12, it was originally the tim ...
Posted by icaro on Sat, 19 Feb 2022 12:42:22 +0100
14-2.18 circular lifting questions
Judge how many primes there are between 101-200 and output all primes. x = 0
for m in range(101, 201):
for n in range(2, int(m ** 0.5) + 1):
if m % n == 0:
break
elif n == int(m ** 0.5):
print('Prime number:',m)
x+=1
print(x)
Find the cumulative value of integers 1 ~ 100, but it is requ ...
Posted by flashicon on Sat, 19 Feb 2022 12:40:31 +0100
Using File Storage NAS to build Mysql master-slave replication + read-write separation of K8S cluster
This paper introduces how to use alicloud File Storage NAS to replace K8S native NFS system, so as to realize the flexible expansion, high availability and high-performance deployment of the storage system out of the cluster
Built structure
A master node and multiple slave nodes that asynchronously copy data from the master are composed, that ...
Posted by justspiffy on Sat, 19 Feb 2022 12:31:57 +0100