Using the syntax of githubpages topic NexT
Title Map
Using the syntax of githubpages topic NexT
NexT
Preface
Don't know why? The website always doesn't appear?
Add label page
title: Tag test article
tags:
- Testing
- Another Tag
---
New page:
Set page type:
$ hexo new page tags
title: Label
date: 2014-12-22 12:39:04
type: "tags"
---
menu:
home: /
archives ...
Posted by a1ias on Fri, 06 Dec 2019 15:09:00 -0800
leecode: move zero
leecode (8) - move zero
Mobile zero
Description:
Given an array of nums, write a function to move all zeros to the end of the array while maintaining the relative order of non-zero elements.
Example:
Input: [0,1,0,3,12]
Output: [1,3,12,0,0]
Explain:
You must operate on the original array. You cannot copy additional arrays.
Minim ...
Posted by timvw on Fri, 06 Dec 2019 03:40:40 -0800
Using uwolfer Gerrit rest java client to get Gerrit information
When using Gerrit to do code management tools, it is inevitable to call Gerrit's API.
Gerrit rest api
Let's take a look at an example and experience the interaction process of the gerrit rest api:
The requests are as follows: changes is an API, the q string must be familiar to gerrit users, and n is the number of restrictions:
GET /changes/?q=s ...
Posted by Reef on Thu, 05 Dec 2019 19:32:55 -0800
#leetcode: the way to brush questions
A list is given. Each k nodes are flipped and the flipped list is returned.k is a positive integer whose value is less than or equal to the length of the list. If the total number of nodes is not an integral multiple of k, the remaining nodes will remain in the original order.
Example:Given this list: 1 - > 2 - > 3 - > 4 - > 5When ...
Posted by Spekta on Thu, 05 Dec 2019 14:03:57 -0800
Wechat applet message notification - clock in attendance
Title Map
Wechat applet message notification - clock in attendance
Effect:
Insert picture description here
Just change js a little. If there is any unnecessary error, I will not change it. Ha ha!
index.js
//index.js
const app = getApp()
// Fill in wechat applet appid
var appid = '';
// Fill in wechat applet secret ...
Posted by Henaro on Thu, 05 Dec 2019 07:13:05 -0800
Django rest framework 03
Permission component
Source code
The source code execution process of the permission component is the same as that of the previous authentication component, as follows:
self.check_permissions(request)
def check_permissions(self, request):
"""
Check if the request should be permitted.
Raises an appropriate exception if the request i ...
Posted by areid on Wed, 04 Dec 2019 10:39:39 -0800
Spring cloud entry notes Feign declarative HTTP call
In spring cloud, every microservice is a service provider as well as a service consumer, and each microservice often needs to call each other. Generally, services provide some REST interfaces for external services to call. Feign is a component that provides explicit HTTP calls between services. With feign, we can use spring MVC ...
Posted by Shibby on Wed, 04 Dec 2019 04:20:22 -0800
ES6 on arrow function pointing to This
Arrow function is a good thing. It is easy to write and has a clear structure. However, if you are used to this in es5, you may be disturbed when you use and understand es6. Learn from online case analysis.
Explain the process and I< On this keyword case >In the same order, comparative learning is helpful for understandi ...
Posted by Ads on Tue, 03 Dec 2019 02:31:46 -0800
17 + + and -- operator analysis
++And -- the essence of operators
++And -- operators correspond to two assembly instructions
Preposition
Variable increment (decrement) 1
Take variable values
Postposition
Take variable values
Variable increment (decrement) 1
++And -- operator usage analysis
A troubling pair of brothers
int i = 0;
(i++) + (i++) + (i++);(++i) + (++ ...
Posted by Eskimo on Mon, 02 Dec 2019 22:31:37 -0800
Android learning case - calculator
The last article talked about the six basic layouts of android: https://blog.csdn.net/qq_40205116/article/details/88418781
This article uses layout to make an android small project (calculator). The effect is as follows (those who wanted to insert video, but found that they couldn't insert video, could only insert pictures. He ...
Posted by russia5 on Mon, 02 Dec 2019 14:32:31 -0800