Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/pages/examples/demos.js
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@ const Tutorials = ({ data, location }) => {
html={"/notebooks/" + edge.node.relativePath}
title={edge.node.relativePath.split("_").join(" ")}
src={thumbnails[edge.node.relativePath] || '/images/default-demo-thumbnail.png'}
link={"https://gitpod.io/#BDM_TRY_DEMO=" + edge.node.relativePath + "/https://github.com/LukasBreitwieser/gitpod-vnc"}>
link={"https://codespaces.new/BioDynaMo/biodynamoOnline"}>
</TutorialBox>
))
}
Expand Down
2 changes: 1 addition & 1 deletion src/pages/examples/notebooks.js
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,7 @@ const Tutorials = ({ data, location }) => {
let json = node.json;
let title = name.charAt(0).toUpperCase() + name.slice(1).replace("-", " ")
let html = "/" + staticPath.replace(".ipynb", ".html")
let gitpod_link = "https://gitpod.io/#BDM_TRY_NOTEBOOK="+name+"/https://github.com/LukasBreitwieser/gitpod-vnc"
let gitpod_link = "https://codespaces.new/BioDynaMo/biodynamoOnline"
const cleaned_first_cell = json['cells'][0]['source'].reduce((acc, text) => acc + text.replace("#", "")).replace("#", "").split("**");
let notebookTitle = cleaned_first_cell[0].trim();
let Author = cleaned_first_cell[1].trim();
Expand Down