Skip to content

topocm/topocm_content

Folders and files

NameName
Last commit message
Last commit date

Latest commit

Mar 8, 2025
a6ca5f4 · Mar 8, 2025
Aug 6, 2021
Aug 6, 2021
Apr 4, 2016
Aug 8, 2021
Aug 9, 2021
Jul 23, 2022
Aug 9, 2021
Aug 9, 2021
Aug 9, 2021
Mar 17, 2022
Aug 9, 2021
Jun 18, 2022
Jan 3, 2024
Mar 8, 2025
Aug 9, 2021
Aug 9, 2021
Aug 9, 2021
Aug 9, 2021
Aug 6, 2021
Aug 6, 2021
Aug 6, 2021
Dec 22, 2022
Jan 29, 2015
Aug 9, 2021
Aug 8, 2021
Jan 2, 2019
Aug 8, 2021
Aug 8, 2021
Aug 7, 2021
Apr 25, 2017

Repository files navigation

The source materials for the EdX course "Topology in Condensed Matter: Tying Quantum Knots"

The latest stable version of the course is located at http://topocondmat.org.

Open these notebooks in Binder: Binder such that you can experiment with the code.

Development tip: shallow clone

Initially, this repository contained all the output of all computations, which means that its size is somewhat big (~300MB). In order to not download all the data, you can use the shallow cloning feature of git (at least v1.9) by using these or analogous commands:

mkdir topocm && cd topocm
git init
git remote add origin https://github.com/topocm/topocm_content.git # (Or the location of your fork)
git fetch --depth 1 origin +refs/tags/cleaned # Here we get the first commit that doesn't contain cruft
git fetch origin
git checkout master

The cleaned tag corresponds to the beginning of development that stores no output. Then you get a repository that does not contain any cruft data, and has a size of ~15MB.

The notebooks in this repo are executed and converted to html and available on topocondmat.org. For building the website we use the pelican static site generator, available under AGPL license.