Skip to main content

再说一遍IT公司的fundamental


一个公司要利于market,

必须要有fundamental。

比如cisco,是不怎么样,可是人家80%的全球份额,很多人都想不到吧?人家的
ciscolive规模开的比nanog都大,你们还是没想到吧?

比如msft,office系列很多工具都是行业标准,比如画图用visio,就要写在job
description上面。

比如oracle,人家的证书就是吃香,搞database的一律走oracle。

比如AAPL,啥也没有,可是人家有观众,我50几岁的老妈瞄了一眼就说你那个黑不溜秋
的(thinkpad)真难看,苹果果然好啊。

现在amazon你们想想fundamental是什么,其实就是books,可惜这个killer随时可以被
电子书取代,所以,把眼光放在AWS能不能成是一种思路,把眼光放在kindle上是另外
一种思路。

甚至kindle的成败,对amazon更为重要,

为什么呢?这代表着amazon终于可以告诉世人,我和别的成功的企业一样,有立于不败
之地的killer,一旦击败ipad看书,就顺利绑定了end users。

能不能突破不说,起码我不会衰败!

这叫做,前方不管怎么打仗,我后院不失火!

可惜呢,amazon这个企业从头到尾都是一个摇摇欲坠,四面八方都有群狼攻击,现在走
投无路下多处发力,显然问题是值得investor serious consideration的。

所以了,200其实真的不是梦。

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