commit 3746146ed9cdae3ace43f495def3f39317e785d7 Author: bel Date: Sun Oct 15 10:33:19 2023 -0600 ok diff --git a/0-screen.yaml b/0-screen.yaml new file mode 100644 index 0000000..260ee15 --- /dev/null +++ b/0-screen.yaml @@ -0,0 +1,13 @@ +questions: + recv: + sent: + questions: + - q: why is this position open? + a: we need someone to own a legacy PoS + - q: i saw emphasis on SQL which I am not strong in;; what is view on learning at Sezzle? + a: we do learning budget + cut: + - q: how is quality enforced at sezzle? like, what do releases and code reviews look like? + - q: what's in this team's past? + - q: what's in this team's future? + - q: how often do developers interview loop? diff --git a/1-tech.yaml b/1-tech.yaml new file mode 100644 index 0000000..78a16c9 --- /dev/null +++ b/1-tech.yaml @@ -0,0 +1,30 @@ +meta: + interviewers: + Keara Stratton: [manager] + Chris Arnold: [director] +questions: + recv: + - q: what kinda tests you done? what you like? + - q: how to debug an obscured database in prod+staging? + - q: how to build an exactly once 99.9999999999% durable queue + sent: + questions: + # ===== t1 + - q: what's on your wishlist roadmap this year? for the next 5 years? + - q: do you find yourself blocked by other teams? working in other teams' spaces? + - q: what does a release look like? when is something -release ready-? + - q: tell me about oncall + + # ===== t2 + - q: what operating system do you work in? was it a choice? what software is standard? what do you wish for? (IDEs, VPNs, ...) + - q: what does planning vacation time look like? + - q: what is performance review process like? + + # ===== t3 + - q: what automations do you have? CICD? Metrics and alerts? Deployment? + - q: do developers have SSH/root access/db admin access? why? + - q: how do you manage configs? secrets? + + # ===== t4 + - q: where are SLAs defined? How are issues escalated? + - q: how often do developers interview loop? diff --git a/mnt.sh b/mnt.sh new file mode 100644 index 0000000..f319991 --- /dev/null +++ b/mnt.sh @@ -0,0 +1,12 @@ +#! /bin/bash + +test -f ./mnt/.bashrc || cp $HOME/.bashrc ./mnt/ +test -f ./mnt/.vimrc || cp $HOME/.vimrc ./mnt/ + +docker run \ + --rm \ + -it \ + --name interview \ + -v "$PWD"/mnt:/root \ + -w /root \ + ubuntu:22.04 diff --git a/src/.env.sh b/src/.env.sh new file mode 100644 index 0000000..f8f1788 --- /dev/null +++ b/src/.env.sh @@ -0,0 +1,3 @@ +#! /bin/bash + +export PS1="\[\e[30;43m\].../${PWD##*/} $\[\e[m\] "