Skip to main content

不明白为啥全都冲着WEB义无反顾的扎进去


你们互联网公司对于二十年以上的business真的是没什么概念,layoff点人立刻就觉得
企业不行了。

虽然我从业时间也不算长,但是我身边有很久的,而且我也喜欢看大公司的历史和发展。

对硬件公司来说,layoff 700人真不算个事儿。不过是关了个工艺过时的工厂而已。
Intel的CPU现在集成化高了不需要做北桥之类的外围电路了难道它还把700个技术工人
relocate到其他工厂去?

我以前也觉得长期来说Intel干不过ARM。跟行内资深的聊多了才知道Intel多可怕。全
世界最好的半导体、系统,都在他们家。x86就算有种种不好,有一点ARM是完全没法比
的,那就是二十多年,上百亿的出货量带来的稳定性。像Amazon、Netflix那种网站
down一分钟损失几十上百万的web,你敢用ARM的服务器么?你敢么?

现在web自己搞服务器越来越不合算。所以大公司自己搞,小公司托管。也就是说市场
集中化——Intel最不怕的就是在全是大客户的市场里竞争。

而且功耗、能效、性能/面积比。ARM跟Intel比还差不少。ARM到现在连DVFS都有问题。

还有一点,Intel最喜欢干的一件事,就是把东西早早搞好了储备在家里,等到你快赶
上来之前再扔出来。这么多年来也就玩脱了两次——一次是64位,一次是多核。但是结
果呢?AMD伤筋动骨,Intel啥事儿没有。这两年x86没什么创新,是因为AMD被Intel彻
底玩残了。Intel没有发布新技术的动力。等到ARM真的快赶上来了,才是看好戏的时候。

你们搞互联网的不了解情况也可以理解。

【 在 goodbug (好虫) 的大作中提到: 】
: 10年前看好Intel也就罢了,现在ARM这么有竞争力,Intel危机四伏,还盲目相信没事
: 就真是幼稚了。
: Intel to Lay Off 700 as Massachusetts Plant Closes
: SEPTEMBER 12, 2013 AT 3:00 PM PT
: Chipmaker Intel plans to close a fab in Hudson, Mass., and fire about 700
: people as a result, according to a report in the Boston Globe. Intel first
: acquired the facility, now used to make low-end chips, from Digital
: Equipment Corp. in 1998. The company said 100 people will lose their jobs
: over the next four months; the rest will stay on until the plant closes
for
: good.

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