diff --git a/README.org b/README.org
index e9e022738743e39c498f50c04119a47d304bccbf..619943451d060bfbdad330cf4b7a5d684776ef39 100644
--- a/README.org
+++ b/README.org
@@ -21,35 +21,37 @@ contributing!*
 
 ** List of Notebooks
 
-So far, notebooks are listed alphabetically and stars shall indicate
-their difficulty (☆ = simple, ☆☆ = advanced, ☆☆☆ = sophisticated):
+So far, notebooks are listed by difficulty, indicated by stars (☆ = simple, ☆☆ = advanced, ☆☆☆ = sophisticated), then alphabetically:
 
+
+- [[file:classification.ipynb][Classification]] :: basic machine learning classification example (☆) 
+- [[file:exponential_smoothing.ipynb][Exponential smoothing]] :: using [[https://ipywidgets.readthedocs.io/en/latest/examples/Widget%2520Basics.html][Jupyter's interactive widget]] to
+     explore [[https://en.wikipedia.org/wiki/Exponential_smoothing][exponential smoothing]] (☆)
+- [[file:Hamming.ipynb][Hamming]] :: a graph visualising a strange type of word similarity (☆)
+- [[file:Jupyter-Demo.ipynb][Jupyter-Demo]] :: demo of some Jupyter features useful for creating
+     learning material (☆)
+- [[file:Twitter.ipynb][Twitter]] :: analysing Twitter data (raw JSON from Twitter's API) (☆)
+- [[file:wikipedia_language_editions.ipynb][Wikipedia language editions]] :: plotting the depth and number of articles of different
+    Wikipedia language editions (☆)
 - [[file:AirBnB_Use_Berlin.ipynb][AirBnB Use in Berlin]] :: exemplary (and excellent) term paper for the
      module "Datenanalyse & -auswertung" (☆☆)
 - [[file:amazon_reviews.ipynb][Amazon reviews]] :: crawling web sites with [[https://scrapy.org/][Scrapy]], processing JSON
      data, basic statistics and visualisation (☆☆)
-- [[file:Art.ipynb][Computer-generated art]] :: translation, scaling and composition of
+- [[file:Art.ipynb][Art]] :: Creating computer-generated art by translation, scaling and composition of
   functions (☆☆)
-- [[file:classification.ipynb][Classification]] :: basic machine learning classification example (☆)
 - [[file:community_detection.ipynb][Community detection]] :: applying community detection algorithms to
      network graphs (☆☆)
 - [[file:crawling_a_blog.ipynb][Crawling a blog]] :: crawling web sites, basic text mining, basic
      statistics and visualisation (☆☆)
-- [[file:distances.ipynb][Distances]] :: comprehensive interactive simulation of recovering
-     information from noisy data (namely, point positions given their
-     noisy distance matrix) (☆☆☆)
 - [[file:Dracor.ipynb][DraCor]] :: retrieving data from a REST API, text transformation and
      classification (☆☆)
-- [[file:exponential_smoothing.ipynb][Exponential smoothing]] :: using [[https://ipywidgets.readthedocs.io/en/latest/examples/Widget%2520Basics.html][Jupyter's interactive widget]] to
-     explore [[https://en.wikipedia.org/wiki/Exponential_smoothing][exponential smoothing]] (☆)
-- [[file:Hamming.ipynb][Hamming]] :: a graph visualising a strange type of word similarity (☆)
-- [[file:Jupyter-Demo.ipynb][Jupyter demo]] :: demo of some Jupyter features useful for creating
-     learning material (☆)
+- [[file:machine_learning.ipynb][Machine Learning]] :: recipes for common machine learning tasks (☆☆)
 - [[file:Mondrian.ipynb][Mondrian]] :: turtle graphics, recursion, art (☆☆)
-- [[file:Das_Haus_vom_Nikolaus.ipynb][Nikolaus]] :: graph [[https://en.wikipedia.org/wiki/Graph_traversal][traversal]] and drawing (☆☆☆)
 - [[file:statistics_top50faculty.ipynb][Statistics top 50 faculty]] :: exploratory statistical analysis of the
      [[http://cs.brown.edu/people/apapouts/faculty_dataset.html][dataset of 2200 faculty in 50 top US computer science graduate
      programs]] (☆☆)
-- [[file:Twitter.ipynb][Twitter]] :: analysing Twitter data (raw JSON from Twitter's API) (☆)
-- [[file:wikipedia_language_editions.ipynb][Wikipedia]] :: plotting the depth and number of articles of different
-  Wikipedia language editions (☆)
+- [[file:distances.ipynb][Distances]] :: comprehensive interactive simulation of recovering
+     information from noisy data (namely, point positions given their
+     noisy distance matrix) (☆☆☆)
+- [[file:Das_Haus_vom_Nikolaus.ipynb][Das Haus vom Nikolaus]] :: graph [[https://en.wikipedia.org/wiki/Graph_traversal][traversal]] and drawing (☆☆☆)
+- [[file:scrape_review_blog.ipynb][Scrape review blog]] :: Here, we use the python package scrapy to download all reviews of a literature blog (☆☆☆)