The right way to use RabbitMQ in. NET Core

First, the official website: http://www.rabbitmq.com/ Then. NET Client link: http://www.rabbitmq.com/dotnet.html GitHub warehouse: https://github.com/rabbitmq/rabbitmq-dotnet-client Next, I will go directly to the text. There are two themes: how to write for consumers? How to write for producers? Consumer In dotnet core mvc, consumers must not ...

Posted by iamyespee on Sun, 08 Dec 2019 07:12:03 +0100

Summary of front-end common plug-ins and tool Libraries

Preface In development, we often encapsulate some commonly used code blocks and function blocks to make better reuse. Then, the plug-in is formed by pulling out the plug-in to complete the function independently and interacting with other parts through API or configuration items. Here are some common front-end open-source plug-ins that I have ...

Posted by joukar on Sun, 08 Dec 2019 03:51:57 +0100

Obtain authorization to access SF user data through OAuth2.0

Knowledge of OAuth2.0 Learn more about OAuth 2.0 in Salesforce (SF official) A simple explanation of OAuth 2.0 (Ruan Yifeng) Four ways of OAuth 2.0 GitHub OAuth third party login example tutorial (Ruan Yifeng) Create application New application Access samples (Python+django) Environmental preparation: index.html There are t ...

Posted by david212 on Sat, 07 Dec 2019 22:18:17 +0100

[Xuefeng magnetite blog] python GUI job: tkinter control changes background color

python test development project practice directory python tools book download - continuous update python 3.7 quick start tutorial - Directory Requirement Use tkinter to generate the following window: Enter a name in the text box in the upper right corner, select a number in the next drop-down box, click "click me!", and the text o ...

Posted by Rony on Sat, 07 Dec 2019 22:12:10 +0100

Android uses fragment ation to implement the bottom title bar (Github template open source)

In Android development, a very important layout is the bottom Title bar. With the bottom Title bar, we have the framework of the whole software UI development. Generally speaking, the layout of the whole software starts from the bottom Title bar, then other modules are written to form a complete software, so how can we write a bottom label?Titl ...

Posted by Noctule on Sat, 07 Dec 2019 12:50:30 +0100

Spring Cloud Alibaba:Nacos Used as Registry and Configuration Center

SpringBoot e-commerce project mall (20k+star) address: https://github.com/macrozheng/mall abstract Spring Cloud Alibaba is dedicated to providing one-stop solutions for microservice development. As one of its core components, Nacos can be used as a registry and configuration center. The usage of Nacos is described in detail in this article. In ...

Posted by nicephotog on Sat, 07 Dec 2019 10:57:33 +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

Node.js generates a QR code image on the specified image template with a text description at the bottom

In Node.js, we can use the qr-image The package generates the QR code image directly in the background. The usage is simple: var qr = require('qr-image'); exports.createQRImage = function(res, str){ var img = qr.image(str); // A QR code picture will be generated res.writeHead(200, {'Content-Type': 'image/png'}); img.pipe(res) ...

Posted by jasper182 on Fri, 06 Dec 2019 18:11:55 +0100

js realizes the function of image upload and deeply understands the principle of image upload

js realizes the function of uploading pictures. The effect is to see the pictures first to suppress the shock Picture upload.gif Principle: Structure part: input tag You may not have noticed that the input tag has the same effect. 1. The type attribute is file 2.accept is the file format allowed to be selected (if it is a pic ...

Posted by fri3ndly on Fri, 06 Dec 2019 10:50:04 +0100

A multi page application configuration based on react+webpack

Brief introduction First of all, this article will not explain the web pack code, all of its configuration can be found on the documentation. I usually write some multi page applications in my work. Because I am used to the development mode of react, I write a simple configuration to share with you. If you like it, it will be helpful for your d ...

Posted by John Rowe on Fri, 06 Dec 2019 09:44:55 +0100