vault backup: 2024-09-04 16:15:01

This commit is contained in:
Dane Sabo 2024-09-04 16:15:01 -04:00
parent 500d77fc08
commit 8c80ef6cd4
5 changed files with 75 additions and 68 deletions

View File

@ -16,7 +16,7 @@
"state": { "state": {
"file": "200. Library Papers/liSyntheticLagrangianTurbulence2024.md", "file": "200. Library Papers/liSyntheticLagrangianTurbulence2024.md",
"mode": "source", "mode": "source",
"source": true "source": false
} }
} }
} }
@ -53,8 +53,21 @@
"type": "zdc-debug", "type": "zdc-debug",
"state": {} "state": {}
} }
},
{
"id": "ebcdfbb08a7488d7",
"type": "leaf",
"state": {
"type": "markdown",
"state": {
"file": "3-99 Research/6. Researching Techniques/Highlighting Colors and What they Mean.md",
"mode": "source",
"source": false
}
}
} }
] ],
"currentTab": 1
} }
], ],
"direction": "vertical" "direction": "vertical"
@ -140,7 +153,7 @@
"state": { "state": {
"type": "backlink", "type": "backlink",
"state": { "state": {
"file": "200. Library Papers/liSyntheticLagrangianTurbulence2024.md", "file": "1000s Templates/Literature Note.md",
"collapseAll": true, "collapseAll": true,
"extraContext": false, "extraContext": false,
"sortOrder": "alphabetical", "sortOrder": "alphabetical",
@ -157,7 +170,7 @@
"state": { "state": {
"type": "outgoing-link", "type": "outgoing-link",
"state": { "state": {
"file": "200. Library Papers/liSyntheticLagrangianTurbulence2024.md", "file": "1000s Templates/Literature Note.md",
"linksCollapsed": false, "linksCollapsed": false,
"unlinkedCollapsed": true "unlinkedCollapsed": true
} }
@ -180,7 +193,7 @@
"state": { "state": {
"type": "outline", "type": "outline",
"state": { "state": {
"file": "200. Library Papers/liSyntheticLagrangianTurbulence2024.md" "file": "1000s Templates/Literature Note.md"
} }
} }
} }
@ -219,10 +232,12 @@
"obsidian-full-calendar:Open Full Calendar": false "obsidian-full-calendar:Open Full Calendar": false
} }
}, },
"active": "c424ac94667c0e1c", "active": "f496283b2107cb82",
"lastOpenFiles": [ "lastOpenFiles": [
"1000s Templates/Literature Note.md",
"200. Library Papers/liSyntheticLagrangianTurbulence2024.md", "200. Library Papers/liSyntheticLagrangianTurbulence2024.md",
"1000s Templates/Literature Note.md",
"3-99 Research/6. Researching Techniques/Highlighting Colors and What they Mean.md",
"1. Daily Notes/2024/9. September/2024-09-04.md",
"200. Library Papers/kleinFormallyVerifiedSoftware2018.md", "200. Library Papers/kleinFormallyVerifiedSoftware2018.md",
"200. Library Papers/Kry10TechnicalOverview.md", "200. Library Papers/Kry10TechnicalOverview.md",
"200. Library Papers/nguyenFuzzyControlSystems2019.md", "200. Library Papers/nguyenFuzzyControlSystems2019.md",
@ -246,8 +261,6 @@
"200. Library Papers/maccaroneADVANCEDREACTORCYBER.md", "200. Library Papers/maccaroneADVANCEDREACTORCYBER.md",
"@maccaroneADVANCEDREACTORCYBER.md", "@maccaroneADVANCEDREACTORCYBER.md",
"200. Library Papers/chekoleEnforcingMemorySafety2018.md", "200. Library Papers/chekoleEnforcingMemorySafety2018.md",
"200. Library Papers/choiRealTimeHardwareintheLoopHIL2021.md",
"200. Library Papers/fernandezadiegoApplyingModelChecking2015.md",
"4. Qualifying Exam/2. Writing/Untitled.bib", "4. Qualifying Exam/2. Writing/Untitled.bib",
"4. Qualifying Exam/2. Writing/test.bib", "4. Qualifying Exam/2. Writing/test.bib",
"201. Metadata/My Library/files/4011/contextual.css", "201. Metadata/My Library/files/4011/contextual.css",

View File

@ -11,11 +11,12 @@ tags:
# Tasks for today # Tasks for today
## Big Task ## Big Task
- [ ] [[QE Management]] - [/] [[QE Management]]
## Medium Tasks ## Medium Tasks
- [ ] [[Cole Group Monitor Recommendation]] - [ ] [[Cole Group Monitor Recommendation]]
- [ ] [[ReadMe for BeagleBone GitHub]] - [ ] [[ReadMe for BeagleBone GitHub]]
- [ ] Re-file expense report - [x] Re-file expense report ✅ 2024-09-04
- Didn't get to refile. Stuck on date issue. Sent in a ticket.
## Small Tasks ## Small Tasks
- [ ] - [ ]
- [ ] - [ ]

View File

@ -56,29 +56,29 @@ pages: {{ pages }}
>[!note] Markdown Notes >[!note] Markdown Notes
>{% if markdownNotes %}{{markdownNotes}}{% else %}{{ "None!" }}{% endif %} >{% if markdownNotes %}{{markdownNotes}}{% else %}{{ "None!" }}{% endif %}
# Annotations # Annotations
{% macro calloutHeader(type, color) %} {% if type == "highlight" %} {% for a in annotations -%}
<mark style="background-color: {{color}}">Quote</mark> {%- if a.type == "highlight" -%}
{% if a.colorCategory == "Yellow" %}
>[!attention] Highlight
{%- elif a.colorCategory == "Green" %}
>[!done] Quote
{%- elif a.colorCategory == "Purple" %}
>[!example] Secondary Source
{%- elif a.colorCategory == "Orange" %}
>[!question] Don't Understand
{%- elif a.colorCategory == "Red" %}
>[!fail] Possibly Incorrect
{%- else %}
>[!quote] Other Highlight
{%- endif %}
> *{{a.annotatedText}}*
> {% if a.comment %}
> >[!note] Note
> >{{a.comment}}
{%- endif %}
{% endif %} {% endif %}
{% if type == "text" %} {%- endfor %}
Note
{% endif %}
{% endmacro %}
{% persist "annotations" %}
{% set newAnnotations = annotations | filterby("date", "dateafter", lastImportDate) %}
{% if newAnnotations.length > 0 %}
{% for a in annotations %}
> {{calloutHeader(a.type, a.color)}}
> {{a.annotatedText}}
> {% if a.comment %}{{a.comment}}{% endif %}
{% endfor %}
{% endif %}
{% endpersist %}
### Imported: {{importDate | format("YYYY-MM-DD h:mm a")}} ### Imported: {{importDate | format("YYYY-MM-DD h:mm a")}}

View File

@ -48,46 +48,38 @@ pages: 393-403
>[!note] Markdown Notes >[!note] Markdown Notes
>None! >None!
# Annotations # Annotations
>[!fail] Possibly Incorrect
%% begin annotations %% > *agrangian turbulence lies at the core of numerous applied and fundamental problems related to the physics of dispersion and mixing in engineering, biofluids, the atmosphere, oceans and astrophysics. Despite exceptional theoretical, numerical and experimental efforts conducted over the past 30 years, no existing models are capable of faithfully reproducing statistical and topological properties exhibited by particle tr*
>
<mark style="background-color: #ff6666">Quote</mark>
> agrangian turbulence lies at the core of numerous applied and fundamental problems related to the physics of dispersion and mixing in engineering, biofluids, the atmosphere, oceans and astrophysics. Despite exceptional theoretical, numerical and experimental efforts conducted over the past 30 years, no existing models are capable of faithfully reproducing statistical and topological properties exhibited by particle tr
> >
>
<mark style="background-color: #e56eee">Quote</mark>
>[!quote] Other Highlight
> *me scales, including the fat-tail distribution for velocity increments, the anomalous power law and the increased intermittency around the dissipative scale. Slight deviations are observed below the dissipative scale, particularly in the acceleration and flatness statistics. Surprisingly, the model exhibits strong generalizability for ext*
> me scales, including the fat-tail distribution for velocity increments, the anomalous power law and the increased intermittency around the dissipative scale. Slight deviations are observed below the dissipative scale, particularly in the acceleration and flatness statistics. Surprisingly, the model exhibits strong generalizability for ext
> >
>
<mark style="background-color: #ffd400">Quote</mark> >[!attention] Highlight
> *stion, industrial mixing, pollutant dispersion, quantum fluids, protoplanetary disks accretion, cloud formation*
>
> >[!note] Note
> >This, is a coment. that is a test!
>[!fail] Possibly Incorrect
> *table-top*
>
>[!done] Quote
> *laboratory*
>
>[!quote] Other Highlight
> *flows*
>
>[!question] Don't Understand
> *at*
>
### Imported: 2024-09-04 4:14 pm
> stion, industrial mixing, pollutant dispersion, quantum fluids, protoplanetary disks accretion, cloud formation
> This, is a coment. that is a test!
%% end annotations %%
### Imported: 2024-09-04 3:07 pm
%% Import Date: 2024-09-04T15:07:51.950-04:00 %%

View File

@ -2,6 +2,7 @@ F9: Remove Highligh
## For reading papers: ## For reading papers:
<mark style="background: #BBFABBA6;">Green</mark>: This is a quotable item <mark style="background: #BBFABBA6;">Green</mark>: This is a quotable item
<mark style="background: #D2B3FFA6;">Purple</mark>: Secondary source of something that's interesting <mark style="background: #D2B3FFA6;">Purple</mark>: Secondary source of something that's interesting
<mark style="background: #FFF3A3A6;">Yellow:</mark> Something noteworthy
<mark style="background: #FFB86CA6;">Orange</mark>: I don't know what this means <mark style="background: #FFB86CA6;">Orange</mark>: I don't know what this means
<mark style="background: #FF5582A6;">Red</mark>: I think this is wrong <mark style="background: #FF5582A6;">Red</mark>: I think this is wrong