该文被密码保护。 阅读全文
posted @ 2019-01-20 13:30 古龙•历山大亚 阅读(2) 评论(0) 推荐(0)
摘要: 1. 安装nginx服务器 1.1 clone $ brew tap denji/homebrew-nginx 1.2 安装 $ brew install nginx-full --with-rtmp-module 安装过程过程中可能会报错 ➜ ~ brew install nginx-full - 阅读全文
posted @ 2018-11-22 11:24 古龙•历山大亚 阅读(738) 评论(0) 推荐(0)
摘要: 1. Auto layout 1.1 NSLayoutConstraint 1.1.1 约束类 ios6.0可用 为了更好的适配各个尺寸 1.1.2 constraintWithItem:attribute:relatedBy:toItem:attribute:multiplier:constant 阅读全文
posted @ 2018-08-15 16:55 古龙•历山大亚 阅读(186) 评论(0) 推荐(0)
摘要: 基本概念——workspace, staging area, repository 简化关键字 git config --global alias.br branch git config --global alias.st status git config --global alias.ci c 阅读全文
posted @ 2018-05-09 13:58 古龙•历山大亚 阅读(221) 评论(4) 推荐(0)
摘要: 1. xcodebuild 1.1 查当前可用的 sdk $xcodebuild -showsdks 1.2 查看所支持的target $xcodebuild -target 1.2 清空当前编译的app数据 $xcodebuild clean 1.3 使用iphoneos11.2编译app $xc 阅读全文
posted @ 2018-02-03 11:09 古龙•历山大亚 阅读(266) 评论(0) 推荐(0)
摘要: 1. 查看当前支持的shell (Linux) $ cat /etc/shells 2. 更改当前使用的shell $ chsh -s /bin/zsh $ chsh -s $(which zsh) 3. 比较能用的zsh有 oh my zsh 自动安装 $ wget https://github. 阅读全文
posted @ 2018-01-17 11:50 古龙•历山大亚 阅读(185) 评论(1) 推荐(0)
摘要: 1. 安装 $ brew update //更新brew $ brew install carthage //下载carthage $ carthage version //查看当前carthage的版本号 2.项目中init $ touch Cartfile //在项目中touch该文件 (同Co 阅读全文
posted @ 2017-10-11 23:45 古龙•历山大亚 阅读(203) 评论(0) 推荐(0)
摘要: 阅读全文
posted @ 2017-05-06 05:03 古龙•历山大亚 阅读(103) 评论(0) 推荐(0)
摘要: 1. apache 服务器在系统安装的时候就默认安装了 config 文件未知: /etc/apache2/httpd.conf 2. 编辑配置文件 httpd.conf 2.1 查找 DocumentRoot,并修改它的值 该值是服务器地址 同时修改 DocumentRoot下面的 Directo 阅读全文
posted @ 2017-04-29 00:28 古龙•历山大亚 阅读(269) 评论(0) 推荐(0)
摘要: framework的建立和生成 都比较简单。重点会放在第三块上面(指令集说明及合并) 1.framework target建立 1.1. command + shift + N 选取 ios -> Framework & Library -> Cocoa Touch Framework 新建为一个动 阅读全文
posted @ 2017-01-18 17:48 古龙•历山大亚 阅读(164) 评论(0) 推荐(0)