An open API service indexing awesome lists of open source software.

https://github.com/gjbex/julia_good_bad_ugly

Get to know the Julia programming language to see whether it is for you.
https://github.com/gjbex/julia_good_bad_ugly

julia julia-language julialang scientific-computing training visualization

Last synced: 12 months ago
JSON representation

Get to know the Julia programming language to see whether it is for you.

Awesome Lists containing this project

README

          

# Julia: the good, the bad and the ugly

This repository contains Julia code and notebooks and is intended to get
familiar with the language.

## What is it?

1. `julia,_good_back_ugly.pptx`: Powerpoint presentation highlighting features
of the Julia programming language.
1. `source-code`: Julia source code and notebooks.
1. `environment.yml`: conda environment to use Jupyter lab.
1. `LICENSE`: license information for the material in this repository.
1. `CONTRIBUTING.md`: how to contirubte to this repository.

## How to?

To start a Julia notebook
```bash
$ julia
julia> using IJulia
julia> notebook()
```

If the `IJulia` package is not yet installed, you can do that using
```bash
$ julia
julia> using Pkg
julia> Pkg.add("IJulia")
```
*Note:* recent versions of Julia will offer to install the package when
you first try to use it.

## Contributors

* Geert Jan Bex ([geertjan.bex@uhasselt.be](mailto:geertjan.bex@uhasselt.be)),
Hasselt University/University of Leuven
* Joris Van Houtven
* suggestions to improve the Powerpoint presentation

You are very welcome to contribute, please read
[some guidelines](CONTRIBUTING.md) before you do.