main
Mel 4 years ago
parent 21c0cb530f
commit 1f5ed5d669

@ -15,9 +15,9 @@
"obsidian-tasks-plugin", "obsidian-tasks-plugin",
"obsidian-dice-roller", "obsidian-dice-roller",
"obsidian-pocket", "obsidian-pocket",
"emoji-shortcodes",
"note-refactor-obsidian", "note-refactor-obsidian",
"code-block-copy", "code-block-copy",
"meld-encrypt", "meld-encrypt",
"find-and-replace-in-selection" "find-and-replace-in-selection",
"obsidian-auto-link-title"
] ]

@ -81,6 +81,6 @@
"repelStrength": 10, "repelStrength": 10,
"linkStrength": 1, "linkStrength": 1,
"linkDistance": 250, "linkDistance": 250,
"scale": 0.3534010291121589, "scale": 0.35577893659139453,
"close": true "close": true
} }

File diff suppressed because one or more lines are too long

@ -1,7 +1,7 @@
{ {
"id": "meld-encrypt", "id": "meld-encrypt",
"name": "Meld Encrypt", "name": "Meld Encrypt",
"version": "1.4.1", "version": "1.4.2",
"minAppVersion": "0.12.15", "minAppVersion": "0.12.15",
"description": "Hide secrets in your notes", "description": "Hide secrets in your notes",
"author": "meld-cp", "author": "meld-cp",

File diff suppressed because one or more lines are too long

@ -0,0 +1,10 @@
{
"id": "obsidian-auto-link-title",
"name": "Auto Link Title",
"version": "1.2.3",
"minAppVersion": "0.9.12",
"description": "This plugin automatically fetches the titles of links from the web",
"author": "Matt Furden",
"authorUrl": "https://github.com/zolrath",
"isDesktopOnly": false
}

@ -83,7 +83,7 @@
"id": "51b6dd4b8c0c1449", "id": "51b6dd4b8c0c1449",
"type": "leaf", "type": "leaf",
"state": { "state": {
"type": "side-panel-control-view", "type": "empty",
"state": {} "state": {}
} }
}, },
@ -108,14 +108,14 @@
"active": "c1cbd199334b4022", "active": "c1cbd199334b4022",
"lastOpenFiles": [ "lastOpenFiles": [
"Reading list/@Reading master.md", "Reading list/@Reading master.md",
"Finances/Ledger.md", "Family/Basville.md",
"Admin/Templates/Template Investment.md", "Family/Birthdays.md",
"London/@Brunchs London.md", "Home/MRCK.md",
"Life Orga/Finances.md", "Computer setup/Git.md",
"Investments/VC Tasks.md", "Computer setup/Tesseract.md",
"Networks/@Networks.md", "Computer setup/VLC.md",
"Networks/Server Tools.md", "Computer setup/youtube-dl.md",
"Admin/Templates/layout$path.md", "Computer setup/@Computer Set Up.md",
"Admin/Templates/layout$command.md" "Computer setup/Internet services.md"
] ]
} }

@ -90,31 +90,41 @@ This section highlights different scripts to make Git work on different devices.
Git folder is set up through a desktop App (Github, Gitup, else...) and comprises a folder of Git executables. Git folder is set up through a desktop App (Github, Gitup, else...) and comprises a folder of Git executables.
From the Terminal pointing towards the Git folder From the Terminal pointing towards the Git folder
`cd /folderpath` ```ad-command
~~~
cd /folderpath
~~~
```
a few actions can be initiated: a few actions can be initiated:
**Download docs** **Download docs**
``` ```ad-command
~~~
git pull (--rebase) (optional: 'remote name' 'branche name') git pull (--rebase) (optional: 'remote name' 'branche name')
or or
git fetch git fetch
~~~
``` ```
**Upload docs** **Upload docs**
``` ```ad-command
~~~
git add --all/'Folder or File name' git add --all/'Folder or File name'
git commit -m "name of the update for versioning" git commit -m "name of the update for versioning"
git push (optional 'remote name' 'branch name') git push (optional 'remote name' 'branch name')
~~~
``` ```
**Create a new branch** **Create a new branch**
``` ```ad-command
~~~
git checkout -b 'branch name' git checkout -b 'branch name'
git push origin 'branch name' git push origin 'branch name'
~~~
``` ```
   

