main
commit
3746146ed9
|
|
@ -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?
|
||||
|
|
@ -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?
|
||||
|
|
@ -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
|
||||
|
|
@ -0,0 +1,3 @@
|
|||
#! /bin/bash
|
||||
|
||||
export PS1="\[\e[30;43m\].../${PWD##*/} $\[\e[m\] "
|
||||
Loading…
Reference in New Issue