Earlier quoted context omitted.
Not really true. Have achieved multiple companies removing the 1 year cliff for me.
The one year cliff is not that problematic to me since I would expect I am getting paid market, and the options are like a hiring bonus (which you often must return if you quit within a year). What am I missing? Is people really worried that a startup whose stock has risen will fire a productive employee? That said, I have seen 5 year vesting (which seemed like a red flag to me), and have heard of Amazon's schedule w…
DoorDash removing 1-year cliff for equity grants
211–220 of 283 posts
Re: DoorDash removing 1-year cliff for equity grants
#212This is good progress. Just two months ago I declined an offer from a known and well funded startup because of a one year cliff on equity. The recruiter didn't seem to be able to discuss this matter and I asked them to make sure to bubble this sort of thing up their food chain. I never heard back afterwards. As an "old timer" in the industry a one year cliff makes absolutely no sense to me. Its like working for credi…
Re: DoorDash removing 1-year cliff for equity grants
#213Earlier quoted context omitted.
There are a surprising number of people who graduate CS/CE without writing any meaningful amount of code. To me a decent junior should be able to build a basic Hacker News. There are a lot out there who have never done so much as make a web page with more than copy/pasted Jquery and expect to get jobs.
>"To me a decent junior should be able to build a basic Hacker News" In what time period? With what features? With what non functional requirements? Show me a senior who can! I have a better test for evaluating anyone's skills: Write a function that puts Strings in an array. Then write another function that goes searching for a string in an array. Write a unit test to confirm your code is working. Explain what happen…
fn put_string(array: &mut Vec, input: String) {
array.push(input)
}
fn find_string(array: &[String], input: &str) -> Option {
for i in 0..array.len() {
if &array[i] == input {
return Some(i);
}
}
None
// or perhaps more idiomatically:
// array.iter().position(|s| s.as_str() == input)
}
#[test]
fn test_find_string() {
let mut array = vec![];
put_string(&mut array, “foo”.to_string());
put_string(&mut array, “bar”.to_string());
assert_eq!(find_string(&array, “foo”), Some(0));
assert_eq!(find_string(&array, “bar”), Some(1));
assert_eq!(find_string(&array, “quux”), None);
}
If our array is sorted, the performance of the function should improve due to better branch prediction. But we’d be better of rewriting it as binary search in that case.What kind of salary are you offering?
Re: DoorDash removing 1-year cliff for equity grants
#214Re: DoorDash removing 1-year cliff for equity grants
#215This is good progress. Just two months ago I declined an offer from a known and well funded startup because of a one year cliff on equity. The recruiter didn't seem to be able to discuss this matter and I asked them to make sure to bubble this sort of thing up their food chain. I never heard back afterwards. As an "old timer" in the industry a one year cliff makes absolutely no sense to me. Its like working for credi…
A 1-year cliff / 4-year vest has been standard as long as I remember. Is this not the case anymore?
Re: DoorDash removing 1-year cliff for equity grants
#216What is the mission here? Is Doordash at all sustainable without continually funneling VC money into subsidizing services that no one would pay for at their breakeven cost?
Re: DoorDash removing 1-year cliff for equity grants
#217Earlier quoted context omitted.
"I declined an offer from a known and well funded startup because of a one year cliff on equity" You might as well not bother interviewing at any startups if this is a deal-breaker for you. Whether you think it's fair or not this is an extremely standard term and no company is going to alter their employee stock grants on a one-off basis.
Not really true. Have achieved multiple companies removing the 1 year cliff for me.
Re: DoorDash removing 1-year cliff for equity grants
#218This is good progress. Just two months ago I declined an offer from a known and well funded startup because of a one year cliff on equity. The recruiter didn't seem to be able to discuss this matter and I asked them to make sure to bubble this sort of thing up their food chain. I never heard back afterwards. As an "old timer" in the industry a one year cliff makes absolutely no sense to me. Its like working for credi…
I am so fascinated at how my grandfather would spend decades at a company, my Dad would spend a decade, and now people decline jobs over the expectation that they stay 1 year. And I was in my first job 51 weeks. I don't think you are wrong in doing so as the market in tech moves fast while employers move like slugs, it is just such a shift from what I grew up to expect.
Re: DoorDash removing 1-year cliff for equity grants
#219Earlier quoted context omitted.
Sure, but if you're depending on the cliff for retention you're working against your own interests: Employees will leave the 53rd week, just after you've spent all that effort training them within your environment. Long term retention hinges on long term adequate compensation and long term quality environments. There's no need for cliffs.
Sure, there is no need for a cliff, but if you are attracting the right talent with adequate compensation (that keeps up with market changes!) the cliff does not matter.
An engineer with family is unlikely to take such a risk and rather join Google or even Amazon where compensation is guaranteed.
Re: DoorDash removing 1-year cliff for equity grants
#220Earlier quoted context omitted.
"I declined an offer from a known and well funded startup because of a one year cliff on equity" You might as well not bother interviewing at any startups if this is a deal-breaker for you. Whether you think it's fair or not this is an extremely standard term and no company is going to alter their employee stock grants on a one-off basis.
Not really true. Have achieved multiple companies removing the 1 year cliff for me.
It was just strange that the recruiter couldnt discuss this further or at least give an offer with a nice cash compensation that would be paid out monthly (sort of like how Amazon does it) to compensate for cliff.