Attack and defense world XCTF reverse advanced area (continuous update)
Words written in the front
It's still a process of learning from the past and learning from the past. In addition, I hope I can finish the problem of more than 100 people in the advanced area earlier. Come on! (2020.6.2).
Ah, the questions in the advanced area often change. The previous questions may ...
Posted on Thu, 25 Jun 2020 00:18:12 -0400 by knnakai
Python format string format
Author: Tyan Blog: noahsnail.com | CSDN | A brief book
0. Test environment
Python 3.6.9
1. Introduction
There are two ways to format strings in Python: one is to format strings with the% operator, and the other is to use the str.format() for string formatting, this article mainly introduces str.format() mode, which is more mainstr ...
Posted on Fri, 19 Jun 2020 05:15:58 -0400 by biodrux
[4] Let's Review C + +!
**** ฅ՞•ﻌ•՞ฅ̊****
[4] Generic programming and STL!
Template
Function template function:
To establish a general function, the function return value type and parameter type can be represented by a virtual type.
Syntax:
template
Function declaration or definition
Explanation:
Template - declare create te ...
Posted on Fri, 19 Jun 2020 00:38:19 -0400 by mattkenefick
Centos7 logical volume management (LVM)
1, LVM concept
1. A physical device is a storage device used to retain data stored in a logical volume. They are block devices that can be disk partitions, entire disks, RAID arrays, or SAN disks. Devices must be initialized as LVM physical volumes to work with LVM. The entire device will be used as ...
Posted on Wed, 17 Jun 2020 21:17:06 -0400 by fmpros
Initial javaScript hunting
Chapter 1 Introduction to JavaScript
1.ECMAScript Core Language Functions
2.DOM Document Object Model
3.BOM Browser Object Model
Chapter 2 Using JavaScript in HTML
1. <script>element
Defer indicates that the script will not affect page construction during execution, that is, it will delay ...
Posted on Mon, 15 Jun 2020 21:51:23 -0400 by jscruggs
Wechat code scanning payment (detailed code)
Wechat code scanning payment
Recently, when the project was rebuilt, she was responsible for the payment module. WeChat scan code payment (NATIVE) and Alipay scan code payment were also the first contact. Although it was written out according to official documents and some blogs, there were many proble ...
Posted on Mon, 15 Jun 2020 04:48:05 -0400 by ams007
LeetCode -- question 30 -- concatenate the substrings of all words
Concatenate substrings of all words
Difficulty: difficulty
Given a string s and some words of the same length. Find out the starting position of a substring in s that can be formed by concatenation of all words in words.
Note that the substring should exactly match the words in words, and there sh ...
Posted on Fri, 12 Jun 2020 05:04:55 -0400 by fanfavorite
Introduction and Practice of SQL Functions for PostgreSQL
RDBMS, as a safe, shared and reliable software management system for managing data, needs to organize and store data according to different data models. In order to facilitate the processing of data for users, any database provides rich processing functions for different data types in order to simplify the complexity of business development.In ...
Posted on Tue, 09 Jun 2020 13:50:47 -0400 by mjgdunne
Summary of JS common string API in javaScript tutorial
Some notes on js string and js array:
String and array have some similarities. They can get the size through length attribute, can be accessed through subscript, and can traverse each character / element with for loop
The difference between strings and arrays is that arrays can be modified at will. Str ...
Posted on Sun, 07 Jun 2020 06:44:22 -0400 by TouranMan
Python string learning notes
Article catalog
character string
Basic characteristics
code
Representation (creation)
Escape character
String splicing
String copy
Common operations
1. Get length
2. Search content
3. Judgment
4. Calculate the number of occurrences
5. Replacement
6. Cut string
7. Modify case
8. Space handling
9. St ...
Posted on Thu, 04 Jun 2020 09:20:04 -0400 by Xyox