Ubuntu tornado Python 3.7.5 nginx supervisor deployment web api

Environmental Science: 1. Ubuntu server 2,python3.7.5 install 1,python3.7.5 The installation is relatively simple, and the process is roughly. / configure - > make & & make install - > create python soft connection pip soft connection It's easy to install. Only when the installation is completed and running can we encounter all ki ...

Posted by james13009 on Wed, 11 Dec 2019 01:06:18 +0100

linux serial communication reading information

In these two days, we need to do a serial communication to receive the information transmitted from peripheral devices. Many programs on the Internet are more complex. We have written a simple and easy program. The main process is: open serial port - > initialization - > circular reading. The code is as follows: #include & ...

Posted by mb81 on Sun, 08 Dec 2019 05:25:13 +0100

Table query operation

1. General query 1 SELECT the column field to be displayed FROM table name [WHERE condition]; Two cases: select userid, username from userinfo where user age < 30; 3. Query all fields: SELECT * FROM table name; 2. order by asc | desc 1 SELECT * FROM userinfo ORDER BY userage ASC; //Ascending order 2 SELECT * FROM useri ...

Posted by theqase on Sat, 26 Oct 2019 07:41:14 +0200

python Notebook Programming Style Competition

Links to the original text: https://my.oschina.net/kooksee/blog/542430 python Notebook Programming Style Competition Although my python age is not very high, I would like to share ...

Posted by rich86 on Fri, 04 Oct 2019 18:57:44 +0200

Development and Manufacture of Fireant Mining System APP

SqlHelper.class.php + Fireant Mining System APP develops T:/ I8O.2853.296O V. Vim/Vi has always been the most popular text editor on UNIX/Linux system. Since I came into contact with UNIX in 2001, Vim/Vi has always been my preferred editor for modifying system files and writing simple programs. It is a necessary tool for home travel. How to imp ...

Posted by barneybarney68 on Wed, 02 Oct 2019 05:23:29 +0200

MYSQL Processing Date-Time Function

I. MySQL Gets the Current Date-Time Function 1.1 Get the current date + time Function: now() mysql> select now(); +---—+ | now() | +---—+ | 2008-08-08 22:20:46 | +---—+ In addition to the now() function to get the current date and time, MySQL has the following functions: current_timestamp() ...

Posted by iamtom on Thu, 26 Sep 2019 09:27:39 +0200

Python Learning Journal Socket Module

Socket Sockets are an abstraction layer through which applications can send or receive data, open, read, write, and close like files.Sockets allow applications to plug I/O into the network and communicate with other applications on the network.A network socket is a combination of IP addresses and ports. Development: Sockets were originally a ...

Posted by madsm on Sat, 14 Sep 2019 21:42:42 +0200

Dokit supports iOS local crash viewing

I. Preface Crash problems may arise in our applications during daily development or testing. We should adopt a zero tolerance attitude towards such problems, because if such problems occur online, it will seriously affect the user's experience. If Crash happens to be in the process of development, developers can locate the cause of the problem ...

Posted by inutero on Tue, 10 Sep 2019 05:33:26 +0200

The Way to Shell Script Learning--01

Less keyword commands used: 1. at: (automatic) represents the automatic execution of a task Example: ``` at 10am mar 31 2015 at> echo "taxes due" At> ^D (ctrl+D for storing the task) ``` atq: Show scheduled tasks atrm job-d: Delete a set tas ...

Posted by carleihar on Wed, 04 Sep 2019 04:33:42 +0200

[Linux] history command displays time records

Hisry commands are available on both inux and unix to query the history of previously executed commands However, this record does not contain a time item So you can only see commands, but you don't know when to execute them Here's how history records time: Step 1: Check to see if your system supports it Note: This method is only valid for bash ...

Posted by Stingus on Sat, 31 Aug 2019 21:41:53 +0200