main
iOS 3 years ago
parent 31564cbbc1
commit 08fd2d0456

@ -4,6 +4,7 @@
"switcher", "switcher",
"graph", "graph",
"backlink", "backlink",
"outgoing-link",
"tag-pane", "tag-pane",
"page-preview", "page-preview",
"templates", "templates",

@ -183,7 +183,7 @@
"current": { "current": {
"year": 2022, "year": 2022,
"month": 0, "month": 0,
"day": 19 "day": 20
}, },
"events": [ "events": [
{ {
@ -1089,7 +1089,12 @@
"month": 2, "month": 2,
"day": 31 "day": 31
}, },
"category": "ID_3b8a489a19da" "category": "ID_3b8a489a19da",
"end": {
"year": 2022,
"month": 2,
"day": 31
}
}, },
{ {
"id": "ID_39284918f8ba", "id": "ID_39284918f8ba",
@ -1144,7 +1149,7 @@
"name": "Task" "name": "Task"
} }
], ],
"date": 1641599248347, "date": 1641683884526,
"displayWeeks": false "displayWeeks": false
} }
], ],

@ -12,8 +12,8 @@
"checkpointList": [ "checkpointList": [
{ {
"path": "/", "path": "/",
"date": "2022-01-08", "date": "2022-01-09",
"size": 688664 "size": 693438
} }
], ],
"activityHistory": [ "activityHistory": [
@ -22,7 +22,11 @@
"size": [ "size": [
{ {
"date": "2022-01-08", "date": "2022-01-08",
"value": 8260 "value": 16672
},
{
"date": "2022-01-09",
"value": 2452
} }
] ]
} }

@ -117,11 +117,12 @@
}, },
"syntaxHighlight": false, "syntaxHighlight": false,
"copyButton": true, "copyButton": true,
"version": "6.7.5", "version": "6.8.0",
"autoCollapse": false, "autoCollapse": false,
"defaultCollapseType": "open", "defaultCollapseType": "open",
"syncLinks": true, "syncLinks": true,
"enableMarkdownProcessor": false, "enableMarkdownProcessor": false,
"injectColor": true, "injectColor": true,
"parseTitles": true "parseTitles": true,
"allowMSSyntax": true
} }

File diff suppressed because one or more lines are too long

@ -1,7 +1,7 @@
{ {
"id": "obsidian-admonition", "id": "obsidian-admonition",
"name": "Admonition", "name": "Admonition",
"version": "6.7.5", "version": "6.8.0",
"minAppVersion": "0.11.0", "minAppVersion": "0.11.0",
"description": "Admonition block-styled content for Obsidian.md", "description": "Admonition block-styled content for Obsidian.md",
"author": "Jeremy Valentine", "author": "Jeremy Valentine",

File diff suppressed because one or more lines are too long

@ -9,7 +9,7 @@
"state": { "state": {
"type": "markdown", "type": "markdown",
"state": { "state": {
"file": "06.02 Investments/VC Tasks.md", "file": "01.02 Home/@Main Dashboard.md",
"mode": "preview" "mode": "preview"
} }
} }
@ -76,7 +76,7 @@
"state": { "state": {
"type": "backlink", "type": "backlink",
"state": { "state": {
"file": "06.02 Investments/VC Tasks.md", "file": "01.02 Home/@Main Dashboard.md",
"collapseAll": false, "collapseAll": false,
"extraContext": false, "extraContext": false,
"sortOrder": "alphabetical", "sortOrder": "alphabetical",
@ -134,21 +134,32 @@
"type": "online.tokuhirom.obsidian-stopwatch-plugin", "type": "online.tokuhirom.obsidian-stopwatch-plugin",
"state": {} "state": {}
} }
},
{
"id": "617039e6cfeabbae",
"type": "leaf",
"state": {
"type": "outgoing-link",
"state": {
"file": "01.02 Home/@Main Dashboard.md",
"linksCollapsed": false,
"unlinkedCollapsed": true
}
}
} }
], ]
"currentTab": 3
}, },
"active": "0204ce7a98b762a7", "active": "0204ce7a98b762a7",
"lastOpenFiles": [ "lastOpenFiles": [
"06.02 Investments/VC Tasks.md", "01.02 Home/@Main Dashboard.md",
"06.02 Investments/Equity Tasks.md", "00.01 Admin/Button gallery.md",
"06.02 Investments/Crypto Tasks.md", "00.01 Admin/URL characters.md",
"01.01 Life Orga/Family.md", "00.01 Admin/Obsidian plugins.md",
"06.02 Investments/VC Investments.md", "00.01 Admin/Test sheet.md",
"06.02 Investments/@Investment Task master.md", "02.03 Zürich/@Sport Zürich.md",
"05.01 Computer setup/Privacy & Security.md", "01.02 Home/Life mementos.md",
"05.01 Computer setup/@Computer Set Up.md", "00.02 Inbox/Dans les forêts de Sibérie.md",
"05.01 Computer setup/Apple processes.md", "00.01 Admin/React/Clock.md",
"04.01 lebv.org/@lebv.org Tasks.md" "01.02 Home/@Shopping list.md"
] ]
} }

