MacBook-Pro-de-Oscar.local 2026-1-28:20:51:19
This commit is contained in:
3
.obsidian/community-plugins.json
vendored
3
.obsidian/community-plugins.json
vendored
@@ -41,5 +41,6 @@
|
|||||||
"auto-template-trigger",
|
"auto-template-trigger",
|
||||||
"obsidian-markmind",
|
"obsidian-markmind",
|
||||||
"zotlit",
|
"zotlit",
|
||||||
"wikilinks-to-mdlinks-obsidian"
|
"wikilinks-to-mdlinks-obsidian",
|
||||||
|
"obsidian-zotero-desktop-connector"
|
||||||
]
|
]
|
||||||
12
.obsidian/plugins/obsidian-zotero-desktop-connector/data.json
vendored
Normal file
12
.obsidian/plugins/obsidian-zotero-desktop-connector/data.json
vendored
Normal file
@@ -0,0 +1,12 @@
|
|||||||
|
{
|
||||||
|
"database": "Zotero",
|
||||||
|
"noteImportFolder": "sources/zotero integration",
|
||||||
|
"pdfExportImageDPI": 120,
|
||||||
|
"pdfExportImageFormat": "jpg",
|
||||||
|
"pdfExportImageQuality": 90,
|
||||||
|
"citeFormats": [],
|
||||||
|
"exportFormats": [],
|
||||||
|
"citeSuggestTemplate": "[[{{citekey}}]]",
|
||||||
|
"openNoteAfterImport": true,
|
||||||
|
"whichNotesToOpenAfterImport": "last-imported-note"
|
||||||
|
}
|
||||||
207
.obsidian/plugins/obsidian-zotero-desktop-connector/main.js
vendored
Normal file
207
.obsidian/plugins/obsidian-zotero-desktop-connector/main.js
vendored
Normal file
File diff suppressed because one or more lines are too long
10
.obsidian/plugins/obsidian-zotero-desktop-connector/manifest.json
vendored
Normal file
10
.obsidian/plugins/obsidian-zotero-desktop-connector/manifest.json
vendored
Normal file
@@ -0,0 +1,10 @@
|
|||||||
|
{
|
||||||
|
"id": "obsidian-zotero-desktop-connector",
|
||||||
|
"name": "Zotero Integration",
|
||||||
|
"version": "3.2.1",
|
||||||
|
"minAppVersion": "1.1.1",
|
||||||
|
"description": "Insert and import citations, bibliographies, notes, and PDF annotations from Zotero.",
|
||||||
|
"author": "mgmeyers",
|
||||||
|
"authorUrl": "https://github.com/mgmeyers/obsidian-zotero-integration",
|
||||||
|
"isDesktopOnly": true
|
||||||
|
}
|
||||||
BIN
.obsidian/plugins/obsidian-zotero-desktop-connector/pdfannots2json-darwin-arm64
vendored
Executable file
BIN
.obsidian/plugins/obsidian-zotero-desktop-connector/pdfannots2json-darwin-arm64
vendored
Executable file
Binary file not shown.
238
.obsidian/plugins/obsidian-zotero-desktop-connector/styles.css
vendored
Normal file
238
.obsidian/plugins/obsidian-zotero-desktop-connector/styles.css
vendored
Normal file
@@ -0,0 +1,238 @@
|
|||||||
|
.zt-format {
|
||||||
|
border: 1px solid var(--background-modifier-border);
|
||||||
|
padding: 1rem;
|
||||||
|
background-color: var(--background-primary);
|
||||||
|
border-radius: 10px;
|
||||||
|
margin-bottom: 10px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.zt-format__form {
|
||||||
|
display: flex;
|
||||||
|
flex-direction: column;
|
||||||
|
align-items: stretch;
|
||||||
|
margin-bottom: 1rem;
|
||||||
|
max-width: 600px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.zt-format__form:last-child {
|
||||||
|
margin-bottom: 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
.zt-format__label {
|
||||||
|
font-size: 0.9em;
|
||||||
|
font-weight: 600;
|
||||||
|
margin-bottom: 5px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.is-deprecated .zt-format__label {
|
||||||
|
color: var(--text-error);
|
||||||
|
}
|
||||||
|
|
||||||
|
.zt-format__input-wrapper {
|
||||||
|
display: flex;
|
||||||
|
align-items: center;
|
||||||
|
}
|
||||||
|
|
||||||
|
.zt-format__input-wrapper textarea {
|
||||||
|
resize: vertical;
|
||||||
|
}
|
||||||
|
|
||||||
|
.zt-format__input-wrapper > *:not(.checkbox-container) {
|
||||||
|
width: 100% !important;
|
||||||
|
}
|
||||||
|
|
||||||
|
.is-deprecated .zt-format__input-wrapper button {
|
||||||
|
width: auto !important;
|
||||||
|
flex-grow: 0;
|
||||||
|
flex-shrink: 0;
|
||||||
|
margin-left: 5px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.zt-format__delete-btn {
|
||||||
|
display: flex;
|
||||||
|
align-items: center;
|
||||||
|
justify-content: center;
|
||||||
|
line-height: 1;
|
||||||
|
padding: 7px 9px;
|
||||||
|
margin-left: 10px;
|
||||||
|
flex-shrink: 0;
|
||||||
|
flex-grow: 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
.zt-json-viewer {
|
||||||
|
font-size: 13px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.zt-json-viewer .react-json-view {
|
||||||
|
padding: 1em;
|
||||||
|
border-radius: 10px;
|
||||||
|
margin-top: 1em;
|
||||||
|
overflow: auto;
|
||||||
|
font-family: var(--font-monospace) !important;
|
||||||
|
}
|
||||||
|
|
||||||
|
.zt-json-viewer__btns {
|
||||||
|
display: flex;
|
||||||
|
align-items: center;
|
||||||
|
justify-content: flex-start;
|
||||||
|
}
|
||||||
|
|
||||||
|
.zt-json-viewer__btns label {
|
||||||
|
display: block;
|
||||||
|
font-weight: bold;
|
||||||
|
padding-top: 1em;
|
||||||
|
}
|
||||||
|
|
||||||
|
.zt-json-viewer__btns select {
|
||||||
|
font-size: 1em;
|
||||||
|
}
|
||||||
|
|
||||||
|
.zt-json-viewer__btns button {
|
||||||
|
font-size: 1em;
|
||||||
|
margin-right: 5px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.zt-json-viewer__preview,
|
||||||
|
.zt-json-viewer__data {
|
||||||
|
border: 1px solid var(--background-modifier-border);
|
||||||
|
border-radius: 10px;
|
||||||
|
padding: 1em;
|
||||||
|
margin-top: 1em;
|
||||||
|
}
|
||||||
|
|
||||||
|
.zt-json-viewer__preview.error {
|
||||||
|
background-color: #ff000011;
|
||||||
|
font-family: var(--font-monospace);
|
||||||
|
}
|
||||||
|
|
||||||
|
.zt-json-viewer__preview pre {
|
||||||
|
overflow: auto;
|
||||||
|
white-space: pre-wrap;
|
||||||
|
margin: 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
.zt-json-viewer__preview pre,
|
||||||
|
.zt-json-viewer__preview code {
|
||||||
|
font-family: inherit;
|
||||||
|
}
|
||||||
|
|
||||||
|
.zt-json-viewer__preview:not(.error) pre {
|
||||||
|
font-family: var(--font-text, --font-default, --default-font);
|
||||||
|
max-height: 70vh;
|
||||||
|
min-height: 400px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.zt-multiselect {
|
||||||
|
width: 300px;
|
||||||
|
text-align: left;
|
||||||
|
}
|
||||||
|
|
||||||
|
.zt-multiselect input {
|
||||||
|
outline: none !important;
|
||||||
|
box-shadow: none !important;
|
||||||
|
}
|
||||||
|
|
||||||
|
.zt-format__input-note {
|
||||||
|
font-style: italic;
|
||||||
|
font-size: 0.9em;
|
||||||
|
padding-top: 10px;
|
||||||
|
margin-bottom: 10px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.zt-setting-item pre,
|
||||||
|
.zt-format__input-note pre {
|
||||||
|
display: inline-block;
|
||||||
|
margin: 0;
|
||||||
|
padding: 0 6px;
|
||||||
|
background-color: var(--background-secondary-alt);
|
||||||
|
border-radius: 4px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.zt-asset-success {
|
||||||
|
text-align: left;
|
||||||
|
display: flex;
|
||||||
|
}
|
||||||
|
|
||||||
|
.zt-asset-success__icon {
|
||||||
|
color: var(--interactive-success);
|
||||||
|
font-size: 24px;
|
||||||
|
margin-right: 5px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.zt-asset-success__icon svg {
|
||||||
|
width: 1em !important;
|
||||||
|
height: 1em !important;
|
||||||
|
}
|
||||||
|
|
||||||
|
.zt-asset-success__message {
|
||||||
|
font-size: 0.9em;
|
||||||
|
}
|
||||||
|
|
||||||
|
.zt-suggest-title {
|
||||||
|
font-size: var(--font-ui-small);
|
||||||
|
color: var(--text-muted);
|
||||||
|
display: block;
|
||||||
|
overflow: hidden;
|
||||||
|
text-overflow: ellipsis;
|
||||||
|
white-space: nowrap;
|
||||||
|
padding-top: var(--size-4-1);
|
||||||
|
}
|
||||||
|
|
||||||
|
.zt-suggest-loading-wrapper {
|
||||||
|
display: flex;
|
||||||
|
position: relative;
|
||||||
|
align-items: center;
|
||||||
|
justify-content: center;
|
||||||
|
padding: var(--size-4-2) 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
.zt-suggest-loading,
|
||||||
|
.zt-suggest-loading:before,
|
||||||
|
.zt-suggest-loading:after {
|
||||||
|
border-radius: 999px;
|
||||||
|
width: 1em;
|
||||||
|
height: 1em;
|
||||||
|
animation-fill-mode: both;
|
||||||
|
animation: bblFadInOut 1.6s infinite ease-in-out;
|
||||||
|
}
|
||||||
|
|
||||||
|
.zt-suggest-loading {
|
||||||
|
display: block;
|
||||||
|
color: var(--text-muted);
|
||||||
|
font-size: 7px;
|
||||||
|
position: relative;
|
||||||
|
animation-delay: -0.16s;
|
||||||
|
top: -1em;
|
||||||
|
}
|
||||||
|
.zt-suggest-loading:before,
|
||||||
|
.zt-suggest-loading:after {
|
||||||
|
content: '';
|
||||||
|
position: absolute;
|
||||||
|
}
|
||||||
|
.zt-suggest-loading:before {
|
||||||
|
left: -2em;
|
||||||
|
animation-delay: -0.32s;
|
||||||
|
}
|
||||||
|
.zt-suggest-loading:after {
|
||||||
|
left: 2em;
|
||||||
|
}
|
||||||
|
|
||||||
|
.zt-color-chip {
|
||||||
|
display: inline-block;
|
||||||
|
width: 1em;
|
||||||
|
height: 1em;
|
||||||
|
border: 1px solid var(--background-modifier-border);
|
||||||
|
border-radius: var(--radius-s);
|
||||||
|
margin-right: var(--size-4-1);
|
||||||
|
}
|
||||||
|
|
||||||
|
@keyframes bblFadInOut {
|
||||||
|
0%,
|
||||||
|
80%,
|
||||||
|
100% {
|
||||||
|
box-shadow: 0 1em 0 -1.3em;
|
||||||
|
}
|
||||||
|
40% {
|
||||||
|
box-shadow: 0 1em 0 0;
|
||||||
|
}
|
||||||
|
}
|
||||||
@@ -13,3 +13,4 @@ show-attributes: [field]
|
|||||||
field-groups: [downs]
|
field-groups: [downs]
|
||||||
depth: [0, 0]
|
depth: [0, 0]
|
||||||
```
|
```
|
||||||
|
|
||||||
|
|||||||
@@ -5,9 +5,17 @@ aliases:
|
|||||||
---
|
---
|
||||||
|
|
||||||
- obsidian clipper
|
- obsidian clipper
|
||||||
|
- cacher le dossier attachments
|
||||||
|
- comparer les images (splits)
|
||||||
|
-
|
||||||
|
|
||||||
|
|
||||||
[[groupe abélien#definition]]
|
[[groupe abélien#definition]]
|
||||||
|
|
||||||
[@Gcode2023]
|
[@Gcode2023]
|
||||||
|
|
||||||
|
|
||||||
|
[@WikiwandTuringcomplet2017]
|
||||||
|
|
||||||
|
[@okasakiPurelyFunctionalData1999]
|
||||||
|
|
||||||
|
|||||||
16
sources/zotero/WikiwandTuringcomplet2017.md
Normal file
16
sources/zotero/WikiwandTuringcomplet2017.md
Normal file
@@ -0,0 +1,16 @@
|
|||||||
|
---
|
||||||
|
zotero-key: 3SVQAME9
|
||||||
|
zt-attachments:
|
||||||
|
- "498"
|
||||||
|
citekey: WikiwandTuringcomplet2017
|
||||||
|
aliases:
|
||||||
|
- Wikiwand - Turing-complet
|
||||||
|
---
|
||||||
|
up:: [[zotero literature notes]]
|
||||||
|
link:: [Zotero](zotero://select/library/items/3SVQAME9) [attachment](file:///Users/oscarplaisant/Zotero/storage/RCAECCMD/Turing-complet.html)
|
||||||
|
#s/PKM #zotero #t/source
|
||||||
|
|
||||||
|
|
||||||
|
> [!zotero]+ <span style="color: #2ea8e5; --link-external-color: #2ea8e5;">[Wikiwand - Turing-complet](zotero://select/library/items/3SVQAME9) - [Page ](zotero://open-pdf/library/items/RCAECCMD?annotation=RLS8GBR9)</span>
|
||||||
|
> un système formel est dit complet au sens de Turing ou Turing-complet (par calque de l’anglais Turing-complete[1]) s’il possède un pouvoir expressif au moins équivalent à celui des machines de Turing. Dans un tel système, il est donc possible de programmer n'importe quelle machine de Turing.
|
||||||
|
> ^RLS8GBR9aRCAECCMD
|
||||||
Reference in New Issue
Block a user