6 ms·
Great post. I hate interviewing. I think a lot about it since I'm the type of person who performs horribly in an interview call when some person I've never met
by steakejjs 12y ago
Great post. I hate interviewing. I think a lot about it since I'm the type of person who performs horribly in an interview call when some person I've never met is asking me trivia questions on speaker phone...
One thing I wonder. Why are people being interviewed for technical positions in a google doc or whatever fake coding environment? Servers are cheap.
If you have to go the way of the technical phone interview, doesn't it make more sense to have both (interviewer and interviewee) parties SSH into a server and work together on some type of problem for an hour? The interviewer can even watch the candidate program or work in screen. This type of interview isn't perfect, but closed book "Programming Jeopardy" style interviews are just worse in every way.
- calcsam 12y agoWe use HackerRank, which has an in-browser IDE that can runs pretty much every language, has highlighting, etc. I can't believe anyone would use Google Docs. Even if you don't care about your interviewees' experience, huge waste of dev time.
- sdevlin 12y agoI once had a phone interview wherein I was required to write some code and then read it to the interviewer (character by character!) over the phone. I asked him whether it would make more sense for us to use etherpad (this was maybe five years ago), but he said no.
- tptacek 12y agoHave you ever had a productive phone screen? I think they might all be evil.
- sdevlin 12y agoI haven't. I think they are pointless at best. This particular phone screen was probably the most nervous I've been during any interview ever. Predictably, it was enough to disqualify me.
- dripton 12y agoYes, I recently had two productive phone screens, as a candidate. The first one taught me a bit about the company and team, and gave me a good impression of the interviewer (the hiring manager), which then led to me doing a work sample. (Without the phone screen I don't know if I would have sunk several hours into the work sample.) I ended up getting an offer but not taking it. The second one also gave me a good impression of the company, team, and interviewer (a senior engineer) and led to me doing an full day of interviews. Which led to me accepting an offer. The one used Collabedit in addition to the phone. I know they're not perfect, but it's much cheaper to talk on the phone for an hour than to fly someone in for face-to-face interviews. Given way more resumes than resources for in-person interviews, I'd rather narrow the field using phone screens than narrow the field based solely on what's in the resumes. I saw the part in your article about work samples, and I agree that they're great, but they are significant work for the candidate. So I think it makes sense to do have some kind of phone call first, to see if there's enough mutual interest to make it worth the candidate's time.
- tptacek 12y agoThere's a semantic gap getting in the way between us. Phone calls with candidates: very good. See "Warm up candidates" in the post we're commenting on for my thoughts about that. A phone screen is a call whose purpose is to select out candidates. It's a call whose outcome can be "stop talking to this developer". They're very common, and I think uniformly evil.
- dripton 12y agoUnderstood. I know that at least my second example was a phone screen: if that interviewer didn't like me, the interviewing process would have ended. I don't know how you avoid that. If you have 1000 candidates per open position, you probably can't afford to do in-person interviews with all of them, or even all the ones with decent-looking resumes. What's the alternative to phone screens? An automated remote work sample system, maybe?
- tptacek 12y ago
- tedunangst 12y agoFor full time devs? Rarely. For interns? Absolutely. We had many applicants whose programming experience was closer to web design, and weren't conversant in basic data structures. I don't think it was inherently evil to tell them to come back next year, after they've taken a course in algorithms.
- steakejjs 12y agoBe carful not to forget reading off a semi-colon. Syntax counts!
- Zikes 12y agoJust imagine if it were a whitespace sensitive language like Coffeescript. "Newline. Tab. Tab. Tab. Tab."
- joshrotenberg 12y agoHeh. "Wait, was that 'Tab. Tab. Tab.' or 'Tab. Tab. Tab. Tab.'?" A Lisp would be nasty, too. "... Close paren. Close paren. Close paren. Close paren. ..."
- rhizome 12y ago"newline, indent one tab beyond the previous line."
- msoad 12y agoI just interviewed with Google and they use Google Docs.
- cableshaft 12y agoCan confirm. They used Google Docs with me as well. I didn't find it to be all that bad, actually. Their back-to-back whiteboard interviews later on were much more nerve-wracking.
- msoad 12y agoDid you get the job? I have the interview next week. :S
- cableshaft 12y agoNo, they passed, but invited me to apply again in a year and a half. That was a couple years ago, and their recruiters have started emailing again, so I guess I didn't do too terrible. When they told me they passed they also told me that "some people get passed the first time and then study for the next 18 months and do amazing the next time!" and I just don't have the time for that. I already worked myself half to death in my twenties for two startups, I'm not going to study for a test as a second job for a year just to get a job at Google, although I still think it'd be fun and clearly challenging. I recommend studying your ass off for algorithms (specifically figuring out what algorithm would be best for different real world problems, especially in regards to various Google products, including those you've never really used before) and practicing writing code on a whiteboard before you go. I studied for a solid week and a half beforehand, and it wasn't enough. I was prepared, just not prepared for what they asked me. That's a common issue I have with these interviews, is that computer science is such a vast field that it's impossible to have everything in your head ready to shoot off in any interview, but interviewers somehow think that if you missed a question or two you're somehow not qualified to work for them, despite having years of direct experience at companies beforehand and being able to Google and refresh literally any topic you might encounter at your job in less than a minute. Google seemed better than most at that, though. I still found the experience to be valuable and interesting.
- loumf 12y agoI use Google doc because I don't care if the syntax is perfect. Those IDEs do and when someone is nervous, they make simple mistakes and can't see them right away. It spirals from there. I ask people to do the best they can to get the syntax right, and I will ask for corrections if it's way off.
- fsniper 12y agoI just got an interview with HackerRank and it sucked. It has some absurd code completion and a browser is not a good place to code in. I tried to copy/paste in/out from vim and it was a disastrous process. Nearly I could not use my previously implemented bst implementation. (Which I was told to). I screwed the test - of course it was not HackerRank's problem - and retried in vim after time ended. I could code it in a fraction of the time that I could in that ide. Time limits never work for the candidate.
- mahyarm 12y agoYou know, screen share is a thing... I do that on all remote interviews. Code a simple-ish thing that doesn't require that you've read about it before and show me how you'd do it. Complete with the build & run command.
- Buge 12y agoI think google's reasoning for using google docs is that they would rather use whiteboards but can't for phone calls. Google docs are similar to whiteboards in that they provide no highlighting or code completion.