main
iOS 3 years ago
parent d4e7d7507e
commit bae6240439

@ -40,5 +40,6 @@
"obsidian-journey-plugin",
"link-favicon",
"matter",
"longform"
"longform",
"obsidian-reminder-plugin"
]

@ -183,7 +183,7 @@
"current": {
"year": 2021,
"month": 11,
"day": 17
"day": 23
},
"events": [
{
@ -957,11 +957,7 @@
"day": 28,
"month": 1
},
"category": "ID_a93b8bba4be8",
"end": {
"day": 28,
"month": 1
}
"category": "ID_a93b8bba4be8"
},
{
"id": "ID_c9baf87b7b98",
@ -1037,7 +1033,7 @@
"name": "Task"
}
],
"date": 1639464365216
"date": 1639896126205
}
],
"currentCalendar": null,

File diff suppressed because one or more lines are too long

@ -1,7 +1,7 @@
{
"id": "obsidian-itinerary",
"name": "Itinterary",
"version": "1.2.0",
"name": "Itinerary",
"version": "1.3.0",
"minAppVersion": "0.11.10",
"description": "Make planning your trip or event easier by rendering a calendar from event information found in your notes.",
"author": "Adam Coddington <me@adamcoddington.net>",

@ -708,6 +708,23 @@ A VERTICAL event
background: #fff;
background: var(--fc-page-bg-color, #fff); /* for when headers are styled to be transparent and sticky */
}
.fc {
/* only exists for aria reasons, hide for non-screen-readers */
}
.fc .fc-list-table thead {
position: absolute;
left: -10000px;
}
.fc {
/* the table's border-style:hidden gets confused by hidden thead. force-hide top border of first cell */
}
.fc .fc-list-table tbody > tr:first-child th {
border-top: 0;
}
.fc .fc-list-table th {
padding: 0; /* uses an inner-wrapper instead... */
}
@ -1318,14 +1335,17 @@ a.fc-event:hover {
bottom: -20px;
}
/* selecting (always TOUCH) */
/* OR, focused by tab-index */
/* (TODO: maybe not the best focus-styling for .fc-daygrid-dot-event) */
/* ---------------------------------------------------------------------------------------------------- */
.fc-event-selected {
.fc-event-selected,
.fc-event:focus {
box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2)
/* expand hit area (subclasses should expand) */
}
.fc-event-selected:before {
.fc-event-selected:before, .fc-event:focus:before {
content: "";
position: absolute;
z-index: 3;
@ -1334,12 +1354,13 @@ a.fc-event:hover {
right: 0;
bottom: 0;
}
.fc-event-selected {
.fc-event-selected,
.fc-event:focus {
/* dimmer effect */
}
.fc-event-selected:after {
.fc-event-selected:after, .fc-event:focus:after {
content: "";
background: rgba(0, 0, 0, 0.25);
background: var(--fc-event-selected-overlay-color, rgba(0, 0, 0, 0.25));
@ -1418,29 +1439,29 @@ A HORIZONTAL event
.fc-direction-rtl .fc-h-event:not(.fc-event-selected) .fc-event-resizer-end {
cursor: w-resize;
left: -4px;
left: calc(var(--fc-event-resizer-thickness, 8px) / -2);
left: calc(-0.5 * var(--fc-event-resizer-thickness, 8px));
}
.fc-direction-ltr .fc-h-event:not(.fc-event-selected) .fc-event-resizer-end,
.fc-direction-rtl .fc-h-event:not(.fc-event-selected) .fc-event-resizer-start {
cursor: e-resize;
right: -4px;
right: calc(var(--fc-event-resizer-thickness, 8px) / -2);
right: calc(-0.5 * var(--fc-event-resizer-thickness, 8px));
}
/* resizers for TOUCH */
.fc-h-event.fc-event-selected .fc-event-resizer {
top: 50%;
margin-top: -4px;
margin-top: calc(var(--fc-event-resizer-dot-total-width, 8px) / -2);
margin-top: calc(-0.5 * var(--fc-event-resizer-dot-total-width, 8px));
}
.fc-direction-ltr .fc-h-event.fc-event-selected .fc-event-resizer-start,
.fc-direction-rtl .fc-h-event.fc-event-selected .fc-event-resizer-end {
left: -4px;
left: calc(var(--fc-event-resizer-dot-total-width, 8px) / -2);
left: calc(-0.5 * var(--fc-event-resizer-dot-total-width, 8px));
}
.fc-direction-ltr .fc-h-event.fc-event-selected .fc-event-resizer-end,
.fc-direction-rtl .fc-h-event.fc-event-selected .fc-event-resizer-start {
right: -4px;
right: calc(var(--fc-event-resizer-dot-total-width, 8px) / -2);
right: calc(-0.5 * var(--fc-event-resizer-dot-total-width, 8px));
}
.fc .fc-popover {
position: absolute;

@ -0,0 +1,22 @@
{
"scanned": true,
"reminders": {},
"debug": false,
"settings": {
"reminderTime": "09:00",
"laters": "In 30 minutes\nIn 1 hour\nIn 3 hours\nTomorrow\nNext week",
"useSystemNotification": false,
"autoCompleteTrigger": "(@",
"primaryReminderFormat": "ReminderPluginReminderFormat",
"enableReminderPluginReminderFormat": true,
"dateFormat": "YYYY-MM-DD",
"dateTimeFormat": "YYYY-MM-DD HH:mm",
"strictDateFormat": false,
"linkDatesToDailyNotes": false,
"enableTasksPluginReminderFormat": false,
"useCustomEmojiForTasksPlugin": false,
"enableKanbanPluginReminderFormat": false,
"editDetectionSec": 10,
"reminderCheckIntervalSec": 5
}
}

File diff suppressed because one or more lines are too long

@ -0,0 +1,10 @@
{
"id": "obsidian-reminder-plugin",
"name": "Reminder",
"version": "1.1.3",
"minAppVersion": "0.12.12",
"description": "Reminder plugin for Obsidian. This plugin adds feature to manage TODOs with reminder.",
"author": "uphy",
"authorUrl": "https://obsidian.md/about",
"isDesktopOnly": false
}

File diff suppressed because one or more lines are too long

File diff suppressed because it is too large Load Diff

@ -1,7 +1,7 @@
{
"id": "rss-reader",
"name": "RSS Reader",
"version": "0.8.0",
"version": "0.9.1",
"minAppVersion": "0.9.12",
"description": "Read RSS Feeds from within obsidian",
"author": "Johannes Theiner",

@ -69,3 +69,8 @@ input.is-invalid {
.rss-subtitle {
display: inline;
}
/*action buttons on mobile should not take one line each*/
.is-mobile button.rss-button {
width: auto;
}

@ -9,7 +9,7 @@
"state": {
"type": "markdown",
"state": {
"file": "04.03 Creative snippets/Drafts/Draft 1/Introduction.md",
"file": "03.03 Food & Wine/@Main dishes.md",
"mode": "preview"
}
}
@ -76,7 +76,7 @@
"state": {
"type": "backlink",
"state": {
"file": "04.03 Creative snippets/Drafts/Draft 1/Introduction.md",
"file": "03.03 Food & Wine/@Main dishes.md",
"collapseAll": false,
"extraContext": false,
"sortOrder": "alphabetical",
@ -112,26 +112,35 @@
}
},
{
"id": "423db06a49dba199",
"id": "94e7f78d3bc93ce7",
"type": "leaf",
"state": {
"type": "RSS_FEED",
"state": {}
}
},
{
"id": "03ec05e66b85ebba",
"type": "leaf",
"state": {
"type": "reminder-list",
"state": {}
}
]
}
],
"currentTab": 4
},
"active": "f02b54d5135a4e7e",
"lastOpenFiles": [
"04.03 Creative snippets/Drafts/Draft 1/Introduction.md",
"03.02 Travels/@Travels.md",
"04.03 Creative snippets/Index.md",
"04.03 Creative snippets/Character1.md",
"03.03 Food & Wine/@Main dishes.md",
"03.03 Food & Wine/Pasta e Ceci.md",
"03.03 Food & Wine/@@Recipes.md",
"01.02 Home/MRCK.md",
"06.02 Investments/@Investment Task master.md",
"01.01 Life Orga/Finances.md",
"01.01 Life Orga/@Life Organisation.md",
"01.01 Life Orga/Voitures.md",
"01.01 Life Orga/Creations.md",
"01.02 Home/2021-12-04 MRCK - lil dialogue.md",
"05.02 Networks/Server Tools.md",
"01.01 Life Orga/Lifestyle.md"
"02.02 Paris/Brach Hotel.md",
"02.02 Paris/@@Paris.md",
"00.01 Admin/Templates/NewFile1.md"
]
}

@ -1,8 +1,8 @@
class templaterFunc {
createNewFile(tp, templatelist) {
const fileName = await tp.system.prompt("File name")
const templateName = await tp.system.suggester(templatelist, templatelist)
return tp.file.create_new(tp.file.find_tfile("Template ") + templateName, fileName, tp.file.folder())
const fileName = await tp.system.prompt("File name");
const templateName = await tp.system.suggester(templatelist, templatelist);
return tp.file.create_new(tp.file.find_tfile("Template " + templateName), fileName, tp.file.folder())
}
}

@ -19,3 +19,4 @@ tempResult = tempResult + ", " + amount + radicale
await update(listName, tempResult, tp.file.find_tfile("@Shopping list"));
%>

@ -0,0 +1,26 @@
---
Characters:
-
Places:
-
Notes:
-
---
%%
So this is going to be a bit that does not count towards word count.
But is not strictly frontmatter
%%
```button
name Save
type command
action Save current file
id Save
```
# <% tp.file.title %>

@ -27,53 +27,10 @@ color blue
templater true
```
const {templaterFunc} = this.app.plugins.plugins["customjs"].api
templaterFunc.createNewFile(tp, tp.frontmatter.ChildrenType)
tp.file.content.replace(/[\w\W]+?\n+?/,"")
%>
const {templaterFunc} = this.app.plugins.plugins["CustomJS"].customJS
templaterFunc.createNewFile(tp, tp.frontmatter.ChildrenType)
tp.file.content.replace(/[\w\W]+?\n+?/,"")
%>
const {templaterFunc} = this.app.plugins.plugins["CustomJS"].customJS
templaterFunc.createNewFile(tp, tp.frontmatter.ChildrenType)
%>
const {templaterFunc} = this.app.plugins.plugins["CustomJS"].api.customJS
templaterFunc.createNewFile(tp, tp.frontmatter.ChildrenType)
%>
const templaterFunc = this.app.plugins.plugins["CustomJS"].api.customJS
templaterFunc.createNewFile(tp, tp.frontmatter.ChildrenType)
%>
const templaterFunc = this.app.plugins.plugins["CustomJS"].customJS
templaterFunc.createNewFile(tp, tp.frontmatter.ChildrenType)
%>
const {templaterFunc} = this.app.plugins.plugins["CustomJS"].customJS
templaterFunc.createNewFile(tp, tp.frontmatter.ChildrenType)
%>
const {templaterFunc} = this.app.plugins.plugins["CustomJS"].api.customJS
templaterFunc.createNewFile(tp, tp.frontmatter.ChildrenType)
%>
const {templaterFunc} = this.app.plugins.plugins["CustomJS"].customJS
templaterFunc.createNewFile(tp, tp.frontmatter.ChildrenType)
%>
const {templaterFunc} = this.app.plugins.plugins["CustomJS"]
templaterFunc.createNewFile(tp, tp.frontmatter.ChildrenType)
%>
tR += const {templaterFunc} = this.app.plugins.plugins["CustomJS"]
templaterFunc.createNewFile(tp, tp.frontmatter.ChildrenType)
%>
tR += const {templaterFunc} = this.app.plugins.plugins["customJS"]
templaterFunc.createNewFile(tp, tp.frontmatter.ChildrenType)

@ -146,6 +146,7 @@ Paris, Zürich, London
60's is their best decade
Florists: Fjura, Still Life
***Le labo***: Another 13
&emsp;

@ -48,6 +48,8 @@ id CreateNote
```button
name Save
type command

@ -0,0 +1,90 @@
---
Tag: ["Hotel", "Starck"]
Date: 2021-12-18
DocType: "Place"
Hierarchy: "NonRoot"
TimeStamp:
location: [48.8614292,2.2750172]
Place:
Type: "Hotel"
SubType: "Design"
Style: "French"
Location: "LaMuette"
Country: "France"
Status: "Prospect"
---
Parent:: [[@@Paris|Paris]], [[@Hotels Paris|Hotels in Paris]]
---
&emsp;
```button
name Save
type command
action Save current file
id Save
```
^button-BrachHotelSave
&emsp;
# Brach Hotel
&emsp;
```ad-abstract
title: Summary
collapse: open
Note Description
```
&emsp;
```toc
style: number
```
&emsp;
---
&emsp;
### Contact
&emsp;
```ad-address
~~~
1-7 RUE JEAN RICHEPIN
75016 PARIS
FRANCE
~~~
```
&emsp;
Phone:: <a href="tel:+33144301000">01 44 30 10 00</a>
Email:: [CONTACT@BRACHPARIS.COM](mailto:contact@brachparis.com)
Website:: [BRACH, Luxury design hotel 5 stars by Starck - Paris 16 - EVOK Hotels](https://brachparis.com/?lang=en)
&emsp;
---
&emsp;
### Notes
&emsp;
Loret ipsum
&emsp;
&emsp;

@ -46,6 +46,8 @@ id CreateNote
```button
name Save
type command

@ -0,0 +1,136 @@
---
ServingSize: 6
cssclass: recipeTable
Tag: ["Quick", "Easy", "Healthy"]
Date: 2021-09-21
DocType: "Recipe"
Hierarchy: "NonRoot"
location: [47.3639129,8.55627491017841]
CollapseMetaTable: Yes
Meta:
IsFavourite: False
Rating:
Recipe:
Courses: "Main dish"
Categories: "Pasta"
Collections: "Italian"
Source: https://www.thekitchn.com/easy-pasta-and-beans-257210
PreparationTime:
CookingTime: 20
OServingSize: 6
Ingredients:
- 2 tablespoons olive oil
- 1 small yellow onion, diced
- 1 pound dried orzo pasta
- 2 cloves garlic, minced
- 1 pinch Kosher salt
- 1 pinch Freshly ground black pepper
- 4 cups low-sodium chicken or vegetable broth
- 1 can crushed tomatoes or tomato purée
- 2 cans chickpeas, drained and rinsed
- 0.5 cup finely grated Parmesan cheese, plus more for serving
- 0.25 cup loosely packed chopped fresh basil leaves
---
Parent:: [[@@Recipes|Recipes]], [[@Main dishes|Main dishes]]
---
&emsp;
```button
name Edit Recipe parameters
type command
action MetaEdit: Run MetaEdit
id EditMetaData
```
^button-PastaeCeciEdit
```button
name Save
type command
action Save current file
id Save
```
^button-PastaeCeciNSave
&emsp;
# Pasta e Ceci
&emsp;
```toc
style: number
```
&emsp;
---
&emsp;
### Practical Informations
| |
|-|-
**Courses**: | `$=dv.current().Recipe.Courses`
**Categories**: | `$=dv.current().Recipe.Categories`
**Collections**: | `$=dv.current().Recipe.Collections`
**Serving size**: | `$=dv.current().ServingSize`
**Cooking time**: | `$=dv.current().Recipe.CookingTime` min
&emsp;
---
&emsp;
### Ingredients
&emsp;
```dataviewjs
dv.view("00.01 Admin/dv-views/query_ingredient", {ingredients: dv.current().Ingredients, originalportioncount: dv.current().Recipe.OServingSize})
```
&emsp;
---
&emsp;
### Instructions
&emsp;
```ad-tip
title: Tips from the chef
**Add extra vegetables:** If you want to add extra vegetables to punch up this one-pot meal, stir in a 12-ounce bag of spinach or corn kernels at the end of cooking. Heat just until warmed through.
**Storage:** Leftovers can be stored in an airtight container and refrigerated for up to 3 days.
```
&emsp;
1. Heat the oil in a large Dutch oven or pot over medium-high heat until shimmering. Add the onion and sauté until softened and fragrant, about 3 minutes.
&emsp;
2. Add the orzo and garlic, season with salt and pepper, and sauté until fragrant, about 1 minute.
&emsp;
3. Stir in the broth, tomatoes, and chickpeas and bring to a boil. Cover, reduce to a simmer, and cook, stirring frequently so that the orzo doesnt stick, until most of the liquid is absorbed and the pasta is al dente, about 10 minutes or according to package instructions. (If the pasta isnt completely cooked at this point, add another splash or two of broth or water to the pot and continue to simmer until it has.)
&emsp;
4. Stir in the Parmesan cheese. Taste and season with salt and pepper as needed. Garnish with the chopped basil and additional grated cheese, if desired.
&emsp;
&emsp;

@ -1,18 +1,9 @@
---
Characters:
- Protagonist
- Girlfriend
- Father
- Mother
- Sister1
- Brother1
- Friend1
- Friend2
-
Places:
- Parent's flat
- Street
- Transport
-
Notes:
-

@ -60,7 +60,11 @@ All tasks and to-dos Crypto-related.
[[#^Top|TOP]]
&emsp;
- [ ] [[Crypto Tasks#internet alerts|monitor Crypto news and publications]] 🔁 every week on Friday 📅 2021-11-26
- [ ] [[Crypto Tasks#internet alerts|monitor Crypto news and publications]] 🔁 every week on Friday 📅 2021-12-24
- [x] [[Crypto Tasks#internet alerts|monitor Crypto news and publications]] 🔁 every week on Friday 📅 2021-12-17 ✅ 2021-12-18
- [x] [[Crypto Tasks#internet alerts|monitor Crypto news and publications]] 🔁 every week on Friday 📅 2021-12-10 ✅ 2021-12-18
- [x] [[Crypto Tasks#internet alerts|monitor Crypto news and publications]] 🔁 every week on Friday 📅 2021-12-03 ✅ 2021-12-18
- [x] [[Crypto Tasks#internet alerts|monitor Crypto news and publications]] 🔁 every week on Friday 📅 2021-11-26 ✅ 2021-12-18
- [x] [[Crypto Tasks#internet alerts|monitor Crypto news and publications]] 🔁 every week on Friday 📅 2021-11-19 ✅ 2021-12-12
- [x] [[Crypto Tasks#internet alerts|monitor Crypto news and publications]] 🔁 every week on Friday 📅 2021-11-12 ✅ 2021-12-04
- [x] [[Crypto Tasks#internet alerts|monitor Crypto news and publications]] 🔁 every week on Friday 📅 2021-11-05 ✅ 2021-10-29

@ -60,7 +60,11 @@ Note summarising all tasks and to-dos for Listed Equity investments.
[[#^Top|TOP]]
&emsp;
- [ ] [[Equity Tasks#internet alerts|monitor Equity news and publications]] 🔁 every week on Friday 📅 2021-11-26
- [ ] [[Equity Tasks#internet alerts|monitor Equity news and publications]] 🔁 every week on Friday 📅 2021-12-24
- [x] [[Equity Tasks#internet alerts|monitor Equity news and publications]] 🔁 every week on Friday 📅 2021-12-17 ✅ 2021-12-18
- [x] [[Equity Tasks#internet alerts|monitor Equity news and publications]] 🔁 every week on Friday 📅 2021-12-10 ✅ 2021-12-18
- [x] [[Equity Tasks#internet alerts|monitor Equity news and publications]] 🔁 every week on Friday 📅 2021-12-03 ✅ 2021-12-18
- [x] [[Equity Tasks#internet alerts|monitor Equity news and publications]] 🔁 every week on Friday 📅 2021-11-26 ✅ 2021-12-18
- [x] [[Equity Tasks#internet alerts|monitor Equity news and publications]] 🔁 every week on Friday 📅 2021-11-19 ✅ 2021-12-12
- [x] [[Equity Tasks#internet alerts|monitor Equity news and publications]] 🔁 every week on Friday 📅 2021-11-12 ✅ 2021-12-12
- [x] [[Equity Tasks#internet alerts|monitor Equity news and publications]] 🔁 every week on Friday 📅 2021-11-05 ✅ 2021-12-04

@ -60,7 +60,11 @@ Tasks and to-dos for VC investments.
[[#^Top|TOP]]
&emsp;
- [ ] [[VC Tasks#internet alerts|monitor VC news and publications]] 🔁 every week on Friday 📅 2021-11-26
- [ ] [[VC Tasks#internet alerts|monitor VC news and publications]] 🔁 every week on Friday 📅 2021-12-24
- [x] [[VC Tasks#internet alerts|monitor VC news and publications]] 🔁 every week on Friday 📅 2021-12-17 ✅ 2021-12-18
- [x] [[VC Tasks#internet alerts|monitor VC news and publications]] 🔁 every week on Friday 📅 2021-12-10 ✅ 2021-12-18
- [x] [[VC Tasks#internet alerts|monitor VC news and publications]] 🔁 every week on Friday 📅 2021-12-03 ✅ 2021-12-18
- [x] [[VC Tasks#internet alerts|monitor VC news and publications]] 🔁 every week on Friday 📅 2021-11-26 ✅ 2021-12-18
- [x] [[VC Tasks#internet alerts|monitor VC news and publications]] 🔁 every week on Friday 📅 2021-11-19 ✅ 2021-12-12
- [x] [[VC Tasks#internet alerts|monitor VC news and publications]] 🔁 every week on Friday 📅 2021-11-12 ✅ 2021-12-12
- [x] [[VC Tasks#internet alerts|monitor VC news and publications]] 🔁 every week on Friday 📅 2021-11-05 ✅ 2021-12-04

Loading…
Cancel
Save