Skip to main content

看到离婚贴, 想到巴菲特如何理解婚姻投资

股神不卖pick, 也不教人炒股票,我崇拜巴菲特是因为他的人生哲学, 让我少走了很
多弯路。记得巴菲特曾经两次说过人的婚姻。


1. 婚姻是最难的投资, 因为这种投资是对人, 而人的变数很大, 相貌, 财富, 健
康和性格都会随时间变化而变化。 一旦你婚姻投资失败, 你的财富就会减半。

2. 如果你要投资婚姻, 你当然希望你的投资周期越长越好, 找这么样的丈夫/太太才
能延长你的投资周期呢? 答案是, 你要找一个你对他/她没有任何expectation的配偶
。 我认识很多人, 最初结婚的时候都对对方有不同的expectation, 一旦实际情况没
有达到expectation, 投资就会被中断来“止损”。 越多的expectation反而会增加婚
姻投资的风险。


想到这里, 我觉得巴菲特的投资哲学已经上升到了“化”境。

Comments

Popular posts from this blog

CKA Simulator Kubernetes 1.22

  https://killer.sh Pre Setup Once you've gained access to your terminal it might be wise to spend ~1 minute to setup your environment. You could set these: alias k = kubectl                         # will already be pre-configured export do = "--dry-run=client -o yaml"     # k get pod x $do export now = "--force --grace-period 0"   # k delete pod x $now Vim To make vim use 2 spaces for a tab edit ~/.vimrc to contain: set tabstop=2 set expandtab set shiftwidth=2 More setup suggestions are in the tips section .     Question 1 | Contexts Task weight: 1%   You have access to multiple clusters from your main terminal through kubectl contexts. Write all those context names into /opt/course/1/contexts . Next write a command to display the current context into /opt/course/1/context_default_kubectl.sh , the command should use kubectl . Finally write a second command doing the same thing into ...

OWASP Top 10 Threats and Mitigations Exam - Single Select

Last updated 4 Aug 11 Course Title: OWASP Top 10 Threats and Mitigation Exam Questions - Single Select 1) Which of the following consequences is most likely to occur due to an injection attack? Spoofing Cross-site request forgery Denial of service   Correct Insecure direct object references 2) Your application is created using a language that does not support a clear distinction between code and data. Which vulnerability is most likely to occur in your application? Injection   Correct Insecure direct object references Failure to restrict URL access Insufficient transport layer protection 3) Which of the following scenarios is most likely to cause an injection attack? Unvalidated input is embedded in an instruction stream.   Correct Unvalidated input can be distinguished from valid instructions. A Web application does not validate a client’s access to a resource. A Web action performs an operation on behalf of the user without checkin...