This website uses cookies to improve the user experience, more information on the legal information path.
Notes
0
years
0
mons
0
days
0
hour
0
mins
0
secs
00
3
Filter for positions, survey to check compatibility
Motivation
Believe it or not, due to the high demand for developers of all kinds in the market by companies, many recruiters and headhunters have become copy paste machines. I don't know the number or the daily amount of messages they send to all the profiles in their network that match the new position they have available, but I would bet they are not few. And it's not that I don't like them sending me messages, but I would like them to send me messages that really interest me and make me think that they have seen my profile, my code or some of my work and that they really want to hire me for my skills.
This is not usually the case, many people use programs to automate the process of searching for profiles such as Hiretual or Jobvite, they send messages to all users "that match" and sometimes this does not work very well. Since your profile clearly says Frontend Developer, your experience says the same... but, they have a Java position with awesome microservices for you.
Other times they screw up and send you a message with the name of your teammate:
The idea
How many times have you had a call with questions like:
Why are you looking for a change?
Do you know the SOLID principles?
How many years would you say you've been working with React ? How about Typescript ?
Do you know what continuous integration is?
To be offered a lower salary than you have, or to be asked for your CV and never be told anything again.
How many times bro ?
The idea is to screen you before you get screened.
Solution
10 simple questions about points that you consider important, requirements, values... or basically whatever you want and if they are fulfilled, the recruiter will get contact information to be able to go into detail about the whole process.
It's a win win, we both save time, don't we?
Code
With a container or page component, a couple of buttons, radiobuttons and an array of objects you have more than enough, in my case:
I have my page:
survey.tsx
import Dialog from '@/components/Dialog';
import styles from '@/styles/survey.module.css';
import ControlButtons from '@/components/ControlButtons';
import Confetti from 'react-confetti';
import SEO from '@/components/SEO';
import useWindowResize from '@/hooks/useWindowResize';
import useSurvey from '@/hooks/useSurvey';
import NavigationArrows from '@/components/NavigationArrows';
import QuestionBlock from '@/components/QuestionBlock';