Live data from Hacker News

Ask HN: How is the job search coming along for people who got laid off?

news.ycombinator.com

351–360 of 579 posts

Re: Ask HN: How is the job search coming along for people who got laid off?

#351
post #49
post #29

Earlier quoted context omitted.

ghosting is pretty standard in my experience, 1-2 months of interviewing and testing then nothing is pretty standard in the industry

Here (Israel) it's illegal, you can reject a candidate for pretty much any (non discriminatory) reason but you have to tell them about it pretty promptly. It's weird there are US states where it's not a requirement.

Isan email that says we've moved on with another candidate sufficient or do you have to give the exact reason?

Re: Ask HN: How is the job search coming along for people who got laid off?

#352

Interviewed with about 28 companies for almost 3 months, without a single offer! I was starting to get really worried about money and burned out from interviewing. In the past I've never interviewed with more than 2 or 3 before getting an offer I now this is incredibly privileged. I'm not humble-bragging, just observing the change in the market. As things usually turn out, during the last week of the 3-month search I…

not to diminish your success, but I've found similar results in the past. I think there's something about scarcity. As soon as one company knows another company wants you, all the sudden the 1st wants you now too. and if two other companies want you well, then you absolutely have to have that candidate. it's kinda messed up.

but, congratulations!

Re: Ask HN: How is the job search coming along for people who got laid off?

#353
I wasn't laid off but after my company announced layoffs I received ~25 messages on linkedin from recruiters so I think things are still pretty good if you have a decent resume. I am currently in interview process with about 5 companies which signaled that they could match or exceed my current comp. Too bad I suck at interviews though

Re: Ask HN: How is the job search coming along for people who got laid off?

#354

Earlier quoted context omitted.

> If I want to pass a variable into a function, and have its value changed by the function, what do I do? A lousy candidate says "put an ampersand in front of it". A meh candidate says to pass a pointer to the variable. The best candidate will talk about the difference between call-by-value versus call-by-reference. I agree it's good for a candidate to demonstrate a solid understanding of evaluation strategies, but t…

Agreed. In fact, I had an instructor in college that would have marked you down if a quiz/test asked this question and you wrote an entire paragraph describing call-by-value versus call-by-reference. On the final, he said "Each of these questions is answerable in 1-3 sentences. If you're writing 1-3 paragraphs, you're wasting my time and I will subtract points even if your answer is correct."

Must have been before rvalue references.

Re: Ask HN: How is the job search coming along for people who got laid off?

#355

Earlier quoted context omitted.

If it's in your contract where you promise not to work for anyone else without telling your employer, yes, it's illegal because breach of contract is illegal. But it's not illegal in its own right. However I doubt that they didn't make him sign a contract to the contrary so he's probably double dipping.

Contracts don't determine what is legal and not legal. If the said person is found out then they would be in breach of contract and could be fired or sued. They would not earn themselves a criminal record.

They could earn themselves a criminal charge if the court decides what they're doing is fraud which it likely is if they have signed something saying they wouldn't work elsewhere simultaneously.

Re: Ask HN: How is the job search coming along for people who got laid off?

#356
post #218
post #150

Earlier quoted context omitted.

just chiming in for others that i've had a job specifically waive a coding test because they saw me livecode in front of 2000 people and my fave amazon interview story was a guy that walked in with his laptop open to my blog saying "this is just a formality i've read your work" lol TLDR why leetcode in private when you can work in public* (*yes yes, not everyone can work in public, but i bet a fair amount of you can…

Last time I had a coding test during a job interview, I was left alone for an hour with a laptop that was screen-shared with a number of interviewers that was unknown to me. It felt a little like live coding in public but without any audible feedback. That might stress some people out I’d guess, but it felt chill to me. I did my usual thing, even used StackOverflow for some quick syntax & library tips, and finished t…

That's quite a bit for an interview. How long did it take? Did they gave you code to plug a piece into? Or did you have to write the whole game?

Re: Ask HN: How is the job search coming along for people who got laid off?

#357
post #264

I got laid off a few weeks ago I’m mid senior level in Product Management but come from a big well known tech company, and I work remote from a non-tech “city”. 5 years PM experience, 6 years as a Software dev. Launched 3 products from concept. One has over 20 million MAU, one created 9 figures of revenue for my previous company, and one I have no idea because I got laid off lol According to my LinkedIn I’ve applied…

I find for PM roles location is much more important than technical IC roles. Living in a "non-tech" city might be your biggest handicap.

Re: Ask HN: How is the job search coming along for people who got laid off?

#358
post #340

Earlier quoted context omitted.

But you cannot change the reference itself which is possible in languages like C, C++, C#, and many more.

It's been a while, but my understanding was that actual C++ references were immutable, and what you are describing can only happen as a result of passing a pointer by value.

Yeah, you cannot 'reassign' a reference. The compiler will yell at you if you try. You can definitely modify values of your referenced object though, that's fair game. When it comes to pointers you can do whatever the hell you want but be careful.

Re: Ask HN: How is the job search coming along for people who got laid off?

#359

Laid off from Twitter three weeks ago, lots of interest and cool companies out there. I binged interviews and have three offers to consider. Senior eng with 20 years experience

Not OP but similar level of experience.

I had the leet code once, interviewing for Meta. I didn't prepare because I thought that it was pointless, but I was curious about what it would be like to do it. So, I went through with it and to my shock and awe I managed to do it. The feedback was that I didn't ace it but I did more than well enough for the interviewer.

I didn't get the job though. The last step was a really strange and uncomfortable 1-1 chat with a "very senior employee". This did not go well.

Re: Ask HN: How is the job search coming along for people who got laid off?

#360

Earlier quoted context omitted.

You've got to be kidding... that's literally what references are for. Insane.

We don't teach pass by reference these days. Anyone you find in the real world under ~30 years old may not even be aware that you can pass a reference and modify it directly without having to make a method return a value. It's super cool to have someone explain to you side effects yet you show them a method with a null return and run it for them showing that the value has changed and they are mesmerized.

At one interview, as a joke at the end, the set of interviewers asked me if I could write code to reverse a string. I replied, "In place, or...?" which apparently confused some of them.
Post reply on HN