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.
- Host: GitHub
- URL: https://github.com/gjbex/julia_good_bad_ugly
- Owner: gjbex
- License: cc-by-4.0
- Created: 2021-06-01T06:59:04.000Z (about 5 years ago)
- Default Branch: main
- Last Pushed: 2025-07-10T10:55:05.000Z (12 months ago)
- Last Synced: 2025-07-10T16:53:19.335Z (12 months ago)
- Topics: julia, julia-language, julialang, scientific-computing, training, visualization
- Language: Jupyter Notebook
- Homepage: https://gjbex.github.io/Julia_good_bad_ugly/
- Size: 4.41 MB
- Stars: 5
- Watchers: 2
- Forks: 2
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Contributing: CONTRIBUTING.md
- License: LICENSE
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.