See how a minor change to your commit message style can make a difference.
Tip
Have a look at git-conventional-commits , a CLI util to ensure these conventions and generate verion and changelogs
See how a minor change to your commit message style can make a difference.
Tip
Have a look at git-conventional-commits , a CLI util to ensure these conventions and generate verion and changelogs
| echo "This is just a sample line appended to create a big file.. " > dummy.txt | |
| for /L %i in (1,1,14) do type dummy.txt >> dummy.txt // 1MB | |
| // for /L %i in (1,1,18) do type dummy.txt >> dummy.txt // 32MB |
| #pragma once | |
| #include <QObject> | |
| //See Gist Comment for description, usage, warnings and license information | |
| #define AUTO_PROPERTY(TYPE, NAME) \ | |
| Q_PROPERTY(TYPE NAME READ NAME WRITE NAME NOTIFY NAME ## Changed ) \ | |
| public: \ | |
| TYPE NAME() const { return a_ ## NAME ; } \ | |
| void NAME(TYPE value) { \ | |
| if (a_ ## NAME == value) return; \ | |
| a_ ## NAME = value; \ |
| #!/bin/bash | |
| prezto.sh(){ | |
| clear | |
| sudo apt-get install -y git | |
| sudo apt-get update && sudo apt-get install -y zsh | |
| # Get prezto | |
| git clone --recursive https://github.com/sorin-ionescu/prezto.git ~/.zprezto | |
| # Backup zsh config if it exists |
| import scipy.io | |
| import pandas as pd | |
| mat = scipy.io.loadmat('file.mat') | |
| mat = {k:v for k, v in mat.items() if k[0] != '_'} | |
| data = pd.DataFrame({k: pd.Series(v[0]) for k, v in mat.items()}) | |
| data.to_csv("example.csv") |