├── .gitignore ├── LICENSE ├── README.md ├── code ├── cudaperf.jl ├── data.csv ├── for-loop-threads.jl ├── for-loop.jl ├── hello.jl ├── import-data.jl ├── jump-example.jl ├── kmedoids.jl ├── mmapexample.jl ├── multiple-dispatch.jl ├── nn-xor.jl ├── numerical-integration.jl ├── ondemanddistancematrix.jl ├── pycaller.jl ├── rcaller.jl ├── reg-glm.jl ├── reg-matrix.jl ├── reg-simple.jl └── rematch.jl ├── images ├── assembly.png ├── hist-abs-x.png ├── histogram.png ├── iulogo.jpg ├── julia.png ├── kmedoids1.png ├── kmedoids2.png ├── thesite.png ├── vscode.png └── welcome.png ├── julia-presentation.pdf └── julia-presentation.tex /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbytecode/julia-presentation/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbytecode/julia-presentation/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbytecode/julia-presentation/HEAD/README.md -------------------------------------------------------------------------------- /code/cudaperf.jl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbytecode/julia-presentation/HEAD/code/cudaperf.jl -------------------------------------------------------------------------------- /code/data.csv: -------------------------------------------------------------------------------- 1 | X; Y 2 | 1; 2 3 | 2; 4 4 | 3; 5 5 | 4; -1 6 | 5; 2 -------------------------------------------------------------------------------- /code/for-loop-threads.jl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbytecode/julia-presentation/HEAD/code/for-loop-threads.jl -------------------------------------------------------------------------------- /code/for-loop.jl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbytecode/julia-presentation/HEAD/code/for-loop.jl -------------------------------------------------------------------------------- /code/hello.jl: -------------------------------------------------------------------------------- 1 | println("Hello, world!") 2 | 3 | -------------------------------------------------------------------------------- /code/import-data.jl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbytecode/julia-presentation/HEAD/code/import-data.jl -------------------------------------------------------------------------------- /code/jump-example.jl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbytecode/julia-presentation/HEAD/code/jump-example.jl -------------------------------------------------------------------------------- /code/kmedoids.jl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbytecode/julia-presentation/HEAD/code/kmedoids.jl -------------------------------------------------------------------------------- /code/mmapexample.jl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbytecode/julia-presentation/HEAD/code/mmapexample.jl -------------------------------------------------------------------------------- /code/multiple-dispatch.jl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbytecode/julia-presentation/HEAD/code/multiple-dispatch.jl -------------------------------------------------------------------------------- /code/nn-xor.jl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbytecode/julia-presentation/HEAD/code/nn-xor.jl -------------------------------------------------------------------------------- /code/numerical-integration.jl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbytecode/julia-presentation/HEAD/code/numerical-integration.jl -------------------------------------------------------------------------------- /code/ondemanddistancematrix.jl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbytecode/julia-presentation/HEAD/code/ondemanddistancematrix.jl -------------------------------------------------------------------------------- /code/pycaller.jl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbytecode/julia-presentation/HEAD/code/pycaller.jl -------------------------------------------------------------------------------- /code/rcaller.jl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbytecode/julia-presentation/HEAD/code/rcaller.jl -------------------------------------------------------------------------------- /code/reg-glm.jl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbytecode/julia-presentation/HEAD/code/reg-glm.jl -------------------------------------------------------------------------------- /code/reg-matrix.jl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbytecode/julia-presentation/HEAD/code/reg-matrix.jl -------------------------------------------------------------------------------- /code/reg-simple.jl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbytecode/julia-presentation/HEAD/code/reg-simple.jl -------------------------------------------------------------------------------- /code/rematch.jl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbytecode/julia-presentation/HEAD/code/rematch.jl -------------------------------------------------------------------------------- /images/assembly.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbytecode/julia-presentation/HEAD/images/assembly.png -------------------------------------------------------------------------------- /images/hist-abs-x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbytecode/julia-presentation/HEAD/images/hist-abs-x.png -------------------------------------------------------------------------------- /images/histogram.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbytecode/julia-presentation/HEAD/images/histogram.png -------------------------------------------------------------------------------- /images/iulogo.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbytecode/julia-presentation/HEAD/images/iulogo.jpg -------------------------------------------------------------------------------- /images/julia.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbytecode/julia-presentation/HEAD/images/julia.png -------------------------------------------------------------------------------- /images/kmedoids1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbytecode/julia-presentation/HEAD/images/kmedoids1.png -------------------------------------------------------------------------------- /images/kmedoids2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbytecode/julia-presentation/HEAD/images/kmedoids2.png -------------------------------------------------------------------------------- /images/thesite.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbytecode/julia-presentation/HEAD/images/thesite.png -------------------------------------------------------------------------------- /images/vscode.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbytecode/julia-presentation/HEAD/images/vscode.png -------------------------------------------------------------------------------- /images/welcome.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbytecode/julia-presentation/HEAD/images/welcome.png -------------------------------------------------------------------------------- /julia-presentation.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbytecode/julia-presentation/HEAD/julia-presentation.pdf -------------------------------------------------------------------------------- /julia-presentation.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbytecode/julia-presentation/HEAD/julia-presentation.tex --------------------------------------------------------------------------------