Skip to main content

骑驴找马的经历

http://gengwg.blogspot.com/发信人: wwzz (一辈子当码工), 信区: JobHunting
标  题: 骑驴找马的经历。
发信站: BBS 未名空间站 (Tue Jun  5 18:34:56 2012, 美东)

本人CS master 毕业10+ year,一直在弯曲混 (真的是混,不是什么牛人,就是一普
通码工,自以为还是above average的水平吧)。这么多年来第二次换工作。前后将近6
个月。所以经历不一定对板上大多数童鞋有用。就权当故事读吧
以下是试过的公司,

apple
box.net
cloud9
clearslide
klout
tellapart
trialpay
salesforce
vigalink
zoosk
zuora

onsite 7 times, 只有两个offer。曾经被FB和G的recruiter 联系过,实在是比较懒做
题,所以也就没试了。我的面试有小部分是朋友推荐,大部分是linkedin上recruiter
找来的。(所以建议骑驴找马的童鞋update一下linkedIn Profile)其实现在的工作也
不错,所以也没有很认真的做题和找。总是觉的和fresh拼做题,总是拼不过的。回家
还要做家务,管孩子,没有那么多时间看书。
我面过的公司,白板题都不难,最多是小学水平,也就不献丑了。可能是因为有工作经
验吧,很多时候,是问和工作经历有关的,或是一些system design 的open question
。比如说简历上,有提到用mongo Db做过一个产品,被问到好几次,为什么选mongo DB
, 这个是一定要准备的。

至于pay的如何,因为我面的是小公司,而且只有两个offer,可能不具代表性。但感觉
是和现在工作的base有不小关系。现在fresh Master,可以拿100K,但是十年的经历,
不能拿100Kplus 十年来算的。要从十年前我开始工作的60Kbase来比较的。反正我觉得
普通码工base很难过16万的。就我来说,这次base 只涨了一点点,
而且现在公司的RSU还放弃了,总的收入可能会降一些。

再说说negotiation吧,我这两个offer,碰巧是同一个猎头公司介绍的,所以猎头公司
都有帮忙谈。一般来说,猎头公司会尽量帮你争取,因为他们的commission也会高,而
且不太会被收回offer的。
乱七八糟写了一些,也不知道对大家有用没用。但我觉的我的情况可能更接近弯曲普通
码工的经历,说到底,大多数码工是进不了FLAGM的。唉就象我家ld说的,我实在是没
有文学和艺术细胞,那么多年来,第一次码那么多字,大家撮合看吧。

PS
我的猎头公司不错,如果需要的话,站内信. 猎头说新h1b来不及了。transfer可以。

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