上一页 1 ··· 16 17 18 19 20 21 22 23 24 ··· 30 下一页
摘要: Authentication Passport - Simple, unobtrusive authentication. Grant - OAuth middleware for Express, Koa, and Hapi. Authorization CASL - Isomorphic aut 阅读全文
posted @ 2020-09-01 22:07 fndefbwefsowpvqfx 阅读(179) 评论(0) 推荐(0) 编辑
摘要: JWT What is JSON Web Token? JSON Web Token (JWT) is an open standard (RFC 7519) that defines a compact and self-contained way for securely transmittin 阅读全文
posted @ 2020-08-25 14:58 fndefbwefsowpvqfx 阅读(182) 评论(0) 推荐(0) 编辑
摘要: Binary Planting Blind SQL Injection Blind XPath Injection Brute Force Attack Buffer Overflow via Environment Variables Buffer Overflow Attack CORS Ori 阅读全文
posted @ 2020-08-25 14:46 fndefbwefsowpvqfx 阅读(139) 评论(0) 推荐(0) 编辑
摘要: XSS (Cross Site Scripting跨站脚本)。 XSS定义的主语是“脚本”,是一种跨站执行的脚本,也就是javascript脚本, 指的是在网站上注入我们的javascript脚本,执行非法操作。 CSRF (Cross-site request forgery 跨站请求伪造,也被称 阅读全文
posted @ 2020-08-25 14:43 fndefbwefsowpvqfx 阅读(140) 评论(0) 推荐(0) 编辑
摘要: 阅读全文
posted @ 2020-08-24 08:41 fndefbwefsowpvqfx 阅读(94) 评论(0) 推荐(0) 编辑
摘要: Normal Permission£º ACCESS_LOCATION_EXTRA_COMMANDS ACCESS_NETWORK_STATE ACCESS_NOTIFICATION_POLICY ACCESS_WIFI_STATE BLUETOOTH BLUETOOTH_ADMIN BROADCA 阅读全文
posted @ 2020-08-23 10:56 fndefbwefsowpvqfx 阅读(215) 评论(0) 推荐(0) 编辑
摘要: 安装卸载app adb install -r <app name.apk> [The -r option allows you to re-install or update an existing app on your device] adb install -s <app name.apk> 阅读全文
posted @ 2020-08-21 23:26 fndefbwefsowpvqfx 阅读(317) 评论(0) 推荐(0) 编辑
摘要: 进入目录执行下面命令 cd YouCompleteMe git submodule update --init --recursive 5. 安装 仅安装支持Python的版本: ./install.py 安装支持C语言家族的版本: ./install.py --clang-completer 安装 阅读全文
posted @ 2020-08-15 23:14 fndefbwefsowpvqfx 阅读(209) 评论(0) 推荐(0) 编辑
摘要: mkdir sarasaFontInstall cd sarasaFontInstall wget http://mirrors.tuna.tsinghua.edu.cn/github-release/be5invis/Sarasa-Gothic/LatestRelease/sarasa-gothi 阅读全文
posted @ 2020-08-15 20:33 fndefbwefsowpvqfx 阅读(95) 评论(0) 推荐(0) 编辑
摘要: which <--> Get-Command 阅读全文
posted @ 2020-08-13 16:20 fndefbwefsowpvqfx 阅读(98) 评论(0) 推荐(0) 编辑
摘要: https://chocolatey.org/install Set-ExecutionPolicy Bypass -Scope Process -Force; [System.Net.ServicePointManager]::SecurityProtocol = [System.Net.Serv 阅读全文
posted @ 2020-08-13 16:18 fndefbwefsowpvqfx 阅读(181) 评论(0) 推荐(0) 编辑
摘要: ## do.sh ```bash #!/bin/bash repeat() { while :; do $@ && return; sleep 1; done } retryuntil() { echo $(date +%F%n%T) msg=`./job.sh 2>&1` echo $msg #e 阅读全文
posted @ 2020-08-13 11:36 fndefbwefsowpvqfx 阅读(120) 评论(0) 推荐(0) 编辑
摘要: export const patterns = [{ name:"Date in format dd/mm/yyyy", regex:/^(0?[1-9]|[12][0-9]|3[01])([ /\-])(0?[1-9]|1[012])\2([0-9][0-9][0-9][0-9])(([ -])( 阅读全文
posted @ 2020-08-12 19:28 fndefbwefsowpvqfx 阅读(127) 评论(0) 推荐(0) 编辑
摘要: 目录 邮箱 电话 域名 IP 帐号校验 字符校验 汉字 英文和数字 长度为3-20的所有字符 英文字符 由26个英文字母组成的字符串 由26个大写英文字母组成的字符串 由26个小写英文字母组成的字符串 由数字和26个英文字母组成的字符串 由数字、26个英文字母或者下划线组成的字符串 中文、英文、数字 阅读全文
posted @ 2020-08-12 19:24 fndefbwefsowpvqfx 阅读(181) 评论(0) 推荐(0) 编辑
摘要: Regular expressions are patterns used to match character combinations in strings. In JavaScript, regular expressions are also objects. These patterns 阅读全文
posted @ 2020-08-12 19:14 fndefbwefsowpvqfx 阅读(111) 评论(0) 推荐(0) 编辑
摘要: syntax specifications std::ECMAScript syntax ECMAScript regular expressions pattern syntax The following syntax is used to construct regex objects (or 阅读全文
posted @ 2020-08-12 19:12 fndefbwefsowpvqfx 阅读(131) 评论(0) 推荐(0) 编辑
摘要: Regular Expressions (C++) 11/04/2016 https://docs.microsoft.com/en-us/cpp/standard-library/regular-expressions-cpp The C++ standard library supports m 阅读全文
posted @ 2020-08-12 17:59 fndefbwefsowpvqfx 阅读(105) 评论(0) 推荐(0) 编辑
摘要: const path = require('path'); const HtmlWebpackPlugin = require('html-webpack-plugin'); //installed via npm const webpack = require('webpack'); //to a 阅读全文
posted @ 2020-08-12 16:05 fndefbwefsowpvqfx 阅读(56) 评论(0) 推荐(0) 编辑
摘要: no network npm config set registry https://registry.npm.taobao.org/ npm config set disturl https://npm.taobao.org/dist/ npm config set electron_mirror 阅读全文
posted @ 2020-08-12 15:56 fndefbwefsowpvqfx 阅读(118) 评论(0) 推荐(0) 编辑
摘要: git中的换行符 commit: 无转换 checkout: 无转换 git config --global core.autocrlf false commit: 转为LF checkout: 转为CRLT git config --global core.autocrlf true commit 阅读全文
posted @ 2020-08-12 10:04 fndefbwefsowpvqfx 阅读(243) 评论(0) 推荐(0) 编辑
上一页 1 ··· 16 17 18 19 20 21 22 23 24 ··· 30 下一页