This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!bin/bash | |
| # REFERENCE: https://docs.microsoft.com/en-us/sql/linux/quickstart-install-connect-ubuntu?view=sql-server-ver15 | |
| # 1. First add the Microsoft SQL Server repository | |
| wget -qO- https://packages.microsoft.com/keys/microsoft.asc | sudo apt-key add - | |
| sudo add-apt-repository "$(wget -qO- https://packages.microsoft.com/config/ubuntu/18.04/mssql-server-2019.list)" | |
| # 2. Then Install sql server using apt-install | |
| sudo apt-get update |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| """ | |
| A simple python script that uses the psutil package to show processes running on a host machine. | |
| """ | |
| __version__ = '1.0.0' | |
| __author__ = 'Ndamulelo N [email protected]' | |
| import psutil | |
| import argparse |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| service cloud.firestore{ | |
| match /databases/{database}/documents{ | |
| match /{document=**}{ | |
| allow read, write: if request.auth.uid != null; | |
| } | |
| } | |
| } |
NewerOlder