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.
Ask HN: How is the job search coming along for people who got laid off?
351–360 of 579 posts
Re: Ask HN: How is the job search coming along for people who got laid off?
#352Interviewed 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…
but, congratulations!
Re: Ask HN: How is the job search coming along for people who got laid off?
#353Re: Ask HN: How is the job search coming along for people who got laid off?
#354Earlier 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."
Re: Ask HN: How is the job search coming along for people who got laid off?
#355Earlier 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.
Re: Ask HN: How is the job search coming along for people who got laid off?
#356Earlier 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…
Re: Ask HN: How is the job search coming along for people who got laid off?
#357I 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…
Re: Ask HN: How is the job search coming along for people who got laid off?
#358Earlier 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.
Re: Ask HN: How is the job search coming along for people who got laid off?
#359Laid 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
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?
#360Earlier 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.