Introduction to Python quick programming # learning notes 04# | Chapter 4: string (% formatting symbol, format() formatting string, f-string formatting string and common operations of string)

Leading knowledge: Introduction to Python quick programming # learning notes 01# | Chapter 1: overview of python (Python development process, development tools and modules)Introduction to Python quick programming # learning notes 03# | Chapter 2: Fundamentals of python (code format, identifier keywords, variables and data types, number t ...

Posted by liquorvicar on Wed, 13 Oct 2021 18:18:33 +0200

buu-[WANGDING Cup 2018]Comment

Enter the topic Prompt to log in when posting. The password is 666 in bp Then, the posting form is very similar to the secondary injection of the previous question. First, construct the sql statement, and then output it in the message interface I tried it a little, but I couldn't leave a message if there was a problem After finding such a s ...

Posted by grayscale2005. on Wed, 13 Oct 2021 17:16:44 +0200

Git Command Complete

Git Command Complete git config Configure Git's parameters. Git has three profiles: Warehouse-level configuration file: At the warehouse's.git/.gitconfig, the configuration file is valid only for the warehouse in which it resides.Global profile: Mac system at ~/.gitconfig, Windows system at C:\Users<User name>.gitconfig.System-level con ...

Posted by sane993 on Sun, 19 Sep 2021 01:10:32 +0200

MySQL Installation Configuration

Linux version: CentOS 6.5 64-bit 1. Download MySQL wget https://dev.mysql.com/get/Downloads/MySQL-5.7/mysql-5.7.20-1.el6.x86_64.rpm-bundle.tar 2. Decompression mkdir mysql cd mysql [root@localhost mysql]# tar -xvf mysql-5.7.20-1.el6.x86_64.rpm-bundle.tar mysql-community-embedded-devel-5.7.20-1.el6.x86_64.rpm mys ...

Posted by phpMitch on Fri, 03 Jul 2020 17:18:54 +0200

Learning and using fdbus

1: fdbus address https://github.com/jeremyczhen/fdbus 2: build fdbus (ubuntu environment) cd ~/workspace git clone https://github.com/jeremyczhen/fdbus.git #get fdbus source code cd fdbus;mkdir -p build/install;cd build #create directory for out-of-source build cmake -DCMAKE_INSTALL_PREFIX=install ...

Posted by Scriptor on Tue, 30 Jun 2020 06:48:29 +0200

Spring cloud Part 6: Spring Cloud Config Github

As distributed projects get bigger and bigger, hardworking programmers will begin to face a challenge, and configuration files will become more and more complicated, although spring provides a chicken rib solution, spring.profiles.active In the large-scale distributed project system, it's better than nothing. The pain of manual maintenance of c ...

Posted by michealholding on Mon, 29 Jun 2020 06:15:03 +0200

[SpringCloud Learning Notes 6] Getting Started and Using Config

Getting started with Config and using it 1. Introduction and Introduction to Config SpringCloud Config provides centralized external configuration support for microservices in the microservice architecture, and Configuration Server provides a centralized external configuration for all environments o ...

Posted by Cobby on Sat, 27 Jun 2020 02:42:32 +0200

git usage record

In short, it's not very appropriate to talk about several git partitions Workspace: all the files you currently see are actually workspaces Staging area: after running git add, the changes to the working area will arrive at the staging area Version area: after running git commit, changes to the staging area will arrive at the version area Re ...

Posted by j4ymf on Wed, 24 Jun 2020 05:38:18 +0200

X86_Function Call Procedures under 64 Assemblies

stores reserve Start by handwriting a simple C program: main.c #include <stdio.h> void empty(); int add(int i, int j); void myPrint(int num); void testParams(int a, int b, int c, int d, int e, int f, int g, int h, int i, int j, int k); int main() { // Testing empty functions empty(); // T ...

Posted by tkm on Sun, 21 Jun 2020 03:49:09 +0200

Developing websites from scratch

In the last search function, some fans mentioned whether it can be set as optional search criteria. Naturally, the answer is yes, so I added a drop-down option based on the previous week Effect display Here I implement the function of drop-down item based on the two ways of select tag and a tag. ...

Posted by dominicd on Sat, 20 Jun 2020 05:38:10 +0200