Code Monkey home page Code Monkey logo

banki's Introduction

Banki Header(1)

How to use

  1. Fork or download the template
  2. Start filling in your answers.
    • If you are having trouble with an answer take a look at the completed sheet for resources/inspiration.
  3. For each answer immediately add it to your ANKI deck and start reviewing.
  4. Review your cards everyday.
  5. Slay your interviews!
  6. Let everyone know how BANKI helped you!
  • If you find any of the following please submit an issue:
    • Typos
    • Possible enhancements
    • Incorrect answers (please provide source for correct answer)
  • Once an issue is submitted feel free to work on it and create a PR.

Attribution

Original bank provided by Leon Noel via #100Devs

banki's People

Contributors

adamrathbun avatar adamrobinsonse avatar andymlearmouth92 avatar boonaki avatar brendondsouza avatar caleb-cohen avatar citrinedragon avatar codingcomrade avatar curtisbarnard avatar danjkim21 avatar devmev10 avatar eleanorlatus avatar elektrazcode avatar evshaw avatar juctaposed avatar kbventures avatar ladybluenotes avatar mhalverstadt avatar moses-codes avatar neffcodes avatar netmagik avatar octoshrimpy avatar rahulkarda avatar saira512dev avatar sleepguywd avatar tch4lla avatar tehuberjohn avatar victoriacheng15 avatar zacrous12 avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

banki's Issues

Split questions to ask your interviewer

Split the questions to ask your interviewer into two categories:

  • Questions during the interview
  • Questions once you receive an offer

Be careful what you ask during the interview as it can expose potential weaknesses.

typo

typo in the answers file

Question 2: Tell me about a time you had to work on several projects at once. How did you handle this?
Cause: I was working on two large projects for two separate clients that were at different stages of their lifecycle. One project was in production and the other project was in the implementation phase.
Action: I decided to send a less experienced colleague to the installation site while I went to do a production check-in on the other project in China. Prior to leaving I briefed my colleague in on the project and told then what to look out for.

HTML-11 Incorrect information

Currently the answer reads: "Yes, I have used EJS. The popular templating languages include Ejs, Jade, Pug, Mustache, HandlebarsJS, Jinja2, and Blade."

However, Jade and Pug are the same templating language. Jade was renamed to Pug.

typo in the `why use node.js` answer

should be package instead of pacakge

- **Explanation:** It uses fewer resources and memory because it is single threaded, it has wide adoption with many open source pacakages available, it is multi-platform and it simplifies the full stack as you can use just one language: Javascript.

Code Example Fix and Small Typo

Heya, I was playing around with the code given in the example for the question "Explain how prototypal inheritance works " and found that it has a bug. 'this.name' in the greet function returns undefined, what works though is 'Parent.name'. Have been looking for a reason why that is but no luck.

Also, there are a few comma's in the 'Explanation' part of the answer.

Example Code Given:

function Parent() {
  this.name = 'Parent';
}
Parent.prototype.greet = function () {
  console.log('Hello from ' + this.name);
};
const child = Object.create(Parent.prototype);
child.cry = function () {
  console.log('waaaaaahhhh!');
};
child.cry();
// waaaaaahhhh!
child.greet();
// hello from Parent
child.constructor;
// ฦ’ Parent() {
// this.name = 'Parent';
// }
child.constructor.name;
// 'Parent'

This works:

Parent.prototype.greet = function () {
  console.log('Hello from ' + Parent.name);
};

T-Node-8: Example Missing closing parenthesis

The current example for T-Node-8 demonstrates the 'then' syntax. However, in the example, the closing parenthesis for the method is missing for each respective console.log(data) line.

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.