├── README.md ├── activation-functions ├── Manifest.toml ├── Procfile ├── Project.toml ├── app.jl └── assets │ ├── GitHub-Mark-Light-64px.png │ ├── GitHub.png │ └── style.css ├── bmi-calculator ├── Manifest.toml ├── Procfile ├── Project.toml ├── app.jl └── assets │ ├── labels.png │ └── style.css ├── img ├── activation-functions.gif ├── bmi-calculator.gif ├── objectdetector-yolo.gif ├── pes2021-players.gif └── tokyo-olympics.gif ├── objectdetector-yolo ├── Manifest.toml ├── Procfile ├── Project.toml ├── app.jl └── assets │ ├── GitHub.png │ ├── img │ └── 1da32845-c082-4bd5-bcd7-dad37638a1e4.jpg │ └── style.css ├── pes2021-players ├── Manifest.toml ├── Procfile ├── Project.toml ├── app.jl ├── assets │ ├── pes2021-logo.png │ └── style.css └── data │ └── pes2021.csv └── tokyo-olympic-medals ├── Manifest.toml ├── Procfile ├── Project.toml ├── app.jl ├── assets ├── style.css └── tokyo2020.png └── data └── Tokyo2020.csv /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolgahancepel/dash-julia-applications/HEAD/README.md -------------------------------------------------------------------------------- /activation-functions/Manifest.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolgahancepel/dash-julia-applications/HEAD/activation-functions/Manifest.toml -------------------------------------------------------------------------------- /activation-functions/Procfile: -------------------------------------------------------------------------------- 1 | web: julia --project app.jl $PORT -------------------------------------------------------------------------------- /activation-functions/Project.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolgahancepel/dash-julia-applications/HEAD/activation-functions/Project.toml -------------------------------------------------------------------------------- /activation-functions/app.jl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolgahancepel/dash-julia-applications/HEAD/activation-functions/app.jl -------------------------------------------------------------------------------- /activation-functions/assets/GitHub-Mark-Light-64px.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolgahancepel/dash-julia-applications/HEAD/activation-functions/assets/GitHub-Mark-Light-64px.png -------------------------------------------------------------------------------- /activation-functions/assets/GitHub.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolgahancepel/dash-julia-applications/HEAD/activation-functions/assets/GitHub.png -------------------------------------------------------------------------------- /activation-functions/assets/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolgahancepel/dash-julia-applications/HEAD/activation-functions/assets/style.css -------------------------------------------------------------------------------- /bmi-calculator/Manifest.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolgahancepel/dash-julia-applications/HEAD/bmi-calculator/Manifest.toml -------------------------------------------------------------------------------- /bmi-calculator/Procfile: -------------------------------------------------------------------------------- 1 | web: julia --project app.jl $PORT -------------------------------------------------------------------------------- /bmi-calculator/Project.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolgahancepel/dash-julia-applications/HEAD/bmi-calculator/Project.toml -------------------------------------------------------------------------------- /bmi-calculator/app.jl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolgahancepel/dash-julia-applications/HEAD/bmi-calculator/app.jl -------------------------------------------------------------------------------- /bmi-calculator/assets/labels.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolgahancepel/dash-julia-applications/HEAD/bmi-calculator/assets/labels.png -------------------------------------------------------------------------------- /bmi-calculator/assets/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolgahancepel/dash-julia-applications/HEAD/bmi-calculator/assets/style.css -------------------------------------------------------------------------------- /img/activation-functions.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolgahancepel/dash-julia-applications/HEAD/img/activation-functions.gif -------------------------------------------------------------------------------- /img/bmi-calculator.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolgahancepel/dash-julia-applications/HEAD/img/bmi-calculator.gif -------------------------------------------------------------------------------- /img/objectdetector-yolo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolgahancepel/dash-julia-applications/HEAD/img/objectdetector-yolo.gif -------------------------------------------------------------------------------- /img/pes2021-players.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolgahancepel/dash-julia-applications/HEAD/img/pes2021-players.gif -------------------------------------------------------------------------------- /img/tokyo-olympics.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolgahancepel/dash-julia-applications/HEAD/img/tokyo-olympics.gif -------------------------------------------------------------------------------- /objectdetector-yolo/Manifest.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolgahancepel/dash-julia-applications/HEAD/objectdetector-yolo/Manifest.toml -------------------------------------------------------------------------------- /objectdetector-yolo/Procfile: -------------------------------------------------------------------------------- 1 | web: julia --project app.jl $PORT -------------------------------------------------------------------------------- /objectdetector-yolo/Project.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolgahancepel/dash-julia-applications/HEAD/objectdetector-yolo/Project.toml -------------------------------------------------------------------------------- /objectdetector-yolo/app.jl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolgahancepel/dash-julia-applications/HEAD/objectdetector-yolo/app.jl -------------------------------------------------------------------------------- /objectdetector-yolo/assets/GitHub.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolgahancepel/dash-julia-applications/HEAD/objectdetector-yolo/assets/GitHub.png -------------------------------------------------------------------------------- /objectdetector-yolo/assets/img/1da32845-c082-4bd5-bcd7-dad37638a1e4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolgahancepel/dash-julia-applications/HEAD/objectdetector-yolo/assets/img/1da32845-c082-4bd5-bcd7-dad37638a1e4.jpg -------------------------------------------------------------------------------- /objectdetector-yolo/assets/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolgahancepel/dash-julia-applications/HEAD/objectdetector-yolo/assets/style.css -------------------------------------------------------------------------------- /pes2021-players/Manifest.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolgahancepel/dash-julia-applications/HEAD/pes2021-players/Manifest.toml -------------------------------------------------------------------------------- /pes2021-players/Procfile: -------------------------------------------------------------------------------- 1 | web: julia --project app.jl $PORT -------------------------------------------------------------------------------- /pes2021-players/Project.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolgahancepel/dash-julia-applications/HEAD/pes2021-players/Project.toml -------------------------------------------------------------------------------- /pes2021-players/app.jl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolgahancepel/dash-julia-applications/HEAD/pes2021-players/app.jl -------------------------------------------------------------------------------- /pes2021-players/assets/pes2021-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolgahancepel/dash-julia-applications/HEAD/pes2021-players/assets/pes2021-logo.png -------------------------------------------------------------------------------- /pes2021-players/assets/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolgahancepel/dash-julia-applications/HEAD/pes2021-players/assets/style.css -------------------------------------------------------------------------------- /pes2021-players/data/pes2021.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolgahancepel/dash-julia-applications/HEAD/pes2021-players/data/pes2021.csv -------------------------------------------------------------------------------- /tokyo-olympic-medals/Manifest.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolgahancepel/dash-julia-applications/HEAD/tokyo-olympic-medals/Manifest.toml -------------------------------------------------------------------------------- /tokyo-olympic-medals/Procfile: -------------------------------------------------------------------------------- 1 | web: julia --project app.jl $PORT -------------------------------------------------------------------------------- /tokyo-olympic-medals/Project.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolgahancepel/dash-julia-applications/HEAD/tokyo-olympic-medals/Project.toml -------------------------------------------------------------------------------- /tokyo-olympic-medals/app.jl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolgahancepel/dash-julia-applications/HEAD/tokyo-olympic-medals/app.jl -------------------------------------------------------------------------------- /tokyo-olympic-medals/assets/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolgahancepel/dash-julia-applications/HEAD/tokyo-olympic-medals/assets/style.css -------------------------------------------------------------------------------- /tokyo-olympic-medals/assets/tokyo2020.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolgahancepel/dash-julia-applications/HEAD/tokyo-olympic-medals/assets/tokyo2020.png -------------------------------------------------------------------------------- /tokyo-olympic-medals/data/Tokyo2020.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tolgahancepel/dash-julia-applications/HEAD/tokyo-olympic-medals/data/Tokyo2020.csv --------------------------------------------------------------------------------