TE
TechEcho
Home24h TopNewestBestAskShowJobs
GitHubTwitter
Home

TechEcho

A tech news platform built with Next.js, providing global tech news and discussions.

GitHubTwitter

Home

HomeNewestBestAskShowJobs

Resources

HackerNews APIOriginal HackerNewsNext.js

© 2025 TechEcho. All rights reserved.

Ask HN: How to sell myself to a company downplaying my holes in experience?

6 pointsby ccajasover 6 years ago
I&#x27;m going to lead with a particular example. Everyone probably understand the value of code testing, though I haven&#x27;t seen it in my personal experience, to see fellow developers at work writing their own tests. I&#x27;ve been with five companies and they all follow a QA-focused process.<p>What we typically do is mark an issue on our project tracker (Redbooth, for example) as something like &quot;send to QA&quot;, wait for the lead developer to push to the staging server, which can take a while because the lead dev is usually outsourced and living in a very different time zone. When he finally pushes the code, QA is able to test the new code to see if the issues have been fixed.<p>As the developer I&#x27;m not expected to write my own tests there. I don&#x27;t know what regression means (is that like linear regression?) and wouldn&#x27;t know which testing framework to use. However, more and more, I have been interviewing with companies that prefer automated testing and developers writing their own tests.<p>They might ask me what my experience with unit testing is, my mind draws a blank and simply say I have no experience with it. I&#x27;m sure that&#x27;s a turn-off for them and now probably see me as a rogue who plays by his own rules, wreaking a tornado of havoc onto well-structured code. Anyways, I want don&#x27;t want things like a lack of automated testing experience to be an &quot;anti-selling point&quot; anymore. But the companies I worked at didn&#x27;t have a business case justifying why they should spend expensive developer resources that detracts from something that just works already.<p>&quot;I don&#x27;t know X but I will have no problem learning it!!&quot; is also not the saving grace at an interview like some people think it does. There has been no instance of me saying I can pick up new knowledge quickly in an interview in which the company gave me an offer. It&#x27;s getting to the point where now I have to sell businesses cases to remain employable for other companies. Anyone help me out with this, starting with this particular example with TDD?

4 comments

itamarstover 6 years ago
Here&#x27;s what I would do:<p>1. Spend a couple of hours doing some research. So you&#x27;ll learn &quot;regression test&quot; means &quot;automated test to ensure a bug is fixed and doesn&#x27;t reoccur&quot;, and about some automated testing frameworks for your language of choice.<p>2. Spend another hour doing some minimal automated testing with one of those libraries.<p>3. In interview when asked about testing you explain &quot;At my previous employer we mostly focused on manual testing, so I did that, and then QA person checked it and usually my manual testing was good enough, so I&#x27;m pretty thorough. But I know automated testing is important so I&#x27;ve spent some time looking into it, and I&#x27;d probably be using &lt;testing framework you found in step 1&gt; for &lt;your language&gt;.&quot;<p>Basically:<p>1. Don&#x27;t lie.<p>2. Spend small amount of time to make sure you have basic albeit superficial knowledge, which is a <i>lot</i> better than &quot;dunno&quot;.<p>3. Communicate you can learn on your own.<p>4. Communicate you care about quality.<p>Some general advice for interviewing for jobs with technologies you don&#x27;t know: <a href="https:&#x2F;&#x2F;codewithoutrules.com&#x2F;2018&#x2F;01&#x2F;23&#x2F;job-with-technology-you-dont-know&#x2F;" rel="nofollow">https:&#x2F;&#x2F;codewithoutrules.com&#x2F;2018&#x2F;01&#x2F;23&#x2F;job-with-technology-...</a>
评论 #17903819 未加载
swatcoderover 6 years ago
First, framing: obviously, every company would <i>love</i> to hire candidates who are proven experts in <i>their</i> methodology and <i>their</i> technology and <i>their</i> industry. But it&#x27;s just as obvious that this isn&#x27;t possible. So hiring involves compromise. You don&#x27;t need to get every question &quot;right&quot; in order to be a winning candidate.<p>Second, as itamarst said: always be honest, but also be curious. If you&#x27;re consistently seeing something come up in ads or interviews for the places you want to work, dedicate the time to research it thoroughly and earnestly. You can&#x27;t invent experience, but you can demonstrate enthusiasm and preparedness.<p>Third, fulfill the compromise: look for jobs where you&#x27;re already a very good fit for other details like familiarity with their industry or with a particular solution. The more you stand out by some measures, the more leeway they&#x27;ll afford you for others.
sloakenover 6 years ago
So do you know what unit test means? You said at the interview you could learn it, so have you?<p>At interviews I loved asking a question I did not expect someone to know, but they would feel embarrassed by not knowing:<p>You know what trees are? &lt;of course&gt;<p>You know what binary tree are? &lt;of course&gt; Please explain...<p>Do you know what a 2-3 tree is? &lt;usually not, so I explain&gt;<p>You know what a balances tree is? &lt;yes&gt;<p>You know what a B tree is? &lt;yes&gt;<p>What is the difference between a Balanced tree and a B tree? &lt;silence&gt; Ok so this seems like a technical question right? Wrong. There are several possible answers:<p>1) I have no clue (this is acceptable)<p>2) say something (I will write down every word you say, after the interview I will look it up, because even I cannot remember the answer. If you are right, then good for you, this question counts no more than answer #1, if you are wrong, depending on how wrong, you might be eliminated. I do not need someone who feels such a need to be an expert that they make up stuff)<p>3) I do not know but I know how to find the answer. (this is really what I am looking for. You will not know everything but should be able to work stuff out. But that only gets you 0.5 points. You must look up the information and email me the answer. 24 hours is as good as 10 minutes after the interview. Although I hate it, it should be in the stupid thank you note.<p>For any skill you do not have but you understand it, try and relate it to something you already have been doing.
bjourneover 6 years ago
IMHO, not understanding testing is a very big hole. It is not like not knowing what the latest and greatest Node.js web framework is. An interviewer could quite reasonably eliminate someone by not having worked with testing before. Your best bet is to learn about testing well enough to eliminate this hole.