Skip to main content

做选择的原则是什么

 

1.关于怎么做选择,我听过一个非常简洁的模型。如果做选择的主体是可以永续存在的,比如说国家或者公司,那选择的根本依据就是要考虑这个选择做出之后,会不会让自己的选择变得更多。如果每次选择,看起来都占便宜了,但是自由选择权变少了,这就是坏的选择。

2.另外一种情况,选择的主体是有限存在的。比如我们人,终有一死,那选择的原则就变了。不是要让选择越来越多,而是要让选择发生变化。

3.比如说,年轻的时候要选择好的配偶,但是不能一生都在这个选择中,要让这个选择推动我进入下一个阶段的选择。比如,选定配偶,就好好经营家庭,生孩子,面对有孩子之后的其他选择。当然不生孩子,也可以培养自己其他的爱好和人生安排。

4.总结一下就是,永续的主体要让选择越来越多,而有限的主体要让选择不断更新。

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...