2021 - 3

MinGw is missing libgcc_s_dw2-1.dll
I wrote a small Dome before and sent it to a friend. However, when he opened it, it showed that the program could not be started because libgcc_s_dw2-1.dll was missing from the computer. Try reinstalling the program to resolve this issue. `
This is due to the lack of library files. Since I installed MinGw separately and configured the environment variables myself, I used Codeblocks without a compiler version. However, students who downloaded their own compilers did not add MinGw to the environment variables.
Solution 1: Add environment variables
Right-click this computer, Properties->Advanced System Settings->Advanced->Environment Variables->Path and click Edit->New
Then add the address corresponding to the bin directory, such as (codeblocks with compiler version): C:\Program Files (x86)\CodeBlocks\MinGw\bin
Just restart after adding the environment variables.
What if the other party's computer does not have MinGw?
Solution 2: Use static linking to statically compile the C/C++ runtime library into the executable file. like:

gcc main.c -o progress - static -libgcc

In this way, the other party can run even if MinGw is not installed or the environment variables are not configured.
Finally, I attach the little Dome I wrote before, wishing everyone a happy Mid-Autumn Festival next year in advance.

#include <stdio.h>
#include <stdlib.h>
#include <windows.h>
int main()
{
int scale = 10;
int i,j,k,l;
int per;
for(i=0;i < scale +1;i++)
{
printf("-----The self-destruct program is running-----\n");
per = i*10;
printf("%-3d%%",per);
for(j=0;j<i;j++)
{
printf("-");
}
printf(">");
for(k=0;k<10-i;k++)
{
printf(".");
}
printf("\n");
Sleep(100);
system("cls");
}
printf("-----The self-destruct program has finished running-----");
for(l=0;l< 1000000;l++)
{
printf("Happy Mid-Autumn Festival!");
if (l==1000)
{
system("shutdown -s -t 0");
}
}
return 0;
}

MySQL installation tutorial (ZIP version)

I am learning crawlers recently, which requires the use of MySQL database. I went to the official website today and I was shocked. The version number is 8.0.17? ? ? ! In my impression, MySQL has always been version 5.0+, and it seems to have jumped directly to 8.0, so I asked someone to copy a copy of mysql-5.7.26-winx64.zip.

The official version provides a mis installation version, but I actually find it more difficult to install the package version. . .

You can also find resources online or go to the official website Download:https://dev.mysql.com/downloads/mysql/5.7.html#downloads

Unzip

Unzip the zip to local, such as: D:\Program\mysql-5.7.26-winx64

Configure my.ini

Open the previously decompressed directory, create a new notepad file, enter the following content, and change the file name to my.ini

[mysql]
#Set the default character set of mysql client
default-character-set=utf8
[mysqld]
#Set port 3306
port=3306
#Set the installation directory of mysql
 
basedir=D:\Program\mysql-5.7.26-winx64
#Set the storage directory for the data of the mysql database
datadir=D:\Program\mysql-5.7.26-winx64\\data
 
#Maximum number of connections allowed
max_connections=200
#The character set used by the server defaults to UTF8
character-set-server=utf8
# The default storage engine that will be used when creating new tables
default-storage-engine=INNODB

skip-grant-tables

Environment variables

Copy the bin directory address and add it to the environment variable

Reference: https://lengqie.live/archives/103.html

Installation and Initialization

Run CMD input with administrator rights (must be an administrator here!!!)

mysqld install #Install
mysqld --initialize #Initialization

Start service

net start mysql #Start service

Login

mysql -uroot -p #Login

Since the last item when configuring my.ini is configured for password-free login, a password is required for login. If you want to log in with a password, please

Reconfigure my.ini and comment the last line of code, such as

[mysql]
#Set the default character set of mysql client
default-character-set=utf8
[mysqld]
#Set port 3306
port=3306
#Set the installation directory of mysql
 
basedir=D:\Program\mysql-5.7.26-winx64
#Set the storage directory for the data of the mysql database
datadir=D:\Program\mysql-5.7.26-winx64\\data
 
#Maximum number of connections allowed
max_connections=200
#The character set used by the server defaults to UTF8
character-set-server=utf8
# The default storage engine that will be used when creating new tables
default-storage-engine=INNODB

#skip-grant-tables

During initialization, the system randomly generates passwords. You can use the .err file in the data directory of the installation directory! We can open the file to view the default password, which is around line 7.

We can change the password using a simple MySQL statement after logging in to MySQL

set password for root@localhost = password(‘your password’);

Remember to restart the service after changing the configuration file

net stop mysql #pause service
net start mysql #Start service

Python various derivation expressions

List comprehension

List comprehensions can use data types such as range intervals, tuples, lists, dictionaries, and sets to quickly generate a list that meets specified requirements.
The syntax format of list comprehension is as follows:

[Expression for iteration variable in iterable object [if conditional expression] ]

example,

>>> list=[x**2 for x in range(10) if x%2==0]
>>> list
[0, 4, 16, 36, 64]

Multi-level derivation;

>>> list=[(x,y) for x in range(5) for y in range(5) if x%2==0 if y%2!=0]
>>> list
[(0, 1), (0, 3), (2, 1), (2, 3), (4, 1), (4, 3)]

Dictionary derivation

Dictionary comprehensions are similar to list comprehensions. example,

>>> dict={"a":3,"b":5}
>>> dict2={k:v**2 for k,v in dict.items()}
>>> dict2
{"a": 9, "b": 25}
>>> dict={"a":3,"b":5}
>>> dict2={v:k for k,v in dict.items()}
>>> dict2
{3: "a", 5: "b"}

Set derivation

Set comprehensions are similar to dictionary comprehensions. example,

>>> set={x**2 for x in {1,2,3}}
>>> set
{1, 4, 9}

refer to

Sunflowers in the Rising Sun

Time module: time
Time is a built-in module of python, which passes a series of operation time functions. Reference method:

import time; #Introduce time module

Time acquisition

  • timestamp
    Each timestamp is expressed as how much time has passed since 00:00 on January 1, 1970

    nowtime=time.time()
  • Visualize time
    Since the timestamp is not suitable for our observation, we can use ctime to visualize the time of the timestamp transfer behavior.

    nowtime=time.ctime()
  • time tuple
    Time tuple (struct_time) is a time format that python can handle

    nowtime=time.gmtime

    Due to the division of different time zones, we will find that the time we obtain will be eight hours different from the actual time. We can obtain the local time through localtime, and the obtained time is also a time tuple structure.

    localtime=time.localtime()

    Time formatting

    >>>localtime=time.localtime()
    >>>time.strftime("%Y-%m-%d %H:%M:%S"),localtime

    Structured representation

    FormatMeaning
    %alocale simplified day of the week name
    %ALocal full week name
    %bLocal simplified month name
    %BLocal full month name
    %cLocal corresponding date and time representation
    %dDay of the month (01 - 31)
    %HHour of the day (24-hour clock, 00 - 23)
    %IHour number (12-hour clock, 01 - 12)
    %jDay of the year (001 - 366)
    %mMonth (01 - 12)
    %MMinutes (00 - 59)
    %pThe corresponding character of local am or pm
    %SSeconds (01 - 61)
    %UThe number of weeks in the year. (Sunday 00 - 53 is the start of the week.) All days before the first Sunday are placed in week 0.
    %wDay of the week (0 - 6, 0 is Sunday)
    %Wis basically the same as %U, except that %W starts the week on Monday.
    %xLocal corresponding date
    %XLocal response time
    %yYear without century (00 - 99)
    %YComplete year
    %ZThe name of the time zone (null character if not present)
    %%‘%’ character

    Program timing

  • perf_counter()
    perf_counter() is a timing function that can return a CPU-level accurate count value in seconds. When used, two timings are required to calculate the difference to obtain the correct program running time.

    >>>start=time.ptrf_counter()
    >>>end=time.ptrf_counter()
    >>>time=end-start

    -sleep()
    sleep(s) is a sleep function. Its usage is similar to C/C++. s is the sleep time, the unit is seconds, and it can be a floating point number.

    >>>def wait():
    time.sleep(3.3)
    >>>wait()