Skip to main content

欧美从70年代后开始衰落,这是有目共睹的,原因有3:

1.享乐主义,很多年轻人从小就玩,不好好学习,做科研做工程师的人越来越少,到后
期就进口老中老印,不像黄金时期都是他们白人自己做这些工作。

2.妇女解放,大量的人开始乱搞,传统价值观瓦解,聪明的高收入的人不生或者很晚才
生,女的年轻到处乱搞,离婚率迅速上升,单亲家庭迅速增多,对其下一代都很不利。

3.极端化的资本主义,里根和萨奇尔执政以后,制造业转移第三世界,全球化开始,西
方中产阶级迅速消失,正统白人中产被底层黑人和白人犹太人巨富联合插管,科研经费
和大学经费迅速削减,教育逐步产业化商业化,科研人员待遇迅速下降,导致整个西方
开始过于注重物质享乐和短期利益,从事工业研发和科研的聪明人越来越少。
--
Yet nature is made better by no mean. But nature makes that mean. So over that art,
which you say adds to nature, is an art, that nature makes.

W. Shakespeare -- "The Winter's Tale"

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