Live data from Hacker News

Ask HN: How do you stay sane during a floundering job search?

news.ycombinator.com

1–10 of 19 posts

Ask HN: How do you stay sane during a floundering job search?

#1
I've been on the market for a new job since April following a Covid-19 layoff, and I’m really struggling to deal with the way things are right now. I'm a non-traditional developer who just reached the low end of mid-level and I just can’t seem to “win”.

I’ll get an interview with a company that seems to have a relatively simple product and reportedly “easy” interview process according to Glassdoor, and I’ll get slammed with difficult leetcode questions that don’t seem to get any easier the more I read and practice. Other times, I’ll somehow get an interview with a company that has a complicated product, so I’ll be researching the technology they use and trying to prepare myself for whatever leetcode humiliation I have to suffer, only to drop the ball on a really easy non-leetcode problem. I just came off of this for a contract position that was really exciting but I messed up the absolute easiest rule about interfaces while looking for compiler errors that cost me.

Still other companies have HackerRank knockoffs like CodeSignal that don’t support relatively recent versions of languages, making trivial tasks like database access or HTTP GET requests either unnecessarily complex or completely impossible in an interview scenario. Normal code that I've implemented, seen on the job, or otherwise seen on the internet just doesn't work for these platforms.

I get ghosted a lot after the HR stage seems to go well. A decently-known US company went so far as to reach out to me on StackOverflow, connect me with a recruiter, set up a date for just a chat, and then suddenly fill the position and end the conversation.

How does anyone without a network of people they can ask for jobs deal with this? I don't think I can take much more of this, nothing so far seems to help. Whenever I try to ask questions or get advice I just get college students and new grads giving me "good vibes" or inapplicable advice they peeled off of CSCQ/dev.to and it's driving me nuts.

Re: Ask HN: How do you stay sane during a floundering job search?

#2
Hi,

Sorry if my reply addresses trivial things, but I'll just write it to make sure we're not missing ways out.

You can make or troubleshoot software elsewhere than 'software companies'. Banks, energy companies, telecoms, government, and practically every organization relies on software one way or another.

Making a living does not imply being hired full time at a company. Have you looked into freelancing just to make a living right now and get your basic needs taken care of? There are dental offices that need software or IT chops.

Have you tried applying at startups or small shops? These tend to focus more on actual need, and people involved in hiring tend to be engineers you'll work with who are most likely not in the business of binary tree fondling. At the very early stage, they need people who'll do everything to solve a problem.

If you'd like to give freelancing or consulting a shit and found that it works for you, I've written a bit on ways to do it effectively[0].

My contact info is in my profile if you want to chat, bounce off ideas, or talk about problems in your hiring/work. I'll anwser to the best of my ability.

- [0]: https://news.ycombinator.com/item?id=24972611

Re: Ask HN: How do you stay sane during a floundering job search?

#4
post #2

Hi, Sorry if my reply addresses trivial things, but I'll just write it to make sure we're not missing ways out. You can make or troubleshoot software elsewhere than 'software companies'. Banks, energy companies, telecoms, government, and practically every organization relies on software one way or another. Making a living does not imply being hired full time at a company. Have you looked into freelancing just to make…

> You can make or troubleshoot software elsewhere than 'software companies'. Banks, energy companies, telecoms, government, and practically every organization relies on software one way or another.

Unfortunately I'm unwanted there as well. I've been ghosted or rejected at the resume stage by every bank, energy company, postal company, etc. I've applied to. Government contracts always end with the recruiter saying that people are interviewing for the position and I have to wait and see (it never pans out).

> Have you looked into freelancing just to make a living right now and get your basic needs taken care of?

Freelancing is a foreign-dominated market and I currently need a position that's safe and consistent in terms of pay, as I have a dependent parent. I've been living off of emergency savings and unemployment so I need something that can rebuild that fund, and I can't risk my sole source of income being denied because I was underbid by someone from China or India.

> Have you tried applying at startups or small shops?

