Summary of JavaScript Implementation of Top Ten Sorting Algorithms

It took weeks of intermittent practice and imitation to implement the top ten sorting algorithms using JavaScript code. There are dynamic and static picture demonstrations of each algorithm. When you see the picture, you can implement it according to the idea of the picture first.   The text link in github, Click to see Two-year front-end l ...

Posted by onepixel on Tue, 08 Oct 2019 07:45:15 +0200

Golang Reptiles: Use of colly Library

1. Introduction to colly: Colly is a Golang framework for building Web scraper. With Colly, you can build complex Web scrapers, ranging from simple scrapers to complex asynchronous Web crawlers that handle millions of Web pages. Colly provides an API for executing network requests and processing recei ...

Posted by Mikell on Mon, 07 Oct 2019 22:35:11 +0200

net core uses Rotativa to create PDF documents

Download Rotaiva Tool = NuGet package manager = NuGet package management solution Search for Rotativa.AspNetCore on the open page as follows:     Check the record in red box, all the projects in your solution will appear on the left, click on the installation to add the project, and the version number will appear after the installation is ...

Posted by lordtrini on Sat, 05 Oct 2019 19:15:07 +0200

Preliminary Study on Spring 5 Source Parsing 3-refresh Method

Next, after analyzing register (annotated classes) last time, let's look at refresh(); method. // New Annotation Config Application Context (AppConfig. class); source code public AnnotationConfigApplicationContext(Class<?>... annotatedClasses) { //Call the default parameterless constructor, which has a lot of initialization logic ...

Posted by n8r0x on Sat, 05 Oct 2019 05:11:06 +0200

Play Spring Boot 2 Integration JWT Part I

Preface This article takes you to understand what JWT is, as well as the introduction of JWT definition and first pass concept, and gives you a simple Demo to learn how to integrate SpringBoot with SpringBoot 2. Before introducing, here we will discuss how to learn a new technology, which I personally summarize as RSA. R: Read to read official ...

Posted by luddeb on Sat, 05 Oct 2019 04:10:42 +0200

[Android] Initialize every page with JsBridge and WebView

Now there's a requirement: initialize the toolbar in the android interface based on the json passed from the page. So use JsBridge Implementation'com.github.lzyzsd: jsbridge: 1.0.4'//js and android interaction framework Import the JsBridge project, add a webview to the layout, and then come to th ...

Posted by JMair on Sat, 05 Oct 2019 01:54:45 +0200

Simple Practice of Disruptor Framework

Simple Practice of Disruptor Framework Basic knowledge Architecture diagram Core concept Simple practice https://github.com/LMAX-Exchange/disruptor/wiki/Introduction https://github.com/LMAX-Exchange/disruptor/wiki/Getting-Started http://lmax-exchange.github.io/disruptor/files/Disruptor-1.0.pdf ...

Posted by finkrattaz on Fri, 04 Oct 2019 07:32:53 +0200

Data Structure and Algorithmic Solution of Binary Search Tree (js Edition)

Written in front This paper introduces the data structure of binary search tree and the front-end implementation of some operations, and some corresponding LeetCode problems. Node class class Node { constructor({value, left, right}) { this.value = value; this.left = left; this.right = right; } } Binary Search Tre ...

Posted by mark_nsx on Thu, 03 Oct 2019 04:39:27 +0200

c#Winform Custom Control - Splitting Line

premise It's been 7 or 8 years, and I've always wanted to make a beautiful set of custom controls, so I've got this series of articles. GitHub: https://github.com/kwwwvagaa/NetWinformControl Code cloud: https://gitee.com/kwwwvagaa/net_winform_custom_control.git If you think it's OK, please click ...

Posted by chrispbrown on Thu, 03 Oct 2019 04:17:42 +0200

WPF uses Material Design to make a beautiful login page

introduction After learning about Material Design, it's really useful and effective, so I did a login page as an exercise. Don't talk too much nonsense, just straighten it out.   Have a look Its animation is more abundant.   Environment building Direct reference https://mp.csdn.net/postedi ...

Posted by qteks200 on Tue, 01 Oct 2019 17:27:44 +0200