Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/derlin/workshop-data-sciences
A two-days workshop material introducing data sciences for big data
https://github.com/derlin/workshop-data-sciences
big-data data-science hdfs hive spark workshop workshop-materials zeppelin
Last synced: 21 days ago
JSON representation
A two-days workshop material introducing data sciences for big data
- Host: GitHub
- URL: https://github.com/derlin/workshop-data-sciences
- Owner: derlin
- Created: 2017-10-09T15:20:54.000Z (over 7 years ago)
- Default Branch: master
- Last Pushed: 2017-10-20T14:39:14.000Z (over 7 years ago)
- Last Synced: 2024-11-19T08:52:07.752Z (3 months ago)
- Topics: big-data, data-science, hdfs, hive, spark, workshop, workshop-materials, zeppelin
- Homepage: https://derlin.github.io/workshop-data-sciences/
- Size: 28.8 MB
- Stars: 2
- Watchers: 6
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Workshop data-sciences
This website is the main support of a two-days datasciences workshop taking place in Fribourg on October 2017. It covers the basics of big data analytics using HADOOP and related technologies.
It is powered by the exascale institute of the UNIFR and the DAPLAB institute of the HEIA-FR.
## Setup and run
(1) clone this repo:
```shell
[email protected]:derlin/workshop-data-sciences.git
```(2) install dependencies:
```shell
pip install -r requirements.txt
```(3) start a local server (default to [http://localhost:8000/](http://localhost:8000/)):
```shell
cd workshop-data-sciences
mkdocs serve
```(4) modify the site and add content
(5) deploy the changes by (a) updating the master branch on github and (b) updating the gh-pages branch:
```shell
# update master branch
git commit -a -m "do some changes"
git push origin master
# updatet the gh-pages branch, i.e. the website
mkdocs gh-deploy
```## Editing rules and tips
External links should always open into a new tab. For that, add `{: target="_blank"}` after any markdown link, for example
```
[some link](http://example.com){: target="_blank"}
```The theme is mkdocs-material, which has a [great documentation](http://squidfunk.github.io/mkdocs-material). We also use a lot of extensions, most of which are explained in the docs. The most interesting one is the [Admonition](http://squidfunk.github.io/mkdocs-material/extensions/admonition/) one, so have a look at it !