Yes for small shops, same results. Early on in my search, one particular small shop sent me a code screen before they would talk to me, I got the question right, and I was still rejected without even speaking to anybody. I try to avoid startups for similar reasons I list for freelancing.

Re: Ask HN: How do you stay sane during a floundering job search?

#5
Jugurtha covered a lot of the job market, I just want to cover the staying sane part.

I went through a 3 month stink last year where I was without a job. The main reason why I stayed sane was due to;

1. I worked on my side project https://github.com/robotichead/NearBeach. 2. I improved/studied my knowledge

From working on my side project I was able to show a lot of companies the project. This actually gave a foot in the door and an eventual job. I am not saying start your own project, however if you see a project online that you want to jump in and contribute I would highly recommend. You can then use this experience for your CV's STAR.

As for improving my knowledge, this is not just programming. There are many things you can improve on that can help, for example I noticed a lot of companies were using AWS or Azure. So I spent my time learning AWS - which was a second pillar for me getting my current job.

Those are the two main things that kept me sane during those 3 months. Good luck at getting a job - it is horrible being knocked back :(

Re: Ask HN: How do you stay sane during a floundering job search?

#6
I went through a similar experience recently. Got laid off, was unemployed for 2 months, recently just started a new job. I went through the same leetcode humiliation as well. My only advice as far as the job search goes is to "git gud". Really, what else can you do? Keep grinding and doing as many problems as you can. Interviewing is a numbers game, and eventually your stars will align where you'll either get problems you've seen before or can solve reasonably well on the spot. But the important thing is to keep doing those problems.

Aside from that, you need to take care of your mental health. Being unemployed and getting wrecked in every interview was seriously depressing. Develop a strong support network of friends and family that you can vent to. I didn't have friends to refer me to companies but I had friends who would listen to me whine and complain about how life was shitty. And that helped me a lot. Exercise every day, eat clean, get a good night's sleep. That's all I've got for you. Now get back to leetcoding.

Re: Ask HN: How do you stay sane during a floundering job search?

#8
Keep improving while you’re waiting. Read and code and improve between each interview. You can’t lose. Don’t burn yourself out. Also, Leetcode can get in the f@@&ng sea. If employers are seriously giving so much weight to Leetcode tests theses days to grade candidates then I really do despair. The interview process is broken.

Ps. Don’t get too disheartened by all the rejections. I was also laid off due to Covid. Overnight the job market was flooded and the bar got raised extremely high for all jobs. It’s not a normal situation and many others are probably feeling the same as you.

Re: Ask HN: How do you stay sane during a floundering job search?

#9

Jugurtha covered a lot of the job market, I just want to cover the staying sane part. I went through a 3 month stink last year where I was without a job. The main reason why I stayed sane was due to; 1. I worked on my side project https://github.com/robotichead/NearBeach . 2. I improved/studied my knowledge From working on my side project I was able to show a lot of companies the project. This actually gave a foot in…

I've been doing both of those myself, but it hasn't really paid off in any way. I made a CLI for interacting with Neocities and I've been sitting on Pluralsight a lot, but I don't get far enough or get people who want to hear about my projects or work.

AWS is a good topic, I'll probably sink a bunch of Pluralsight and grind time into it. Thanks for the wishes.

Re: Ask HN: How do you stay sane during a floundering job search?

#10

I went through a similar experience recently. Got laid off, was unemployed for 2 months, recently just started a new job. I went through the same leetcode humiliation as well. My only advice as far as the job search goes is to "git gud". Really, what else can you do? Keep grinding and doing as many problems as you can. Interviewing is a numbers game, and eventually your stars will align where you'll either get proble…

I should probably try to constructively vent more or find people to listen to my leetcode woes. I don't really leverage my friends circle to complain about the hunt. Leetcode's definitely the constant.

Hoping I can look back at this thread a few years from now and realize I made it through a bad spot. Thanks for the response.

Post reply on HN