main
iOS 3 years ago
parent 321b876685
commit c6ea86ed0a

@ -95,6 +95,6 @@
"repelStrength": 10,
"linkStrength": 1,
"linkDistance": 250,
"scale": 1.4476345024408592,
"scale": 0.30286049796061026,
"close": true
}

@ -183,7 +183,7 @@
"current": {
"year": 2021,
"month": 11,
"day": 5
"day": 6
},
"events": [
{
@ -676,6 +676,7 @@
"month": 11,
"day": 15
},
"category": "ID_3b8a489a19da",
"end": {
"year": 2021,
"month": 11,
@ -707,6 +708,7 @@
"month": 0,
"day": 2
},
"category": "ID_3b8a489a19da",
"end": {
"year": 2022,
"month": 0,
@ -722,6 +724,7 @@
"month": 0,
"day": 30
},
"category": "ID_3b8a489a19da",
"end": {
"year": 2022,
"month": 0,
@ -954,7 +957,11 @@
"day": 28,
"month": 1
},
"category": "ID_a93b8bba4be8"
"category": "ID_a93b8bba4be8",
"end": {
"day": 28,
"month": 1
}
},
{
"id": "ID_c9baf87b7b98",
@ -966,6 +973,17 @@
},
"category": "ID_a93b8bba4be8"
},
{
"id": "ID_f8294b588ad8",
"name": "Template Task",
"note": "00.01 Admin/Templates/Template Task.md",
"date": {
"day": null,
"month": null,
"year": null
},
"category": "ID_3b8a489a19da"
},
{
"id": "ID_39284918f8ba",
"name": "Jérôme Bédier",
@ -1019,7 +1037,7 @@
"name": "Task"
}
],
"date": 1638689229104
"date": 1638751862853
}
],
"currentCalendar": null,

File diff suppressed because one or more lines are too long

@ -1,7 +1,7 @@
{
"id": "fantasy-calendar",
"name": "Fantasy Calendar",
"version": "1.9.0",
"version": "1.10.0",
"minAppVersion": "0.12.10",
"author": "Jeremy Valentine",
"description": "Fantasy calendars in Obsidian!",

@ -193,8 +193,11 @@
grid-column: span 3;
}
.fantasy-calendar-date-fields-heading {
padding-bottom: 0;
}
.fantasy-calendar-create-calendar .fantasy-calendar-date-fields {
padding-top: 0.75rem;
padding-top: 0;
}
.fantasy-calendar-date-fields {
display: flex;

@ -89,6 +89,19 @@
},
"command": false,
"title": "Birthday"
},
"credentials": {
"type": "credentials",
"color": "118, 187, 64",
"icon": {
"name": "user-lock",
"type": "font-awesome"
},
"command": false,
"title": "Credentials",
"injectColor": true,
"noTitle": false,
"copy": true
}
},
"syntaxHighlight": false,

File diff suppressed because one or more lines are too long