@ -75,18 +75,35 @@ style: number
2. In Terminal, run 2. In Terminal, run
`tesseract [input] [output] -l fra` ```ad-command
~~~
tesseract [input] [output] -l fra
~~~
```
[Language guide](https://github.com/tesseract-ocr/tesseract/blob/master/doc/tesseract.1.asc#languages) [Language guide](https://github.com/tesseract-ocr/tesseract/blob/master/doc/tesseract.1.asc#languages)
3. In Terminal, to run a batch of files 3. In Terminal, to run a batch of files
`for I in Part_1_to_p_27-*.jpg; do echo $I; tesseract $I $(basename $i .jpg) -l fra; done` ```ad-command
~~~
for I in Part_1_to_p_27-*.jpg; do echo $I; tesseract $I $(basename $i .jpg) -l fra; done
~~~
```
4. In Terminal, to move txt files 4. In Terminal, to move txt files
`mv *.txt /users/mel/documents/lebv.org/website/resource/contents/booklet/text` ```ad-command
~~~
mv *.txt /users/mel/documents/lebv.org/website/resource/contents/booklet/text
~~~
```
5. In Terminal, to concatenate txt 5. In Terminal, to concatenate txt
`cat Part_1_to_p_27-{1..30}.txt >> sorted_combined.txt 2>/dev/null` ```ad-command
~~~
cat Part_1_to_p_27-{1..30}.txt >> sorted_combined.txt 2>/dev/null
~~~
```

@ -72,4 +72,8 @@ style: number
1. In Terminal, run 1. In Terminal, run
`youtube-dl -o “C:/MyVideos/%(series)s/%(season_number)s - %(season)s/%(episode_number)s - %(episode)s.%(ext)s” https://videomore.ru/kino_v_detalayah/5_sezon/367617` ```ad-command
~~~
youtube-dl -o “C:/MyVideos/%(series)s/%(season_number)s - %(season)s/%(episode_number)s - %(episode)s.%(ext)s” https://videomore.ru/kino_v_detalayah/5_sezon/367617
~~~
```

@ -47,6 +47,24 @@ style: number
   
### Adresse
 
```ad-address
~~~
14 Grand Rue
23260 Basville
France
~~~
```
 
---
 
### Lieux de visite ### Lieux de visite
   

@ -126,12 +126,18 @@ style: number
   
#### Hortense ##### Hortense
- [ ] :birthday: **Thaïs** 🔁 every year 📅 2022-02-06 - [ ] :birthday: **Thaïs** 🔁 every year 📅 2022-02-06
   
##### Olympe
- [ ] :birthday: **Thimotée** 🔁 every year 📅 2022-09-24
 
#### Charles #### Charles
- [ ] :birthday: **Ophélie** 🔁 every year 📅 2022-09-05 - [ ] :birthday: **Ophélie** 🔁 every year 📅 2022-09-05

@ -100,10 +100,13 @@ Paris or London - not much elsewhere.
   
- [ ] :gift: French fashion - [ ] :gift: Fashion
- [ ] :gift: Livre - mon bel oranger - [ ] :gift: French designer
- [ ] :gift: Livre - tistou les pouces verts - [ ] :gift: [Mylo bag](https://plantbasednews.org/lifestyle/fashion/stella-mccartney-vegan-leather-bag-mushrooms/)
- [ ] :gift: Livre - Fran Lebowitz - [ ] :gift: Livre
- [ ] :gift: mon bel oranger
- [ ] :gift: tistou les pouces verts
- [ ] :gift: Fran Lebowitz
- [ ] :gift: [Journal protection](https://www.wayfair.co.uk/home-decor/pdp/house-of-hampton-tamara-book-box-u000526750.html) - [ ] :gift: [Journal protection](https://www.wayfair.co.uk/home-decor/pdp/house-of-hampton-tamara-book-box-u000526750.html)
- [ ] :gift: [Bijou Ours](https://www.tous.com/) - [ ] :gift: [Bijou Ours](https://www.tous.com/)
- [x] :gift: livre paris ✅ 2020-12-25 - [x] :gift: livre paris ✅ 2020-12-25

@ -112,12 +112,5 @@ See [[Internet services|Internet]] section
1. [EPC](geo:51.34378980192966,-0.2915408008813016) 1. [EPC](geo:51.34378980192966,-0.2915408008813016)
2. [Rugby Polo Club](geo:52.33100963781016,-1.2585905491865028) (Molawa) 2. [Rugby Polo Club](geo:52.33100963781016,-1.2585905491865028) (Molawa)
 
#### Tattoo
```music-abc
```
   
   

Loading…
Cancel
Save