Skip to content

Instantly share code, notes, and snippets.

View mwafrika's full-sized avatar
🖐️
Available for hire

MWAFRIKA MUFUNGIZI mwafrika

🖐️
Available for hire
View GitHub Profile
@mwafrika
mwafrika / mysql_cheat_sheet.md
Last active October 20, 2022 16:43 — forked from bradtraversy/mysql_cheat_sheet.md
MySQL Cheat Sheet

MySQL Cheat Sheet

Help with SQL commands to interact with a MySQL database

MySQL Locations

  • Mac /usr/local/mysql/bin
  • Windows /Program Files/MySQL/MySQL version/bin
  • Xampp /xampp/mysql/bin

Add mysql to your PATH

Interview Questions

Node.js

Q1: What do you mean by Asynchronous API? ☆☆

Answer: All APIs of Node.js library are aynchronous that is non-blocking. It essentially means a Node.js based server never waits for a API to return data. Server moves to next API after calling it and a notification mechanism of Events of Node.js helps server to get response from the previous API call.

Source: tutorialspoint.com