The cd command is used to change the current directory.
cd stand for change directory
cd path/of/directory
| abandoned | |
| able | |
| absolute | |
| adorable | |
| adventurous | |
| academic | |
| acceptable | |
| acclaimed | |
| accomplished | |
| accurate |
| commit ea830e03d4d4562b1ff225940f65bceddd9cad6c | |
| Author: Hayaki Saito <[email protected]> | |
| Date: Sun Jun 11 23:46:45 2017 +0900 | |
| Add sixel graphics support | |
| Signed-off-by: Hayaki Saito <[email protected]> | |
| diff --git a/Makefile b/Makefile | |
| index d8595fe..a25d040 100644 |
Webpack 4 automatically polyfilled many Node APIs in the browser. This was not a great system, because it could lead to surprisingly giant libraries getting pulled into your app by accident, and it gave you no control over the exact versions of the polyfills you were using.
So Webpack 5 removed this functionality. That means you need to make changes if you were relying on those polyfills. This is a quick reference for how to replace the most common patterns.
For each automatically-polyfilled node package name on the left, this shows the name of the NPM package that was used to polyfill it on the right. Under webpack 5 you can manually install these packages and use them via resolve.fallback.
| #include <iostream> | |
| #include <string> | |
| using namespace std; | |
| void printRules() { | |
| cout << "Rules:\n" | |
| << " * The player who has three horizontally adjacent pieces, loses\n" | |
| << " * The player who has three vertically adjacent pieces, loses\n" | |
| << " * The player who has three diagonally adjacent pieces, loses\n" |
| ## Debounce helper for calling functions. | |
| ## | |
| ## This class creates a debounced version of the passed-in function `fn`. | |
| ## The debounced function will only be called after `delay` seconds have | |
| ## passed without any new calls to the function. | |
| ## | |
| ## [b]Usage Example:[/b] | |
| ## [codeblock] | |
| ## var debouncer: Debouncer | |
| ## |