One Paragraph of project description goes here
These instructions will get you a copy of the project up and running on your local machine for development and testing purposes. See deployment for notes on how to deploy the project on a live system.
| 1. Iceberg | |
| 2. Leven | |
| 3. Cvio | |
| 4. Vertica | |
| 5. oXe. | |
| 6. gillion.shufflehound.com |
| "Set absolute linenumbers | |
| "set nu | |
| "Set relative linenumbers | |
| "set rnu | |
| "Set hybrid linenumbers | |
| set nu rnu | |
| set tabstop=4 |
When contributing to this repository, please first discuss the change you wish to make via issue, email, or any other method with the owners of this repository before making a change.
Please note we have a code of conduct, please follow it in all your interactions with the project.
| Data Types | |
| - Integers -> int() | |
| - Whole numbers | |
| - Floating Point -> float() | |
| - Numbers with decimal point | |
| - Strings ("") -> str() | |
| - Immutable ordered sequence of characters | |
| - Lists [] -> list() | |
| - Mutable ordered sequence of objects | |
| - Dictionaries {Key: Value} -> dict() |
| MODES | |
| Normal Mode - [ESC] | |
| Insert Mode - 'i' | |
| Line Mode - ':' | |
| Visual Mode - 'v' | |
| Replace Mode - 'R' | |
| NAVIGATION / MOTION | |
| 'j' - move cursor down | |
| 'k' - move cursor up |
| SHEBANG | |
| #!/bin/bash | |
| FILE OPERATORS | |
| -d [FILE] - TRUE if directory | |
| -e [FILE] - TRUE if exists | |
| -f [FILE] - TRUE if exists and if REGULAR FILE | |
| -r [FILE] - TRUE if readable by you | |
| -s [FILE] - TRUE if exists and NOT EMPTY | |
| -w [FILE] - TRUE if WRITABLE by you |
| SHEBANG | |
| #!/bin/bash | |
| FILE OPERATORS CONDITIONS | |
| -d <FILE> - TRUE if directory | |
| -e <FILE> - TRUE if exists | |
| -f <FILE> - TRUE if exists and if REGULAR FILE | |
| -r <FILE> - TRUE if readable by you | |
| -s <FILE> - TRUE if exists and not empty | |
| -w <FILE> - TRUE if file is writable by you |
| Link: https://www.bigocheatsheet.com/ | |
| #Big O Cheat Sheet: | |
| -Big Os- | |
| O(1) Constant | |
| - no loops | |
| O(log N) Logarithmic | |
| Reference: https://hackernoon.com/what-does-the-time-complexity-o-log-n-actually-mean-45f94bb5bfbf |