RESTful Architecture and Practice Refinement Treasure

1. Introduction to concepts 1. REST concepts REST: (Representational State Transfer) Representational State Transfer, which defines a common access format for resources, is a style of design and development for network applications. Conceptually, you need to understand the following names: Resource s That is, anything you get on the server, a ...

Posted by cyronuts on Mon, 25 Nov 2019 22:57:48 +0100

Python crawls Python's recruitment information on 51job.com

Preface The text and pictures of the article are from the Internet, only for learning and communication, and do not have any commercial use. The copyright belongs to the original author. If you have any questions, please contact us in time for handling. Author: my surname is Liu, but I can't keep your heart PS: if you need Python learning mater ...

Posted by panic! on Mon, 25 Nov 2019 18:30:14 +0100

Python crawls to get the funny video of Zhihu

Preface The text and pictures of the article are from the Internet, only for learning and communication, and do not have any commercial use. The copyright belongs to the original author. If you have any questions, please contact us in time for handling. By: Huangwei AI Source: Python and machine learning PS: if you need Python learning material ...

Posted by gsb on Mon, 25 Nov 2019 07:43:06 +0100

Gorang network programming (10) text processing

golang_real.jpg Json processing Now most of the data we get from the server is in json format, so the data processing of json format is very important in web application development. I think you can't be more familiar with json. To put it simply, json is a lightweight data exchange language. Although json is a subset of javas ...

Posted by mostwantedunm on Sat, 23 Nov 2019 15:16:14 +0100

How to read the uni app framework efficiently? (recommended Collection)

By Jeskson Source: front end tavern of dada The framework of uni app, configuration: page.json, manifest.json, package.json, vue.config.js. Script, application, main.js. Log printing, timer, life cycle, page, page communication. pages.json file is used for global configuration of uni app. It is used to write path, window style, tabbar at the ...

Posted by rharter on Fri, 22 Nov 2019 20:05:53 +0100

Generating dynamic ansible Inventory by flask + flask ﹣ Sqlalchemy

1. Introduction to ansible inventory; Ansible Inventory includes two parts: static Inventory and dynamic Inventory. Static Inventory refers to the host and group specified in the file. Dynamic Inventory refers to obtaining the host list through external script and returning it to ansilbe command according to the format required by ansible. In ...

Posted by Isoss on Fri, 22 Nov 2019 17:51:54 +0100

Overview of common build optimization for webpack s

brief introduction Read "Shallow web pack" to summarize common web pack construction optimization strategies, you can improve the speed of project construction by the following means More precise loader rules Write the loader rules clearly Just let the files that need to be processed go into the loader process as follows rules: [{ ...

Posted by utpal on Wed, 20 Nov 2019 22:08:25 +0100

Vue cli project template file description asynchronous request

This article is the http part of src directory under vue/cli, with project structure reference Description of Vue cli project template file (I) overall structure Reference to this catalog Here If you have any questions about this directory, you can adjust it by reference. The following is the contents of a single file (1) con ...

Posted by sheen4him on Tue, 19 Nov 2019 20:25:04 +0100

[js common polyfill] JSON object 𞓜 native js implements JSON.parse() and JSON.stringify()

Article directory I. complete code Two, analysis JSON is a syntax for serializing objects, arrays, values, strings, Booleans, and null s. It's based on JavaScript syntaxThe JSON object contains two methods: JSON.parse() method for parsing JavaScript object notation (JSON),https://developer.mozilla.org/zh-CN/docs/Web/JavaS ...

Posted by okyejr on Tue, 19 Nov 2019 16:51:44 +0100

Elasticsearch Series - A Simple Start

outline This article mainly introduces the data format of Elasticsearch Document, compares the modeling of Java applications and relational databases, describes the basic cluster state query, the basic CRUD operation example of Document and the bulk batch processing example by writing Restful API on Kibana platform. Document data format The dat ...

Posted by andyg2 on Tue, 19 Nov 2019 01:55:25 +0100