Dan

蛋蛋的博客

iOS Architecture Patterns

iOS架构模式

##iOS Architecture Patterns iOS架构模式 Demystifying MVC, MVP, MVVM and VIPER 揭开MVC, MVP, MVVM和VIPER的神秘面纱 Don’t miss the iOS Developer Roadmap for 2018! UPD: Slides which I presented at NSLon...

ARTS #029

ARTS #029

ARTS 029 这是第29篇 ARTS是由左耳朵耗子--陈皓发起的一个活动: 每周至少做一个leetcode的算法题、阅读并点评至少一篇英文技术文章、学习至少一个技术技巧、分享一篇有观点和思考的文章。(也就是Algorithm、Review、Tip、Share简称ARTS),至少坚持一年。 Algorihm 算法题 5. 最长回文子串 Difficulty: 中等 给定一...

ARTS #028

ARTS #028

ARTS 028 这是第28篇 ARTS是由左耳朵耗子--陈皓发起的一个活动: 每周至少做一个leetcode的算法题、阅读并点评至少一篇英文技术文章、学习至少一个技术技巧、分享一篇有观点和思考的文章。(也就是Algorithm、Review、Tip、Share简称ARTS),至少坚持一年。 Algorihm 算法题 2. 两数相加 Difficulty: 中等 给出两个 ...

Competitors Are Not The Enemy

竞争对手不是敌人

Competitors Are Not The Enemy 竞争对手不是敌人 There are lots of things that startups should fear. Competition isn’t one of them. 创业公司应该担心很多事情。竞争不是其中之一。 started an online socks company almost 3 years ago...

ARTS #027

ARTS #027

ARTS 027 这是第27篇 ARTS是由左耳朵耗子--陈皓发起的一个活动: 每周至少做一个leetcode的算法题、阅读并点评至少一篇英文技术文章、学习至少一个技术技巧、分享一篇有观点和思考的文章。(也就是Algorithm、Review、Tip、Share简称ARTS),至少坚持一年。 Algorihm 算法题 温故而知新,决定把做过的题按顺序再做一遍。 这道题虽然简单...

A gentle introduction to multithreading.

浅议多线程技术

A gentle introduction to multithreading 浅议多线程技术 Approaching the world of concurrency, one step at a time. 一步一步地接近并发的世界。 Modern computers have the ability to perform multiple operations at the sam...

ARTS #026

ARTS #026

ARTS 026 这是第26篇 Algorihm 算法题 646. 最长数对链 难度: 中等 给出 n 个数对。 在每一个数对中,第一个数字总是比第二个数字小。 现在,我们定义一种跟随关系,当且仅当 b < c 时,数对(c, d) 才可以跟在 (a, b) 后面。我们用这种形式来构造一个数对链。 给定一个对数集合,找出能够形成的最长数对链的长度。你不需要用到所有的数对,你...

ARTS #025

ARTS #025

ARTS 025 这是第25篇 Algorihm 算法题 264. 丑数 II 难度: 中等 编写一个程序,找出第 n 个丑数。 丑数就是只包含质因数 2, 3, 5 的正整数。 示例: 输入: n = 10 输出: 12 解释: 1, 2, 3, 4, 5, 6, 8, 9, 10, 12 是前 10 个丑数。``` **说明: **  1. `1` 是丑数。 2. `...

How I negotiated a $300,000 job offer in Silicon Valley

我是如何在硅谷谈妥一份30万美元的工作邀请的

How I negotiated a $300,000 job offer in Silicon Valley 我是如何在硅谷谈妥一份30万美元的工作邀请的 In the span of a week, I had job offers to work as a software engineer at Google, Facebook, Amazon, Apple, LinkedI...

ARTS #024

ARTS #024

ARTS 024 这是第24篇 Algorihm 算法题 最近在看动态规划,感觉有点感觉了,感觉入门了,就找了个动态规划的题。 746. Min Cost Climbing Stairs Difficulty: Easy On a staircase, the i-th step has some non-negative cost cost[i] assigned (0 inde...