Merge branch 'master' of github.com:LeCoupa/awesome-cheatsheets

This commit is contained in:
Julien Le Coupanec 2020-09-11 10:45:30 +02:00
commit 0b10cb93d6
3 changed files with 8 additions and 4 deletions

View File

@ -81,9 +81,12 @@ Feel free to take a look. You might learn new things. They have been designed to
<details>
<summary>View cheatsheets</summary>
#### NoSQL
#### SQL
- [MySQL](databases/mysql.sh)
#### NoSQL
- [Redis](databases/redis.sh)
</details>

View File

@ -106,5 +106,6 @@ django-admin version # display the current django version
# 5. $ virtualenv venv
# 6. $ source venv/bin/activate
# 7. $ pip install django
# 8. $ django-admin startproject myproject
# 9. $ python manage.py runserver
# 8. $ django-admin startproject myproject
# 9. $ django-admin startapp myapp
# 10. $ python manage.py runserver

View File

@ -508,6 +508,6 @@ On_Cyan='\033[46m' # Cyan
On_White='\033[47m' # White
# Example of usage
echo -e "${Green}This is GREEN text${Color_Off} and nornal text"
echo -e "${Green}This is GREEN text${Color_Off} and normal text"
echo -e "${Red}${On_White}This is Red test on White background${Color_Off}"
# option -e is mandatory, it enable interpretation of backslash escapes