[GO Development Series - Foundation] Introduction to Go Foundation

[GO Development Series - Foundation] Introduction to Go Foundation The Characteristics of Golang Language The Go language not only has the security and performance of static compiler language, but also has the high efficiency of dynamic languag ...

Posted by garygay on Thu, 22 Aug 2019 13:13:45 +0200

Make a LAN Chat Tool with Socket

Links to the original text: http://www.cnblogs.com/technology/archive/2010/08/15/1799858.html Programming becomes a simple communication between the server and the client, but through some methods, the two can be unified, so that th ...

Posted by bigfunkychief on Mon, 19 Aug 2019 15:56:28 +0200

Common objects of native JS

create object ECMA variable Define variables with the'var'keyword and initialize them to arbitrary values Values stored in variables can be changed Keyword and Retained Word Keyword Retention words ECMAJscript operator Operators are ...

Posted by MetroidMaster1914 on Sun, 18 Aug 2019 15:54:00 +0200

Giant Number - Three Operations (+,-,*)

This blog article mainly explains an idea - converting strings to values, then to structures, and reviewing the use of some file operations. Then, return to the theme: As far as we know, the maximum positive number that an int variable can represent is more than 2.1 billion. So, if we want to process da ...

Posted by Mantis_61 on Mon, 12 Aug 2019 10:08:20 +0200

LEETCODE (1-10) OF JS ALGORITHM PROBLEMS

Preface For a long time, the knowledge reserve of front-end development is temporary at the data structure and algorithm level, which may be attributed to the business nature of our front-end development, but I think any programming position can not do without data structure and algorithm.Therefore, as a front-end vegetable chicken, I intend to ...

Posted by redgtsviper on Mon, 12 Aug 2019 09:17:04 +0200

Linux curl command in detail

Summary of orders This command is designed to work without user interaction. curl is a tool for transferring data from or to servers. "Transfer data to the server or get data from the server" The supporting protocols are DICT, FILE, FTP, FTPS, GOPHER, HTTP, HTTPS, IMAP, IMAPS, LDAP, LDAPS, POP3S, POP3S, RTMP, RTSP, SCP, SFTP, SMTP, ...

Posted by poirot on Fri, 09 Aug 2019 12:20:28 +0200

Data Acquisition of Wireless Barcode Gun Based on QT

Recent projects encountered the need to collect product barcode and two-dimensional code to save and display, and upload servers or enterprise ERP system, so for wireless and two-dimensional code scanner data acquisition test.The javelin itself is an input device, similar to keyboard input. Bar codes are ASCII characters, and the last character ...

Posted by henry gayman on Mon, 05 Aug 2019 11:15:31 +0200

Thirteen Python Exercises

I. Perfect Cube Write a program to find all quaternions (a,b,c,d) for any given positive integer N (N < 100), so that a^3= b^3 + c^3 + d^3, where a,b,c,d is greater than 1, less than or equal to N. Input a positive integer N (N < 100) and output a perfect cube per line. The output formats are: Cube = a, Triple = b, c, d, where a,b,c,d are ...

Posted by uptime on Sun, 04 Aug 2019 10:45:32 +0200

Analysis of UDP Data Transferred by python Meteorological Equipment-Notes

Articles Catalogue Background II. Summary of Contents 2.1 Creation of UDP Communication Server ** DUP uses connectionless sockets** 2.2 16-digit data parsing 2.3 File Creation and Data Storage Analysis Background Recently, in a company's equipment, the built-in DTU sends 16-digit data messages ...

Posted by BSlepkov on Wed, 31 Jul 2019 08:06:39 +0200

Old boy python stack s21day02 homework

day02 homework 1. Guess the number, set an ideal number such as: 66, let the user input the number, if larger than 66, the result of the guess is larger; if smaller than 66, the result of the guess is smaller; only equal to 66, the result of the guess is correct, and then exit the loop. value= 66 wh ...

Posted by Roggan on Sun, 28 Jul 2019 08:56:29 +0200