@ -7,7 +7,9 @@ useEffect(() => {
}); });
return ( return (
<div> <div>
<p>Current date: <b>{date.toLocaleDateString()}</b></p> <h6>Today</h6>
<p>Current time: <b>{date.toLocaleTimeString()}</b></p> <p><b>{date.toLocaleDateString()}</b></p>
<h6>Time</h6>
<p><b>{date.toLocaleTimeString()}</b></p>
</div> </div>
); );

@ -0,0 +1,15 @@
const [loaded, setLoaded] = useState(false)
return (
<div>
{!loaded ?
<button onClick={()=>{
setLoaded(!loaded)
}}>
{props.title || "Click me"}
</button>
:
<iframe height="400px" width="100%" src={props.src}></iframe>
}
</div>
)

@ -0,0 +1,6 @@
const ctx = useContext(ReactComponentContext);
var ppctx = ctx.markdownPostProcessorContext;
var frontmatter = ppctx.frontmatter;
return props.render(frontmatter)

@ -1,11 +1,21 @@
--- ---
ChildrenType: ["Note", "Task", "Recipe"] ChildrenType: ["Note", "Task", "Recipe"]
JSXExample: "Hello JSX!"
--- ---
`jsx-<LoadiFrameButton title="" src="https://pipep.kavin.rocks" />`
`jsx- <WithFrontMatter render={({JSXExample})=><h1>The value of hello is "{JSXExample}"</h1>}/>`
[Forum](https://forum.obsidian.md) [Forum](https://forum.obsidian.md)
&emsp;
&emsp;
&emsp; &emsp;
&emsp; &emsp;
@ -124,10 +134,3 @@ catch (err) { window.console.info(err); }
&emsp; &emsp;
TestNumber:: 40
<center>Status bar<br>
<progress value="40" max="100">`= this.TestNumber`</progress></center>
&emsp;

@ -82,7 +82,7 @@ dv.el("span", "![](" + dv.current().Source.Cover + ")")
&emsp; &emsp;
Loret ipsum - [ ] [[Dans les forêts de Sibérie]]: Reprendre la liste de livres, pages 33-35
&emsp; &emsp;
&emsp; &emsp;

@ -7,7 +7,7 @@ Hierarchy: "NonRoot"
Priority: "Low" Priority: "Low"
Status: "In-progress" Status: "In-progress"
StartDate: 2021-08-12 StartDate: 2021-08-12
DueDate: 2021-12-31 DueDate: 2022-12-31
NextReviewDate: &RD 2022-03-31 NextReviewDate: &RD 2022-03-31
TimeStamp: 2021-08-12 TimeStamp: 2021-08-12
locations: locations:

@ -36,7 +36,45 @@ id Save
&emsp; &emsp;
```jsx: ```jsx:
<Clock /> <center><Clock /></center>
```
&emsp;
```jsx:
import { Canvas, useFrame } from 'https://cdn.skypack.dev/@react-three/fiber'
function Box(props) {
const mesh = useRef()
const [hovered, setHover] = useState(false)
const [active, setActive] = useState(false)
useFrame((state, delta) => (mesh.current.rotation.x += 0.01))
return (
<mesh
{...props}
ref={mesh}
scale={active ? 1.5 : 1}
onClick={(event) => setActive(!active)}
onPointerOver={(event) => setHover(true)}
onPointerOut={(event) => setHover(false)}
>
<boxGeometry args={[1, 1, 1]} />
<meshStandardMaterial color={hovered ? 'hotpink' : 'orange'} />
</mesh>
)
}
<Canvas>
<ambientLight />
<pointLight position={[10, 10, 10]} />
<Box position={[-3.2, 0, 0]} />
<Box position={[-1.2, 0, 0]} />
<Box position={[1.2, 0, 0]} />
<Box position={[3.2, 0, 0]} />
</Canvas>
``` ```
&emsp; &emsp;
@ -117,6 +155,7 @@ hide task count
```tasks ```tasks
not done not done
is not recurring is not recurring
path does not include Templates
limit to 5 tasks limit to 5 tasks
hide backlinks hide backlinks
hide task count hide task count

@ -101,4 +101,22 @@ title: *Rudyard Kipling*, **If**, 1910
> Or being lied about, dont deal in lies, > Or being lied about, dont deal in lies,
> Or being hated, dont give way to hating, > Or being hated, dont give way to hating,
> And yet dont look too good, nor talk too wise > And yet dont look too good, nor talk too wise
```
&emsp;
---
&emsp;
### Closure
&emsp;
```ad-quote
title: Street of London
> CONGRATULATIONS TO EVERYONE WHO MOVED
ON WITHOUT THE GENUINE APOLOGY
OR CLOSURE THEY DESERVED.
THAT'S SO HARD, BE PROUD OF YOURSELF.
``` ```

@ -52,7 +52,7 @@ style: number
&emsp; &emsp;
%%🔐α 7MfcF919eS/E5qLebNofSQofzipJ7Vq6yYNONSJRNpwGO3zZA4LhZISdk/iIowe1tUthiRLgJ8AhRcj66/brT1llQo4pdCN6J2TOX4Q8B7hFV/dJMgcbPpwkUSngweZwncvdNyxHPOPWrNOQpilc29g5eGlIdVt9JmecRD3biQl5W8PhwRNvWZ4mccXDFPd2kWMO 🔐%% %%🔐α 💡Le Nom des Enfants💡aSNyjUylwmwKZREvoZi6jw8eEEYDn08oQWiMxAnRxZPRvVbnZqRYiubxbEW1lcpprbcxlBN097w2r2Vyu8QYvfOsREvxpMyBVcfk2ukfl9hmPx9kjzz0IIEpqJFcKCBryI5F4TkKhNI4UzeaPjl2rT6YFU5em9L5/8pdjgD6NMYiwJogqRLDUH/Cj9iZDCT+yPjy2gWZpu5hjsA= 🔐%%
🔏 🔏

@ -3,7 +3,7 @@
QPType: ["Hotel", "Restaurant", "Bar"] QPType: ["Hotel", "Restaurant", "Bar"]
QPStyle: QPStyle:
QPAmbiance: QPAmbiance:
QPKeyword: Terrace QPKeyword: ""
QPArea: QPArea:
QPStatus: QPStatus:
QPDAdded: QPDAdded:
@ -38,8 +38,6 @@ id CreateNote
``` ```
^button-ParisNewNote ^button-ParisNewNote
```button ```button
name Save name Save
type command type command
@ -77,6 +75,8 @@ style: number
&emsp; &emsp;
1. [[@Restaurants Zürich|Restaurants in Zürich]] 1. [[@Restaurants Zürich|Restaurants in Zürich]]
2. [[@Sport Zürich|Sport in Zürich]]
3. [[@Bars Zürich|Bars in Zürich]]
&emsp; &emsp;
@ -98,13 +98,13 @@ id EditMetaData
&emsp; &emsp;
```dataviewjs ```dataviewjs
dv.view("00.01 Admin/dv-views/print_placesearch", {placetype: dv.current().QPType, dateadded: dv.current().QPDAdded, style: dv.current().QPStyle, ambiance: dv.current().QPAmbiance, area: dv.current().QPArea, theme: dv.current().QPKeyword, country: "Suisse", status: dv.current().QPStatus}) dv.view("00.01 Admin/dv-views/print_placesearch", {placetype: dv.current().QPType, dateadded: dv.current().QPDAdded, style: dv.current().QPStyle, ambiance: dv.current().QPAmbiance, area: dv.current().QPArea, theme: dv.current().QPKeyword, country: "CH", status: dv.current().QPStatus})
``` ```
&emsp; &emsp;
```dataviewjs ```dataviewjs
dv.view("00.01 Admin/dv-views/query_place", {placetype: dv.current().QPType, dateadded: dv.current().QPDAdded, style: dv.current().QPStyle, ambiance: dv.current().QPAmbiance, area: dv.current().QPArea, theme: dv.current().QPKeyword, country: "Suisse", status: dv.current().QPStatus}) dv.view("00.01 Admin/dv-views/query_place", {placetype: dv.current().QPType, dateadded: dv.current().QPDAdded, style: dv.current().QPStyle, ambiance: dv.current().QPAmbiance, area: dv.current().QPArea, theme: dv.current().QPKeyword, country: "CH", status: dv.current().QPStatus})
``` ```
&emsp; &emsp;

@ -111,7 +111,7 @@ dv.view("00.01 Admin/dv-views/query_place", {country: "Suisse", placetype: "Rest
&emsp; &emsp;
#### Marais #### Bellevue
[[#^Top|TOP]] [[#^Top|TOP]]
```dataviewjs ```dataviewjs
dv.view("00.01 Admin/dv-views/query_place", {country: "CH", placetype: "Restaurant", area: "Bellevue"}) dv.view("00.01 Admin/dv-views/query_place", {country: "CH", placetype: "Restaurant", area: "Bellevue"})
@ -119,10 +119,10 @@ dv.view("00.01 Admin/dv-views/query_place", {country: "CH", placetype: "Restaura
&emsp; &emsp;
#### Quartier Latin #### TiefBrunnen
[[#^Top|TOP]] [[#^Top|TOP]]
```dataviewjs ```dataviewjs
dv.view("00.01 Admin/dv-views/query_place", {country: "Suisse", placetype: "Restaurant", area: ["Quartier Latin", "QuartierLatin"]}) dv.view("00.01 Admin/dv-views/query_place", {country: "CH", placetype: "Restaurant", area: "Tiefbrunnen"})
``` ```
&emsp; &emsp;

@ -0,0 +1,75 @@
---
cssclass: recipeTable
Alias: ["Sport in Zürich"]
Tag: ["Personal", "Lifestyle", "Sport"]
Date: 2021-10-04
DocType: "Personal"
Hierarchy: "Root2"
TimeStamp:
CollapseMetaTable: Yes
---
Parent:: [[Lifestyle]], [[@@Zürich|Zürich]]
---
&emsp;
```button
name Save
type command
action Save current file
id Save
```
^button-SpinZurichSave
&emsp;
# Sport in Zürich
&emsp;
```ad-abstract
title: Summary
collapse: open
Sport facilities in Zürich
```
&emsp;
```toc
style: number
```
&emsp;
---
&emsp;
### Polo
&emsp;
```dataviewjs
dv.view("00.01 Admin/dv-views/query_place", {country: "CH", placetype: "Sport", ambiance: "Polo"})
```
&emsp;
---
&emsp;
### Horse Riding
&emsp;
```dataviewjs
dv.view("00.01 Admin/dv-views/query_place", {country: "CH", placetype: "Sport", ambiance: "Riding"})
```
&emsp;
&emsp;

@ -0,0 +1,97 @@
---
Tag: ["Restaurant"]
Date: 2022-01-08
DocType: "Place"
Hierarchy: "NonRoot"
TimeStamp:
location: [47.3519503,8.5611316]
Place:
Type: "Restaurant"
SubType: Modern
Style: "Swiss"
Location: "Tiefbrunnen"
Country: "CH"
Status: "Prospect"
CollapseMetaTable: yes
---
Parent:: [[@@Zürich|Zürich]], [[@Restaurants Zürich|Restaurants in Zürich]]
&emsp;
`= elink("https://waze.com/ul?ll=" + this.location[0] + "%2C" + this.location[1] + "&navigate=yes", "Launch Waze")`
---
&emsp;
```button
name Save
type command
action Save current file
id Save
```
^button-BlaueEnteSave
&emsp;
# Blaue Ente
&emsp;
```ad-abstract
title: Summary
collapse: open
Note Description
```
&emsp;
```toc
style: number
```
&emsp;
---
&emsp;
### Contact
&emsp;
```ad-address
~~~
Mühle Tiefenbrunnen
Seefeldstrasse 223
8008 Zürich
Switzerland
~~~
```
&emsp;
Phone:: <a href="tel:+41443886840">+41 44 388 68 40</a>
Email::
Website:: [Restaurant Blaue Ente | Mühle Tiefenbrunnen](https://www.muehle-tiefenbrunnen.ch/blaue-ente)
&emsp;
---
&emsp;
### Notes
&emsp;
Loret ipsum
&emsp;
&emsp;

@ -0,0 +1,94 @@
---
Tag: ["Zürich", "Sport", "Riding"]
Date: 2022-01-08
DocType: "Place"
Hierarchy: "NonRoot"
TimeStamp:
location: [47.2668371,8.816238]
Place:
Type: Sport
SubType: Riding
Location: Bubikon
Country: CH
Status: Prospect
---
Parent:: [[@@Zürich|Zurich]]
&emsp;
`= elink("https://waze.com/ul?ll=" + this.location[0] + "%2C" + this.location[1] + "&navigate=yes", "Launch Waze")`
---
&emsp;
```button
name Save
type command
action Save current file
id Save
```
^button-GestuetHombergSave
&emsp;
# Gestuet Homberg
&emsp;
```ad-abstract
title: Summary
collapse: open
Note Description
```
&emsp;
```toc
style: number
```
&emsp;
---
&emsp;
### Contact
&emsp;
```ad-address
~~~
Bürgstrasse 51
CH - 8608 Bubikon
Switzerland
~~~
```
&emsp;
Phone:: <a href="tel:+41793189365">+41 79 318 93 65</a>
Email:: rudolf.guyer@gestuet-homberg.ch
Website:: [ Horse riding offer](https://www.gestuet-homberg.ch/en/horse-riding-offer)
&emsp;
---
&emsp;
### Notes
&emsp;
Found by [[MRCK|Megan Rose]]
&emsp;
&emsp;

@ -13,10 +13,11 @@ Place:
Location: "Bellevue" Location: "Bellevue"
Country: "CH" Country: "CH"
Status: "Prospect" Status: "Prospect"
CollapseMetaTable: yes
--- ---
Parent:: [[@Restaurants Zürich|Restaurants in Zürich]] Parent:: [[@@Zürich|Zürich]], [[@Restaurants Zürich|Restaurants in Zürich]]
&emsp; &emsp;

@ -53,6 +53,7 @@ style: number
&emsp; &emsp;
Fischerstube Fischerstube
Blaue Ente
&emsp; &emsp;

Loading…
Cancel
Save