@ -1,7 +1,7 @@
{
"id": "obsidian-metatable",
"name": "Metatable",
"version": "0.10.4",
"version": "0.11.0",
"minAppVersion": "0.12.19",
"description": "Displays the full frontmatter as a table.",
"author": "Arnau Siches",

@ -1,3 +1,258 @@
/* Obsidian metatble styles */
/* Styles are wrapped inside a shadow DOM. If you want to see them go to https://github.com/arnau/obsidian-metatable/blob/main/src/metatable.css */
/* The styles below are an example that can get you started with the Naked
* option
*/
/*
.theme-light .obsidian-metatable {
--metatable-foreground: var(--text-muted, darkslategrey);
--metatable-key-background: var(--background-primary-alt, #f3f3f3);
--metatable-key-border-color: var(--background-modifier-border, lightgrey);
--metatable-key-border-color-focus: orange;
--metatable-key-focus: var(--background-match-highlight, lightyellow);
--metatable-tag-background: var(--background-primary-alt, #f3f3f3);
--metatable-link-color: var(--text-accent, #705dcf);
--metatable-link-color-hover: var(--text-accent-hover, #8875ff);
}
.theme-dark .obsidian-metatable {
--metatable-foreground: var(--text-muted, #999);
--metatable-key-background: var(--background-primary-alt, #111);
--metatable-key-border-color: var(--background-modifier-border, #333);
--metatable-key-border-color-focus: orange;
--metatable-key-focus: black;
--metatable-tag-background: var(--background-primary-alt, #111);
--metatable-link-color: var(--text-accent, #705dcf);
--metatable-link-color-hover: var(--text-accent-hover, #8875ff);
}
.obsidian-metatable {
--metatable-collapsed-symbol: "▶︎";
--metatable-expanded-symbol: "▼";
--metatable-font-family: var(--text, sans-serif);
--metatable-font-size: var(--font-small, 13px);
--metatable-key-border-width: 2px;
--metatable-mark-symbol: "…";
--metatable-value-background: transparent;
--metatable-background: transparent;
--metatable-tag-symbol: "";
--metatable-external-link-icon: url(app://obsidian.md/public/images/874d8b8e340f75575caa.svg);
--metatable-external-link-color: var(--metatable-link-color);
--metatable-external-link-color-hover: var(--metatable-link-color-hover);
--metatable-internal-link-icon: none;
--metatable-internal-link-color: var(--metatable-link-color);
--metatable-internal-link-color-hover: var(--metatable-link-color-hover);
}
.obsidian-metatable * {
box-sizing: border-box;
}
.obsidian-metatable details {
background-color: var(--metatable-background);
color: var(--metatable-foreground);
font-family: var(--metatable-font-family);
font-size: var(--metatable-font-size);
}
.obsidian-metatable summary {
cursor: pointer;
}
.obsidian-metatable summary:focus {
outline: none;
}
.obsidian-metatable summary:focus-visible {
outline: none;
background-color: var(--metatable-key-focus)
}
.obsidian-metatable .set {
background-color: var(--metatable-background);
display: grid;
grid-gap: 2px;
margin-top: 0.4rem;
}
.obsidian-metatable .member {
display: grid;
grid-gap: 2px;
grid-template-columns: minmax(0, 1fr) minmax(0, 4fr);
grid-template-areas: "key value";
}
.obsidian-metatable .key[role=button] {
cursor: pointer;
}
.obsidian-metatable .member .key {
background-color: var(--metatable-key-background);
border: none;
border-right: var(--metatable-key-border-width) solid var(--metatable-key-border-color);
display: grid;
grid-template-columns: 10px auto;
grid-gap: 0.4rem;
font-weight: bold;
grid-area: key;
overflow: hidden;
padding: 0.4rem;
text-align: left;
text-overflow: ellipsis;
white-space: nowrap;
}
.obsidian-metatable .member .value {
border: none;
background-color: var(--metatable-value-background);
grid-area: value;
margin: 0;
overflow: auto;
padding: 0.4rem;
}
.obsidian-metatable .member .key:focus {
outline: none;
}
.obsidian-metatable .member .key:focus-visible {
outline: none;
border-right-color: var(--metatable-key-border-color-focus);
background-color: var(--metatable-key-focus);
}
.obsidian-metatable .value ul {
margin: 0;
padding: 0;
}
.obsidian-metatable .value li {
margin-left: 1rem;
}
.obsidian-metatable .key[aria-expanded]::before {
font-size: 0.6rem;
padding-top: 0.3rem;
}
.obsidian-metatable .key[aria-expanded=true]::before {
content: var(--metatable-expanded-symbol);
}
.obsidian-metatable .key[aria-expanded=false]::before {
content: var(--metatable-collapsed-symbol);
}
.obsidian-metatable .key[aria-expanded=false] + .value > :first-child {
display: none;
}
.obsidian-metatable .key[aria-expanded=false] + .value > .marker::after {
content: var(--metatable-mark-symbol);
display: block;
}
@media screen and (min-width: 400px) and (max-width: 550px) {
.obsidian-metatable .member {
grid-template-columns: minmax(0, 1.5fr) minmax(0, 3fr);
}
.obsidian-metatable .member .member {
grid-template-areas: "key key" "value value";
}
.obsidian-metatable .member .member .key {
border-right: none;
border-bottom: var(--metatable-key-border-width) solid var(--metatable-key-border-color);
}
}
@media screen and (max-width: 400px) {
.obsidian-metatable .member {
grid-template-areas: "key key" "value value";
}
.obsidian-metatable .member .key {
border-right: none;
border-bottom: var(--metatable-key-border-width) solid var(--metatable-key-border-color);
}
}
.obsidian-metatable .tag-list li {
display: inline-block;
margin: 0 0.4rem 0 2px;
}
.obsidian-metatable .tag {
background-color: var(--metatable-tag-background);
border-radius: 1rem;
color: var(--metatable-foreground);
display: inline-block;
padding: 0.1rem 0.6rem;
text-decoration: none;
}
.obsidian-metatable .tag::before {
content: var(--metatable-tag-symbol);
}
.obsidian-metatable .tag:hover {
filter: brightness(0.8);
}
.obsidian-metatable .tag:focus,
.obsidian-metatable .external-link:focus,
.obsidian-metatable .internal-link:focus {
outline: none;
}
.obsidian-metatable .tag:focus-visible,
.obsidian-metatable .external-link:focus-visible,
.obsidian-metatable .internal-link:focus-visible {
outline: none;
background-color: var(--metatable-key-focus)
}
.obsidian-metatable .external-link {
color: var(--metatable-external-link-color);
display: inline-block;
white-space: nowrap;
}
.obsidian-metatable .external-link::after {
content: var(--metatable-external-link-icon);
display: inline-block;
margin-left: 0.3rem;
vertical-align: sub;
}
.obsidian-metatable .external-link:hover {
color: var(--metatable-external-link-color-hover);
}
.obsidian-metatable .internal-link {
color: var(--metatable-internal-link-color);
display: inline-block;
overflow: hidden;
text-overflow: ellipsis;
max-width: 450px;
white-space: nowrap;
}
.obsidian-metatable .internal-link::after {
content: var(--metatable-internal-link-icon);
display: inline-block;
margin-left: 0.3rem;
vertical-align: sub;
}
.obsidian-metatable .internal-link:hover {
color: var(--metatable-internal-link-color-hover);
}
*/

File diff suppressed because one or more lines are too long

@ -40,7 +40,7 @@ div[data-path="02.02 Paris"] .nav-folder-title-content::before
div[data-path="02.03 Zürich"] .nav-folder-title-content::before
{
content: "🧀 ";
content: "🇨🇭 ";
}
div[data-path="03.01 Reading list"] .nav-folder-title-content::before

@ -9,7 +9,7 @@
"state": {
"type": "markdown",
"state": {
"file": "01.02 Home/MRCK.md",
"file": "01.02 Home/Pooch list.md",
"mode": "preview"
}
}
@ -68,7 +68,7 @@
"state": {
"type": "backlink",
"state": {
"file": "01.02 Home/MRCK.md",
"file": "01.02 Home/Pooch list.md",
"collapseAll": false,
"extraContext": false,
"sortOrder": "alphabetical",
@ -96,18 +96,18 @@
}
},
{
"id": "33ee039cda42cc0d",
"id": "bda35bb1b7e69269",
"type": "leaf",
"state": {
"type": "FANTASY_CALENDAR",
"type": "DICE_ROLLER_VIEW",
"state": {}
}
},
{
"id": "bda35bb1b7e69269",
"id": "66a329e784f6884b",
"type": "leaf",
"state": {
"type": "DICE_ROLLER_VIEW",
"type": "FANTASY_CALENDAR",
"state": {}
}
}
@ -115,15 +115,15 @@
},
"active": "e8d1a34590cd1804",
"lastOpenFiles": [
"01.02 Home/Pooch list.md",
"01.01 Life Orga/Lifestyle.md",
"01.02 Home/MRCK.md",
"01.01 Life Orga/@Life Organisation.md",
"01.01 Life Orga/Creations.md",
"01.03 Family/Aglaé de Villeneuve.md",
"01.03 Family/Timothée Bédier.md",
"01.03 Family/Thaïs Bédier.md",
"01.03 Family/Séraphine Priso Le Bastart.md",
"01.03 Family/Quentin de Villeneuve.md",
"01.03 Family/Pierre Bédier.md",
"01.03 Family/Philomène de Villeneuve.md"
"04.02 freemind.codes/Working note.md",
"03.02 Travels/Travel guides.md",
"03.02 Travels/Short breaks.md",
"03.02 Travels/Recommendation list (Bruxelles).md",
"03.02 Travels/@Travels.md",
"00.03 News/News.md"
]
}

