This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| /* @theme dramsch */ | |
| @import 'uncover'; | |
| :root { | |
| --color-background: #eee; | |
| --color-background-code: #ddd; | |
| --color-background-header: #222; | |
| --color-background-paginate: rgba(128, 128, 128, 0.05); | |
| --color-foreground: #111; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| from pathlib import Path | |
| ## replace these | |
| user = "jesperdramsch" | |
| folder = "notebooks" | |
| repo = "euroscipy-2022-ml-for-science-reproducibility-tutorial" | |
| ## Add a Binder link once | |
| print(f"https://mybinder.org/v2/gh/{user}/{repo}/HEAD", "\n") |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # Author: Jacob Rust | |
| # Modified: Jesper Dramsch | |
| # Date: 7/8/2013 | |
| # Description:This script organizes downloaded files into separate folders depending | |
| # on the file type. This was made for windows systems. | |
| # Download directory should be the first command line argument | |
| # New file types can be added to the dictionary in the main method | |
| # Usage: python organize.py | |
| import hashlib |
OlderNewer