Abílio Azevedo.

Technical Consulting - Training and selecting candidates

Cover Image for Technical Consulting - Training and selecting candidates
Abílio Azevedo
Abílio Azevedo

Farmly is a coffee startup that connects producers to international buyers. They hired me in 2021 to provide technical consulting for their tech team.

We had weekly meetings with the team for training in technology applied to the company's scenario. We talked about:

And in our last interaction I was asked to select and evaluate candidates for the fullstack developer position. I had already done this role in the companies I worked at as a leader, but as a service for a third party company it was my first opportunity.

  • I asked the candidates to take some project from their portfolio to present its functioning and architecture, describing the technical choices. As the company focused on ReactJS, NodeJS and the use of GraphQL, we put these technologies as optional, making it clear that they would be important differentials.

  • The candidates presented very interesting projects, in addition to talking about the technologies they have worked with.

  • In the end to test development in practice I applied a code test:

Test

What does the code below do and is it correct?

function run(input: string) {
  let depth = 0;

  for (let c of input) {
    if (c === "(") {
      depth++;
    } else if (c === ")") {
      depth--;
    }
  }

  return depth === 0;
}

console.log(run("(()"))  
console.log(run("(())"))

Solution

  • The code tests if the received string has the right number of parentheses and returns true or false

  • However, it is wrong because it doesn't check the case of finding ")" without having opened the parenthesis;

function run(input: string) {
  let depth = 0;

  for (let c of input) {
    if (c === "(") {
      depth++;
    } else if (c === ")") {
      if (depth <= 0) {
        return false;
      }
      depth--;
    }
  }

  return depth === 0;
}

console.log(run(")(")) // false
console.log(run("(())")) // true  

Feedbacks

For all candidates I gave feedback on their resume, portfolio, LinkedIn, Github... Unfortunately this doesn't happen in all hiring processes which is a shame.

IMG 3003


More posts

Cover Image for Tech Documents

Tech Documents

Learn the vital importance of comprehensive technical documentation for growing software projects. Discover best practices like Requests for Comments (RFCs) and Architectural Decision Records (ADRs) that promote transparency, collaboration, and architectural decision logging. Explore powerful tools like wiki.js and Backstage to create effective documentation hubs. Keep your project organized, comprehensible, and sustainable with this approach to technical documentation.

Abílio Azevedo
Abílio Azevedo
Cover Image for Superlógica - BFF para o Gruvi

Superlógica - BFF para o Gruvi

Building a BFF (Backend for Frontend) for the Gruvi SuperApp that have more than 120k active users and millions of possible users to rollout in the Superlogica ecosystem.

Abílio Azevedo
Abílio Azevedo

NewsLetter

I will send the content posted here. No Spam =)