GMTC 2021 见闻: 暖场 记录下本周 GMTC 的参会感受。 GMTC 的日程安排在周日、周一两天,暖场演讲是会议总监的: 把内容交付这件事做好。在这个演讲里除了介绍他们如何打磨讲师 PPT 的之外,还讲了如何最大化利用 GMTC 提高自己,具体是三个建议: 空杯心态 做第一个提问的人 Butterfly 空杯心态就不说了,大家都熟悉相关的理论。 做第一个提问的人,这个建议是合理的,但个人... 2021-07-082 min read
ARTS #109 Algorithm 本周选择的算法题是:Coin Change。 规则 You are given an integer array coins representing coins of different denominations and an integer amount representing a total amount of money. Return the few... 2021-07-042 min read
2021 Q2 阅读记录 这个季度看了三本书: 《不拘一格:网飞的自由与责任工作法》,阅读笔记见: 坦诚让管理变得更简单 《文明、现代化、价值投资与中国》,阅读笔记见: “我永远和与我对话者同龄” 《人类简史》 阅读效率一般,主要原因是时间被一些临时的事情占用了很多,比如搬家、置办家具家电、户口迁移等琐事,特别消耗精力。虽然有这些“正当”理由,但还是不应该为自己的松懈找借口,因为阅读是为了通过不断... 2021-07-031 min read
ARTS #108 Algorithm 本周选择的算法题是:Unique Binary Search Trees。 规则 Given an integer n, return the number of structurally unique BST’s (binary search trees) which has exactly n nodes of unique values from 1 to n... 2021-06-271 min read
分享下 Brave 前言 分享一个更快、更安全的浏览器: Brave。Brave 诞生于 2019 年 - 在人们的隐私意识越来越高,并得知 Chrome 在过去10年收集、出售相关数据给广告公司,并从中获得大量利益之时。 根据 Brave 2021年2月2号公布的数据: Brave Passes 25 Million Monthly Active Users,Brave 的月活跃用户已经达到了 2500 ... 2021-06-273 min read
ARTS #107 Algorithm 本周选择的算法题是:4Sum II。 规则 Given four integer arrays nums1, nums2, nums3, and nums4 all of length n, return the number of tuples (i, j, k, l) such that: 0 <= i, j, k, l < n nums... 2021-06-202 min read
移动端 CI & CD 全流程一览 分享一张 CI & CD 的流程图: 2021-06-191 min read
ARTS #106 Algorithm 本周选择的算法题是:Sliding Window Maximum。 规则 You are given an array of integers nums, there is a sliding window of size k which is moving from the very left of the array to the very right. You... 2021-06-123 min read
“我永远和与我对话者同龄” 文明、现代化、价值投资与中国。 这本书的书名很容易让人以为是教你如何做价值投资,但实际上书的第一部分并没有太多和投资直接相关的内容,更多的是教你如何思考。目录摘选: 人类文明的第一次飞跃 农业文明的诞生 现代化的诞生 现代化有没有可能在中国诞生 现代化的传播与现代化的道路之争 从文明史角度看中美关系及科技文明时代的东西方关系 … 李录提出了一些很好的问题... 2021-06-113 min read
ARTS #105 Algorithm 本周选择的算法题是:Pow(x, n)。 规则 Implement pow(x, n), which calculates x raised to the power n (i.e., xn). Example 1: Input: x = 2.00000, n = 10 Output: 1024.00000 Example 2: Input: x = 2.... 2021-06-053 min read