• Recursion, Tree and Culture

    刚刚在放空大脑,盯着实验室外的树木看,注意到树上的枝桠一直不断的在做分形,大的分支产生小的分支,而小的分支本身又再重复着同样的事情。这种模式让我非常直接的联想到,这不就是一种递归么? 在计算机里面,递归(recursion)是指在一个函数或过程中调用自身的行为,是一种重复的过程。而在这里用到这个概念,是因为在递归中,对我来说最神奇的感觉就是它在这个过程中自己创造了自己,而问题(往往是搜索问题...
  • 我为什么会沉迷于 war 3 的解说视频

    最近这两天我非常沉迷 YouTube 上面的魔兽争霸视频。每个可能都有一个小时的时长,但我每次看着都乐此不疲,可以看上一整天。虽然我已经有十几年都没有玩过 war3 了,我对它里面的机制从一开始也不了解,按理说它不应该有这么大的魔力让我可以如此长时间的被吸引到。 我很好奇这种成瘾的机制。我发现在这个过程中有两个因素是非常常见的,一个是我的疑惑,我想知道视频里面这么反常规的战术究竟会有什么结果...
  • What I’ve found out recently from writing my Thesis

    Unsatisfaction I started my master’s thesis last September. Four months have elapsed since then, and we’ve managed to produce some not bad results. However, I find myself often grappling with a sen...
  • Quoting bug 酱

    补了一点 openai 的发布会 有一点小感慨,在模型规模拼命做 enlarge,冲大模型的今天,算法工程师这个职位正在变得越来越尴尬。 ML/DL 工种专业化程度越来越高,MLops 不需要算法工程师,模型推理加速&部署不需要算法工程师,推理引擎、训练框架和其他基础设施的开发不需要算法工程师。 算法工程师只需要调用前面这些专业工种提供的 API 就可以了。大部分算法工程师也不背负...
  • Web Environment Integrity is gone, but the Android is more locked down than ever

    Knowing this from brodie’s video . People from Google finally give up the WEI proposal and reverted all the changes in chromium. Instead, they are pursuing a similar proposal, but exclusively for A...
  • Quoting 赵越胜

    From this interview with 赵越胜 在这里要谈谈这位阿图瓦伯爵,也就是未来的查理十世。我们在历史中见过不少领导人,他的知识结构、文化水平、政治判断力和价值选择,会停留在青少年时期的某一个阶段。然后不管他活多久,也不管世界上发生多少变化,他都表现为某一时刻的僵尸。如果某个机缘,让他上了大位,他一定会从他智力、知识发展过程中停止的那个时刻,寻找资源,构造他的政治理念、价...
  • Linked list in Rust

    It is quite a hassle to learn the linked list in Rust, pure madness when you see expression like Option<Box<LinkedList>> for the first time. I write down about things that were unfamili...
  • 伟大无法被计划

    这是一本书的名字,是来描述现代 AI 产业的发展的。但其实这个观点不只是适用于 AI 产业,而是全球产业发展的底层逻辑。清晰的计划不是带领新产业发展的核心力量,而是在自由竞争和探索。 比如计算机带宽提升最开始的发展来自于网络色情影像产业的需求,因为他们的客户对于延迟和卡顿及其敏感。在这种正常眼光看来上不了台面的需求的推动下,极大的推动了当今互联网带宽的发展。 另一个例子来自于与 AI 产业很...
  • Hello Hexo

    Setting up hexo is quiet a pain in the first place. But thanksfully it has been done by now. I switch to here because it has first class markdown support, which would be easier to automate posting ...
  • Composition over Inheritance

    Why “Prefer Composition over Inheritance”? In a recent post, I shared my frustration with the complexity of my project’s codebase. Basically it is too complicated and intertwined. Despite my discom...