Ep15. OpenAI政变

硅谷上演本世纪最大政变,周末来吃瓜$900亿大型宫斗剧 🍉 2023-11-21 22:00更新:OpenAI官推更新宣布Sam Altman回归CEO🎉 2023-11-20凌晨更新:Sam & Greg 加入 Microsoft,任何OpenAI的员工都可以直接跟随加入 > Sam Altman and Greg Brockman, together with colleagues, will be joining Microsoft to lead a new advanced AI research team https://twitter.com/satyanadella/status/1726509045803336122 Guest * 李泉来: LinkedIn, Website, DrLambda Show Notes * [00:00:00] Structure of OpenAI * History of OpenAI * The dinner: https://blog.gregbrockman.com/my-path-to-openai#the-dinner_1 * Board of OpenAI before Friday https://openai.com/our-structure#the-structure-in-more-detail * "While our partnership with Microsoft includes a multibillion dollar investment, OpenAI remains an entirely independent company governed by the OpenAI Nonprofit. Microsoft has no board seat and no control. And, as explained above, AGI is explicitly carved out of all commercial and IP licensing agreements." * [00:11:55] Board - Okay so OpenAl board is * Ilya, got it, makes sense * Helen Toner, DC policy person, fine * Adam D'Angelo, CEO of Quora, okay I guess but why though * Tasha McCauley, "tech entrepreneur" and funny enough also wife of Joseph Gordon-Levitt, how did this board come together? * [00:15:48] 逐出Sam的猜测 * https://twitter.com/gdb/status/1725736242137182594 Ilya firing Sam and Greg on Google Meet * https://manifold.markets/sophiawisdom/why-was-sam-altman-fired * Ilya vs Sam/Greg * [00:26:50] Sam 回归? * https://www.reuters.com/technology/openais-86-bln-share-sale-jeopardy-following-altman-firing-information-2023-11-18/ * https://www.reuters.com/technology/openai-board-discussions-with-sam-altman-return-ceo-verge-2023-11-18/ * [00:30:15] 下一步进展的小小预测 Contact * 官网: eng.cafe * 微信公众号: Eng Cafe * Twitter: @engcafefm * Apple Podcast: https://podcasts.apple.com/us/podcast/eng-cafe/id1549632204 * 小宇宙: https://www.xyzfm.link/gglme * 泛用型播客客户端: eng.cafe/subscribe * Email: [email protected]

32分钟
99+
1年前

Ep13. Tech Layoff

这一期我们几位硅谷程序员讨论各自对近期科技行业大规模裁员的观察,看法和个人的应对措施。 Notes * [00:00] Guest intro. * [02:00] Layoff stories. * [16:45] Reasons, patterns, signals of a layoff. * https://news.shopify.com/changes-to-shopifys-team: We bet that the channel mix - the share of dollars that travel through ecommerce rather than physical retail - would permanently leap ahead by 5 or even 10 years. It’s now clear that bet didn’t pay off. * https://blog.google/inside-google/message-ceo/january-update/: Ensure that our people and roles are aligned with our highest priorities as a company. * https://techcrunch.com/2022/12/08/airtable-layoffs/: We’ve identified the teams best positioned to capture the opportunity in enterprise in order to bring complete focus, alignment and accountability in our execution. * [23:28] What explains recent tech layoffs, and why should we be worried? - Research says layoff does not reduce cost. * [24:10] Reason for layoff and hiring at the same time. * [25:40] Cash reserve != lower layoff probability * [27:00] Prioritize growth when money is cheap; prioritize “rule of 40” in today’s world. * [28:35] Layoff patterns at team level. You don’t know the truth of the “algorithm”. Decisions happen at Director+, even SVP level. Line managers and skip managers don’t have the layoff list. Data collection before executing the layoff. * [33:25] Meta vs Google layoff strategy difference. * [36:05] Avoid taking on risky projects. * [37:20] Survival tips for individual contributors * Layoffs are random. Always have a backup plan. * Business critical team; performance evaluation. * Importance of organizational visibility. * Be mentally prepared. * Do enough people work. * Follow the trend. * [48:00] Macro tech industry trend. * [52:08] Ending words. Contact * 官网: eng.cafe * 微信公众号: Eng Cafe * Twitter: @engcafefm * Apple Podcast: https://podcasts.apple.com/us/podcast/eng-cafe/id1549632204 * 小宇宙: https://www.xyzfm.link/gglme * 泛用型播客客户端: eng.cafe/subscribe * Email: [email protected]

52分钟
99+
2年前

Ep11. Designing Data-Intensive Applications - Partitioning

