Skip to content

Commit 56a6e0d

Browse files
authored
More stuff (#79)
1 parent fdbbdeb commit 56a6e0d

File tree

7 files changed

+33
-625
lines changed

7 files changed

+33
-625
lines changed

.gitignore

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,4 +4,6 @@ __site/
44
node_modules/
55
package-lock.json
66
.vscode
7-
# Manifest.toml
7+
writing/Manifest.toml
8+
sharing/Manifest.toml
9+
optimizing/Manifest.toml

index.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -16,14 +16,14 @@ Our purpose is to gather the hidden tips and tricks of Julia development, and ma
1616
We do not cover syntax, and assume that the reader is familiar enough with the [basics of Julia](https://julialang.org/learning/).
1717
Instead, we focus on all the tools that can make the coding experience more pleasant and efficient.
1818

19-
## Structure
19+
## Contents
2020

2121
There are three blog posts of increasing technical difficulty, plus one page of additional resources:
2222

23-
1. [Writing your code](/pages/writing/writing/): from zero to a basic script
24-
2. [Sharing your code](/pages/sharing/sharing/): from a basic script to a reliable package
25-
3. [Optimizing your code](/pages/optimizing/optimizing/): from a basic script to a light-speed algorithm
26-
4. [Going further](/pages/further/further/): other websites to help you dive deeper into the rabbit hole
23+
1. [Writing your code](/writing/): from zero to a basic script
24+
2. [Sharing your code](/sharing/): from a basic script to a reliable package
25+
3. [Optimizing your code](/optimizing/): from a basic script to a light-speed algorithm
26+
4. [Going further](/further/): other websites to help you dive deeper into the rabbit hole
2727

2828
These are all fairly long and not meant to be read in one sitting, so take your time.
2929
Keep in mind that while each of these resources _can_ be useful to you, not every one of them _will_ be.

optimizing/Manifest.toml

Lines changed: 0 additions & 233 deletions
This file was deleted.

optimizing/index.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,7 @@ title = "Optimizing your code"
1414

1515
## Measurements
1616

17+
* [ProgressMeter.jl](https://github.com/timholy/ProgressMeter.jl)
1718
* [BenchmarkTools.jl](https://github.com/JuliaCI/BenchmarkTools.jl)
1819
* [TimerOutputs.jl](https://github.com/KristofferC/TimerOutputs.jl)
1920
* [PkgBenchmark.jl](https://github.com/JuliaCI/PkgBenchmark.jl)
@@ -50,6 +51,7 @@ title = "Optimizing your code"
5051
* [Tullio.jl](https://github.com/mcabbott/Tullio.jl)
5152
* [KernelAbstractions.jl](https://github.com/JuliaGPU/KernelAbstractions.jl)
5253

53-
## Miscellaneous
54+
## Efficient types
5455

5556
* [StaticArrays.jl](https://github.com/JuliaArrays/StaticArrays.jl)
57+
* [Dictionaries.jl](https://github.com/andyferris/Dictionaries.jl)

0 commit comments

Comments
 (0)