Understand 127 common JS program snippets in 30 minutes
This article refers to the original text- http://bjbsair.com/2020-03-22/tech-info/2077/
JavaScript is currently one of the most popular programming languages, as most people say: "If you want to learn a programming language, learn JavaScript."
Quincy Larson, the founder of FreeCodeCamp, was asked in a recent interview which language ...
Added by freeheader on Mon, 23 Mar 2020 18:45:36 +0200
Design of platform level exception framework
As important as code readability, strict awareness of exception handling is a developer's professional quality and basic skill. In the early era of J2EE technology, the tight coupling of front and back ends often results in the situation that the back end reports an error directly to the front end, that is, the page is a piece of abnormal code. ...
Added by rastem on Sun, 22 Mar 2020 13:01:55 +0200
Swiper quick switch plug-in
The difference between swiper2.0 and 3.0:
3.0 supports some PC browsers
3.0 merge js, add animation.css
3.0 continue update, 2.7.6 stop update
html structure:
<div class="swiper-container">
<div class="swiper-wrap">
<div class="swiper-slide">
</div>
</div>
</div ...
Added by turtlefox on Thu, 19 Mar 2020 19:14:30 +0200
Python crawler - Prince oriented programming.
Python web crawler and information extraction.
Article directory
Python web crawler and information extraction.
Tools.
Requests library.
Installation.
Main methods of Requests library.
requests.request()
GET() method.
Two important objects of Requests library.
The Response object returns the c ...
Added by flyingeagle855 on Sun, 15 Mar 2020 13:36:59 +0200
What kinds of webpack plug-ins do you use?
background
Recently, I've been looking at something related to weback plug-ins. I don't know a lot about weback, but these things are necessary for senior programmers to master. Try to learn.
introduce
Official website: https://www.webbackjs.com/concepts/plugins/
There are so many things on the ...
Added by skalar on Sun, 15 Mar 2020 11:03:26 +0200
On the use of Acl of NG Alain
Preface
Recently, angular is always used as a background system. I found the Ng Alain framework for a long time, and it's quite easy to use. It's just that the official document is a little more concise. In the process of using it, we have to combine some small examples and official demo to determi ...
Added by Calamity-Clare on Thu, 12 Mar 2020 11:24:09 +0200
Common Golang Type Conversions
**
1.Type(expression):
**
int(time.Now().Weekday()) //Monday int
int(time.Now().Month()) //Month to int
var a float64
a = 3.1
b := int(a) //float64 to int
var a int
a = 1
b := int64(a) //int to int64
**
2.strconv package:
**string and int, int32, int64:
i, _ := strconv.Atoi(s) //string to int
s := strconv.Itoa(i) //int to string
i, ...
Added by jj20051 on Sat, 07 Mar 2020 02:45:49 +0200
Gloonts - probabilistic time series modeling
Recently, the research of time series prediction model is being done. As for the more introduction of time series, we know that there are big guys who have made a detailed and systematic introduction. You can go directly if you are interested Here To glance at.
This is about the source code learning of ...
Added by soulzllc on Thu, 05 Mar 2020 06:16:29 +0200
Java docking wechat login
Today we are going to log in to the wechat open platform
First, link to the document: https://developers.weixin.qq.com/doc/oplatform/Website_App/WeChat_Login/Wechat_Login.html
1. After the third party initiates the wechat authorization login request, and the wechat user allows to authorize the third party application, wechat will pull up the a ...
Added by OLG on Wed, 04 Mar 2020 06:47:54 +0200
Deconstruction and assignment of variables in ES6
Destructuring assignment
1. Deconstruction and assignment of array
Basic Usage
The left and right sides have the same structure
Right must be a legal value
Declaration and assignment cannot be separated in one sentence
let arr = [1, 2, 3];
let a = arr[0];
let b = arr[1];
let c = arr[2];
conso ...
Added by blkraven on Sun, 01 Mar 2020 16:12:36 +0200