2019年1月6日

摘要: 1.xcode-select --install 2.iterm2 https://www.cnblogs.com/xishuai/p/mac-iterm2.html 3.SUDO 免密码 visudo /etc/sudoers 替换 #%admin ALL=(ALL) ALL 为 %admin A 阅读全文
posted @ 2019-01-06 22:02 天天天蓝 阅读(110) 评论(0) 推荐(0) 编辑
 
摘要: 1. 安装 参考 https://baijiahao.baidu.com/s?id=1595121885424169378&wfr=spider&for=pc 版本10.13.3 2.nvidia驱动 https://hackintosher.com/guides/get-nvidia-graphi 阅读全文
posted @ 2019-01-06 21:16 天天天蓝 阅读(284) 评论(0) 推荐(0) 编辑

2018年9月14日

摘要: https://www.2cto.com/database/201508/433975.html 阅读全文
posted @ 2018-09-14 12:00 天天天蓝 阅读(342) 评论(0) 推荐(0) 编辑

2017年10月6日

摘要: git show# 显示某次提交的内容 git show $id git co -- <file> # 抛弃工作区修改 git co . # 抛弃工作区修改 git add <file> # 将工作文件修改提交到本地暂存区 git add . # 将所有修改过的工作文件提交暂存区 git rm <f 阅读全文
posted @ 2017-10-06 00:19 天天天蓝 阅读(144) 评论(0) 推荐(0) 编辑

2017年5月10日

摘要: 1 创建表的时候写注释 create table test1 ( field_name int comment '字段的注释' )comment='表的注释'; 2 修改表的注释 alter table test1 comment '修改后的表的注释'; 3 修改字段的注释 alter table 阅读全文
posted @ 2017-05-10 13:42 天天天蓝 阅读(165) 评论(0) 推荐(0) 编辑

2017年4月3日

摘要: 1.安装 TWIG composer require twig/twig2.COMPOSER自动加载的引用修改 BOOTSTRAP.PHP 增加 public function _initAutoload() { require __DIR__ . "/../vendor/autoload.php" 阅读全文
posted @ 2017-04-03 21:55 天天天蓝 阅读(557) 评论(0) 推荐(0) 编辑
 
摘要: 1.环境 UBUNTU16.04 PHP7.0 2.安装 2.1先安装PHPIZE sudo apt install php7.0-dev 2.2 A;下载源码包 并解压 安装 sudo wget http://pecl.php.net/get/yaf-3.0.4.tgz tar zxvf yaf- 阅读全文
posted @ 2017-04-03 01:34 天天天蓝 阅读(155) 评论(0) 推荐(0) 编辑

2017年2月27日

摘要: #test1server { listen 80; listen [::]:80; root /vagrant_data/aaa/public; index index.html index.htm index.php; server_name www.test1.com; location /{ 阅读全文
posted @ 2017-02-27 21:01 天天天蓝 阅读(176) 评论(0) 推荐(0) 编辑

2017年2月21日

摘要: 1.安装 apt-get install vsftpd 2.配置 conf vim /etc/vsftpd.conf --禁止匿名用户sed -i "s/anonymous_enable=YES/anonymous_enable=NO/g" '/etc/vsftpd/vsftpd.conf' 是否允 阅读全文
posted @ 2017-02-21 17:23 天天天蓝 阅读(137) 评论(0) 推荐(0) 编辑

2016年12月11日

摘要: 1.安装VirtualBox 和 Vagrant 2.git或者composer安装 homestead git clone https://github.com/laravel/homestead.git Homestead composer global require "laravel/hom 阅读全文
posted @ 2016-12-11 18:48 天天天蓝 阅读(501) 评论(0) 推荐(0) 编辑