LINUX common commands
Although most of my work is Java related development, I am exposed to Linux every day, especially after using Mac. I work in the command line environment with black background every day I don't have a good memory. I can't remember many useful linux commands very well. Now I'll summarize them gradually for later viewing.
basic operation
Linux ...
Posted by MoldRat on Wed, 09 Feb 2022 17:46:42 +0100
#Does the string on the fourth day of C language practice contain supplementary questions
Does the string on the fourth day of C language practice contain supplementary questions
Title Description: Suppose there is A string A composed of various letters and another string B. the number of letters of B in the string is relatively small. What is the fastest way to find all the letters in small string B in large string A?
For ...
Posted by filch on Wed, 09 Feb 2022 17:41:33 +0100
Introduction and Processing of UCF101 Action Recognition Dataset
1. Introduction to datasets:
UCF101 is a motion recognition dataset for real action videos collected on YouTube and provides 13320 videos from 101 action categories. Official website: https://www.crcv.ucf.edu/research/data-sets/ucf101/
Dataset name: UCF-101 (2012)Total Videos: 13,320 VideosTotal duration: 27 hoursVideo source: YouTube col ...
Posted by johnwayne77 on Wed, 09 Feb 2022 17:39:21 +0100
Data structure third experiment problem solving Report
1, Longest path of binary tree
Given a binary tree T, find the length of the longest path in T, and output the value of each node on this path. If there are multiple longest paths, output the rightmost one.
Input format: The first line, an integer n, indicates that the binary tree has n nodes, 1 ≤ n ≤ 100000
Line 2, 2n+1 integers, sepa ...
Posted by iMiles on Wed, 09 Feb 2022 17:28:11 +0100
How to exit gracefully from. NET Worker Service
We learned in the last article NET Worker Service [1]. Today we'll talk about how to gracefully close and exit Worker Service.
Worker class
Coupon website m.fenfaw.com net
From the previous article, we know that the Worker Service template provides us with three core files out of the box. The Worker class inherits from the abstract base class ...
Posted by Anidazen on Wed, 09 Feb 2022 17:23:48 +0100
Design mode - singleton mode
Concept: ensure that there is only one instance of a class and provide a global access point to access this unique instance
ps: Singleton mode is an object creation mode. Singleton mode has three main points: first, a class can only have one singleton, second, it must create this instance by itself, and third, it must provide this instance ...
Posted by sinisake on Wed, 09 Feb 2022 17:20:09 +0100
Microservices have everything from code to k8s deployment series (II. Gateway)
We will use a series to explain the complete practice of microservices from requirements to online, from code to k8s deployment, from logging to monitoring.
The whole project uses the micro services developed by go zero, which basically includes go zero and some middleware developed by relevant go zero authors. The technology stack used is basi ...
Posted by pedromau on Wed, 09 Feb 2022 17:14:31 +0100
On the cause and effect and implementation principle of Android hot repair.
I should have spent the most time in the last month, but I didn't write a few blogs. I'm really ashamed. Recently, in the integrated hot repair, technology sharing happens to take place on Monday, so let's take a good look at the causes and consequences of hot repair.
First, we need to hold the following questions:What is hot repair? What pro ...
Posted by srividya on Wed, 09 Feb 2022 17:10:06 +0100
Planning tasks for Linux systems
1, Periodic scheduled tasks - crontab
1. Command introduction
Repeat the command operation specified by the user according to the preset time period; To execute this command, you need to run the daemon: crond, but now the system generally runs automatically. Primary profile Global configuration file: / etc/crontab Default settings: / rtc/cron ...
Posted by phice on Wed, 09 Feb 2022 17:06:48 +0100
Right click to delete the current student data
For a detailed tutorial on the right-click menu bar, please see "making web page right-click menu bar (with mouse attribute)"
The layout code is as follows:
<!--Right click menu bar dom-->
<div class="dom" @*style="display: none;"*@>
<ul>
<li>
<a href="#" style="padd ...
Posted by Drezard on Wed, 09 Feb 2022 16:54:01 +0100