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
What is the use of the gist file |
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
git config --global user.name "Your Name" | |
git config --global user.email [email protected] | |
Next steps: | |
mkdir Test | |
cd Test | |
git init | |
touch README | |
git add README | |
git commit -m 'first commit' |
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
Host github.com | |
Hostname ssh.github.com | |
User git | |
Port 443 | |
IdentityFile "~/.ssh/github_rsa" | |
TCPKeepAlive yes | |
IdentitiesOnly yes | |
ProxyCommand corkscrew 202.141.80.20 3128 %h %p ~/.ssh/proxyauth | |
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
git config --global user.name "Your Name Here" | |
git config --global user.email [email protected] | |
git config --global color.ui true | |
git config --global core.editor vi | |
git config --global alias.st status | |
git config --global alias.df diff |
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
install git(sudo apt-get install git) | |
Do git configurations (https://gist.github.com/ysaimanojkumar/10004593) | |
install corkscrew | |
Generate public-private key pair using "ssh-keygen -t rsa" command | |
Copy the public key you have generated and paste it in SSH Keys in github |
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
2118 cd tmp/ | |
2119 ls | |
2120 mkdir fact | |
2121 cd fact/ | |
2122 ls | |
2123 vi main.c | |
2124 ls | |
2125 vi main.c | |
2126 ls | |
2127 git init |
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
password | count | |
---|---|---|
123456 | 47817 | |
password | 11548 | |
123456789 | 11133 | |
12345 | 8088 | |
qwerty | 5915 | |
12345678 | 5248 | |
111111 | 3514 | |
abc123 | 3011 | |
123123 | 2971 |
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
// To find the size of all tables in your Kusto database | |
find in ( database('<your database name>').* ) where 1 == 1 | |
| summarize total = format_bytes(sum(estimate_data_size(*))) | |
// Similarly for whole Kusto cluster | |
find in ( cluster('<your cluster name>').database('*').* ) where 1 == 1 | |
| summarize total = format_bytes(sum(estimate_data_size(*))) |