Learning regular expressions through examples
Determine if your mailbox is correct
Mailbox Regular
/\w+[\w\.]*@[\w\.]+\.\w+/
test case
const regex = /\w+[\w\.]*@[\w\.]+\.\w+/
regex.test('666@email.com') // true
regex.test('july@e.c') // true
regex.test('_@email.com.cn') // true
regex.test('july_1234@email.com') // true
regex.test(' ...
Posted by SFDonovan on Fri, 23 Aug 2019 20:08:20 -0700
python form traversal
Get the information behind the login window
Most web servers use the GET method of HTTP protocol to request information when they interact with data, and the page form can basically be seen as a way for users to submit POST requests. Just as Web ...
Posted by TurtleDove on Tue, 20 Aug 2019 20:06:26 -0700
DVWA-CSRF (Cross-Station Request Forgery)
CSRF: (Cross Site Request Forgery), an attacker constructs a request address of a functional interface in the background of a website, induces users to click on it or uses special methods to load the request address automatically. When the user is lo ...
Posted by FlyingIsFun1217 on Tue, 20 Aug 2019 00:30:39 -0700
[Drawing Platform Development HTML+JS+PHP] Form submission of lottery results for front-end and back-end data interaction on the Web
Previous Content Summary:
[Draw Platform Development (1) HTML+JS+CSS] Front-end implementation of lottery function
After the front end of the lottery function is built, the main goal of this chapter is to submit the results of the lottery to ...
Posted by Dm7 on Mon, 19 Aug 2019 19:06:28 -0700
Summary of Work Questions for Weeks 2019-08-18
baiyan
apache correlation
Using apache to configure multiport bindings to implement a local microservice architecture
Configuration file httpd.conf:
Listen 80
Listen 9399
DocumentRoot "C:/Users/jiangbaiyan/PhpstormProjects/NicoRobin/public"
<Directory "C:/Users/jiangbaiyan/PhpstormProjects/NicoRobin/public">
Options Indexes FollowSym ...
Posted by galvin on Sun, 18 Aug 2019 19:09:30 -0700
Several ways golang implements RPC
Original Link: https://studygolang.com/articles/14336
Several ways golang implements RPC
https://studygolang.com/articles/14336
What is RPC
Remote Procedure Call (RPC) is a computer communication protocol.This protocol allows programs ...
Posted by ncracraf on Sun, 18 Aug 2019 19:01:03 -0700
83 python Advanced - python Dynamic Language
1. Definition of dynamic language
Dynamic programming language is a category of advanced programming languages and has been widely used in the field of computer science.It is a language that can change its structure at run time: new functions, obje ...
Posted by hassanz25 on Sun, 18 Aug 2019 18:39:18 -0700
PHP-RPM Installation Guide (Useful for hands-on testing)
Note: This tutorial may have a lot of detours, but it is sure that the installation was successful. One problem is that the initial installation of the compiled instructions seems to be wrong, but it was corrected later, but this tutorial has encountered more than 10 problems and solved them, which has some reference and (django) It starts with ...
Posted by UKlee on Sun, 18 Aug 2019 09:44:28 -0700
It's enough for nginx to watch this once.
Articles Catalogue
What is nginx?
nginx application scenario
Installing Nginx in Windows
Advantages and disadvantages of nginx
nginx implements reverse proxy
What is Load Balancing
Load Balancing Strategy
nginx for load balancing
nginx implements ...
Posted by tom100 on Sun, 18 Aug 2019 05:12:59 -0700
Thoughts on Picture Preloading
Original Link: https://www.mk2048.com/blog/blog.php?id=ijckjaa&title=%E5%85%B3%E4%BA%8E%E5%9B%BE%E7%89%87%E9%A2%84%E5%8A%A0%E8%BD%BD%E7%9A%84%E6%80%9D%E8%80%83
Introduction:
Many times when we are writing html pages, when we need to inc ...
Posted by merkinmuffley on Thu, 15 Aug 2019 20:50:06 -0700