Skip to content

Instantly share code, notes, and snippets.

@samelm
samelm / gist:b3eeb46881b9defbc1bd7626f98a348c
Created September 18, 2023 17:00 — forked from M0rtyMerr/gist:03bfed48b2cb7bdcc6f2ccdeaeaddbb7
Interview questions FROM candidate TO company
HR Process /
* Why is the vacancy open? Is this a new position or has someone previously held it?
* What's the main problem company is trying to solve by filling this position
* What are the recruitment steps?
* What’s the documental employment basis? How do we manage the docs?
* How do we handle payments? Do I send invoices?
Process /
* What are the day-to-day processes?
* How do you plan new tasks? How do you estimate them? What about deadlines management?
function readCookies() {
const cookies = document.cookie.replaceAll("; ", "&");
const params = new URLSearchParams(cookies);
return Object.fromEntries(params.entries());
}