Compare commits
2 Commits
b54a85288c
...
ba57281c3d
Author | SHA1 | Date | |
---|---|---|---|
|
ba57281c3d | ||
|
cb2acf15d2 |
@ -2,8 +2,7 @@
|
|||||||
|
|
||||||
this is a new paragrap
|
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
|
||||||
|
* |^|
|
84
Media/articles/Why Queer People Love Witchcraft.md
Normal file
84
Media/articles/Why Queer People Love Witchcraft.md
Normal file
@ -0,0 +1,84 @@
|
|||||||
|
---
|
||||||
|
author: Amanda Kohr
|
||||||
|
link: https://www.refinery29.com/en-us/2020/06/9861310/queer-lgbt-witch-trend
|
||||||
|
done: false
|
||||||
|
date: June 17, 2020
|
||||||
|
image: https://www.refinery29.com/images/9864156.jpg
|
||||||
|
---
|
||||||
|
# Why Queer & LGBTQ People Love Witchcraft
|
||||||
|
#faith
|
||||||
|
Photographed by Ryan Williams.
|
||||||
|
|
||||||
|
At 7:45 on a Thursday night, I light a candle and settle in for [my Zoom meeting](https://www.refinery29.com/en-us/2020/05/9738204/zoom-fomo-quarantine) with Krysta Venora, aka “[Pink Opal Magic](https://www.instagram.com/pinkopalmagic/)” (who uses they/them pronouns). Earlier in the week, I’d signed up for one of Krysta’s spiritual readings. When I log into our video call for the reading, their room is dark green, and a menagerie of candles flickers in the background. The ambience is simultaneously comforting and delightfully spooky. Krysta, a beacon of positive energy despite [the screen between us](https://www.refinery29.com/en-us/2020/03/9574944/zoom-virtual-backgrounds-how-to-download), radiates.
|
||||||
|
|
||||||
|
Located in Los Angeles, Krysta identifies as a queer witch. They’re one of many. Historically associated with power, seduction, old age, and otherness, [witchcraft](https://www.refinery29.com/en-us/witchcraft-magic-books) was traditionally a space reserved for women, but as the LGBTQIA+ movement continues to gain traction, more and more queer folks have publicly joined the ranks of witchcraft. According to a 2015 survey conducted by Pew Research Center, around twice as many queer adults as the general public say they identify as [a member of a non-Christian faith group](https://www.pewresearch.org/fact-tank/2015/05/26/lesbian-gay-and-bisexual-americans-differ-from-general-public-in-their-religious-affiliations/), including Wicca and paganism.
|
||||||
|
|
||||||
|
Google #queerwitch and you’ll find thousands of [Instagram posts](https://www.instagram.com/explore/tags/queerwitch/?hl=en), [tweets](https://twitter.com/hashtag/queerwitch), and even [TikTok videos](https://www.refinery29.com/en-us/2020/06/9855064/tiktok-witches-black-lives-matter) featuring LGBTQIA+ witches engaging in their crafts. But queer witchcraft isn’t just about donning a Stevie Nicks-esque wardrobe and lighting colored candles — the practice is a venture toward empowerment.
|
||||||
|
|
||||||
|
“\[Witchcraft\] gave me a sense of my personal power,” says Krysta, who is [gender non-binary](https://www.refinery29.com/en-us/lgbtq-definitions-gender-sexuality-terms). “In this world, Black, indigenous, and queer people are told they have no power. So, to have something that gives me power and encourages me to use my voice and my will is invaluable.”
|
||||||
|
|
||||||
|
Krysta was raised in a multi-religious household. Krysta is part-[Native American](https://www.refinery29.com/en-us/2018/10/213119/native-american-beauty-brands), and at first, their mother was passionate about honoring that part of the family’s heritage, taking Krysta to pow-wows and speaking with psychics. But when Krysta was about ten, they were baptised in the Mormon church, and entered an entirely different, and a far stricter, approach to spirituality.
|
||||||
|
|
||||||
|
“I was having all these profound spiritual experiences,” Krysta says. “But I didn’t buy what they were trying to sell me. \[The church\] saw all these facets of my identity — black, indigenous, queer, survivor of childhood assault — [as major sins](https://www.refinery29.com/en-us/2020/06/9487713/lgbtq-rights-issues-pride-month-2020). And I knew \[that\] was wrong.”
|
||||||
|
|
||||||
|
Still, spirituality was a crucial part of Krysta’s identity, and not something they could easily dismiss. (“The Spirit will take any opportunity to speak to you,” Krysta notes.) In 2013, they were introduced to the actual reality of “witches” through [a proud Wiccan coworker](https://www.refinery29.com/en-us/real-witches-wiccan-religion-beliefs), who gave Krysta books on deities and invited them to Sabbat celebrations.
|
||||||
|
|
||||||
|
“From there I borrowed every book remotely related that I could find at the library,” Krysta says. “When that wasn’t enough I went to the internet. Back then, YouTube had a close-knit collection of [Wiccan and non-Wiccan witches](https://www.refinery29.com/en-ca/2018/10/215529/canada-witch-community-battle) practicing in many different ways.”
|
||||||
|
|
||||||
|
As they dove deeper into the myriad types of witchcraft practices, Krysta discovered that they could play with the rules of witchcraft, and develop a personalized practice outside of Wicca.
|
||||||
|
|
||||||
|
“That’s when I really blossomed into a full-on, spell-casting, goddex-worshipping witch,” Krysta says, humbly adding that though they saw truth in the practice, Wicca just wasn’t for them. “Being queer and specificially a person [outside of the gender binary](https://www.refinery29.com/en-us/2020/06/9487778/gender-neutral-swimwear-shopping-problem) made their ideas and practices a little itchy for me.”
|
||||||
|
|
||||||
|
It took Krysta several years of channeling and ancestor work to develop a witchcraft practice that felt right. Now, Krysta says that reconnecting with and remembering their innate Indigenous wisdom is a crucial element of their witchcraft.
|
||||||
|
|
||||||
|
“It is the practice written in my DNA and passed down my ancestors, but it’s also something new,” Krysta says. “It’s the mixture of knowledge and practices that makes my work potent, and the personalization that makes it fulfilling.”
|
||||||
|
|
||||||
|
“
|
||||||
|
|
||||||
|
In this world, Black, indigenous, and queer people are told they have no power. So, to have something that gives me power and encourages me to use my voice and my will is invaluable.
|
||||||
|
|
||||||
|
Krysta Venora
|
||||||
|
|
||||||
|
”
|
||||||
|
|
||||||
|
A [spiritual childhood](https://www.refinery29.com/en-gb/lady-phyll-book-of-queer-prophets) is prevalent among modern-day witches. Bobbi\* (she/her), a cisgender, queer witch in Chicago, tells me that she grew up a pastor’s kid. She spent nearly every summer at “Jesus Camp,” and every Sunday participating in the ritual of communion. For a while, she loved it.
|
||||||
|
|
||||||
|
“I was one of those people at the front of the church, hands up at the altar in supplication, singing along with those guitar-toting ‘Jesus rockers,’” Bobbi says. “Holiness, after all, is ‘otherness’... and whats more relatable to a teenage girl than a desperate need to connect to something special?”
|
||||||
|
|
||||||
|
[Mat Auryn](https://www.instagram.com/matauryn/?hl=en) (he/him), a Bay Area queer and cisgendered male witch, grew up attending a church that was a mixture of Pentecoastal and Evangelical Christianity. (For those unfamiliar, these are typically regarded as some of the more “extreme” forms of Christianity.)
|
||||||
|
|
||||||
|
“I think part of \[my religious background\] [exposed me to magick](https://www.refinery29.com/en-us/2019/10/8655768/is-magic-real) at an early age,” Mat says. “Because while \[Christians\] would never use that word for what they do, it absolutely is. They’re raising energy through music, through singing, through ecstatic states, then directing and unleashing that energy psychically in what they call prayer to see the results they desire in their lives and in the world.”
|
||||||
|
|
||||||
|
But similar to Krysta, Bobbi and Mat found that their [Christian faith created conflict](https://www.refinery29.com/en-us/queer-christian-sexuality-religion-debate-video) when they started to discover their queer identities. Though they appreciated aspects of their religious upbringings, they grew resentful of their church’s black-and-white attitude toward sin and sexuality. Especially for Bobbi, a place that had initially been a source of comfort was now a trigger for shame.
|
||||||
|
|
||||||
|
“As a child, I found myself [attracted to my same-gendered friends](https://www.refinery29.com/en-us/2019/06/234052/coming-out-later-in-life), and confused about what to do with those feelings,” Bobbi explains. “According to my faith, it was wrong. Whats worse, I was choosing the ‘wrong’ thing because I also liked people of the opposite gender.”
|
||||||
|
|
||||||
|
Witchcraft, on the other hand, offered a spiritual space where queer folks like Bobbi, Mat, and Krysta could step into their personal power and explore otherness without shame, guilt, or fear. Though all of the witches I spoke to investigated magic (or magick) in their childhood, their crafts began to really come to fruition in their young adulthood, as they were granted more exposure to the variety of rituals and practices. Bobbi notes that discovering [moon rituals](https://www.refinery29.com/en-us/2018/07/204232/new-moon-rituals-busy-effects) was a major turning point in her witchcraft journey.
|
||||||
|
|
||||||
|
Furthermore, the idea of a coven — a group or gathering of witches — created space for community, another appealing aspect of mainstream religion. In addition to providing solace and support, Bobbi finds that her coven encourages her to be a better person.
|
||||||
|
|
||||||
|
“Ive been fortunate to find community in overwhelmingly inclusive places where its safe enough to be vulnerable, but also ‘woke’ enough for us to [call each other out](https://www.refinery29.com/en-us/2020/05/9841649/allyship-ahmaud-arbery-george-floyd) on our bullshit,” Bobbi says. “These spaces challenge me to hold a mirror to myself and consistently ask where Im not supporting those with less privilege. They help me to heal so that my trauma doesnt hinder me from progress.”
|
||||||
|
|
||||||
|
Of course, part of practicing witchcraft means… practicing witchcraft. Depending on the witch, these practices might include tarot or oracle cards, crafting incense blends or spiritual waters, reading natal charts, communicating with spirit guides, praying, or casting spells. Bobbi describes herself as a “kitchen witch.”
|
||||||
|
|
||||||
|
“Ask anyone whos had my Breakup Recovery Brownies or a slice of my Heartwarming Apple Pie,” she says. “Taste and smell are so strongly tied to memory, it makes sense that using them in my craft leads to [easier manifestation](https://www.refinery29.com/en-us/manifestation-positive-thinking-works).” Most queer witches acknowledge that witchcraft is highly customizable, allowing each witch to build and change their specific practices depending on where they’re at in their lives.
|
||||||
|
|
||||||
|
“While I’m well-versed in spellcraft and operative magick, the tools of witchcraft are mostly just that — tools,” says Mat. “Tools are helpful and can make things easier, but the real magick, just like the real psychic ability, is within the soul of the witch.”
|
||||||
|
|
||||||
|
Regardless of the specificities of their practices, all queer witches seem to have one major thing in common: a desire to feel empowered and the freedom to explore their identities. Perhaps this is what makes the [intersection](https://www.refinery29.com/en-us/2019/10/8541829/delaney-tarr-march-for-sisterhood-intersectionality-activism%27) of the queer community and witchcraft so natural — they are both expressions of otherness.
|
||||||
|
|
||||||
|
Claire (they/them), a queer and gender non-binary witch and host of [The Word Witch podcast](https://www.instagram.com/the.word.witch/?hl=en), notes that their queerness and witchiness have always been intrinsically intertwined. In high school, Claire romanced theater girls by day and dabbled in witchcraft at night.
|
||||||
|
|
||||||
|
Like the other witches I spoke with, Claire had an intensely religious childhood, and entered adulthood extremely skeptical of any person or group who claims to know “the one truth.” This encouraged them to do a lot of self-education, seeking out books like _The Spiral Dance_ by Starhawk and _Drawing Down the Moon_ by [Margot Adler](https://www.amazon.com/Margot-Adler/e/B000AQ3KO2). Now their version of witchcraft adheres to no specific tradition or authority — rather, they paved their own path.
|
||||||
|
|
||||||
|
“For me, witchcraft is inherently queer because it’s built upon empowering individuals to live according to their own truth,” says Claire. “Historically, ‘witch’ was a title leveled at outcasts, iconoclasts, rebels, and anyone who threatened the status quo or [refused to conform to society’s rules](https://www.refinery29.com/en-us/2020/06/9861317/first-pride-riots-history-black-lgbtq-blm). Witches are outsiders. Witches are ‘othered.’ But witches also hold power.”
|
||||||
|
|
||||||
|
In a world where [queer people](https://www.refinery29.com/en-us/2020/06/9692049/how-to-celebrate-pride-month-2020), particularly queer people of color, are told over and over that their otherness is wrong, it becomes a daily struggle to take one’s power back. It requires ritual, affirmation, and community, and witchcraft provides all of these things. The magic (or magick) explored and created in witchcraft is more than just casting spells and seeing results; it’s about stepping into one’s power, and celebrating identities that society deems too strange to be valid.
|
||||||
|
|
||||||
|
“Just as Nancy says in _The Craft,_” says Mat, “we are the weirdos, mister_._’”
|
||||||
|
|
||||||
|
I also ask Krysta about the future of witchcraft. And though they exhibit many traces of [intuitive knowing](https://www.refinery29.com/en-us/what-is-intuition-psychic-spiritual-meaning), that is something they cannot yet predict.
|
||||||
|
|
||||||
|
“I cannot see the future for queer witches, and that is because are in an unprecedented moment of choice,” Krysta says. “Every decision we make is actively shaping our future. I have hopes and I have wishes. I want to see [queer witches taking up space as healers](https://www.refinery29.com/en-us/modern-witches-on-instagram)… I want to see us offering our magic with ease and grace to bring people back home to themselves.”
|
||||||
|
|
||||||
|
In other words, queer witches are lighthouses guiding us to embracing our authentic selves. They are experts in finding freedom, because they’ve had to fight for it so hard themselves.
|
567
Media/index.md
567
Media/index.md
@ -1,565 +1,16 @@
|
|||||||
|
|
||||||
## Series
|
## Series
|
||||||
|
|
||||||
<!-- #query page where name =~ /^Media\/series/ and status = Ready\ to\ Start order by rating desc render [[templates/movies]] -->
|
```query
|
||||||
### [[Media/series/Alone|Alone]]
|
page where name =~ /^Media\/series/ and status = Ready\ to\ Start order by rating desc render [[template/movies]]
|
||||||
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 -->
|
|
||||||
|
|
||||||
## Movies
|
## Movies
|
||||||
<!-- #query page where name =~ /^Media\/movies/ and status = Ready\ to\ Start order by rating desc render [[templates/movies]] -->
|
```query
|
||||||
### [[Media/movies/2001 A Space Odyssey|2001 A Space Odyssey]]
|
page where name =~ /^Media\/movies/ and status = Ready\ to\ Start order by rating desc render [[template/movies]]
|
||||||
⭐️⭐️⭐️⭐️⭐️ 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 -->
|
|
||||||
|
|
||||||
## Movies (Seen)
|
## Movies (Seen)
|
||||||
<!-- #query page where name =~ /^Media\/movies/ and status != Finished order by rating desc limit 20 render [[templates/movies]] -->
|
```query
|
||||||
### [[Media/movies/Ponyo|Ponyo]]
|
page where name =~ /^Media\/movies/ and status != Finished order by rating desc limit 20 render [[template/movies]]
|
||||||
5 by _Hayao Miyazaki_
|
```
|
||||||
<!-- /query -->
|
|
||||||
|
10
Media/movies/Before Sunrise.md
Normal file
10
Media/movies/Before Sunrise.md
Normal file
@ -0,0 +1,10 @@
|
|||||||
|
---
|
||||||
|
tmdbId: 76
|
||||||
|
date: January 27, 1995
|
||||||
|
image: Media/movies/images/before_sunrise_cover.jpg
|
||||||
|
author: Richard Linklater
|
||||||
|
---
|
||||||
|
# Before Sunrise
|
||||||
|
![](Media/movies/images/before_sunrise_cover.jpg)
|
||||||
|
#drama #romance
|
||||||
|
|
BIN
Media/movies/images/before_sunrise_cover.jpg
Normal file
BIN
Media/movies/images/before_sunrise_cover.jpg
Normal file
Binary file not shown.
After Width: | Height: | Size: 174 KiB |
@ -3,10 +3,10 @@
|
|||||||
_TODOS:_
|
_TODOS:_
|
||||||
- [x] Ideen finden
|
- [x] Ideen finden
|
||||||
- [x] Betreuer finden
|
- [x] Betreuer finden
|
||||||
- [ ] Zweitprüfer
|
- [x] Zweitprüfer
|
||||||
- [x] [[Projects/bachlor/Expose|Expose]] fertig schreiben
|
- [x] [[Projects/bachlor/Expose|Expose]] fertig schreiben
|
||||||
- [x] Termin mit Ivonne absagen
|
- [x] Termin mit Ivonne absagen
|
||||||
- [ ] Idee festlegen
|
- [x] Idee festlegen
|
||||||
|
|
||||||
_Rahmenbedingungen:_
|
_Rahmenbedingungen:_
|
||||||
- Maximal 80 Seiten
|
- Maximal 80 Seiten
|
||||||
|
@ -2,6 +2,7 @@
|
|||||||
link: https://www.epicurious.com/recipes/food/views/our-favorite-banana-bread-56389378
|
link: https://www.epicurious.com/recipes/food/views/our-favorite-banana-bread-56389378
|
||||||
rating: 5
|
rating: 5
|
||||||
time: 95 min
|
time: 95 min
|
||||||
|
image: Recipes/images/Simply-Recipes-Easy-Banana-Bread.jpg
|
||||||
---
|
---
|
||||||
|
|
||||||
# Banana Bread
|
# Banana Bread
|
||||||
|
@ -2,6 +2,7 @@
|
|||||||
link: https://itunes.apple.com/us/book/cravings/id1061451877?mt=11
|
link: https://itunes.apple.com/us/book/cravings/id1061451877?mt=11
|
||||||
time: 25min
|
time: 25min
|
||||||
tield: 4
|
tield: 4
|
||||||
|
image: Recipes/images/lemony-arugula-spaghetti.jpg
|
||||||
---
|
---
|
||||||
|
|
||||||
# Lemony Arugula Spaghetti Cacio E Pepe
|
# Lemony Arugula Spaghetti Cacio E Pepe
|
||||||
|
@ -4,7 +4,7 @@ date: 30.12.2023
|
|||||||
image: Recipes/images/mexikaner-shot.jpg
|
image: Recipes/images/mexikaner-shot.jpg
|
||||||
---
|
---
|
||||||
|
|
||||||
# Mexikaner
|
# Mexikaner Shots
|
||||||
|
|
||||||
![](./images/mexikaner-shot.jpg)
|
![](./images/mexikaner-shot.jpg)
|
||||||
#cocktail #drink #shots
|
#cocktail #drink #shots
|
||||||
|
@ -3,11 +3,10 @@ link: https://www.epicurious.com/recipes/food/views/molten-chocolate-chunk-brown
|
|||||||
rating: 4
|
rating: 4
|
||||||
time: 1.5 hours
|
time: 1.5 hours
|
||||||
portion: 9
|
portion: 9
|
||||||
image: Recipes/images/molten-chocolate-chunk-brownies-recipe-HC-011818.webp
|
image: Recipes/images/molten-chocolate-chunk-brownies-recipe.jpg
|
||||||
---
|
---
|
||||||
# Molten Chocolate Chunk Brownies
|
# Molten Chocolate Chunk Brownies
|
||||||
![](https://assets.epicurious.com/photos/5a61199039b7695554110385/1:1/w_1600,c_limit/molten-chocolate-chunk-brownies-recipe-HC-011818.jpg)
|
![](Recipes/images/molten-chocolate-chunk-brownies-recipe.jpg)
|
||||||
|
|
||||||
#dessert
|
#dessert
|
||||||
|
|
||||||
---
|
---
|
||||||
|
@ -2,6 +2,7 @@
|
|||||||
link: https://itunes.apple.com/us/book/cravings/id1061451877?mt=11
|
link: https://itunes.apple.com/us/book/cravings/id1061451877?mt=11
|
||||||
time: 1 hour 20 minutes
|
time: 1 hour 20 minutes
|
||||||
rating: 5
|
rating: 5
|
||||||
|
image: Recipes/images/chicken-noodle-soup-5-1200x1800.jpg
|
||||||
---
|
---
|
||||||
|
|
||||||
# Roto-chick Chicken Noodle Soup
|
# Roto-chick Chicken Noodle Soup
|
||||||
|
45
Recipes/Sake.md
Normal file
45
Recipes/Sake.md
Normal file
@ -0,0 +1,45 @@
|
|||||||
|
---
|
||||||
|
portion: 3.7l
|
||||||
|
author: TheBruSho
|
||||||
|
image: Recipes/images/sake.jpg
|
||||||
|
---
|
||||||
|
|
||||||
|
# Sake
|
||||||
|
|
||||||
|
![](/Recipes/images/sake.jpg)
|
||||||
|
|
||||||
|
|
||||||
|
Home fermented Sake
|
||||||
|
|
||||||
|
---
|
||||||
|
|
||||||
|
- Polished Rice / Polished Sake Rice
|
||||||
|
- Koji-Kin Enzyme
|
||||||
|
|
||||||
|
---
|
||||||
|
|
||||||
|
## Day 1
|
||||||
|
|
||||||
|
- Let 400g rice soak in water for 4 hours
|
||||||
|
- Wash the rice
|
||||||
|
- Steam the Rice (40 mins, mix it up)
|
||||||
|
- Rice should be sticky and keep its shape
|
||||||
|
- Let the rice cool down to 30C
|
||||||
|
- Add 1.5g of Koshi and distribute evenly across the rice
|
||||||
|
- Mix the rice
|
||||||
|
- Cover with a damp kitchen cloth
|
||||||
|
|
||||||
|
- let sit for 30 hours, replace the damp cloth when its dry, keep the rice warm
|
||||||
|
|
||||||
|
## Day 2
|
||||||
|
|
||||||
|
- 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 wine yeast
|
||||||
|
- Mix it all together in a fermenter with an airlock
|
||||||
|
|
||||||
|
# Day 2 - 6
|
||||||
|
- Store it in a cold and dark place
|
||||||
|
- Mix it evenly every few days
|
||||||
|
|
@ -1,5 +1,6 @@
|
|||||||
---
|
---
|
||||||
link: https://www.justonecookbook.com/spinach-ohitashi-japanese-spinach-salad-with-bonito-flakes/
|
link: https://www.justonecookbook.com/spinach-ohitashi-japanese-spinach-salad-with-bonito-flakes/
|
||||||
|
image: Recipes/images/Spinach-Ohitashi-5695-II.jpg
|
||||||
---
|
---
|
||||||
# Spinach Ohitashi
|
# Spinach Ohitashi
|
||||||
|
|
||||||
|
@ -1,6 +1,7 @@
|
|||||||
---
|
---
|
||||||
Link: https://www.rewe.de/rezepte/suess-scharfe-kuerbiscremesuppe-mit-kokosmilch/
|
Link: https://www.rewe.de/rezepte/suess-scharfe-kuerbiscremesuppe-mit-kokosmilch/
|
||||||
rating: 5
|
rating: 5
|
||||||
|
image: Recipes/images/kuerbissuppe-mit-ingwer-und-kokosmilch.jpg
|
||||||
---
|
---
|
||||||
|
|
||||||
# Süß-scharfe Kürbiscremesuppe mit Kokosmilch
|
# Süß-scharfe Kürbiscremesuppe mit Kokosmilch
|
||||||
|
BIN
Recipes/images/molten-chocolate-chunk-brownies-recipe.jpg
Normal file
BIN
Recipes/images/molten-chocolate-chunk-brownies-recipe.jpg
Normal file
Binary file not shown.
After Width: | Height: | Size: 1.5 MiB |
BIN
Recipes/images/sake.jpg
Normal file
BIN
Recipes/images/sake.jpg
Normal file
Binary file not shown.
After Width: | Height: | Size: 51 KiB |
106
Recipes/index.md
106
Recipes/index.md
@ -1,105 +1,5 @@
|
|||||||
# Recipes
|
# Recipes
|
||||||
|
|
||||||
<!-- #query page where name =~ /^Recipes\// render [[templates/recipe]] -->
|
```query
|
||||||
### [[Recipes/Auberginen-Feta-Reispfanne|Auberginen-Feta-Reispfanne]]
|
page where name =~ /^Recipes\// render [[template/recipe]]
|
||||||
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 -->
|
|
||||||
|
@ -10,199 +10,9 @@ Lets first calculate the cutoff frequency of this filter:
|
|||||||
|
|
||||||
[[Resources/electricity/formulas|Formulas]]
|
[[Resources/electricity/formulas|Formulas]]
|
||||||
|
|
||||||
<!-- #include [[Resources/electricity/formulas]] -->
|
```template
|
||||||
---
|
page: "[[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 -->
|
|
||||||
|
|
||||||
```latex
|
```latex
|
||||||
\displaystyle f_{c} = \frac{1}{2\pi 100 * 0.00000001}
|
\displaystyle f_{c} = \frac{1}{2\pi 100 * 0.00000001}
|
||||||
|
Loading…
Reference in New Issue
Block a user