每日预备1h阅读,有心得的地方摘抄汇总,转化为可以自己实际应用的知识。系列阅读后续专门成文

list

Working

Explore

Why I Quit Google to Work for Myself

  • url: https://mtlynch.io/why-i-quit-google/
  • 阅读摘抄
    • But I am indeed an idiot with no idea. 但我确实是一个毫无头绪的白痴。
    • My plan is to try different projects for a few months each to see if any of them catch on, for example:我的计划是尝试不同的项目,每个项目持续几个月,看看它们是否流行起来,例如:
      • Continue working on KetoHub to see if I can make it profitable 继续努力看看我能不能让它盈利
      • Build a business on top of Sia, a distributed storage technology I’ve written about frequently 在 Sia 的基础上建立业务,Sia 是一种分布式存储技术经常被写到的
      • Spend more time writing, and look for ways to earn money from it 花更多的时间写作,并寻找从中赚钱的方法
    • Google was a great place to work, and I learned valuable skills during my time there. Leaving was difficult because I had more to learn, but there will always be employers like Google. I won’t always have the freedom to start my own company, so I look forward to seeing where this takes me.谷歌是一个伟大的工作场所,我在那里学到了宝贵的技能。 离开很难,因为我还有很多东西要学,但总会有像谷歌这样的雇主。 我不会总是有自己开公司的自由,所以我期待着看看这会带我走向何方。
  • 心得:企业内成长,从技能到个人想要的不断探索(自我认同感寻找)

Selling My Bootstrapped SaaS Business

  • url:https://tylertringas.com/selling-my-bootstrapped-saas-business/
  • 阅读摘抄
    • 我觉得自己就像活在梦想中: 能够住在一个世界级的城市,同时还能完全控制自己的时间。
    • 从纯粹的财务角度来看,拥有自己稳定、有利可图的 SaaS 业务是难以置信的。 与经营一家电子商务商店的季节性大起大落,或者销售图书或信息产品的收入大起大落不同,一旦你拥有了一个相当庞大的 SaaS 客户基础,你往往会拥有可预测的收入、稳定的成本,而且月复一月发生剧烈变化的风险也很低。 假设这项业务已经开始盈利,并且在一个月内增加了每月1000美元的新用户。 你留着那1000块吧。 你可以有一个合理的预期,在可预见的未来,下个月你也会得到这1000美元中的大部分。 最重要的是,你的 SaaS 业务的价值是这个数字的倍数,因此额外的1000美元订阅可能会给你的业务总价值增加36000美元或更多。 如果你的业务是可靠的、可预测的,并且你在这个月(而不是从现在开始的六个月)“运行销售数据” ,你通常会得出结论: 你可以保留这项业务,把这六个月的额外利润装进口袋,然后以比这个月更高的价格出售这项业务。 从本质上来说,运营 SaaS 这个非常积极的数学运算永远不会让你得出现在就应该卖掉企业的结论。 一个电子表格几乎总是会告诉你持有 SaaS,并在六个月内重新考虑出售它,它通常是正确的。
  • 心得:可以把这篇收藏发布,很好的借鉴

Skill

JavaScript design patterns #1. Singleton and the Module

  • url:https://wanago.io/2019/11/11/javascript-design-patterns-1-singleton-and-the-module/
  • 阅读摘抄
    • While having a vibe of a mad genius might be tempting, reinventing the wheel is usually not the best way to approach designing your software. The chances are that somebody already had the same problem as you and solved it in a smart way. Such best practices, when formalized, are called design patterns. Today we look into their concept and inspect a singleton and a module.尽管拥有一个疯狂天才的氛围可能很诱人,但重造轮子通常不是设计软件的最佳方式。 很可能有人已经遇到了和你一样的问题,并且用一种聪明的方式解决了它。 这样的最佳实践,一旦形式化,就被称为设计模式。
    • We can treat design patterns as proven solutions that many developers tested in various real-life situations. They aim to support software designers in solving common problems in a readable and predictable way. If we base our application on proven patterns, we can worry less about the overall structure because they tend to encourage us to write our code in an organized way.我们可以将设计模式视为许多开发人员在各种实际情况中测试过的经过验证的解决方案。 他们的目标是支持软件设计师以一种可读和可预测的方式解决常见的问题。 如果我们将应用程序建立在经过验证的模式之上,那么我们对整体结构的担心就会减少,因为它们往往会鼓励我们以一种有组织的方式编写代码。(What the design patterns are)
  • 心得:结合每天技术学习时间阅读每个版块,共5章