Live data from Hacker News

DoorDash removing 1-year cliff for equity grants

blog.doordash.com

211–220 of 283 posts

Re: DoorDash removing 1-year cliff for equity grants

#211

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…

If you are joining an early enough startup then your cash salary is very likely to be below-market, at least when compared to FAANG etc.

Re: DoorDash removing 1-year cliff for equity grants

#212
post #141

This 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

#213
post #109

Earlier 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

#215
post #141

This 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?

It is the case, but it seems like it only persists because it is traditional. I'm not aware of any basis by which the employees should be willing to accept deferred comp for the first year. It sets up all kinds of bad incentives.

Re: DoorDash removing 1-year cliff for equity grants

#216
> Furthermore, we want the reward to reflect the work that our team does to realize DoorDash’s mission and empower the communities we serve.

What 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

#217

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

At high-quality VC-backed tech companies? I guess it might be possible it you were super early.

Re: DoorDash removing 1-year cliff for equity grants

#218
post #141

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

[deleted]

Re: DoorDash removing 1-year cliff for equity grants

#219
post #210

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

How can you attract the right talent when competing with companies, like Google, Amazon (with their cash bonus payment model to compensate their weird back weighted RSUs) or Netflix being able to hand out offers without any of these risks?

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

#220

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

Yes, that was my hope also. As it becomes more common to not have a cliff.

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.

Post reply on HN