首页
未分类
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
好记性不如烂笔头
累计撰写
115
篇文章
累计创建
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
最新文章
MacBook IDE 自定义Touch Bar 按键
使用 command + ','命令 进入首选项(Preferences) 查找外观&行为(appearance&behavior) 菜单和工具栏(Menus and toolbars) 默认在 default 中添加 Touch Bar 操作
2023-07-04
15
0
0
MacOS
Mac 80端口被占用
Mac 自带Apache自动启动,导致80端口被占用 运行nginx 时提示 % nginx nginx: [emerg] bind() to 0.0.0.0:80 failed (48: Address already in use) nginx: [emerg] bind() to 0.0.0
2023-04-22
36
0
0
MacOS
时间戳要用Bigint类型?
#mysql 时间如果设置成 timestamp 类型保存会报错 Incorrect datetime value: '1681908817' for column 'uptime' at row 1 #为什么呢?
2023-04-19
17
0
0
Mysql
PHPStorm 关闭Git提交时的警告
使用PHPStorm git提交代码时,总是提示“检查失败:*个警告” 之后还要再次点击“仍然提交并推送” 因为这个需要多次点击“提交并推送按钮”就很烦所以直接改掉, 1.去PHPStorm 设置 -->版本控制-->提交--> 去掉“代码分析”和“检查TODO” 两个选项的对勾 2.如果重启后又自
2023-04-15
26
0
0
MacOS
Python pip换源
#查看一下配置,如果默认什么都没有动的话就是空 pip config list #然后设置源 pip config set global.index-url https://mirrors.aliyun.com/pypi/simple #设置完成之后查看一下是否设置成功 pip config l
2023-04-14
25
0
0
Python
VSCode Python 代码制表符问题
去VSCode 设置 搜索 Detect Indentation 在此选项前打勾即可
2023-04-12
15
0
0
Python
VSCode 鼠标滚轮滚动动画
打开VSCode 首选项--设置--然后在搜索框中搜索`滚动` 在 `Editor: Smooth Scrolling 控制编辑器是否使用动画滚动` 选项中打勾
2023-04-10
78
0
0
MacOS
Redis 操作命令
redis-cli 来进入Redis #进入之后会显示ip跟端口 #查看所有Key 或者 筛选 127.0.0.1:6379> keys * (empty array) #筛选 a开头的 127.0.0.1:6379> keys a* (empty array) #设置key 127.0.0.1
2023-03-30
20
0
0
Linux
Linux 使用 certbot 申请证书
证书官网 https://letsencrypt.org/getting-started/ 安装 certbot # 安装 certbot 以及 certbot nginx 插件 sudo yum install certbot python2-certbot-nginx -y # 执行配置,中途
2023-03-27
19
0
0
Linux
Nginx
Vim 编辑器
很多Linux 自带vim 编辑器, 我们在终端输入Vim之后 会提示以下信息 如Vim 命令无效尝试Vi [root@localhost ~]# vim ~
2023-03-23
19
0
0
Linux
1
...
5
6
7
...
12