Software testing

If anybody asks you ‘What is Quality all about’ the answer is MONEY quality constantly changes and improves as lessons are learned. Quality is important to business because it means mo ...

Tableau

This is a note in memory of the experience when I choosed to learn Data Visualization and Tableau in one week to help somedan. 1. Filter 1.1. only apply to slected sheet As we know, ne ...

React Notes

1.1. ES new features 1.1.1. Spread and rest operator Spread Used to build a new array based on the one we have const numbers = [1,2,3]; const newNumbers = [...numbers,4]; console.log(n ...

C++ Notes

75 exmamples to learn C++ 1. Chapter 1 & 2 1.1. C and C++ C++ is a superset of C #include using namespace std; int main() { cout << "Hi there! This is a C++ world" << ...