首页
未分类
Code
PHP
C/C++
Python
HTML/CSS
Vue
Uni-App
Android
Java
正则
Tools
Git、GitHub
MacOS
Objective-C
iOS
Linux
Mysql
Linux
Nginx
Server
Windows
联系
关于
ABin' Blog
好记性不如烂笔头
累计撰写
129
篇文章
累计创建
5
个标签
累计收到
1
条评论
栏目
首页
未分类
Code
PHP
C/C++
Python
HTML/CSS
Vue
Uni-App
Android
Java
正则
Tools
Git、GitHub
MacOS
Objective-C
iOS
Linux
Mysql
Linux
Nginx
Server
Windows
联系
关于
目 录
CONTENT
最新文章
正则表达式
\d 0-9 \D 除0-9之外的 \w a-zA-Z0-9_ 还有下划线 \W 除a-zA-Z0-9_ 之外的 \s 匹配任意空白 \S 取 \s 的反向 \n 匹配 换行符 \t 匹配制表符 "^" 是开始 "$" 是结尾 [abc] 包含其中任何一个字符即可 [0-9] 也可以 [6-9]
2022-06-04
63
0
0
正则
Git配置SSH(报错443、没有权限)
(Git提交代码报错443 也可以尝试一下这个方法) 克隆自己GitHub上的项目报错 git clone git@github.com:*****/*****.git Cloning into 'ProjectName'... git@github.com: Permission denied (
2022-06-04
66
0
0
Git、GitHub
Mac 安装Nginx、PHP、Mysql
1.首先安装 brew (官网https://brew.sh) /bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/HEAD/install.sh)"
2022-06-02
58
0
0
MacOS
iOS 项目添加Alamofire、SwiftyJSON
安装pod 官网:https://cocoapods.org 运行命令 #安装cocoapods 如果报错可能是ruby版本过低 sudo gem install cocoapods #查看ruyb版本 我当前版本是2.6.10 ruby -v ruby 2.6.10p210 (2022-
2022-05-31
87
0
0
iOS
iOS 请求不带http的网址
info.plist 文件 Information Property List 一栏添加 App Transport Security Settings App Transport Security Settings 下添加 Allow Arbitrary Loads 并把 Value 改为Yes
2022-05-30
65
0
0
iOS
访问页面时无需输入.html后缀
nginx 配置输入以下代码 if (!-e $request_filename){ rewrite ^(.*)$ /$1.html last; break; }
2022-05-26
58
0
0
Nginx
解决GitHub Git Pull 报错443
git config --global http.proxy http://127.0.0.1:1080 git config --global https.proxy http://127.0.0.1:1080 (1)取消全局代理 git config --global --unset http
2021-12-01
52
0
0
Git、GitHub
1
...
9
10
11
12
13