Skip to content

Commit 89d0e6b

Browse files
committed
fix
1 parent f35d88b commit 89d0e6b

21 files changed

+74
-27
lines changed

_config.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -46,6 +46,8 @@ permalink: /:year/:month/:title/
4646
# Format
4747
highlighter: rouge
4848

49+
textColor: #FF0000
50+
4951
# supported colors: blue, green, purple, red, orange or slate. If you need clear, leave it empty.
5052
cover_color: clear
5153

_posts/2015-09-26-iOS9_Note.md

Lines changed: 9 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,8 @@ tag: iOS
77
---
88

99

10-
这里将介绍下我们日常开发一些从iOS8过度到iOS9给我们带来的一些变化,及解决方法。[点击阅读原文](http://baixin.io/2015/09/iOS9_Note/)
10+
这里将介绍下我们日常开发一些从iOS8过度到iOS9给我们带来的一些变化,及解决方法。
11+
1112

1213
### App Transport Security
1314

@@ -97,4 +98,10 @@ Xcode7后运行以前的项目后出现大量的警告如:
9798

9899
- [iOS9AdaptationTips](https://github.com/ChenYilong/iOS9AdaptationTips)
99100
- [iOS9学习系列](http://www.cocoachina.com/ios/20150821/13140.html)
100-
- [iOS9-day-by-day](https://github.com/shinobicontrols/iOS9-day-by-day)
101+
- [iOS9-day-by-day](https://github.com/shinobicontrols/iOS9-day-by-day)
102+
103+
104+
105+
<br>
106+
107+
转载请注明:[潘柏信的博客](http://baixin) » [点击阅读原文](http://baixin.io/2015/09/iOS9_Note/)

_posts/2016-01-09-iOS_OTA.md

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -95,7 +95,10 @@ Xcode自带的 `Captuer View Hiearachy` 实现步骤:
9595

9696
Xcode里面就变成了三维的视图了 , Xcode左侧展示出来的是层级关系的树状图 。
9797

98-
[点击阅读原文](http://baixin.io/2016/01/iOS_OTA/)
99-
10098
Reveal的功能相对来说更强大 , 适用于UI调试视图查找 。使用方法请看 [Reveal集成指南](http://support.revealapp.com/kb/getting-started/reveal)
10199

100+
101+
<br>
102+
103+
转载请注明:[潘柏信的博客](http://baixin) » [点击阅读原文](http://baixin.io/2016/01/iOS_OTA/)
104+

_posts/2016-04-02-CocoaPod_Use.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -168,7 +168,9 @@ Demo.xcworkspace 、Podfile 、Podfile.lock 、Pods
168168

169169
[深入理解 CocoaPods](http://blog.jobbole.com/53365/)
170170

171-
[点击阅读原文](http://baixin.io/2016/04/CocoaPod_Use/)
171+
<br>
172+
173+
转载请注明:[潘柏信的博客](http://baixin) » [点击阅读原文](http://baixin.io/2016/04/CocoaPod_Use/)
172174

173175

174176

_posts/2016-04-07-iBeacon.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -72,4 +72,6 @@ Note: [苹果iBeacon官方代码例子](https://developer.apple.com/library/prer
7272
* 现象:App 能被 iBeacon 信号唤醒,即使 App 已经被用户手动杀死掉了,App 也能被 iBeacon 技术唤醒,并且能执行一系列操作。
7373
* 影响:导致 App 用户在并没有使用 `App` 的情况下, `App` 有了长达几个小时的后台使用时长。
7474

75-
[点击阅读原文](http://baixin.io/2016/04/iBeacon/)
75+
<br>
76+
77+
转载请注明:[潘柏信的博客](http://baixin) » [点击阅读原文](http://baixin.io/2016/04/iBeacon/)

_posts/2016-06-02-Develop_Tool.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -40,3 +40,6 @@ tag: 工具
4040

4141
[flaticon](http://www.flaticon.com/) 各种icon的设计,一定有你想想要的。
4242

43+
<br>
44+
45+
转载请注明:[潘柏信的博客](http://baixin) » [点击阅读原文](http://baixin.io/2016/06/Develop_Tool/)

_posts/2016-06-12-HEXO_Advanced.md

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -71,9 +71,11 @@ HEXO接近是最近有一些朋友提出的问题,然后我做了总结,如
7171
**注意二:**
7272
  `Coding Page` 不支持自定义CNAME, 你需要点击到Page模块,然后添加一个域名来绑定。
7373

74-
更详细的请看[Coding Pages 官网介绍](https://coding.net/help/doc/pages/index.html).
75-
76-
[点击阅读原文](http://baixin.io/2016/06/HEXO_Advanced/)
74+
更详细的请看[Coding Pages 官网介绍](https://coding.net/help/doc/pages/index.html).
7775

7876
参考文章:
79-
[解决 Github Pages 禁止百度爬虫的方法与可行性分析](http://jerryzou.com/posts/feasibility-of-allowing-baiduSpider-for-Github-Pages/)
77+
[解决 Github Pages 禁止百度爬虫的方法与可行性分析](http://jerryzou.com/posts/feasibility-of-allowing-baiduSpider-for-Github-Pages/)
78+
79+
<br>
80+
81+
转载请注明:[潘柏信的博客](http://baixin) » [点击阅读原文](http://baixin.io/2016/06/HEXO_Advanced/)

_posts/2016-07-05-MachineLearning_introduce.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,4 +34,6 @@ tag: 机器学习
3434
  **名词解释:** 支持向量机(Support Vector Machine)。
3535
  在机器学习领域,支持向量机SVM(Support Vector Machine)是一个有监督的学习模型,通常用来进行模式识别、分类、以及回归分析。
3636

37-
[点击阅读原文](http://baixin.io/2016/07/MachineLearning_introduce/)
37+
<br>
38+
39+
转载请注明:[潘柏信的博客](http://baixin) » [点击阅读原文](http://baixin.io/2016/07/MachineLearning_introduce/)

_posts/2016-07-07-iOSMachineLearning_TensorFlow.md

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -147,8 +147,6 @@ error: Xcode 7.3.0 or later is required.
147147
如果Xcode是7.3,并且没有条件更新Xcode,你可以修改`tensorflow/contrib/makefile/compile_ios_tensorflow.sh` 里的`REQUIRED_XCODE_VERSION=7.3.0`,为`REQUIRED_XCODE_VERSION=7.3`。(这样修改,目前还不确定会不会带来一些其他影响,最好是升级你的Xcode)
148148
149149
150-
[点击阅读原文](http://baixin.io/2016/07/iOSMachineLearning_TensorFlow/)
151-
152150
### 四、参考链接
153151
154152
@@ -157,3 +155,7 @@ error: Xcode 7.3.0 or later is required.
157155
* [Caffe、TensorFlow、MXnet三个开源库对比](http://chenrudan.github.io/blog/2015/11/18/comparethreeopenlib.html)
158156
* [如何评价Tensorflow和其它深度学习系统](http://weibo.com/p/1001603907610737775666)
159157
* [深度学习框架大战正在进行,谁将夺取“深度学习工业标准”的荣耀?](http://www.algorithmdog.com/%E8%B0%81%E5%B0%86%E5%A4%BA%E5%8F%96%E6%B7%B1%E5%BA%A6%E5%AD%A6%E4%B9%A0%E5%B7%A5%E4%B8%9A%E6%A0%87%E5%87%86%E7%9A%84%E8%8D%A3%E8%80%80)
158+
159+
<br>
160+
161+
转载请注明:[潘柏信的博客](http://baixin) » [点击阅读原文](http://baixin.io/2016/07/iOSMachineLearning_TensorFlow/)

_posts/2016-07-13-GitTutorial.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -65,5 +65,7 @@ git branc 查看时如出现
6565
代表现在已经进入一个临时的HEAD,可以使用 `git checkout -b temp` 创建一个 temp branch,这样临时HEAD上修改的东西就不会被丢掉了。
6666
然后切换到 dev 分支上,在使用 git branch merge temp,就可以把 temp 分支上的代码合并到 dev 上了。
6767

68-
[点击阅读原文](http://baixin.io/2016/07/GitTutorial/)
68+
<br>
69+
70+
转载请注明:[潘柏信的博客](http://baixin) » [点击阅读原文](http://baixin.io/2016/07/GitTutorial/)
6971

0 commit comments

Comments
 (0)