See how a minor change to your commit message style can make you a better programmer.
Format: <type>(<scope>): <subject>
<scope> is optional
| import pandas as pd | |
| import pymysql | |
| from sqlalchemy import create_engine | |
| engine = create_engine("mysql+pymysql://USER:PASSWORD@HOST:PORT/DBNAME") | |
| df = pd.read_sql_query("SELECT * FROM table", engine) | |
| df.head() |
| using UnityEngine; | |
| public static class ConvertToSpriteExtensiton | |
| { | |
| public static Sprite ConvertToSprite(this Texture2D texture) | |
| { | |
| return Sprite.Create(texture, new Rect(0, 0, texture.width, texture.height), Vector2.zero); | |
| } | |
| } |
| " remap escape key to jk | |
| imap jk <Esc> | |
| " when possible cursor is in center of screen | |
| nnoremap j jzz | |
| nnoremap k kzz | |
| nnoremap `` ``zz | |
| " general settings | |
| set rnu et ts=4 sw=4 sts=4 ai cindent nowrap noswapfile cursorline splitbelow splitright |