Skip to content

Commit a0bc888

Browse files
authored
blog: Add makim tutorial (#132)
1 parent 2e8598f commit a0bc888

File tree

7 files changed

+1896
-1
lines changed

7 files changed

+1896
-1
lines changed

.makim.yaml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,11 @@ groups:
1616
"*.ipynb" -exec sh -c \
1717
'jupyter nbconvert --to markdown --template=theme/custom-markdown.tpl --output-dir "$(dirname "$0")" --output "index" "$0"' {} \;
1818
19+
# remove console colors from md files
20+
find "$SEARCH_DIR" -name \
21+
"index.md" -exec sh -c \
22+
'cat "$(dirname "$0")/index.md" | python scripts/clean-output.py > "$(dirname "$0")/temp_index.md" && mv "$(dirname "$0")/temp_index.md" "$(dirname "$0")/index.md"' {} \;
23+
1924
build:
2025
help: build the static page
2126
dependencies:

pages/blog/scicookie-collaborating-and-learning/index.ipynb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,7 @@
8080
"source": [
8181
"### Demo Video\n",
8282
"\n",
83-
"For a better explanation, please watch a demonstrative video of the installation of SciCookie and the creation of an OSL profile.\n",
83+
"For a better explanation, please watch a demonstrative video of the installation of SciCookie and the creation of a project using the OSL profile.\n",
8484
"\n",
8585
"<iframe width=\"560\" height=\"315\" src=\"https://www.youtube.com/embed/GozNb4i47Ds\" frameborder=\"0\" allowfullscreen></iframe>\n"
8686
]
Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
version: 1.0
2+
working-directory: "/tmp"
3+
4+
groups:
5+
check-wd:
6+
targets:
7+
is-tmp:
8+
help: Test if working directory is `tmp`
9+
run: |
10+
import os
11+
print(os.getcwd())
12+
assert os.getcwd() == "/tmp"
16.9 KB
Loading

0 commit comments

Comments
 (0)