feat: add soem stuf
This commit is contained in:
parent
cb2acf15d2
commit
ba57281c3d
@ -2,8 +2,7 @@
|
||||
|
||||
this is a new paragrap
|
||||
|
||||
<!-- #query page where name =~ /^Areas\/upv/ render [[templates/page]]-->
|
||||
```query
|
||||
page where name =~ /^Areas\/upv/ render [[template/page]]
|
||||
```
|
||||
|
||||
<!-- /query -->
|
||||
|
||||
[[Areas/upv/index]]
|
||||
|
25
Library/Core.md
Normal file
25
Library/Core.md
Normal file
@ -0,0 +1,25 @@
|
||||
This library is highly recommended for everybody to import immediately. It provides a lot of functionality you’ll likely appreciate (and may be used to having out of the box, if you’re longer-term SilverBullet user).
|
||||
|
||||
Some examples:
|
||||
* [[Table of Contents]] and [[Linked Mentions]]
|
||||
* All the slash commands you know and love, ranging from `/h1` to `/task` to `/table` to `/code` to `/query` to `/template` to `/today` to...
|
||||
* Some useful general purpose pages such as [[Library/Core/Page/Maintenance]], [[Library/Core/Quick Notes]] and [[Library/Core/Page/Template Index]].
|
||||
|
||||
# Installation
|
||||
To import this library, run the {[Library: Import]} command in your SilverBullet space and enter:
|
||||
|
||||
!silverbullet.md/Library/Core/
|
||||
|
||||
# Included templates
|
||||
```query
|
||||
template
|
||||
where name =~ /^{{escapeRegexp @page.name}}\//
|
||||
render [[Library/Core/Query/Template]]
|
||||
```
|
||||
|
||||
# Included utility pages
|
||||
```query
|
||||
page
|
||||
where name =~ /^{{escapeRegexp @page.name}}\// and tags != "template"
|
||||
render [[Library/Core/Query/Page]]
|
||||
```
|
16
Library/Core/New Page/Movie.md
Normal file
16
Library/Core/New Page/Movie.md
Normal file
@ -0,0 +1,16 @@
|
||||
---
|
||||
description: "Create a movie"
|
||||
tags: template
|
||||
hooks.newPage:
|
||||
suggestedName: "Media/Movies/"
|
||||
confirmName: true
|
||||
command: "Create Movie"
|
||||
---
|
||||
|
||||
---
|
||||
date:
|
||||
author:
|
||||
rating: 0
|
||||
---
|
||||
|
||||
# Name
|
9
Library/Core/New Page/Quick Note.md
Normal file
9
Library/Core/New Page/Quick Note.md
Normal file
@ -0,0 +1,9 @@
|
||||
---
|
||||
description: "Create a quick note"
|
||||
tags: template
|
||||
hooks.newPage:
|
||||
suggestedName: "Inbox/{{today}} {{time}}"
|
||||
confirmName: false
|
||||
command: "Quick Note"
|
||||
key: "Alt-Shift-n"
|
||||
---
|
24
Library/Core/New Page/Recipe.md
Normal file
24
Library/Core/New Page/Recipe.md
Normal file
@ -0,0 +1,24 @@
|
||||
---
|
||||
description: "Create a recipe"
|
||||
tags: template
|
||||
hooks.newPage:
|
||||
suggestedName: "Recipes/"
|
||||
confirmName: true
|
||||
command: "Create Recipe"
|
||||
---
|
||||
---
|
||||
link:
|
||||
rating:
|
||||
time:
|
||||
image:
|
||||
---
|
||||
|
||||
# Name
|
||||
|
||||
---
|
||||
|
||||
- Ingredients
|
||||
|
||||
---
|
||||
|
||||
1. Steps
|
36
Library/Core/Page/Maintenance.md
Normal file
36
Library/Core/Page/Maintenance.md
Normal file
@ -0,0 +1,36 @@
|
||||
We would like to keep our space clean, these are some tools that help you do that.
|
||||
|
||||
# Broken links
|
||||
This shows all internal links that are broken.
|
||||
|
||||
```template
|
||||
query: |
|
||||
link where toPage and pageExists(toPage) = false
|
||||
template: |
|
||||
{{#if .}}
|
||||
{{#each .}}
|
||||
* [[{{ref}}]]: broken link to [[{{toPage}}]]
|
||||
{{/each}}
|
||||
{{else}}
|
||||
No broken links, all good!
|
||||
{{/if}}
|
||||
```
|
||||
|
||||
# Conflict copies
|
||||
These are pages that have conflicted copies (as a result of sync), have a look at them as well as their original (non-conflicted versions) and decide which one to keep.
|
||||
|
||||
```template
|
||||
query: |
|
||||
page where name =~ /\.conflicted\.\d+$/
|
||||
select
|
||||
name as conflictedName,
|
||||
replace(name, /\.conflicted\.\d+$/, "") as cleanName
|
||||
template: |
|
||||
{{#if .}}
|
||||
{{#each .}}
|
||||
* [[{{cleanName}}]]: confict copy [[{{conflictedName}}]]
|
||||
{{/each}}
|
||||
{{else}}
|
||||
No conflicting pages!
|
||||
{{/if}}
|
||||
```
|
47
Library/Core/Page/Template Index.md
Normal file
47
Library/Core/Page/Template Index.md
Normal file
@ -0,0 +1,47 @@
|
||||
This page lists all templates currently available in your space.
|
||||
|
||||
# New Page
|
||||
$newPage
|
||||
These [[!silverbullet.md/Page Templates]] are available through the {[Page: From Template]} command.
|
||||
|
||||
```query
|
||||
template where hooks.newPage render [[Library/Core/Query/Template]]
|
||||
```
|
||||
|
||||
# Snippets
|
||||
$snippets
|
||||
These can be used as [[!silverbullet.md/Snippets]] via [[!silverbullet.md/Slash Commands]]:
|
||||
|
||||
```query
|
||||
template where hooks.snippet render [[Library/Core/Query/Template]]
|
||||
```
|
||||
|
||||
# Widgets
|
||||
$widgets
|
||||
Widgets can either be automatically attached to the top or bottom of pages (matching certain criteria) or used inline via [[!silverbullet.md/Live Templates]].
|
||||
|
||||
## Top
|
||||
```query
|
||||
template
|
||||
where hooks.top
|
||||
order by order
|
||||
render [[Library/Core/Query/Template]]
|
||||
```
|
||||
|
||||
## Bottom
|
||||
```query
|
||||
template
|
||||
where hooks.bottom
|
||||
order by order
|
||||
render [[Library/Core/Query/Template]]
|
||||
```
|
||||
|
||||
## Inline
|
||||
Use these as `page` in [[!silverbullet.md/Live Templates]] to render useful things in your pages:
|
||||
|
||||
```query
|
||||
template
|
||||
where name =~ /\/Widget\// and hooks.top = null and hooks.bottom = null
|
||||
order by order
|
||||
render [[Library/Core/Query/Template]]
|
||||
```
|
5
Library/Core/Query/Page.md
Normal file
5
Library/Core/Query/Page.md
Normal file
@ -0,0 +1,5 @@
|
||||
---
|
||||
tags: template
|
||||
description: A page reference link as a list item
|
||||
---
|
||||
* [[{{name}}]]
|
5
Library/Core/Query/Task.md
Normal file
5
Library/Core/Query/Task.md
Normal file
@ -0,0 +1,5 @@
|
||||
---
|
||||
tags: template
|
||||
description: Generic task template that supports updating the status back in the origin page
|
||||
---
|
||||
* [{{state}}] [[{{ref}}]] {{name}}
|
5
Library/Core/Query/Template.md
Normal file
5
Library/Core/Query/Template.md
Normal file
@ -0,0 +1,5 @@
|
||||
#template
|
||||
* [[{{ref}}]] {{description}}
|
||||
{{#if usage}}
|
||||
* **Usage:** {{usage}}
|
||||
{{/if}}
|
5
Library/Core/Quick Notes.md
Normal file
5
Library/Core/Quick Notes.md
Normal file
@ -0,0 +1,5 @@
|
||||
This is your {[Quick Note]} inbox.
|
||||
|
||||
```query
|
||||
page where name =~ /^Inbox\// render [[Library/Core/Query/Page]]
|
||||
```
|
8
Library/Core/Snippet/code.md
Normal file
8
Library/Core/Snippet/code.md
Normal file
@ -0,0 +1,8 @@
|
||||
---
|
||||
description: Insert a fenced code block
|
||||
tags: template
|
||||
hooks.snippet.slashCommand: code
|
||||
---
|
||||
```|^|
|
||||
|
||||
```
|
11
Library/Core/Snippet/frontmatter.md
Normal file
11
Library/Core/Snippet/frontmatter.md
Normal file
@ -0,0 +1,11 @@
|
||||
---
|
||||
tags: template
|
||||
description: Insert Frontmatter
|
||||
hooks.snippet:
|
||||
slashCommand: frontmatter
|
||||
insertAt: page-start
|
||||
command: "Insert Frontmatter"
|
||||
---
|
||||
---
|
||||
|^|
|
||||
---
|
8
Library/Core/Snippet/h1.md
Normal file
8
Library/Core/Snippet/h1.md
Normal file
@ -0,0 +1,8 @@
|
||||
---
|
||||
tags: template
|
||||
description: Make this a level 1 heading
|
||||
hooks.snippet:
|
||||
slashCommand: h1
|
||||
match: "^#*\\s*"
|
||||
---
|
||||
#
|
8
Library/Core/Snippet/h2.md
Normal file
8
Library/Core/Snippet/h2.md
Normal file
@ -0,0 +1,8 @@
|
||||
---
|
||||
tags: template
|
||||
description: Make this a level 2 heading
|
||||
hooks.snippet:
|
||||
slashCommand: h2
|
||||
match: "^#*\\s*"
|
||||
---
|
||||
##
|
8
Library/Core/Snippet/h3.md
Normal file
8
Library/Core/Snippet/h3.md
Normal file
@ -0,0 +1,8 @@
|
||||
---
|
||||
tags: template
|
||||
description: Make this a level 3 heading
|
||||
hooks.snippet:
|
||||
slashCommand: h3
|
||||
match: "^#*\\s*"
|
||||
---
|
||||
###
|
8
Library/Core/Snippet/h4.md
Normal file
8
Library/Core/Snippet/h4.md
Normal file
@ -0,0 +1,8 @@
|
||||
---
|
||||
tags: template
|
||||
description: Make this a level 4 heading
|
||||
hooks.snippet:
|
||||
slashCommand: h4
|
||||
match: "^#*\\s*"
|
||||
---
|
||||
####
|
6
Library/Core/Snippet/hr.md
Normal file
6
Library/Core/Snippet/hr.md
Normal file
@ -0,0 +1,6 @@
|
||||
---
|
||||
tags: template
|
||||
description: Insert a horizontal rule
|
||||
hooks.snippet.slashCommand: hr
|
||||
---
|
||||
---
|
7
Library/Core/Snippet/note-admonition.md
Normal file
7
Library/Core/Snippet/note-admonition.md
Normal file
@ -0,0 +1,7 @@
|
||||
---
|
||||
tags: template
|
||||
description: Insert a "note" admonition
|
||||
hooks.snippet.slashCommand: note-admonition
|
||||
---
|
||||
> **note** Note
|
||||
> |^|
|
8
Library/Core/Snippet/query.md
Normal file
8
Library/Core/Snippet/query.md
Normal file
@ -0,0 +1,8 @@
|
||||
---
|
||||
description: Insert a live query
|
||||
tags: template
|
||||
hooks.snippet.slashCommand: query
|
||||
---
|
||||
```query
|
||||
|^|
|
||||
```
|
8
Library/Core/Snippet/table.md
Normal file
8
Library/Core/Snippet/table.md
Normal file
@ -0,0 +1,8 @@
|
||||
---
|
||||
tags: template
|
||||
description: Insert a table
|
||||
hooks.snippet.slashCommand: table
|
||||
---
|
||||
| Header A | Header B |
|
||||
|----------|----------|
|
||||
| Cell A|^| | Cell B |
|
10
Library/Core/Snippet/task.md
Normal file
10
Library/Core/Snippet/task.md
Normal file
@ -0,0 +1,10 @@
|
||||
---
|
||||
tags: template
|
||||
description: Turn the current line into a task
|
||||
hooks.snippet:
|
||||
slashCommand: task
|
||||
matchRegex: "^(\\s*)[\\-\\*]?\\s*(\\[[ xX]\\])?\\s*"
|
||||
command: "Turn into task"
|
||||
key: "Ctrl-q t"
|
||||
---
|
||||
$1* [ ]
|
8
Library/Core/Snippet/template.md
Normal file
8
Library/Core/Snippet/template.md
Normal file
@ -0,0 +1,8 @@
|
||||
---
|
||||
description: Insert an inline template
|
||||
tags: template
|
||||
hooks.snippet.slashCommand: "template"
|
||||
---
|
||||
```template
|
||||
page: "[[|^|]]"
|
||||
```
|
6
Library/Core/Snippet/today.md
Normal file
6
Library/Core/Snippet/today.md
Normal file
@ -0,0 +1,6 @@
|
||||
---
|
||||
tags: template
|
||||
description: "Today's date"
|
||||
hooks.snippet.slashCommand: today
|
||||
---
|
||||
{{today}}
|
6
Library/Core/Snippet/tomorrow.md
Normal file
6
Library/Core/Snippet/tomorrow.md
Normal file
@ -0,0 +1,6 @@
|
||||
---
|
||||
tags: template
|
||||
description: "Tomorrow's date"
|
||||
hooks.snippet.slashCommand: tomorrow
|
||||
---
|
||||
{{tomorrow}}
|
7
Library/Core/Snippet/warning-admonition.md
Normal file
7
Library/Core/Snippet/warning-admonition.md
Normal file
@ -0,0 +1,7 @@
|
||||
---
|
||||
description: Insert a "warning" admonition
|
||||
tags: template
|
||||
hooks.snippet.slashCommand: warning-admonition
|
||||
---
|
||||
> **warning** Warning
|
||||
> |^|
|
9
Library/Core/Widget/Federated Template Copy.md
Normal file
9
Library/Core/Widget/Federated Template Copy.md
Normal file
@ -0,0 +1,9 @@
|
||||
---
|
||||
description: >
|
||||
Adds a convenient "Copy to my space" button to any
|
||||
template found via federation
|
||||
tags: template
|
||||
hooks.bottom.where: 'name =~ /^!/ and tags="template"'
|
||||
---
|
||||
# Template actions
|
||||
* {[Page: Copy|Copy to my space]}: use this template in your space by making a local copy of it (and tweaking it as you like)
|
18
Library/Core/Widget/Linked Mentions.md
Normal file
18
Library/Core/Widget/Linked Mentions.md
Normal file
@ -0,0 +1,18 @@
|
||||
---
|
||||
description: Adds Linked Mentions to pages
|
||||
tags: template
|
||||
hooks.bottom.where: 'true'
|
||||
---
|
||||
```template
|
||||
# We need to escape handlebars directives here, since we're embedding
|
||||
# this template into a template (INCEPTION)
|
||||
template: |
|
||||
{{escape "#if ."}}
|
||||
# Linked Mentions
|
||||
{{escape "#each ."}}
|
||||
* [[{{escape "ref"}}]]: `{{escape "snippet"}}`
|
||||
{{escape "/each"}}
|
||||
{{escape "/if"}}
|
||||
query: |
|
||||
link where toPage = "{{@page.name}}" and page != "{{@page.name}}"
|
||||
```
|
9
Library/Core/Widget/Linked Tasks.md
Normal file
9
Library/Core/Widget/Linked Tasks.md
Normal file
@ -0,0 +1,9 @@
|
||||
---
|
||||
tags: template
|
||||
description: |
|
||||
Shows all tasks that contain a link the current page. For instance a task that references `[[John]]` in its name, would appear on the `John` page.
|
||||
---
|
||||
|
||||
```query
|
||||
task where name =~ /\[\[{{escapeRegexp @page.name}}\]\]/ where done = false render [[Library/Core/Query/Task]]
|
||||
```
|
11
Library/Core/Widget/Table of Contents.md
Normal file
11
Library/Core/Widget/Table of Contents.md
Normal file
@ -0,0 +1,11 @@
|
||||
---
|
||||
description: Adds a Table of Contents to pages
|
||||
tags: template
|
||||
hooks.top:
|
||||
where: 'true'
|
||||
# Show all the way at the top
|
||||
order: 0
|
||||
---
|
||||
```toc
|
||||
minHeaders: 3
|
||||
```
|
9
Library/Core/Widget/Tagged Tasks.md
Normal file
9
Library/Core/Widget/Tagged Tasks.md
Normal file
@ -0,0 +1,9 @@
|
||||
---
|
||||
tags: template
|
||||
description: Queries all tasks tagged with a specific tag.
|
||||
usage: Pass in the tag to filter on as the `value` of this template
|
||||
---
|
||||
|
||||
```query
|
||||
task where tags = "{{.}}" and done = false render [[Library/Core/Query/Task]]
|
||||
```
|
28
Library/Journal.md
Normal file
28
Library/Journal.md
Normal file
@ -0,0 +1,28 @@
|
||||
This library contains some useful page templates for journalers. Want to easily create a daily or weekly note? These templates can get you started. Instantiate them via {[Page: From Template]}.
|
||||
|
||||
# Installation
|
||||
To import this library, run the {[Library: Import]} command in your SilverBullet space and enter:
|
||||
|
||||
!silverbullet.md/Library/Journal/
|
||||
|
||||
# Included templates
|
||||
```query
|
||||
page
|
||||
where name =~ /^{{escapeRegexp @page.name}}\//
|
||||
render [[Library/Core/Query/Page]]
|
||||
```
|
||||
|
||||
# Tips
|
||||
Do you want your space’s start page to always be either your daily or weekly note? You can!
|
||||
|
||||
To set the _daily note_ as the default page, set the following in [[SETTINGS]]:
|
||||
|
||||
```yaml
|
||||
indexPage: "Journal/Day/{{today}}"
|
||||
```
|
||||
|
||||
And for the _weekly note_:
|
||||
|
||||
```yaml
|
||||
indexPage: "Journal/Week/{{weekStart}}"
|
||||
```
|
12
Library/Journal/New Page/Daily Note.md
Normal file
12
Library/Journal/New Page/Daily Note.md
Normal file
@ -0,0 +1,12 @@
|
||||
---
|
||||
description: "Your daily note template"
|
||||
tags: template
|
||||
hooks.newPage:
|
||||
suggestedName: "Journal/Day/{{today}}"
|
||||
confirmName: false
|
||||
openIfExists: true
|
||||
forPrefix: "Journal/Day/"
|
||||
command: "Open Daily Note"
|
||||
key: "Alt-Shift-d"
|
||||
---
|
||||
* |^|
|
13
Library/Journal/New Page/Weekly Note.md
Normal file
13
Library/Journal/New Page/Weekly Note.md
Normal file
@ -0,0 +1,13 @@
|
||||
---
|
||||
description: "Open your weekly note page"
|
||||
tags: template
|
||||
hooks.newPage:
|
||||
suggestedName: "Journal/Week/{{weekStart}}"
|
||||
forPrefix: "Journal/Week/"
|
||||
confirmName: false
|
||||
openIfExists: true
|
||||
command: "Open Weekly Note"
|
||||
key: "Alt-Shift-w"
|
||||
---
|
||||
# Goals
|
||||
* |^|
|
567
Media/index.md
567
Media/index.md
@ -1,565 +1,16 @@
|
||||
|
||||
## Series
|
||||
|
||||
<!-- #query page where name =~ /^Media\/series/ and status = Ready\ to\ Start order by rating desc render [[templates/movies]] -->
|
||||
### [[Media/series/Alone|Alone]]
|
||||
5
|
||||
|
||||
### [[Media/series/Arcane|Arcane]]
|
||||
5 by _Christian Linke_
|
||||
|
||||
### [[Media/series/Atlanta|Atlanta]]
|
||||
⭐⭐⭐⭐⭐
|
||||
|
||||
### [[Media/series/Atypical|Atypical]]
|
||||
5 by _Robia Rashid_
|
||||
|
||||
### [[Media/series/BEEF|BEEF]]
|
||||
5 by _Lee Sung-jin_
|
||||
|
||||
### [[Media/series/Black Mirror|Black Mirror]]
|
||||
5 by _Charlie Brooker_
|
||||
|
||||
### [[Media/series/BoJack Horseman|BoJack Horseman]]
|
||||
5 by _Raphael Bob-Waksberg_
|
||||
|
||||
### [[Media/series/Castlevania|Castlevania]]
|
||||
5 by _Warren Ellis_
|
||||
|
||||
### [[Media/series/Cowboy Bebop|Cowboy Bebop]]
|
||||
5
|
||||
|
||||
### [[Media/series/Dark|Dark]]
|
||||
⭐️⭐️⭐️⭐️⭐️ by _Jantje Friese_
|
||||
|
||||
### [[Media/series/Der Tatortreiniger|Der Tatortreiniger]]
|
||||
5 by _Arne Feldhusen_
|
||||
|
||||
### [[Media/series/Euphoria|Euphoria]]
|
||||
5 by _Sam Levinson_
|
||||
|
||||
### [[Media/series/Fleabag|Fleabag]]
|
||||
5 by _Phoebe Waller-Bridge_
|
||||
|
||||
### [[Media/series/I Am Not Okay with This|I Am Not Okay with This]]
|
||||
5 by _Jonathan Entwistle_
|
||||
|
||||
### [[Media/series/It's Always Sunny in Philadelphia|It's Always Sunny in Philadelphia]]
|
||||
5 by _Rob McElhenney_
|
||||
|
||||
### [[Media/series/Love, Death & Robots|Love, Death & Robots]]
|
||||
5 by _Tim Miller_
|
||||
|
||||
### [[Media/series/Mord mit Aussicht|Mord mit Aussicht]]
|
||||
5 by _Marie Reiners_
|
||||
|
||||
### [[Media/series/Mr. Robot|Mr. Robot]]
|
||||
5 by _Sam Esmail_
|
||||
|
||||
### [[Media/series/Neon Genesis Evangelion|Neon Genesis Evangelion]]
|
||||
5 by _Hideaki Anno, Kazuya Tsurumaki_
|
||||
|
||||
### [[Media/series/Peaky Blinders|Peaky Blinders]]
|
||||
5 by _Steven Knight_
|
||||
|
||||
### [[Media/series/Please Like Me|Please Like Me]]
|
||||
5
|
||||
|
||||
### [[Media/series/Sense8|Sense8]]
|
||||
5 by _Lilly Wachowski_
|
||||
|
||||
### [[Media/series/Sweet Tooth|Sweet Tooth]]
|
||||
5 by _Jim Mickle_
|
||||
|
||||
### [[Media/series/The End of the Fucking World|The End of the Fucking World]]
|
||||
5 by _Jonathan Entwistle_
|
||||
|
||||
### [[Media/series/The Last of Us|The Last of Us]]
|
||||
5 by _Craig Mazin_
|
||||
|
||||
### [[Media/series/The White Lotus|The White Lotus]]
|
||||
5 by _Mike White_
|
||||
|
||||
### [[Media/series/Grace and Frankie|Grace and Frankie]]
|
||||
4 by _Howard J. Morris_
|
||||
|
||||
### [[Media/series/Invincible|Invincible]]
|
||||
4
|
||||
|
||||
### [[Media/series/JoJo's Bizarre Adventure|JoJo's Bizarre Adventure]]
|
||||
4
|
||||
|
||||
### [[Media/series/Ted Lasso|Ted Lasso]]
|
||||
4
|
||||
|
||||
### [[Media/series/The Queens Gambit|The Queens Gambit]]
|
||||
4 by _Scott Frank_
|
||||
|
||||
### [[Media/series/Fargo|Fargo]]
|
||||
not yet rated by _Noah Hawley_
|
||||
|
||||
### [[Media/series/Six feet under|Six feet under]]
|
||||
not yet rated
|
||||
|
||||
### [[Media/series/The Cuphead Show|The Cuphead Show]]
|
||||
not yet rated by _Dave Wasson_
|
||||
|
||||
### [[Media/series/The Expanse|The Expanse]]
|
||||
not yet rated by _Mark Fergus_
|
||||
|
||||
### [[Media/series/Viktoria|Viktoria]]
|
||||
not yet rated
|
||||
<!-- /query -->
|
||||
```query
|
||||
page where name =~ /^Media\/series/ and status = Ready\ to\ Start order by rating desc render [[template/movies]]
|
||||
```
|
||||
|
||||
## Movies
|
||||
<!-- #query page where name =~ /^Media\/movies/ and status = Ready\ to\ Start order by rating desc render [[templates/movies]] -->
|
||||
### [[Media/movies/2001 A Space Odyssey|2001 A Space Odyssey]]
|
||||
⭐️⭐️⭐️⭐️⭐️ by _Stanley Kubrick_
|
||||
|
||||
### [[Media/movies/A Clockwork Orange|A Clockwork Orange]]
|
||||
5 by _Stanley Kubrick_
|
||||
|
||||
### [[Media/movies/Akira|Akira]]
|
||||
5 by _Katsuhiro Otomo_
|
||||
|
||||
### [[Media/movies/28 Days Later|28 Days Later]]
|
||||
4 by _Danny Boyle_
|
||||
|
||||
### [[Media/movies/Apocalypse Now|Apocalypse Now]]
|
||||
⭐️⭐️⭐️⭐️⭐️ by _Francis Ford Coppola_
|
||||
|
||||
### [[Media/movies/A Fistful of Dollars|A Fistful of Dollars]]
|
||||
⭐️⭐️⭐️⭐️ by _Sergio Leone_
|
||||
|
||||
### [[Media/movies/Being John Malkovich|Being John Malkovich]]
|
||||
⭐️⭐️⭐️⭐️ by _Charlie Kaufman, Spike Jonze_
|
||||
|
||||
### [[Media/movies/Arrival|Arrival]]
|
||||
⭐⭐⭐⭐⭐ by _Denis Villeneuve_
|
||||
|
||||
### [[Media/movies/Blade Runner|Blade Runner]]
|
||||
5 by _Ridley Scott_
|
||||
|
||||
### [[Media/movies/Borat Cultural Learnings of America for Make Benefit Glorious Nation of Kazakhstan|Borat Cultural Learnings of America for Make Benefit Glorious Nation of Kazakhstan]]
|
||||
4 by _Larry Charles_
|
||||
|
||||
### [[Media/movies/Bullet Train|Bullet Train]]
|
||||
4 by _David Leitch_
|
||||
|
||||
### [[Media/movies/Asteroid City|Asteroid City]]
|
||||
3 by _Wes Anderson_
|
||||
|
||||
### [[Media/movies/Burning|Burning]]
|
||||
⭐️⭐️⭐️⭐️⭐️ by _Lee Chang-dong_
|
||||
|
||||
### [[Media/movies/Call Me by Your Name|Call Me by Your Name]]
|
||||
⭐️⭐️⭐️⭐️⭐️ by _Luca Guadagnino_
|
||||
|
||||
### [[Media/movies/Babylon|Babylon]]
|
||||
⭐️⭐️⭐️ by _Damien Chazelle_
|
||||
|
||||
### [[Media/movies/Barbie|Barbie]]
|
||||
⭐⭐⭐⭐ by _Greta Gerwig_
|
||||
|
||||
### [[Media/movies/Blade Runner 2049|Blade Runner 2049]]
|
||||
5 by _Denis Villeneuve_
|
||||
|
||||
### [[Media/movies/Birdman or (The Unexpected Virtue of Ignorance)|Birdman or (The Unexpected Virtue of Ignorance)]]
|
||||
4 by _Alejandro González Iñárritu_
|
||||
|
||||
### [[Media/movies/Chihiros Reise ins Zauberland|Chihiros Reise ins Zauberland]]
|
||||
⭐️⭐️⭐️⭐️⭐️ by _Hayao Miyazaki_
|
||||
|
||||
### [[Media/movies/Blue Velvet|Blue Velvet]]
|
||||
⭐️⭐️⭐️⭐️ by _David Lynch_
|
||||
|
||||
### [[Media/movies/Dead Zone|Dead Zone]]
|
||||
⭐️⭐️⭐️ by _David Cronenberg_
|
||||
|
||||
### [[Media/movies/C’mon C’mon|C’mon C’mon]]
|
||||
⭐⭐⭐⭐ by _Mike Wells_
|
||||
|
||||
### [[Media/movies/District 9|District 9]]
|
||||
5 by _Neill Blomkamp_
|
||||
|
||||
### [[Media/movies/Django Unchained|Django Unchained]]
|
||||
5 by _Quentin Tarantino_
|
||||
|
||||
### [[Media/movies/Drive|Drive]]
|
||||
⭐️⭐️⭐️⭐️⭐️ by _Nicolas Winding Refn_
|
||||
|
||||
### [[Media/movies/Dune|Dune]]
|
||||
5 by _Denis Villeneuve_
|
||||
|
||||
### [[Media/movies/Everything Everywhere All at Once|Everything Everywhere All at Once]]
|
||||
5 by _Daniel Scheinert_
|
||||
|
||||
### [[Media/movies/Fight Club|Fight Club]]
|
||||
5 by _David Fincher_
|
||||
|
||||
### [[Media/movies/Forrest Gump|Forrest Gump]]
|
||||
5 by _Robert Zemeckis_
|
||||
|
||||
### [[Media/movies/Full Metal Jacket|Full Metal Jacket]]
|
||||
5 by _Stanley Kubrick_
|
||||
|
||||
### [[Media/movies/Good Will Hunting|Good Will Hunting]]
|
||||
5 by _Gus Van Sant_
|
||||
|
||||
### [[Media/movies/Eternal Sunshine of the Spotless Mind|Eternal Sunshine of the Spotless Mind]]
|
||||
4 by _Michel Gondry_
|
||||
|
||||
### [[Media/movies/Koyaanisqatsi|Koyaanisqatsi]]
|
||||
⭐️⭐️⭐️⭐️⭐️ by _Godfrey Reggio_
|
||||
|
||||
### [[Media/movies/Get Out|Get Out]]
|
||||
⭐️⭐️⭐️⭐️ by _Jordan Peele_
|
||||
|
||||
### [[Media/movies/GoodFellas|GoodFellas]]
|
||||
5 by _Martin Scorsese_
|
||||
|
||||
### [[Media/movies/Her|Her]]
|
||||
⭐️⭐️⭐️⭐️⭐️ by _Spike Jonze_
|
||||
|
||||
### [[Media/movies/I Lost My Body|I Lost My Body]]
|
||||
⭐️⭐️⭐️⭐️⭐️ by _Jérémy Clapin_
|
||||
|
||||
### [[Media/movies/I'm Thinking of Ending Things|I'm Thinking of Ending Things]]
|
||||
⭐️⭐️⭐️⭐️⭐️ by _Charlie Kaufman_
|
||||
|
||||
### [[Media/movies/Jules and Jim|Jules and Jim]]
|
||||
⭐️⭐️⭐️⭐️⭐️ by _François Truffaut_
|
||||
|
||||
### [[Media/movies/Im Here|Im Here]]
|
||||
⭐️⭐️⭐️⭐️ by _Spike Jonze_
|
||||
|
||||
### [[Media/movies/Knives Out|Knives Out]]
|
||||
⭐️⭐️⭐️⭐️ by _Rian Johnson_
|
||||
|
||||
### [[Media/movies/Hillbilly Elegie|Hillbilly Elegie]]
|
||||
⭐️⭐️⭐️ by _Ron Howard_
|
||||
|
||||
### [[Media/movies/Mank|Mank]]
|
||||
⭐️⭐️⭐️ by _David Fincher_
|
||||
|
||||
### [[Media/movies/Dr. Strangelove|Dr. Strangelove]]
|
||||
⭐⭐⭐⭐⭐ by _Stanley Kubrick_
|
||||
|
||||
### [[Media/movies/Inception|Inception]]
|
||||
⭐⭐⭐⭐⭐ by _Christopher Nolan_
|
||||
|
||||
### [[Media/movies/Interstellar|Interstellar]]
|
||||
⭐⭐⭐⭐⭐ by _Christopher Nolan_
|
||||
|
||||
### [[Media/movies/Joker|Joker]]
|
||||
5 by _Todd Phillips_
|
||||
|
||||
### [[Media/movies/Kill Bill Vol 1|Kill Bill Vol 1]]
|
||||
⭐️⭐️⭐️⭐️ by _Quentin Tarantino_
|
||||
|
||||
### [[Media/movies/Life of Pi|Life of Pi]]
|
||||
5 by _Ang Lee_
|
||||
|
||||
### [[Media/movies/Lost in Translation|Lost in Translation]]
|
||||
5 by _Sofia Coppola_
|
||||
|
||||
### [[Media/movies/Léon The Professional|Léon The Professional]]
|
||||
5 by _Luc Besson_
|
||||
|
||||
### [[Media/movies/Marriage Story|Marriage Story]]
|
||||
5 by _Noah Baumbach_
|
||||
|
||||
### [[Media/movies/Mein Nachbar Totoro|Mein Nachbar Totoro]]
|
||||
⭐️⭐️⭐️⭐️⭐️ by _Hayao Miyazaki_
|
||||
|
||||
### [[Media/movies/Moonlight|Moonlight]]
|
||||
⭐️⭐️⭐️⭐️⭐️ by _Barry Jenkins_
|
||||
|
||||
### [[Media/movies/My Private Idaho|My Private Idaho]]
|
||||
⭐️⭐️⭐️⭐️ by _Gus Van Sant_
|
||||
|
||||
### [[Media/movies/Mulholland Drive|Mulholland Drive]]
|
||||
⭐️⭐️⭐️ by _David Lynch_
|
||||
|
||||
### [[Media/movies/Nausicaä of the Valley of the Wind|Nausicaä of the Valley of the Wind]]
|
||||
5 by _Hayao Miyazaki_
|
||||
|
||||
### [[Media/movies/No Country for Old Men|No Country for Old Men]]
|
||||
5 by _Joel Coen_
|
||||
|
||||
### [[Media/movies/Parasite|Parasite]]
|
||||
5 by _Bong Joon-ho_
|
||||
|
||||
### [[Media/movies/Princess Mononoke|Princess Mononoke]]
|
||||
5 by _Hayao Miyazaki_
|
||||
|
||||
### [[Media/movies/Nightcrawler|Nightcrawler]]
|
||||
3 by _Dan Gilroy_
|
||||
|
||||
### [[Media/movies/Oldboy|Oldboy]]
|
||||
⭐️⭐️⭐️⭐️⭐️ by _Park Chan-wook_
|
||||
|
||||
### [[Media/movies/Once Upon a Time… in Hollywood|Once Upon a Time… in Hollywood]]
|
||||
⭐️⭐️⭐️⭐️ by _Quentin Tarantino_
|
||||
|
||||
### [[Media/movies/Pan's Labyrinth|Pan's Labyrinth]]
|
||||
5 by _Guillermo del Toro_
|
||||
|
||||
### [[Media/movies/Pulp Fiction|Pulp Fiction]]
|
||||
⭐️⭐️⭐️⭐️⭐️ by _Quentin Tarantino_
|
||||
|
||||
### [[Media/movies/Prospect|Prospect]]
|
||||
⭐️⭐️⭐️⭐️ by _Christopher Caldwell, Zeek Earl_
|
||||
|
||||
### [[Media/movies/Se7en|Se7en]]
|
||||
5 by _David Fincher_
|
||||
|
||||
### [[Media/movies/Shutter Island|Shutter Island]]
|
||||
4 by _Martin Scorsese_
|
||||
|
||||
### [[Media/movies/The Cakemaker|The Cakemaker]]
|
||||
⭐️⭐️⭐️⭐️⭐️ by _Ofir Raul Graizer_
|
||||
|
||||
### [[Media/movies/Snatch|Snatch]]
|
||||
⭐️⭐️⭐️ by _Guy Ritchie_
|
||||
|
||||
### [[Media/movies/Spirited Away|Spirited Away]]
|
||||
5 by _Hayao Miyazaki_
|
||||
|
||||
### [[Media/movies/Sunset Boulevard|Sunset Boulevard]]
|
||||
2 by _Billy Wilder_
|
||||
|
||||
### [[Media/movies/System Crasher|System Crasher]]
|
||||
⭐️⭐️⭐️⭐️ by _Nora Fingscheidt_
|
||||
|
||||
### [[Media/movies/Team America World Police|Team America World Police]]
|
||||
4 by _Trey Parker_
|
||||
|
||||
### [[Media/movies/The Ballad of Buster Scruggs|The Ballad of Buster Scruggs]]
|
||||
⭐️⭐️⭐️⭐️ by _Ethan Coen, Joel Coen_
|
||||
|
||||
### [[Media/movies/The Danish Girl|The Danish Girl]]
|
||||
5 by _Tom Hooper_
|
||||
|
||||
### [[Media/movies/The Darjeeling Limited|The Darjeeling Limited]]
|
||||
5 by _Wes Anderson_
|
||||
|
||||
### [[Media/movies/The Big Lebowski|The Big Lebowski]]
|
||||
4 by _Joel Coen_
|
||||
|
||||
### [[Media/movies/The Devil All the Time|The Devil All the Time]]
|
||||
⭐️⭐️⭐️⭐️ by _Antonio Campos_
|
||||
|
||||
### [[Media/movies/The French Dispatch|The French Dispatch]]
|
||||
5 by _Wes Anderson_
|
||||
|
||||
### [[Media/movies/The Godfather|The Godfather]]
|
||||
⭐⭐⭐⭐⭐ by _Francis Ford Coppola_
|
||||
|
||||
### [[Media/movies/The Grand Budapest Hotel|The Grand Budapest Hotel]]
|
||||
⭐⭐⭐⭐⭐ by _Wes Anderson_
|
||||
|
||||
### [[Media/movies/The Great Dictator|The Great Dictator]]
|
||||
5 by _Charlie Chaplin_
|
||||
|
||||
### [[Media/movies/The Matrix|The Matrix]]
|
||||
5 by _Lilly Wachowski_
|
||||
|
||||
### [[Media/movies/The Shining|The Shining]]
|
||||
5 by _Stanley Kubrick_
|
||||
|
||||
### [[Media/movies/Kingsman The Secret Service|Kingsman The Secret Service]]
|
||||
4 by _Matthew Vaughn_
|
||||
|
||||
### [[Media/movies/The Inglorious Bastards|The Inglorious Bastards]]
|
||||
4 by _Enzo G. Castellari_
|
||||
|
||||
### [[Media/movies/The Lives of Others|The Lives of Others]]
|
||||
4 by _Florian Henckel von Donnersmarck_
|
||||
|
||||
### [[Media/movies/The Shape of Water|The Shape of Water]]
|
||||
4 by _Guillermo del Toro_
|
||||
|
||||
### [[Media/movies/The Wolf of Wall Street|The Wolf of Wall Street]]
|
||||
4 by _Martin Scorsese_
|
||||
|
||||
### [[Media/movies/Three Billboards Outside Ebbing, Missouri|Three Billboards Outside Ebbing, Missouri]]
|
||||
4 by _Martin McDonagh_
|
||||
|
||||
### [[Media/movies/Triangle of Sadness|Triangle of Sadness]]
|
||||
4 by _Ruben Östlund_
|
||||
|
||||
### [[Media/movies/Life of Brian|Life of Brian]]
|
||||
3 by _Terry Jones_
|
||||
|
||||
### [[Media/movies/The Irishman|The Irishman]]
|
||||
3 by _Martin Scorsese_
|
||||
|
||||
### [[Media/movies/The Shawshank Redemption|The Shawshank Redemption]]
|
||||
⭐️⭐️⭐️⭐️ by _Frank Darabont_
|
||||
|
||||
### [[Media/movies/Trainspotting|Trainspotting]]
|
||||
4 by _Danny Boyle_
|
||||
|
||||
### [[Media/movies/The Theory of Everything|The Theory of Everything]]
|
||||
3 by _James Marsh_
|
||||
|
||||
### [[Media/movies/There Will Be Blood|There Will Be Blood]]
|
||||
3 by _Paul Thomas Anderson_
|
||||
|
||||
### [[Media/movies/Whiplash|Whiplash]]
|
||||
⭐️⭐️⭐️⭐️⭐️ by _Damien Chazelle_
|
||||
|
||||
### [[Media/movies/eXistenZ|eXistenZ]]
|
||||
⭐️⭐️⭐️⭐️ by _David Cronenberg_
|
||||
|
||||
### [[Media/movies/Upgrade|Upgrade]]
|
||||
⭐️⭐️⭐️ by _Leigh Whannell_
|
||||
|
||||
### [[Media/movies/Magnolia|Magnolia]]
|
||||
⭐⭐⭐ by _Paul Thomas Anderson_
|
||||
|
||||
### [[Media/movies/American History X|American History X]]
|
||||
not yet rated by _Tony Kaye_
|
||||
|
||||
### [[Media/movies/Anomalisa|Anomalisa]]
|
||||
not yet rated by _Charlie Kaufman, Duke Johnson_
|
||||
|
||||
### [[Media/movies/Another Round|Another Round]]
|
||||
not yet rated by _Thomas Vinterberg_
|
||||
|
||||
### [[Media/movies/Birdy|Birdy]]
|
||||
not yet rated by _Alan Parker_
|
||||
|
||||
### [[Media/movies/Citizen Kane|Citizen Kane]]
|
||||
not yet rated by _Orson Welles_
|
||||
|
||||
### [[Media/movies/Dallas Buyers Club|Dallas Buyers Club]]
|
||||
not yet rated by _Jean-Marc Vallée_
|
||||
|
||||
### [[Media/movies/Delikatessen|Delikatessen]]
|
||||
not yet rated by _Géza von Bolváry_
|
||||
|
||||
### [[Media/movies/Die Fabelhafte Welt der Amelie|Die Fabelhafte Welt der Amelie]]
|
||||
not yet rated by _Jean-Pierre Jeunet_
|
||||
|
||||
### [[Media/movies/Die letzten Glühwürmchen|Die letzten Glühwürmchen]]
|
||||
not yet rated by _Isao Takahata_
|
||||
|
||||
### [[Media/movies/Donnie Darko|Donnie Darko]]
|
||||
not yet rated by _Richard Kelly_
|
||||
|
||||
### [[Media/movies/Drowning by Numbers|Drowning by Numbers]]
|
||||
not yet rated by _Peter Greenaway_
|
||||
|
||||
### [[Media/movies/Emma|Emma]]
|
||||
not yet rated by _Autumn de Wilde_
|
||||
|
||||
### [[Media/movies/Eyes Wide Shut|Eyes Wide Shut]]
|
||||
not yet rated by _Stanley Kubrick_
|
||||
|
||||
### [[Media/movies/Gattaca|Gattaca]]
|
||||
not yet rated by _Andrew Niccol_
|
||||
|
||||
### [[Media/movies/Gladiator|Gladiator]]
|
||||
not yet rated by _Ridley Scott_
|
||||
|
||||
### [[Media/movies/Gone Baby Gone|Gone Baby Gone]]
|
||||
not yet rated by _Ben Affleck_
|
||||
|
||||
### [[Media/movies/Gone Girl|Gone Girl]]
|
||||
not yet rated by _David Fincher_
|
||||
|
||||
### [[Media/movies/Good Bye Lenin|Good Bye Lenin]]
|
||||
not yet rated by _Wolfgang Becker_
|
||||
|
||||
### [[Media/movies/Human Nature|Human Nature]]
|
||||
not yet rated by _Charlie Kaufman, Michel Gondry_
|
||||
|
||||
### [[Media/movies/Into the Wild|Into the Wild]]
|
||||
not yet rated by _Sean Penn_
|
||||
|
||||
### [[Media/movies/Memento|Memento]]
|
||||
not yet rated by _Christopher Nolan_
|
||||
|
||||
### [[Media/movies/North by Northwest|North by Northwest]]
|
||||
not yet rated by _Alfred Hitchcock_
|
||||
|
||||
### [[Media/movies/One Flew Over the Cuckoo's Nest|One Flew Over the Cuckoo's Nest]]
|
||||
not yet rated by _Miloš Forman_
|
||||
|
||||
### [[Media/movies/Pi|Pi]]
|
||||
not yet rated by _Darren Aronofsky_
|
||||
|
||||
### [[Media/movies/Requiem for a Dream|Requiem for a Dream]]
|
||||
not yet rated by _Darren Aronofsky_
|
||||
|
||||
### [[Media/movies/Reservoir Dogs|Reservoir Dogs]]
|
||||
not yet rated by _Quentin Tarantino_
|
||||
|
||||
### [[Media/movies/Roma|Roma]]
|
||||
not yet rated by _Alfonso Cuarón_
|
||||
|
||||
### [[Media/movies/Seven Pounds|Seven Pounds]]
|
||||
not yet rated by _Gabriele Muccino_
|
||||
|
||||
### [[Media/movies/Soylent Green|Soylent Green]]
|
||||
not yet rated by _Richard Fleischer_
|
||||
|
||||
### [[Media/movies/Surrogates|Surrogates]]
|
||||
not yet rated by _Jonathan Mostow_
|
||||
|
||||
### [[Media/movies/Suspiria|Suspiria]]
|
||||
not yet rated by _Dario Argento_
|
||||
|
||||
### [[Media/movies/The Good, the Bad and the Ugly|The Good, the Bad and the Ugly]]
|
||||
not yet rated by _Sergio Leone_
|
||||
|
||||
### [[Media/movies/The Green Mile|The Green Mile]]
|
||||
not yet rated by _Frank Darabont_
|
||||
|
||||
### [[Media/movies/The Hateful Eight|The Hateful Eight]]
|
||||
not yet rated by _Quentin Tarantino_
|
||||
|
||||
### [[Media/movies/The Intouchables|The Intouchables]]
|
||||
not yet rated by _Éric Toledano_
|
||||
|
||||
### [[Media/movies/The Pianist|The Pianist]]
|
||||
not yet rated by _Roman Polanski_
|
||||
|
||||
### [[Media/movies/The Secret World of Arrietty|The Secret World of Arrietty]]
|
||||
not yet rated by _Hiromasa Yonebayashi_
|
||||
|
||||
### [[Media/movies/The Silence of the Lambs|The Silence of the Lambs]]
|
||||
not yet rated by _Jonathan Demme_
|
||||
|
||||
### [[Media/movies/The Whale|The Whale]]
|
||||
not yet rated by _Darren Aronofsky_
|
||||
|
||||
### [[Media/movies/Under the Skin|Under the Skin]]
|
||||
not yet rated by _Jonathan Glazer_
|
||||
|
||||
### [[Media/movies/Upstream Color|Upstream Color]]
|
||||
not yet rated by _Shane Carruth_
|
||||
|
||||
### [[Media/movies/Videodrome|Videodrome]]
|
||||
not yet rated by _David Cronenberg_
|
||||
|
||||
### [[Media/movies/We Almost Lost Bochum|We Almost Lost Bochum]]
|
||||
not yet rated by _Julian Brimmers_
|
||||
|
||||
### [[Media/movies/Wild at Heart|Wild at Heart]]
|
||||
not yet rated by _David Lynch_
|
||||
|
||||
### [[Media/movies/World of Tomorrow|World of Tomorrow]]
|
||||
not yet rated by _Don Hertzfeldt_
|
||||
|
||||
### [[Media/movies/You Were Never Really Here|You Were Never Really Here]]
|
||||
not yet rated by _Lynne Ramsay_
|
||||
<!-- /query -->
|
||||
```query
|
||||
page where name =~ /^Media\/movies/ and status = Ready\ to\ Start order by rating desc render [[template/movies]]
|
||||
```
|
||||
|
||||
## Movies (Seen)
|
||||
<!-- #query page where name =~ /^Media\/movies/ and status != Finished order by rating desc limit 20 render [[templates/movies]] -->
|
||||
### [[Media/movies/Ponyo|Ponyo]]
|
||||
5 by _Hayao Miyazaki_
|
||||
<!-- /query -->
|
||||
```query
|
||||
page where name =~ /^Media\/movies/ and status != Finished order by rating desc limit 20 render [[template/movies]]
|
||||
```
|
||||
|
@ -3,10 +3,10 @@
|
||||
_TODOS:_
|
||||
- [x] Ideen finden
|
||||
- [x] Betreuer finden
|
||||
- [ ] Zweitprüfer
|
||||
- [x] Zweitprüfer
|
||||
- [x] [[Projects/bachlor/Expose|Expose]] fertig schreiben
|
||||
- [x] Termin mit Ivonne absagen
|
||||
- [ ] Idee festlegen
|
||||
- [x] Idee festlegen
|
||||
|
||||
_Rahmenbedingungen:_
|
||||
- Maximal 80 Seiten
|
||||
|
@ -6,7 +6,7 @@ image: Recipes/images/sake.jpg
|
||||
|
||||
# Sake
|
||||
|
||||
![](Recipes/images/sake.jpg)
|
||||
![](/Recipes/images/sake.jpg)
|
||||
|
||||
|
||||
Home fermented Sake
|
||||
@ -36,7 +36,7 @@ Home fermented Sake
|
||||
- Prepare 1,5 Kilo of the rice in the same way
|
||||
- Add 3.8 Litres of water
|
||||
- Add citric acid (or hops) to prevent bacterial spoilage
|
||||
- Add 5g of whine yeast
|
||||
- Add 5g of wine yeast
|
||||
- Mix it all together in a fermenter with an airlock
|
||||
|
||||
# Day 2 - 6
|
||||
|
Before Width: | Height: | Size: 1.5 MiB After Width: | Height: | Size: 1.5 MiB |
Before Width: | Height: | Size: 51 KiB After Width: | Height: | Size: 51 KiB |
106
Recipes/index.md
106
Recipes/index.md
@ -1,105 +1,5 @@
|
||||
# Recipes
|
||||
|
||||
<!-- #query page where name =~ /^Recipes\// render [[templates/recipe]] -->
|
||||
### [[Recipes/Auberginen-Feta-Reispfanne|Auberginen-Feta-Reispfanne]]
|
||||
4/5 Stars
|
||||
|
||||
### [[Recipes/Banana-Bread|Banana-Bread]]
|
||||
5/5 Stars
|
||||
|
||||
### [[Recipes/Broccoli-Blanched-with-Sesame-Oil|Broccoli-Blanched-with-Sesame-Oil]]
|
||||
5/5 Stars
|
||||
|
||||
### [[Recipes/Broccoli-Bolognese-with-Orecchiette|Broccoli-Bolognese-with-Orecchiette]]
|
||||
4/5 Stars
|
||||
|
||||
### [[Recipes/Cast-Iron-Peach-Crisp|Cast-Iron-Peach-Crisp]]
|
||||
3/5 Stars
|
||||
|
||||
### [[Recipes/Cucumber-Basil-Egg-Salad|Cucumber-Basil-Egg-Salad]]
|
||||
_not yet rated_
|
||||
|
||||
### [[Recipes/Egg-Fried-Rice|Egg-Fried-Rice]]
|
||||
5/5 Stars
|
||||
|
||||
### [[Recipes/French-Bread-Pizza|French-Bread-Pizza]]
|
||||
4/5 Stars
|
||||
|
||||
### [[Recipes/Frittierte-Zucchiniblueten|Frittierte-Zucchiniblueten]]
|
||||
_not yet rated_
|
||||
|
||||
### [[Recipes/Fruit-Punch-Bowle|Fruit-Punch-Bowle]]
|
||||
_not yet rated_
|
||||
|
||||
### [[Recipes/Ginger Beer|Ginger Beer]]
|
||||
_not yet rated_
|
||||
|
||||
### [[Recipes/Ginger Beer Experiment|Ginger Beer Experiment]]
|
||||
_not yet rated_
|
||||
|
||||
### [[Recipes/Ginger Beer Experiment 24.07.23|Ginger Beer Experiment 24.07.23]]
|
||||
_not yet rated_
|
||||
|
||||
### [[Recipes/Ginger Bug|Ginger Bug]]
|
||||
_not yet rated_
|
||||
|
||||
### [[Recipes/Großmutter-Käsekuchen|Großmutter-Käsekuchen]]
|
||||
4/5 Stars
|
||||
|
||||
### [[Recipes/Ham-Cheese-Breakfast-Pockets|Ham-Cheese-Breakfast-Pockets]]
|
||||
4/5 Stars
|
||||
|
||||
### [[Recipes/Hähnchen-Curry|Hähnchen-Curry]]
|
||||
_not yet rated_
|
||||
|
||||
### [[Recipes/Indian-Butter-Chicken|Indian-Butter-Chicken]]
|
||||
5/5 Stars
|
||||
|
||||
### [[Recipes/Koreanischer-Gurkensalat|Koreanischer-Gurkensalat]]
|
||||
5/5 Stars
|
||||
|
||||
### [[Recipes/Koreanisches-Rindfleisch|Koreanisches-Rindfleisch]]
|
||||
5/5 Stars
|
||||
|
||||
### [[Recipes/Lemony-Arugula-Spaghetti-Cacio-Pepe|Lemony-Arugula-Spaghetti-Cacio-Pepe]]
|
||||
_not yet rated_
|
||||
|
||||
### [[Recipes/Linsenpfanne-mit-Staudensellerie|Linsenpfanne-mit-Staudensellerie]]
|
||||
4/5 Stars
|
||||
|
||||
### [[Recipes/Miso-Suppe|Miso-Suppe]]
|
||||
5/5 Stars
|
||||
|
||||
### [[Recipes/Mochi|Mochi]]
|
||||
5/5 Stars
|
||||
|
||||
### [[Recipes/Molten-Chocolate-Chunk-Brownies|Molten-Chocolate-Chunk-Brownies]]
|
||||
4/5 Stars
|
||||
|
||||
### [[Recipes/One-Skillet-Chicken-Alfredoy|One-Skillet-Chicken-Alfredoy]]
|
||||
5/5 Stars
|
||||
|
||||
### [[Recipes/Roto-chick-Chicken-Noodle-Soup|Roto-chick-Chicken-Noodle-Soup]]
|
||||
5/5 Stars
|
||||
|
||||
### [[Recipes/Slow-Cooker-Beef-Stew|Slow-Cooker-Beef-Stew]]
|
||||
_not yet rated_
|
||||
|
||||
### [[Recipes/Spinach-Ohitashi|Spinach-Ohitashi]]
|
||||
_not yet rated_
|
||||
|
||||
### [[Recipes/Swedish-Meatballs|Swedish-Meatballs]]
|
||||
5/5 Stars
|
||||
|
||||
### [[Recipes/Süßscharfe-Kürbiscremesuppe-mit-Kokosmilch|Süßscharfe-Kürbiscremesuppe-mit-Kokosmilch]]
|
||||
5/5 Stars
|
||||
|
||||
### [[Recipes/Vegan-Pasta-Alfredo|Vegan-Pasta-Alfredo]]
|
||||
2/5 Stars
|
||||
|
||||
### [[Recipes/Veganer-Beeren-Crumble|Veganer-Beeren-Crumble]]
|
||||
5/5 Stars
|
||||
|
||||
### [[Recipes/index|index]]
|
||||
_not yet rated_
|
||||
<!-- /query -->
|
||||
```query
|
||||
page where name =~ /^Recipes\// render [[template/recipe]]
|
||||
```
|
||||
|
@ -10,199 +10,9 @@ Lets first calculate the cutoff frequency of this filter:
|
||||
|
||||
[[Resources/electricity/formulas|Formulas]]
|
||||
|
||||
<!-- #include [[Resources/electricity/formulas]] -->
|
||||
---
|
||||
cards-deck: electricity
|
||||
---
|
||||
|
||||
## Ohms Law
|
||||
|
||||
*Solve for voltage:*
|
||||
#card
|
||||
|
||||
$\displaystyle V = I*R$
|
||||
^1654598090369
|
||||
|
||||
*Solve for resistance:*
|
||||
#card
|
||||
|
||||
$\displaystyle R = \frac{V}{I}$
|
||||
^1654598090389
|
||||
|
||||
*Solve for current*
|
||||
#card
|
||||
|
||||
$\displaystyle I = \frac{V}{R}$
|
||||
^1654598090398
|
||||
|
||||
## Resistors in Series
|
||||
#card
|
||||
|
||||
$R = R1 + R2 + R3 ...$
|
||||
^1654598090404
|
||||
|
||||
## Resistors in Parallel
|
||||
#card
|
||||
|
||||
$$
|
||||
\begin{flalign}
|
||||
&\frac{1}{R} = \frac{1}{R1} + \frac{1}{R2} + \frac{1}{R3} ... &\\
|
||||
\\
|
||||
&\textit{For two resistors in parallel:} &\\
|
||||
\\
|
||||
&R = \frac{R1 * R2}{R1 + R2} &\\\
|
||||
\end{flalign}
|
||||
$$
|
||||
***Tip:***
|
||||
If resistors of the same value are in parallel the total resistance is a single resistor divided by the amount if resistors.
|
||||
## Voltage Divider
|
||||
#card
|
||||
^1654598090410
|
||||
|
||||
$V_{out} = V_{in}(\frac{R_{1}}{R_1+R_2})$
|
||||
|
||||
## Thevenin’s Theorem
|
||||
States that it is possible to simplify any linear circuit, no matter how complex, to an equivalent circuit with just a single voltage source and series resistance connected to a load.
|
||||
|
||||
## Conservation of Charge (First Law)
|
||||
#card
|
||||
|
||||
All current entering a node must also leave that node
|
||||
$$
|
||||
\begin{flalign}
|
||||
\sum{I_{IN}} = \sum{I_{OUT}}&&
|
||||
\end{flalign}
|
||||
$$
|
||||
**Example:**
|
||||
^1654598090415
|
||||
|
||||
![](kirchhoffs-law-01.svg)
|
||||
|
||||
For this circuit kirchhoffs law states that:
|
||||
|
||||
$\displaystyle i1 = i2 + i3 + i4$
|
||||
|
||||
## Conservation of Energy (Second Law)
|
||||
All the potential differences around the loop must sum to zero.
|
||||
|
||||
$\displaystyle \sum{V} = 0$
|
||||
|
||||
## Capacitors in Series
|
||||
#card
|
||||
|
||||
$\displaystyle \frac{1}{C_{t}} = \frac{1}{C_{1}}+\frac{1}{C_{2}}+\frac{1}{C_{3}} ...$
|
||||
^1654598090421
|
||||
|
||||
## Impedance in a Circuit
|
||||
#card
|
||||
$$
|
||||
\begin{flalign}
|
||||
&Z = \sqrt{R^2 + X^2} &\\\
|
||||
\\
|
||||
&X = X_{L} - X_{C} \\
|
||||
\end{flalign}
|
||||
$$
|
||||
## Capacitive Reactance
|
||||
#card
|
||||
^1654598090426
|
||||
|
||||
$\displaystyle X_{c} = \frac{1}{2 \pi fC}$
|
||||
|
||||
## Inductive Reactance
|
||||
#card
|
||||
|
||||
$\displaystyle X_{l} = 2\pi fL$
|
||||
^1654598090432
|
||||
|
||||
## Analog Filters
|
||||
|
||||
## Cutoff Frequency for RC Filters
|
||||
#card
|
||||
|
||||
$\displaystyle f_{c} = \frac{1}{2\pi RC}$
|
||||
^1654598090437
|
||||
|
||||
## Cutoff Frequency for RL Filters
|
||||
#card
|
||||
|
||||
$\displaystyle f_{c} = \frac{R}{2\pi L}$
|
||||
^1654598090445
|
||||
|
||||
## Cutoff Frequency for multiple Low Pass Filters
|
||||
$\displaystyle f_{(-3db)} = f_{c}\sqrt{2^{(\frac{1}{n})}-1}$
|
||||
|
||||
Where $n$ = Number if **identical** filters
|
||||
|
||||
## Resonance Frequency for RLC Low Pass Filter
|
||||
#card
|
||||
|
||||
$\displaystyle f_{o} = \frac{1}{2\pi \sqrt{LC}}$
|
||||
^1654598090452
|
||||
|
||||
## Center Frequency with Fc and Fh
|
||||
#card
|
||||
|
||||
$f_{c} = \sqrt{f_{h}*f_{l}}$
|
||||
^1654598090459
|
||||
|
||||
## Filter Response for RC Filters
|
||||
#card
|
||||
|
||||
$V_{out} = V_{in}(\frac{X_c}{\sqrt{R_{1}^2+X_{c}^2}})$
|
||||
^1654598090466
|
||||
|
||||
## Cutoff Frequency $\pi$ Topology Filter
|
||||
#card
|
||||
|
||||
When the two capacitors have the same capacitance, it can be calculated like this:
|
||||
^1654598090479
|
||||
|
||||
$\displaystyle f_c = \frac{1}{4\pi\sqrt{LC}}$
|
||||
|
||||
## Angular Frequency ($\omega$)
|
||||
#card
|
||||
|
||||
$\omega = 2\pi f = \frac{2\pi}{T}$
|
||||
^1654598090492
|
||||
|
||||
## RLC Series Response
|
||||
|
||||
This is basically Ohms Law:
|
||||
|
||||
$\displaystyle V = IZ$
|
||||
|
||||
Where $Z$ is the impedance:
|
||||
|
||||
$Z = \sqrt{R^2 + (X_L - X_C)^2}$
|
||||
|
||||
$X_L$ = Reactive Inductance
|
||||
$X_C$ = Reactive Capacativw
|
||||
|
||||
## Current through a transistor
|
||||
|
||||
$\displaystyle I_{EQ} = \frac{V_{BB}-{V_{BE}}}{\frac{R_B}{(\beta+1)}+R_E}$
|
||||
|
||||
## Gain Bandwidth Product
|
||||
#card
|
||||
|
||||
$GBP = A_V * f_c$
|
||||
^1654598090498
|
||||
|
||||
$\displaystyle f_c = \frac{GBP}{A_V}$
|
||||
|
||||
## Bandwidth of Multiple OpAmps
|
||||
|
||||
Where $n$ = number of stages
|
||||
and $BW$ = Bandwidth of single op-amp
|
||||
|
||||
$BW_E = BW\sqrt{2^\frac{1}{n}-1}$
|
||||
|
||||
## Power lost in a Resistor
|
||||
#card
|
||||
|
||||
$P = IV = I^2R = \frac{V^2}{R}$
|
||||
^1654598090504
|
||||
<!-- /include -->
|
||||
```template
|
||||
page: "[[Resources/electricity/formulas]]"
|
||||
```
|
||||
|
||||
```latex
|
||||
\displaystyle f_{c} = \frac{1}{2\pi 100 * 0.00000001}
|
||||
|
Loading…
Reference in New Issue
Block a user