forked from masonlr/obsidian-starter-templates
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
17 changed files
with
231 additions
and
7 deletions.
There are no files selected for viewing
This file contains 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
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
--- | ||
title: Go in practice | ||
authors: Matt Butcher, Matt Farina | ||
year: 2016 | ||
--- | ||
|
||
# Go in practice | ||
|
||
Summary of the book chapters could go here. Write notes on particular concepts elsewhere and refer back to this page using [@butcher2016go]. | ||
|
||
You can add citations using "Citations: Insert Markdown citation" in the Obsidian command pallete. |
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
--- | ||
title: Rust in Action | ||
authors: Tim McNamara | ||
year: 2021 | ||
--- | ||
|
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
# An example concept note | ||
|
||
This page might explore an import concept using ideas from multiple references: for example, [[@butcher2016go]] may recommend Golang for everything, while [[@mcnamara2021rust]] may recommend Rust. | ||
|
||
You can highlight that this concept is relevant for specific projects such as [[Project A]]. |
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
# Golang | ||
|
||
Here I'm working on an example concept from [[@butcher2016go]]: | ||
|
||
```go | ||
package main | ||
|
||
import "fmt" | ||
|
||
func main() { | ||
fmt.Println("Hello from go") | ||
} | ||
``` |
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
[[Project A]] | ||
# Project A CHANGELOG | ||
Many open source projects have a changelog for tracking project history – this typically exists as a local `CHANGELOG.md` file. | ||
|
||
You can track history for [[Project A]] is this changelog here. | ||
|
||
## Phase 2: If you're using phases | ||
- [ ] More new ideas go here | ||
|
||
## Phase 1 | ||
- [ ] Feature Three: Still working on this | ||
- [x] Feature Two: Got this one done | ||
- [x] Sub-Feature A: Explanation can goe here | ||
- [x] Feature One: Free-form text goes here | ||
- [x] Work out whether we should use [[Golang]] or [[Rust]] |
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
[[Project A]] | ||
# Project A ROADMAP | ||
Many open source projects have a roadmap for planning and prioritising future features – this typically exists as a local `ROADMAP.md` file. | ||
|
||
If you want to apply roadmap-like thinking to your project, create a dedicated road map file and use Markdown checkboxes to track progress. | ||
|
||
- [x] Feature Four: Have finished this one, so will move this text to the [[Project A ROADMAP]] when I get a chance. | ||
- [ ] Feature Five: Want to get this done | ||
- [ ] ~~An idea that we've given up on~~ Reason why goes here. | ||
- [ ] Get better at [[Rust]] |
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
# Project A | ||
|
||
This page is a Map of Content (see [In what ways can we form useful relationships between notes \[LONG READ\]](https://forum.obsidian.md/t/in-what-ways-can-we-form-useful-relationships-between-notes-long-read/702)) for [[Project A]]. | ||
|
||
You can use this Map of Content for different purposes such as summarising who is involved with this project: such as [[Supervisor]] and [[Collaborator A]]. | ||
|
||
## Concepts: | ||
|
||
Maybe you have a sentence explaining why [[Concept]] is important for [[Project A]]. | ||
|
||
## References: | ||
|
||
You could list brief opinions regarding the key references of [[Project A]] such as [[@butcher2016go]] and [[@mcnamara2021rust]]. | ||
|
||
## Trackers: | ||
|
||
[[Project A]] has two trackers: | ||
- [[Project A ROADMAP]] for planning the future | ||
- [[Project A CHANGELOG]] for reflecting on the past |
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
# Rust | ||
|
||
Here I'm working on example concept from [[@mcnamara2021rust]]: | ||
|
||
```rust | ||
fn main() { | ||
println!("Hello from rust"); | ||
} | ||
``` |
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,33 @@ | ||
|
||
📆 [[2021-03-13]] – [[2021-03-15]] | ||
|
||
This is a daily note for sketching out what you're working on *right now*. I | ||
|
||
Once way to planning what to do is to use a question-and-answer style: | ||
|
||
--- | ||
|
||
*Q: How do we get something done?* | ||
|
||
A: Explanation of answer, once you've figured it out. | ||
|
||
--- | ||
|
||
Another way is to use nested checkboxes: | ||
|
||
- [ ] First question that I need to figure out today | ||
|
||
> Answer to first question | ||
- [x] Second related question that came up while I was thinking about question one | ||
> Another answer that I thought of | ||
|
||
--- | ||
|
||
You can include events such as meetings: | ||
|
||
Met with [[Collaborator A]] and discussed [[Project A]]. | ||
|
||
|
||
[[TIL]] [[Rust]] and [[Golang]] are complementary: https://thenewstack.io/rust-vs-go-why-theyre-better-together/ |
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
# Collaborator A | ||
Add any short notes here. |
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
# Collaborator B | ||
Add any short notes here. |
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
# Supervisor | ||
Add any short notes here. |
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
|
||
@book{butcher2016go, | ||
title = {Go in {Practice}}, | ||
author = {Butcher, Matt and Farina, Matt}, | ||
date = {2016}, | ||
publisher = {{Manning Publications Co}}, | ||
location = {{Shelter Island, NY}}, | ||
annotation = {OCLC: ocn913335043}, | ||
isbn = {978-1-63343-007-5}, | ||
keywords = {Go (Computer program language)}, | ||
langid = {english}, | ||
pagetotal = {287} | ||
} | ||
|
||
@book{mcnamara2021rust, | ||
title = {Rust in {Action}}, | ||
author = {McNamara, Tim}, | ||
date = {2021}, | ||
publisher = {{Manning Publications}} | ||
} |
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
📆 [[{{tp_yesterday}}]] – [[{{tp_tomorrow}}]] | ||
|
||
You can now have templated daily notes using the [Templater](https://github.com/SilentVoid13/Templater) plugin. This example will put links to yesterday's and tomorrow's notes at the top of the daily note. |