Skip to main content

标  题: 总结一下在硅谷码农圈混的几点经验

标  题: 总结一下在硅谷码农圈混的几点经验
发信站: BBS 未名空间站 (Tue Jun 13 00:05:31 2017, 美东)

在硅谷码农圈混了将近十年了,总结一下我的经验吧,希望对有些人能有点帮助

1. 提高自己表达的能力。英文是一方面,但更重要的是逻辑性。有些老中说话说的飞
快,但没什么逻辑性,所以讨论问题的时候非常吃亏。而且,我建议英文不是母语的人
,说话一定要故意放慢。还有是要掌握一些专业或者是idiomatic的说法。比如我同事
有次想表达自己fix了一个deep/shallow copy的bug,说了十分钟老美们还是一脸蒙蔽
,我就猜着问了一句是不是shallow copy的问题,大家立马全明白了。

2. Leadership。这个东西在北美混实在太重要了,也是我们老中很多缺乏的。这个东
西对老美烙印来说是从小上学就培养的,对老中来说先天不足,很多人也不知道怎么锻
炼。我的经验有几点,第一,多管闲事,不管是不是自己的模块都去关心一下。第二,
能来事儿,比如说自己搞一个东西搞了几个月终于明白了,别藏着掖着,搞个talk,最
好是给更大team的。第三,找mentor,当mentor。找公司混的比较好的级别高的做自己
的mentor,公司来了新人多帮帮新人,如果可以给新人当mentor。 总体来说,就是一
定要花时间干些自己本职工作之外的事儿。

3. Build自己的career。说白了就是刷简历。做任何一个项目,都要想这个项目能给自
己带来什么。这个可以是多方面的,如果是一个新项目,那很有可能将来做tech lead
或者manager。也有可能项目是现在业界最火的(比如无人车),这种项目一定抢着做。

4. 要自信。很多老中天生不自信,老是揪着自己的缺点。我和组里的老中同事1/1的时
候,同事基本都是自我批评,但是这同事实际上做的非常不错。用哈佛商学院的一句警
句就是,不管任何时候,都要无条件的自信。大家细细体会什么叫无条件的自信。

5.最后一条有点鸡汤了。多做自己喜欢做的事儿。有些人说我天生不喜欢写code可还是
搞了码农这一行。没关系。首先,码农这一行不一定全是写code,你还要design,做
ppt,和别的组沟通(PM)等等,肯定有你比较喜欢的一块。另外,没有人的工作是100%
喜欢的,明白这一点降低自己的期望也很重要。

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