├── .gitignore ├── README.md ├── html ├── 00 Getting Started with Julia.html ├── 01 Dive Right-in to the Language.html ├── 02 Tour of popular packages.html └── 03 Speed and Accuracy.html └── notebooks ├── 00 Getting Started with Julia.ipynb ├── 01 Dive Right-in to the Language.ipynb ├── 02 Tour of popular packages.ipynb ├── 03 Speed and Accuracy.ipynb └── dowjones2016.csv /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daveh19/pydataberlin2017/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daveh19/pydataberlin2017/HEAD/README.md -------------------------------------------------------------------------------- /html/00 Getting Started with Julia.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daveh19/pydataberlin2017/HEAD/html/00 Getting Started with Julia.html -------------------------------------------------------------------------------- /html/01 Dive Right-in to the Language.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daveh19/pydataberlin2017/HEAD/html/01 Dive Right-in to the Language.html -------------------------------------------------------------------------------- /html/02 Tour of popular packages.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daveh19/pydataberlin2017/HEAD/html/02 Tour of popular packages.html -------------------------------------------------------------------------------- /html/03 Speed and Accuracy.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daveh19/pydataberlin2017/HEAD/html/03 Speed and Accuracy.html -------------------------------------------------------------------------------- /notebooks/00 Getting Started with Julia.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daveh19/pydataberlin2017/HEAD/notebooks/00 Getting Started with Julia.ipynb -------------------------------------------------------------------------------- /notebooks/01 Dive Right-in to the Language.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daveh19/pydataberlin2017/HEAD/notebooks/01 Dive Right-in to the Language.ipynb -------------------------------------------------------------------------------- /notebooks/02 Tour of popular packages.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daveh19/pydataberlin2017/HEAD/notebooks/02 Tour of popular packages.ipynb -------------------------------------------------------------------------------- /notebooks/03 Speed and Accuracy.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daveh19/pydataberlin2017/HEAD/notebooks/03 Speed and Accuracy.ipynb -------------------------------------------------------------------------------- /notebooks/dowjones2016.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daveh19/pydataberlin2017/HEAD/notebooks/dowjones2016.csv --------------------------------------------------------------------------------