@ -78,7 +78,7 @@ style: number
 
Loret ipsum
Recommendation by [[MRCK|Boubinou]]
 
 

@ -72,7 +72,7 @@ style: number
 
Loret ipsum
Recommendation by [[MRCK|Boubinou]]
 
 

@ -1,10 +1,15 @@
---
Alias: [""]
Tag: [""]
Tag: ["Imagination", "FreeWriting"]
Date: 2021-12-05
DocType:
DocType: "Confidential"
ChildrenType:
- Note
- Person
- Place
- Source
- Task
- Travel
Hierarchy: "Root"
location:
CollapseMetaTable: Yes

@ -0,0 +1,126 @@
---
Tag: ["Pooch", "Pet"]
Date: 2021-12-06
DocType: Confidential
Hierarchy: NonRoot
TimeStamp:
location: Zürich
CollapseMetaTable: Yes
---
Parent:: [[MRCK|Boubinou]], [[Lifestyle]]
---
 
```button
name Save
type command
action Save current file
id Save
```
^button-PoochlistNSave
 
# Pooch list
 
```ad-abstract
title: Summary
collapse: open
Note Description
```
 
```toc
style: number
```
 
---
 
### Italian greyhound
 
![](https://www.animalkingdomaz.com/wp-content/uploads/italian-greyhound-1.jpg)
```ad-info
Price: £700
```
 
---
 
### Italian whippet
 
![](https://www.thetrendywhippet.co.uk/wp-content/uploads/2017/10/IMG_2274-800x800.jpg)
```ad-info
Price: £700
```
 
---
 
### Bedlington whippet
 
![](https://i.pinimg.com/originals/23/c5/61/23c561f0a7bad5b186a60a136143406b.jpg)
```ad-info
Price: £700
```
 
---
 
### Pomeranian
 
![](https://www.breedyourdog.com/uploads/listing_images/46531/121695/big_listing_image_1611828802_1.jpeg)
```ad-info
Price: £700
```
 
---
 
### Pomsky
 
![](https://caniprof.com/wp-content/uploads/2019/01/pomsky-chien.jpg)
```ad-info
Price: £700
```
 
 

@ -74,12 +74,7 @@ style: number
[[#^Top|TOP]]
 
1. [[@Restaurants Paris|Restaurants in Paris]]
2. [[@Bars Paris|Bars in Paris]]
3. [[@Hotels Paris|Hotels in Paris]]
4. [[@Sport Paris|Sport in Paris]]
5. [[@Expositions, concerts et activités|Expositions, concerts et activités]]
6. [[@Media France|Media en France]]
1. [[@Restaurants Zürich|Restaurants in Zürich]]
 

@ -73,6 +73,7 @@ style: number
#### Milan
1. Factory shops (Boggi, others...)
Favourite of my [[MRCK|Boubinou]]
 
@ -96,6 +97,8 @@ style: number
#### Alsace
Favourite of my [[MRCK|Boubinou]]
 
---
@ -134,6 +137,8 @@ style: number
#### Madrid
Favourite of my [[MRCK|Boubinou]]
 
---
@ -156,10 +161,14 @@ style: number
#### Dresden
Favourite of my [[MRCK|Boubinou]]
 
#### Frankfurt
Favourite of my [[MRCK|Boubinou]]
 
---
@ -188,5 +197,7 @@ style: number
#### Krakow
Favourite of my [[MRCK|Boubinou]]
 
 

@ -1,33 +1,106 @@
**Similar idea**
---
Tag: ["freemind.codes", "Project"]
Date: 2021-12-05
DocType: "Confidential"
Hierarchy: "NonRoot"
TimeStamp:
location:
CollapseMetaTable: Yes
---
Parent::
---
 
```button
name Save
type command
action Save current file
id Save
```
^button-WorkingnoteNSave
 
# Working note
 
```ad-abstract
title: Summary
collapse: open
Note Description
```
 
```toc
style: number
```
 
---
 
### Similar idea
 
[https://github.com/indeedeng/FOSS-Contributor-Fund](https://github.com/indeedeng/FOSS-Contributor-Fund)
GitHub - indeedeng/FOSS-Contributor-Fund: This document outlines the processes we use to manage our FOSS Contributor Fund initiative at Indeed.
**Code**
 
---
 
### Resource
 
#### Code
[https://git.market/](https://git.market/)
[https://flippa.com/](https://flippa.com/)
[https://www.codester.com/](https://www.codester.com/)
[https://codecanyon.net/](https://codecanyon.net/)
[http://www.apkacode.com/](http://www.apkacode.com/) (not tested)
----
 
**App**
#### App
[https://www.sellmyapp.com/downloads/subcategory/utilities/](https://www.sellmyapp.com/downloads/subcategory/utilities/)
[https://ibuildapp.com/](https://ibuildapp.com/)
---
 
**Templates (html, apps, else)**
#### Templates (html, apps, else)
[https://www.templatemonster.com/](https://www.templatemonster.com/)
---
 
---
 
**Startup**
### Startup
 
```ad-credentials
title: creds
tuta @ StartUp@2021
```
[https://microacquire.com/](https://microacquire.com/)
@ -38,9 +111,17 @@ tuta @ StartUp@2021
[https://feinternational.com/](https://feinternational.com/)
------
 
---
 
**Idea**
### Idea
 
#### Concept
**freemind.codes
**
@ -75,7 +156,9 @@ areas of interest:
- S: Fair treatment of dev; opportunity for precarious dev
- G: open-source, bounty program, community cross-fertilisation
**Infra**
 
#### Infra
Server (x3 to 4): $200-400 p.a.
@ -91,4 +174,7 @@ Soft:
- Git repo (free with Gitea)
- test environment
- Element chatroom (free for self-hosting)
- Element chatroom (free for self-hosting)
 
 
Loading…
Cancel
Save