C ා bubble sort program

Considering that many interviews may examine the use of bubble sorting, I took the time to clarify my thinking. Let's talk about my thoughts:The core of bubble sorting is the comparison method. The comparison method of bubble sorting, as the name implies, is like a bubble, with the maximum (or minimum) number rising.We can use if (a > b) and ...

Posted by xplore on Sat, 14 Dec 2019 15:51:39 +0100

IATHook learning on Windows

Simple Demo IATHook principleIATHook refers to the import table function of a process. When the program runs, IAT will fill in the actual memory address of the function, which is usually in a dll memory loaded! Then we change the address value to the address where our self written function is located. When the system calls the IAT function, it ...

Posted by Mount Tropolis on Fri, 13 Dec 2019 21:07:15 +0100

Spring Cloud:Eureka Service Registry

Preface Service Governance With the development of business, the application of micro-services also increases. The management and governance of these services will become more and more difficult. Cluster size, service location, service naming will change. Manual maintenance is prone to errors or naming conflicts.To solve this problem, service g ...

Posted by danaman on Tue, 10 Dec 2019 13:03:55 +0100

Chinese processing of golang calling windows API

Go language has a strong momentum of development, but there are also many disadvantages. Fortunately, there are many fans who provide numerous libraries, which show their advantages too well. They can use whatever they do, basically ignore the pointer, and the performance is good. Recently, there is a problem in using Chinese under windows. Th ...

Posted by broc7 on Sat, 07 Dec 2019 08:56:20 +0100

FlaskForm of Flask series

By using FlaskForm, the form processing can be realized conveniently and quickly. Explain Operating system: Windows 10 Python version: 3.7x Virtual Environment Manager: virtualenv Code editor: VS Code Experimental target Through the use of flask? WTF form related operations, and complete the new user registration. install pip install flask ...

Posted by boon4376 on Thu, 05 Dec 2019 21:15:31 +0100

Python climbs to Boss direct employment to help you get all kinds of career salary lists in China

Preface The text and pictures of this article are from the Internet, only for learning and communication, not for any commercial purpose. The copyright belongs to the original author. If you have any questions, please contact us in time for handling. Author: Wang Xiang Qingfeng Python PS: if you need Python learning materials, you can click the ...

Posted by Tuss on Wed, 04 Dec 2019 22:36:13 +0100

Python crawler tutorial 13-100 doodle map emoticon package multi thread crawling

Written in front Today, in CSDN blog, I found that many people are crawling through a website called doutula. There are many expression packs in it, and then I look at them. There are various implementation methods. Today, I will implement a multi-threaded version for you. Key technology point aiohttp, you can take a look at my previous article ...

Posted by jackie111 on Mon, 02 Dec 2019 17:25:43 +0100

winlogbeat - collect windows event log and enable default template and dashboard related configuration

winlogbeat is used to collect the system event log of windows; Official website installation method: https://www.elastic.co/guide/en/beats/winlogbeat/current/winlogbeat-installation.html Collect and write the elasticsearch configuration instance: winlogbeat.event_logs:   - name: Security     ignore_older: 24h     event_id: 4624, 4625,4626,4627 ...

Posted by Seraskier on Mon, 02 Dec 2019 03:09:08 +0100

Details of python crawler scratch project (attention, continuous update)

python crawler scratch project (1) Crawling target: Tencent recruitment website (starting url: https://hr.tencent.com/position.php? Keywords = & TID = 0 & start) Crawling content: position; position type; number of recruiters; work location; release time; recruitment detail link; job responsibilities; job requirements Anti creep measure ...

Posted by whatever on Mon, 02 Dec 2019 00:48:51 +0100

python crawler - basic module, you must understand!

Prefacepython crawler, web spider. Crawls the website to obtain the web page data, and carries on the analysis extraction. The basic modules are urllib, urllib2, re, etc (I) basic usage, examples (1) make a basic GET request to GET the html of the web page #!coding=utf-8 import urllib import urllib2 url = 'http://www.baidu.com/' # Get request ...

Posted by mcatalf0221 on Sat, 30 Nov 2019 15:05:25 +0100