$ sudo mysql -u root
> create user 'santosh'@'localhost' identified by 'password123';
> create database school_db;
> grant all privileges on school_db.* to 'santosh'@'localhost';
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
{ | |
"editor.quickSuggestions": true, | |
// "editor.tabSize": 4, | |
/** | |
* Better Defaults | |
**/ | |
"window.menuBarVisibility": "hidden", | |
"editor.copyWithSyntaxHighlighting": false, | |
"diffEditor.ignoreTrimWhitespace": false, |
https://theprimeagen.github.io/vim-fundamentals/
:echo stdpath("config")
// get the path
:set scrolloff=8
:set relativenumber
or :set rnu
:set number
mysql -u root
CREATE USER 'santosh123'@'localhost' IDENTIFIED BY 'secretpassword123';
GRANT PRIVILEGES ON *.* TO 'santosh123'@'localhost';
.checkbox-classname{
border: 1px solid rgba(86, 52, 194, 1);
-moz-appearance:none;
-webkit-appearance:none;
-o-appearance:none;
padding: 20px;
box-sizing: border-box;
border-radius: 6px;
}
<div class="container">
<a class="button" href="#"><span>Login</span></a>
</div>
.button {
background: linear-gradient(to right, #05FBFF,#1E00FF);
border-radius: 8px;
import pandas as pd
import matplotlib as matplotlib
print(matplotlib.style.available)
matplotlib.style.use('seaborn-whitegrid') # My favourite, also "seaborn-talk" is big one
df = pd.read_csv('./data/ABC.csv')
NewerOlder