Ask HN: Why do companies interview using Google Docs as a coding environment?
11–20 of 20 posts
Re: Ask HN: Why do companies interview using Google Docs as a coding environment?
#12There is an add on called Code Blocks that you can install on google docs for free. Huge language support - but don't expect it to be a fully functional ide.
Other than that, you'll want to turn off auto-capitalization, and spell checking from Tools->Preferences.
Re: Ask HN: Why do companies interview using Google Docs as a coding environment?
#13Re: Ask HN: Why do companies interview using Google Docs as a coding environment?
#141. how good is the candidate at problem solving?
2. is the candidate able to think in code?
3. are there any glaring syntax errors?
To assess the above three, a whiteboard, paper or Google Docs is sufficient. I'm not averse to using an IDE, just that the IDE's syntax checking hints will shift the candidate's focus to writing syntactically accurate code (#3) rather than on the problem (#1 and #2).
Re: Ask HN: Why do companies interview using Google Docs as a coding environment?
#15why do they care if you have memorized all of each languages specific apis when you can easily look them up on the fly with intellisense or similiar. My own pet peeve since being super dyslexic despite being a solid programmer I memorize very little just the general idea and capability of how different constructs generally work across languages.
Re: Ask HN: Why do companies interview using Google Docs as a coding environment?
#16Re: Ask HN: Why do companies interview using Google Docs as a coding environment?
#17Never heard of this, is this an actual thing?
Re: Ask HN: Why do companies interview using Google Docs as a coding environment?
#18During coding interviews, I'm looking for the following evidence in a candidate: 1. how good is the candidate at problem solving? 2. is the candidate able to think in code? 3. are there any glaring syntax errors? To assess the above three, a whiteboard, paper or Google Docs is sufficient. I'm not averse to using an IDE, just that the IDE's syntax checking hints will shift the candidate's focus to writing syntacticall…
The other problem I see is when you don't agree on something with the interviewer. One guy made me write some fictitious SQL queries on a doc and then asked me some questions. He was wrong about several things but we didn't have any way to test it. I was so shocked he didn't know that stuff that I had to tested after to see if I was actually wrong, but no.
Re: Ask HN: Why do companies interview using Google Docs as a coding environment?
#19Honestly, I have no idea why anyone would do this. What this will achieve at best is optimising for rote learning and selecting for people who are capable of writing syntactically perfect code unassistedly. This however is an unrealistic scenario during daily development work because that's - among other things - what an IDE is for.
Problem analysis, mapping requirements to code, finding solutions in a deliberate rather than haphazard manner - these actually relevant aspects of software development aren't assessed at all by such a 'process'.
Re: Ask HN: Why do companies interview using Google Docs as a coding environment?
#20why do they care if you have memorized all of each languages specific apis when you can easily look them up on the fly with intellisense or similiar. My own pet peeve since being super dyslexic despite being a solid programmer I memorize very little just the general idea and capability of how different constructs generally work across languages.
For what it's worth, when I do coding interviews, I really don't care if the candidate calls the function at() or get() or find(), whatever that particular library in that particular language actually has, as long as their usage of the supposed function is appropriate in the language.