Skip to content

Commit 0c09600

Browse files
committed
fix cheatsheet link
1 parent c42b05a commit 0c09600

File tree

5 files changed

+5
-1761
lines changed

5 files changed

+5
-1761
lines changed

PlutoPages.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -653,7 +653,7 @@ reprhtml(x) = repr(MIME"text/html"(), x)
653653

654654
# ╔═╡ 5b325b50-8984-44c6-8677-3c6bc5c2b0b1
655655
"A magic token that will turn into a relative URL pointing to the website root when used in output."
656-
const root_url = "++magic#root#url~$(string(rand(UInt128),base=62))++"
656+
const root_url = "magicrooturl$(string(rand(UInt128),base=62))zzzz"
657657

658658
# ╔═╡ 0d2b7382-2ddf-48c3-90c8-bc22de454c97
659659
"""

src/cheatsheets.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ layout: "md.jlmd"
77

88
# Cheatsheets
99

10-
- [Getting Started with Julia - live]($(root_url)/week0/basic_syntax/).
10+
- [Getting Started with Julia - liv](../week0/basic_syntax/)[e]($(root_url)/week0/basic_syntax/).
1111
- [Fastrack to Julia](https://juliadocs.github.io/Julia-Cheat-Sheet/) cheatsheet.
1212
- [MATLAB-Julia-Python comparative cheatsheet](https://cheatsheets.quantecon.org/) by [QuantEcon group](https://quantecon.org)
1313
- [Plots.jl cheatsheet](https://github.com/sswatson/cheatsheets/blob/master/plotsjl-cheatsheet.pdf)

src/data_science/random_variables_as_types.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -317,7 +317,7 @@ A Gaussian random variable is a **continuous** random variable, i.e. it has a co
317317

318318
# ╔═╡ fc0acee6-8ff3-11eb-13d1-1350364f03a9
319319
md"""
320-
One way to specify a continous random variable $X$ is via its **probability density function**, or **PDF**, $f_X$. The probability that $X$ lies in the interval $[a, b]$ is given by an area under the curve $f_X(x)$ from $a$ to $b$:
320+
One way to specify a continuous random variable $X$ is via its **probability density function**, or **PDF**, $f_X$. The probability that $X$ lies in the interval $[a, b]$ is given by an area under the curve $f_X(x)$ from $a$ to $b$:
321321
322322
$$\mathbb{P}(X \in [a, b]) = \int_{a}^b f_X(x) \, dx.$$
323323
"""

src/week0/basic_syntax.jl

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,15 +5,15 @@
55
#> title = "Julia syntax basics"
66
#> layout = "layout.jlhtml"
77
#> description = ""
8-
#> tags = ["lecture", "track_julia", "track_climate", "track_data", "track_math"]
8+
#> tags = ["track_julia", "track_climate", "track_data", "track_math"]
99

1010
using Markdown
1111
using InteractiveUtils
1212

1313
# ╔═╡ 0d3aec92-edeb-11ea-3adb-cd0dc17cbdab
1414
md"# Get started with Julia - live
1515
16-
Before being able to run this notebook successfully locally, you will need to [set up Julia and Pluto.](/Spring21/installation/)
16+
Before being able to run this notebook successfully locally, you will need to [set up Julia and Pluto.](https://plutojl.org/#install)
1717
"
1818

1919

0 commit comments

Comments
 (0)