m3u8.sqlite to mp4(txkt)

During the Mid Autumn Festival holiday, I wanted to have a good rest. My girlfriend said that the Tencent classroom courses downloaded from my mobile phone could be transferred to the computer because there was not enough space on my mobile phone. I thought it was not very simple.. Sure enough, it was not as simple as I thought. I found the vid ...

Added by phorman on Thu, 23 Sep 2021 05:50:07 +0300

Go -- File Operation

1. Opening and closing files The os.Open() function opens a file and returns a *File and an err. Calling the close() method on the resulting file instance closes the file. 2. Reading Files 1. file.Read() Reads the file It receives a byte slice and stores the read data in a temporary slice, returning the number of bytes read and possible ...

Added by kujtim on Tue, 21 Sep 2021 13:20:24 +0300

CNC panel unlock CNC panel decrypt

As a component of the K8S master, the controller manager is responsible for the startup and termination of many controllers. These controllers are responsible for monitoring various resources in k8s and performing tuning, so that their actual state can constantly approach the expected state. These controllers include server controller, nodecont ...

Added by zerGinfested on Tue, 21 Sep 2021 10:34:19 +0300

C + + learning notes

Chapter 6 - functions 1. Function basis 1.1 formal parameter list of function The formal parameters in the formal parameter list are usually well separated. Even if the brother's formal parameters are of the same type, both types must be written out int f3(int v1, v2) {/* ... */} // error int f4(int v1, int v2) {/* ... */} // correct T ...

Added by pipeten on Mon, 20 Sep 2021 14:07:18 +0300

2021-09-17--python function with less product

A little python knowledge a day Does it not smell when you add up more??? Section 15 Function Base-01 Definition of function Function's role: A function is to assemble a block of code with independent functions into a whole and name it. Calling this name where it is needed will accomplish the corresponding requirements, avoid code reuse, an ...

Added by misty on Fri, 17 Sep 2021 02:46:11 +0300

godoc command document

In the previous article, we showed how to insert testable code into the go document, so how to use the go document. Let's find the corresponding document to learn. Let's learn the godoc command first. The following is right https://pkg.go.dev/golang.org/x/tools/cmd/godoc Translation of. Godoc will extract and generate documents for the Go pr ...

Added by PastorHank on Thu, 16 Sep 2021 20:21:02 +0300

Improve the ES search module to query es like a database with complete small cases

Writing requirements written to the search module in the previous period of time, with more and more conditions, more and more complex combination of various conditions, and poor maintenance in the later period, so improved the previous search writing, wrote a small case in spare time, and discussed with you. Complete case github.com/zxr615/g ...

Added by djheru on Mon, 13 Sep 2021 19:22:39 +0300

GinAdmin management basic platform

GinAdmin This project is a background management platform based on Gin framework. Although many people think that go is used to develop high-performance server-side projects, it is inevitable that there is a need to do web management side. You can't use other languages to develop it. Therefore, the GinAdmin project has been integrated. Please ...

Added by metin on Sat, 11 Sep 2021 21:11:51 +0300

Go Foundation Series: 2. Environment construction

I will explain the construction under Linux, Windows and Mac systems one by one, including the configuration of the editor. What to prepare? Go installation package: Win Go installation package,Linux Go package (binary),Mac Go package Git environment, Go downloads dependent packages with the help of GIT tools, which will not be explained here. ...

Added by pugg09 on Sat, 11 Sep 2021 03:00:33 +0300

The method of good coding habits does only one thing

1. Background I recently took over a project. When I was familiar with the code, I found a lot of code that can be optimized. These codes violated a specification and asked the method to do only one thing I think it's very meaningful to record, so let's write these problem codes, and I think the problem points of these codes, as well as optim ...

Added by Clerma on Sun, 05 Sep 2021 01:41:22 +0300