Skip to content

Commit ec30551

Browse files
committedMay 16, 2021
feat: add dailylearning
1 parent 08fa0c6 commit ec30551

File tree

6 files changed

+1048
-5
lines changed

6 files changed

+1048
-5
lines changed
 

‎Resources/DailyLearning/README.md

+12
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
# DailyLearning
2+
3+
该目录主要收录我在群内每日的分享。每日分享当前经历了三个阶段:概念篇、Swift 提案解析、读书笔记。概念篇的内容放到了周报里,本目录仅整理剩下的Swift 提案解析 及 读书比较。
4+
5+
## Swift_proposals
6+
7+
收录之前整理的Swift 提案分析,仅汇总了我个人比较感兴趣的提案内容,该篇已经结束。
8+
9+
## 程序员修炼之道 - 从小工到专家
10+
11+
分享这本书的读书笔记,还在连载。
12+

‎Resources/DailyLearning/Swift_proposals.md

+592
Large diffs are not rendered by default.

‎Resources/DailyLearning/程序员修炼之道-从小工到专家.md

+426
Large diffs are not rendered by default.

‎Resources/README.md

+16
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
# Resources
2+
3+
该目录主要收录各种资源。
4+
5+
## Books
6+
7+
收录网络中比较有用的图书资源,多为pdf版本。
8+
9+
## Guide
10+
11+
写作博客的一些小技巧及注意事项,做了新来的联合编辑需要了解这里的内容。
12+
13+
## DailyLearning
14+
15+
为群里的每日分享汇总,通常一周更新一次。
16+
File renamed without changes.

‎WeeklyLearning/iOSWeeklyLearning_11_process.md renamed to ‎WeeklyLearning/iOSWeeklyLearning_11.md

+2-5
Original file line numberDiff line numberDiff line change
@@ -29,11 +29,8 @@ func oauthLogin(type: String) {
2929
let loginURL = Configuration.shared.awsConfiguration.authURL + "/authorize" + "?identity_provider=" + type + "&redirect_uri=" + redirectUri + "&response_type=CODE&client_id=" + Configuration.shared.awsConfiguration.appClientId
3030
session = ASWebAuthenticationSession(url: URL(string: loginURL)!, callbackURLScheme: redirectUri) { url, error in
3131
print("URL: \(String(describing: url))")
32-
guard error == nil else {
33-
return
34-
}
3532
// The callback URL format depends on the provider.
36-
guard let responseURL = url?.absoluteString else {
33+
guard error == nil, let responseURL = url?.absoluteString else {
3734
return
3835
}
3936
let components = responseURL.components(separatedBy: "#")
@@ -262,4 +259,4 @@ One Switch 是一个聚合的开关控制软件,使用它可以在菜单控制
262259

263260
[摸鱼周报第十期](https://zhangferry.com/2021/05/05/iOSWeeklyLearning_10/)
264261

265-
![](https://gitee.com/zhangferry/Images/raw/master/gitee/wechat_official.png)
262+
![](https://gitee.com/zhangferry/Images/raw/master/gitee/wechat_official.png)

0 commit comments

Comments
 (0)
Please sign in to comment.