6. User email sent by nodemailer system - API nodejs + Express + MySQL practice at the back end of Blog
NodeMailerNodemailer, a mail sending component of Nodejshttp://blog.fens.me/nodejs-em...Node.js uses NodeMailer to send mailhttp://www.jianshu.com/p/ee20...https://github.com/nodemailer...https://nodemailer.com/about/
In our daily development, we sometimes encounter the need for the system to push e-mail to relevant users (for example: send ac ...
Posted by djwiltsh on Sun, 17 Nov 2019 19:45:08 +0100
Django and Python build personal blogs and websites
Build a personal blog
Preface:
Why do I blog?Why did I start blogging? I'm not a big fan
This article tells me, not only me, but also the new rookie like meTo write a blog and build a website is not to show off knowledge, or to entertain, but to summarize their knowledge, improve the structure system, and express their feelings
Get to the point ...
Posted by audiomove on Sun, 17 Nov 2019 15:17:34 +0100
In depth explanation of Laravel's IoC service container
The article was forwarded from the professional Laravel developer community. Original link: https://learnku.com/laravel/t...
as everyone knows, Laravel The function of inversion of control (IoC) / dependency injection (DI) is very powerful. Unfortunately, Official documents I didn't explain all of its functions in detail, so I decided to prac ...
Posted by maineyak on Fri, 15 Nov 2019 09:20:34 +0100
Springcloud 2.x Distributed Configuration Center
1. What is a Distributed Configuration Center?
To provide centralized external configuration support for microservices in the microservice architecture, the Configuration Center provides centralized external configuration for all environments of each microservice application (which may be difficult to understand, but to know what it means, y ...
Posted by vponz on Thu, 14 Nov 2019 21:31:54 +0100
Redis cache in AOP mode using AspectCore
This time, the goal is to implement caching by labeling Attribute s, streamline code, and reduce code intrusion into business code.
Cached content is the summary content of Service queries, without other high-level functions, to improve the response speed of multiple queries in a short time, and to properly reduce the pressure on the database.
...
Posted by esukf on Thu, 14 Nov 2019 06:40:27 +0100
Distributed Version Control System - Git Details
Preface:
The biggest difference between distributed and centralized is that developers can submit code locally, and each developer clones a complete git repository on the local machine.
The following is a classic git development process:
The git features are as follows:
Clone a complete git repository (including code and version informatio ...
Posted by J@ystick_FI on Wed, 13 Nov 2019 20:02:00 +0100
[sword finger Offer] - the last K nodes in the list
Title Description
Input a list and output the K-th last node in the list. In order to meet the habit of most people, count from 1, that is, the end node of the list is the last one. For example, a linked list has 6 nodes, and their values are 1, 2, 3, 4, 5 and 6 from the beginning. The last node of this linked list is a node w ...
Posted by blargalarg on Wed, 13 Nov 2019 19:37:59 +0100
Yii2.0.12 upgrade to PHP7.2
Let's talk about the PHP running environment of the Yii framework.
Yii 2.0.12 uses the \ yii\base\Object class, and the Object as the class name PHP7.2 reports an error.
The minimum available version of Yii2 for PHP7.2 is 2.0.13.
Provides several ways to upgrade.
The project uses Composer to manage bower and npm front-end resources.
Inst ...
Posted by eerikk2 on Sun, 10 Nov 2019 20:37:57 +0100
Go in API planning directory and parameter validation
SummaryFirst, synchronize the following project overview:In the previous article, we used go modules to initialize the project. In this article, we share:Planning directory structureModel binding and validationCustom validatorMake API return structureDon't talk too much. Let's start.Planning directory structure
├─ go-gin-api
│ ├─ a ...
Posted by Dark_AngeL on Sat, 09 Nov 2019 21:34:01 +0100
Using html2canvas to upload pictures to generate posters
Link: Link descriptionUsing Vue + html2canvas + EXIF JS github address Online demo
major function
Upload pictures
Operate on pictures: move, enlarge and shrink
Synthetic Poster
Specific functions:
Upload pictures
html:
<input type="file" value="" accept="image/*" @click="getPhoto" id="image-input">
js
getPhoto () {
var imageInput ...
Posted by libertyct on Fri, 08 Nov 2019 19:14:40 +0100