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
02Gin Source Interpretation
brief introduction
HttpRouter implementation
data structure
Add Route
addRoute
insertChild
get data
summary
brief introduction
Gin source interpretation, based on v1.5.0 Edition.
HttpRouter implementation
Adding routes is mainly done by addRoute:
func (engine *Engine) addRoute(method, path string, handlers HandlersChain) {
assert1(pa ...
Posted by mabwi on Fri, 06 Dec 2019 14:08:46 -0800
Demonstration of using JsBridge
In the development of Android projects, if we need to call the functions in web in Android programs, we can use Jsbridge as a bridge for communication invocation.
github code Express
Sample demonstration:
Jsbridge mutual call demonstration
Jsbridge library introduction:
implementation 'com.github.lzyzsd:jsbridge:1.0.4'
One s ...
Posted by ldomingues on Fri, 06 Dec 2019 13:44:43 -0800
Computer vision opcencv tool deep learning quick practice 2 opencv quick start
opencv basic operation
# -*- coding: utf-8 -*-
# Author: xurongzhong#126.com wechat:pythontesting qq:37391319
# Technical support nail group: 21745728 (pythontesting invitation can be added)
# qq group: 144081101 591302926 567351477
# CreateDate: 2018-11-17
import imutils
import cv2
# Read picture information
image = cv2.imre ...
Posted by phpete2 on Fri, 06 Dec 2019 13:35:25 -0800
Using PHPExcel to parse Excel tables
Install class library
Download PHPExcel class library from GitHub
Address: https://github.com/PHPOffice/PHPExcel
After unzipping, move the Classes folder to the extend directory of ThinkPHP and rename it phpexcel
Add references where needed in the project
import('phpexcel.PHPExcel', EXTEND_PATH);
code implementation
<?php
namespace app\ind ...
Posted by tlawless on Fri, 06 Dec 2019 12:37:45 -0800
Zephir for PHP extension development
If you often pay attention to the PHP framework falcon, you should know that the team of Falcon has developed a high-level language for better development of falcon—— Zephir.
Zephir, an open source high-level language, aims to simplify the creation and maintainability of PHP extensions, focusing on type and memory secu ...
Posted by nvidia on Fri, 06 Dec 2019 12:24:58 -0800
js callback hell alternative solution attempt
For example, to obtain the information of the school where the students are, you need to first query the class where the students are, and then query the information of the school where the students are. js code is similar to the following:
function getStudentSchool(id) {
ajax.get("/Test/GetStudent", { "studentId": id }, function (stude ...
Posted by kazuki on Fri, 06 Dec 2019 09:16:47 -0800
[Java instance] use thumbnail to generate thumbnails (zoom, rotate, crop, watermark)
1 demand
Cousin needs to sign up for the exam for his son. The system requires uploading no more than 30KB of pictures. Now the mobile phone is just a few MB of pictures. How to get a picture of only 30KB?
A simple way is to reduce the size of the picture on the computer, and then screen capture small pictures, but now the computer screen resol ...
Posted by sulin on Fri, 06 Dec 2019 09:09:54 -0800
Front end CSS: 4 × CSS small fire to achieve warmth
introduce
Original linkThanks comehope Big man's [front end daily battle]
Effect preview
github.io browse
Source code address
https://github.com/shanyuhai1...
Code interpretation
1. First, complete the html structure
<figure class="container">
<section class="stars"></section>
<section class="fires"></section&g ...
Posted by neoboffins on Thu, 05 Dec 2019 21:41:53 -0800
Builder Design in Java
Copyright notice: This is the original article of the blogger. It can't be reproduced without the permission of the blogger. https://blog.csdn.net/u010046908/article/details/50750542
Builder Design in Java
Definition of 1Builder pattern
Separat ...
Posted by ballouta on Thu, 05 Dec 2019 16:30:52 -0800