这一期我们讨论Designing Data-Intensive Applications书中partitioning这一章的学习笔记。 🔴 这一期偏重技术话题,我们会用很多英文表述技术性专有名词。之前有朋友反馈过中英夹杂对大家收听不方便,希望在意的朋友见谅。如果有不准确或者过时的地方欢迎指正。 # Show Notes * 📕 Designing Data-Intensive Applications * What is partitioning? * A partition is a division of a logical database or its constituent elements into distinct independent parts. * Main reason: scalability - the query load can be distributed across many processors. * Youtube / Vitess scaling story * Single MySQL → Add read replica → Write can’t catchup up → Partition * How to partition? * Partitioning by Key Range (e.g., Bigtable) * Assign a continuous range of keys to each partition * Pro: range scan is easier, data locality * Cons: certain access patterns can lead to hot spots (timestamp) * Cons: finding split points and managing rebalancing is hard * Partitioning by Hash * Good hash function: uniformly distribute keys * Con: no easy range queries * Cassandra does KKV (partitioning key, sort key, value) * Hot spots: 3% of Twitter's Servers Dedicated to Justin Bieber * Secondary indexes: Local index * Efficient write, expensive read * ElasticSearch * Secondary indexes: Global index * Efficient read, expensive write * Using Global Secondary Indexes in DynamoDB (这里说错了,DynamoDB 支持 20 global secondary indexes per table) * Rebalancing partitions * Move loads to other nodes * Fixed number of partitions * New node steals partitions from every existing node * Notion: 480 partitions * Dynamic partitioning * 📈: split partition into 2 * 📉: merge 2 partitions into 1 * Fixed number of partitions per node * https://www.datastax.com/blog/new-token-allocation-algorithm-cassandra-30 * Operations: full automatic (dangerous) / semi-automatic / full manual (tedious) * Request Routing * 3 approaches: nodes talk to each other, separate routing tier, smart client * Separate coordination service such as ZooKeeper * Notes by xg # 联系方式 * 官网: eng.cafe * 微信公众号: Eng Cafe * Twitter: @engcafefm * Youtube: Eng Cafe * 小宇宙播客 * 泛用型播客客户端: eng.cafe/subscribe * Email: [email protected]

33分钟
99+
3年前

Ep5. 漫聊Clubhouse初体验和产品设计

我们玩了一周多最近爆火的聊天软件Clubhouse之后来和大家聊聊这个产品的设计理念和细节;如何更好的玩转Clubhouse;从注意力模式和内容丰富度双维度分析2C产品商业模式。这是一款很有意思的新产品,如果听众需要邀请码欢迎联系我们 Show Notes: * Clubhouse是什么样的应用 * 与传统社交软件的差别 * 打开Clubhouse都有哪些功能,怎么玩? * 有哪些种类的聊天群 * Clubhouse最突出的独特性 * 与之前的app都有什么区别,这不就是一个yy吗 * 为什么邀请制? * 发言的仪式感和其他产品设计细节 * 模拟线下真实的club社交场所 * 对比播客的异同 * 用户注意力与商业模式结合的思维框架 * 石头,沙子,水 * https://sarahtavel.medium.com/the-opportunity-and-risks-for-consumer-startups-in-a-social-distancing-world-a-framework-for-15f65e2fbdff * 从内容丰富度和注意力模式的双维度思考产品设计 * 分析Clubhouse的商业模式和发展重点 https://www.joinclubhouse.com/blog * 不喜欢的地方 * 强势夺取用户的注意力 * 暴露太多隐私 * 声网 https://www.agora.io/cn/ 联系方式: * 官网: eng.cafe * 微信公众号: Eng Cafe * Twitter: @engcafefm * Youtube: Eng Cafe * Email: [email protected] 收听渠道: * Apple Podcast * Google Podcasts * Overcast * Spotify * Pocket Casts * Breaker * Castro * Castbox * Podcast Addict * Player FM * RSS Feed

44分钟
63
4年前

Ep4. 和猫狗双全的小鸭同学聊养猫

身边越来越多朋友开始养猫养狗了,我们一直很想养宠物但是不知道怎么准备,也不知道怎样和宠物相处。这期节目我们请来了猫狗双全的小鸭同学来聊聊她养猫的故事。 Show Notes 买猫咪的breeder在哪里找 * Google, Facebook, https://tica.org/ 猫咪的性格长相怎么挑 如何训练猫咪呆在腿上 怎么训练猫咪 * 基础训练:小猫做错事要在当下指出并批评 * 锦上添花:握手 high five等动作 猫粮 * 幼猫和成年猫需要的营养结构不同,不能混吃 * 每只猫咪个性不同,喜欢吃的零食也不同,小志喜欢香蕉和西瓜 猫咪的娱乐活动 * 幼猫很活泼 * 要买质量好的玩具 * 带猫咪出门要做好驱虫的工作 * 和朋友家青梅竹马的猫咪一起玩 宠物保险 * 不同保险包含的内容不同,要仔细选择 * 第一年医院会有kitten wellness plan,是很好的选择 * 每年最好做年检 ins经营 * 猫咪小志的ins主页:maruko_sweet_cat * 主要动力是记录猫咪的成长 * 拍照选择选择光线好没有杂物的地方 * 抓住每一个可爱的瞬间 主人不在家的时候怎么照顾? * 短期:自动喂食器,朋友偶来来家里照顾 * 长期:寄养在朋友家里,宠物旅馆 联系方式: * 官网: eng.cafe * 微信公众号: Eng Cafe * Twitter: @engcafefm * Youtube: Eng Cafe * Email: [email protected] 收听渠道: * Apple Podcast * Google Podcasts * Overcast * Spotify * Pocket Casts * Breaker * Castro * Castbox * Podcast Addict * Player FM * RSS Feed

45分钟
71
4年前
EarsOnMe

加入我们的 Discord

与播客爱好者一起交流

立即加入

播放列表

自动播放下一个

播放列表还是空的

去找些喜欢的节目添加进来吧