vault backup: 2025-04-05 23:43:15
This commit is contained in:
parent
4148baf3b5
commit
0ec7dfedc3
|
@ -1,5 +1,6 @@
|
|||
{
|
||||
"accentColor": "",
|
||||
"baseFontSize": 16,
|
||||
"theme": "obsidian"
|
||||
"theme": "obsidian",
|
||||
"cssTheme": "Minimal"
|
||||
}
|
|
@ -18,5 +18,9 @@
|
|||
"copilot",
|
||||
"mathlive",
|
||||
"markitdown",
|
||||
"obsidian-importer"
|
||||
"obsidian-importer",
|
||||
"obsidian-icon-folder",
|
||||
"obsidian-minimal-settings",
|
||||
"recent-files-obsidian",
|
||||
"obsidian-projects"
|
||||
]
|
|
@ -1,9 +1,9 @@
|
|||
{
|
||||
"collapse-filter": false,
|
||||
"search": "",
|
||||
"showTags": false,
|
||||
"showTags": true,
|
||||
"showAttachments": false,
|
||||
"hideUnresolved": false,
|
||||
"hideUnresolved": true,
|
||||
"showOrphans": true,
|
||||
"collapse-color-groups": false,
|
||||
"colorGroups": [],
|
||||
|
@ -17,6 +17,6 @@
|
|||
"repelStrength": 11.9270833333333,
|
||||
"linkStrength": 1,
|
||||
"linkDistance": 188,
|
||||
"scale": 0.6554983653232614,
|
||||
"scale": 0.16966832478116003,
|
||||
"close": true
|
||||
}
|
Binary file not shown.
|
@ -0,0 +1,34 @@
|
|||
{
|
||||
"settings": {
|
||||
"migrated": 6,
|
||||
"iconPacksPath": ".obsidian/icons",
|
||||
"fontSize": 16,
|
||||
"emojiStyle": "native",
|
||||
"iconColor": null,
|
||||
"recentlyUsedIcons": [
|
||||
"🔒"
|
||||
],
|
||||
"recentlyUsedIconsSize": 5,
|
||||
"rules": [],
|
||||
"extraMargin": {
|
||||
"top": 0,
|
||||
"right": 4,
|
||||
"bottom": 0,
|
||||
"left": 0
|
||||
},
|
||||
"iconInTabsEnabled": true,
|
||||
"iconInTitleEnabled": true,
|
||||
"iconInTitlePosition": "above",
|
||||
"iconInFrontmatterEnabled": false,
|
||||
"iconInFrontmatterFieldName": "icon",
|
||||
"iconColorInFrontmatterFieldName": "iconColor",
|
||||
"iconsBackgroundCheckEnabled": false,
|
||||
"iconsInNotesEnabled": true,
|
||||
"iconsInLinksEnabled": true,
|
||||
"iconIdentifier": ":",
|
||||
"lucideIconPackType": "native",
|
||||
"debugMode": false,
|
||||
"useInternalPlugins": false
|
||||
},
|
||||
"01-Documentation/SIDEL/SIDEL - Passwords.md": "🔒"
|
||||
}
|
File diff suppressed because one or more lines are too long
|
@ -0,0 +1,10 @@
|
|||
{
|
||||
"id": "obsidian-icon-folder",
|
||||
"name": "Iconize",
|
||||
"version": "2.14.7",
|
||||
"minAppVersion": "0.9.12",
|
||||
"description": "Add icons to anything you desire in Obsidian, including files, folders, and text.",
|
||||
"author": "Florian Woelki",
|
||||
"authorUrl": "https://florianwoelki.com/",
|
||||
"isDesktopOnly": false
|
||||
}
|
|
@ -0,0 +1,120 @@
|
|||
.iconize-inline-title-wrapper {
|
||||
width: var(--line-width);
|
||||
max-width: var(--max-width);
|
||||
margin-inline: var(--content-margin);
|
||||
}
|
||||
|
||||
.iconize-title-icon {
|
||||
max-width: var(--max-width);
|
||||
margin-right: var(--size-4-2);
|
||||
}
|
||||
|
||||
.iconize-icon-in-link {
|
||||
transform: translateY(20%);
|
||||
margin-right: var(--size-2-2);
|
||||
display: inline-flex;
|
||||
}
|
||||
|
||||
.iconize-icon {
|
||||
border: 1px solid transparent;
|
||||
margin: 0px 4px 0px 0px;
|
||||
display: flex;
|
||||
align-self: center;
|
||||
margin: auto 0;
|
||||
}
|
||||
|
||||
.nav-folder-title,
|
||||
.nav-file-title {
|
||||
align-items: center;
|
||||
}
|
||||
|
||||
.iconize-setting input[type='color'] {
|
||||
margin: 0 6px;
|
||||
}
|
||||
|
||||
.iconize-modal.prompt-results {
|
||||
margin: 0;
|
||||
overflow-y: auto;
|
||||
display: grid;
|
||||
grid-template-columns: repeat(5, minmax(0, 1fr));
|
||||
}
|
||||
|
||||
.prompt .iconize-subheadline {
|
||||
margin-top: 12px;
|
||||
font-size: 12px;
|
||||
color: gray;
|
||||
grid-column-start: 1;
|
||||
grid-column-end: 6;
|
||||
}
|
||||
|
||||
@media (max-width: 640px) {
|
||||
.iconize-modal.prompt-results {
|
||||
grid-template-columns: repeat(3, minmax(0, 1fr));
|
||||
}
|
||||
.prompt .iconize-subheadline {
|
||||
grid-column-end: 4;
|
||||
}
|
||||
}
|
||||
|
||||
.iconize-modal.prompt-results .suggestion-item {
|
||||
cursor: pointer;
|
||||
white-space: pre-wrap;
|
||||
display: flex;
|
||||
justify-content: flex-end;
|
||||
align-items: center;
|
||||
flex-direction: column-reverse;
|
||||
text-align: center;
|
||||
font-size: 13px;
|
||||
color: var(--text-muted);
|
||||
padding: 16px 8px;
|
||||
line-break: auto;
|
||||
word-break: break-word;
|
||||
line-height: 1.3;
|
||||
}
|
||||
|
||||
.iconize-modal.prompt-results .suggestion-item.suggestion-item__center {
|
||||
justify-content: center;
|
||||
}
|
||||
|
||||
.iconize-icon-preview {
|
||||
font-size: 22px;
|
||||
}
|
||||
|
||||
.iconize-icon-preview img {
|
||||
width: 16px;
|
||||
height: 16px;
|
||||
}
|
||||
|
||||
.iconize-icon-preview svg {
|
||||
width: 24px;
|
||||
height: 24px;
|
||||
color: currentColor;
|
||||
margin-bottom: 4px;
|
||||
}
|
||||
|
||||
.iconize-dragover {
|
||||
position: relative;
|
||||
}
|
||||
|
||||
.iconize-dragover-el {
|
||||
position: absolute;
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
color: var(--text-normal);
|
||||
background-color: var(--background-secondary-alt);
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
}
|
||||
|
||||
/* Custom rule modal. */
|
||||
.iconize-custom-modal .modal-content {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
}
|
||||
|
||||
.iconize-custom-modal .modal-content input {
|
||||
width: 100%;
|
||||
margin-right: 0.5rem;
|
||||
}
|
|
@ -0,0 +1,34 @@
|
|||
{
|
||||
"lightStyle": "minimal-light",
|
||||
"darkStyle": "minimal-dark",
|
||||
"lightScheme": "minimal-default-light",
|
||||
"darkScheme": "minimal-things-dark",
|
||||
"editorFont": "",
|
||||
"lineHeight": 1.5,
|
||||
"lineWidth": 40,
|
||||
"lineWidthWide": 50,
|
||||
"maxWidth": 88,
|
||||
"textNormal": 16,
|
||||
"textSmall": 13,
|
||||
"imgGrid": true,
|
||||
"imgWidth": "img-default-width",
|
||||
"tableWidth": "table-default-width",
|
||||
"iframeWidth": "iframe-default-width",
|
||||
"mapWidth": "map-default-width",
|
||||
"chartWidth": "chart-default-width",
|
||||
"colorfulHeadings": false,
|
||||
"colorfulFrame": false,
|
||||
"colorfulActiveStates": true,
|
||||
"trimNames": false,
|
||||
"labeledNav": false,
|
||||
"fullWidthMedia": false,
|
||||
"bordersToggle": true,
|
||||
"minimalStatus": true,
|
||||
"focusMode": false,
|
||||
"underlineInternal": false,
|
||||
"underlineExternal": true,
|
||||
"folding": true,
|
||||
"lineNumbers": false,
|
||||
"readableLineLength": false,
|
||||
"devBlockWidth": false
|
||||
}
|
File diff suppressed because one or more lines are too long
|
@ -0,0 +1,11 @@
|
|||
{
|
||||
"id": "obsidian-minimal-settings",
|
||||
"name": "Minimal Theme Settings",
|
||||
"version": "8.1.1",
|
||||
"minAppVersion": "1.1.9",
|
||||
"description": "Change the colors, fonts and features of Minimal Theme.",
|
||||
"author": "@kepano",
|
||||
"authorUrl": "https://www.twitter.com/kepano",
|
||||
"fundingUrl": "https://www.buymeacoffee.com/kepano",
|
||||
"isDesktopOnly": false
|
||||
}
|
|
@ -0,0 +1,108 @@
|
|||
{
|
||||
"version": 2,
|
||||
"projects": [
|
||||
{
|
||||
"fieldConfig": {},
|
||||
"defaultName": "",
|
||||
"templates": [],
|
||||
"excludedNotes": [],
|
||||
"isDefault": true,
|
||||
"dataSource": {
|
||||
"kind": "folder",
|
||||
"config": {
|
||||
"path": "04-SIDEL",
|
||||
"recursive": true
|
||||
}
|
||||
},
|
||||
"newNotesFolder": "",
|
||||
"views": [
|
||||
{
|
||||
"config": {
|
||||
"fieldConfig": {
|
||||
"path": {
|
||||
"width": 327
|
||||
}
|
||||
}
|
||||
},
|
||||
"filter": {
|
||||
"conjunction": "and",
|
||||
"conditions": []
|
||||
},
|
||||
"colors": {
|
||||
"conditions": []
|
||||
},
|
||||
"sort": {
|
||||
"criteria": []
|
||||
},
|
||||
"id": "7ad4208a-e37e-4c07-a22b-dbe8d0d1a9be",
|
||||
"name": "Table",
|
||||
"type": "table"
|
||||
},
|
||||
{
|
||||
"config": {},
|
||||
"filter": {
|
||||
"conjunction": "and",
|
||||
"conditions": []
|
||||
},
|
||||
"colors": {
|
||||
"conditions": []
|
||||
},
|
||||
"sort": {
|
||||
"criteria": []
|
||||
},
|
||||
"id": "39dde3ca-913a-477d-a055-316385d6ba62",
|
||||
"name": "Board",
|
||||
"type": "board"
|
||||
},
|
||||
{
|
||||
"config": {
|
||||
"interval": "month"
|
||||
},
|
||||
"filter": {
|
||||
"conjunction": "and",
|
||||
"conditions": []
|
||||
},
|
||||
"colors": {
|
||||
"conditions": []
|
||||
},
|
||||
"sort": {
|
||||
"criteria": []
|
||||
},
|
||||
"id": "dbd5c65f-ab8a-4155-b175-c2b4b4731183",
|
||||
"name": "Calendar",
|
||||
"type": "calendar"
|
||||
},
|
||||
{
|
||||
"config": {},
|
||||
"filter": {
|
||||
"conjunction": "and",
|
||||
"conditions": []
|
||||
},
|
||||
"colors": {
|
||||
"conditions": []
|
||||
},
|
||||
"sort": {
|
||||
"criteria": []
|
||||
},
|
||||
"id": "a9f5fc98-1213-4d13-9d95-1a054f405c7b",
|
||||
"name": "Gallery",
|
||||
"type": "gallery"
|
||||
}
|
||||
],
|
||||
"id": "1eb3d7fb-21dc-4f10-995e-1fe76b949d0e",
|
||||
"name": "SIDEL"
|
||||
}
|
||||
],
|
||||
"archives": [],
|
||||
"preferences": {
|
||||
"projectSizeLimit": 1000,
|
||||
"frontmatter": {
|
||||
"quoteStrings": "PLAIN"
|
||||
},
|
||||
"locale": {
|
||||
"firstDayOfWeek": "sunday"
|
||||
},
|
||||
"commands": [],
|
||||
"linkBehavior": "open-editor"
|
||||
}
|
||||
}
|
File diff suppressed because one or more lines are too long
|
@ -0,0 +1,11 @@
|
|||
{
|
||||
"id": "obsidian-projects",
|
||||
"name": "Projects",
|
||||
"version": "1.17.4",
|
||||
"minAppVersion": "1.0.0",
|
||||
"description": "Plain text project planning.",
|
||||
"author": "Marcus Olsson",
|
||||
"authorUrl": "https://marcus.se.net",
|
||||
"fundingUrl": "https://www.buymeacoffee.com/marcusolsson",
|
||||
"isDesktopOnly": false
|
||||
}
|
|
@ -0,0 +1,100 @@
|
|||
.projects--board {
|
||||
display: flex;
|
||||
column-gap: 8px;
|
||||
align-items: flex-start;
|
||||
margin: 8px;
|
||||
}
|
||||
|
||||
.projects--board--column {
|
||||
border: 1px solid var(--background-modifier-border);
|
||||
border-radius: var(--radius-m);
|
||||
background-color: var(--background-secondary);
|
||||
display: flex;
|
||||
gap: var(--size-4-2);
|
||||
flex-direction: column;
|
||||
padding: var(--size-4-2);
|
||||
|
||||
--board-column-drag-accent: hsla(var(--interactive-accent-hsl), 0.3);
|
||||
--board-column-drop-accent: hsla(var(--interactive-accent-hsl), 0.5);
|
||||
|
||||
&:has(.projects--board--card-placeholder) {
|
||||
box-shadow: 0px 0px 8px 0px var(--board-column-drop-accent);
|
||||
transition: box-shadow 150ms ease-in-out;
|
||||
}
|
||||
}
|
||||
|
||||
.projects--board--card {
|
||||
background-color: var(--background-primary);
|
||||
border-radius: var(--radius-s);
|
||||
border: 1px solid var(--background-modifier-border);
|
||||
padding: var(--size-4-2);
|
||||
}
|
||||
|
||||
.projects--board--card:hover {
|
||||
border: 1px solid var(--background-modifier-border-hover);
|
||||
}
|
||||
|
||||
.projects--board--card-list {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
gap: var(--size-4-2);
|
||||
min-height: 35px;
|
||||
transition: all 150ms ease-in-out;
|
||||
|
||||
&:has(.projects--board--card-placeholder) {
|
||||
background: var(--board-column-drop-accent) !important;
|
||||
}
|
||||
}
|
||||
|
||||
.projects--gallery--grid {
|
||||
display: grid;
|
||||
gap: 24px;
|
||||
}
|
||||
|
||||
.projects--gallery--card {
|
||||
background-color: var(--background-secondary);
|
||||
border-radius: var(--radius-s);
|
||||
border: 1px solid var(--background-modifier-border);
|
||||
padding: 0;
|
||||
margin: 0;
|
||||
}
|
||||
|
||||
.projects--gallery--card:hover {
|
||||
border: 1px solid var(--background-modifier-border-hover);
|
||||
}
|
||||
|
||||
.projects--gallery--card__body {
|
||||
padding: 8px;
|
||||
}
|
||||
|
||||
.projects--gallery--card__media {
|
||||
height: 180px;
|
||||
border-top-left-radius: var(--radius-s);
|
||||
border-top-right-radius: var(--radius-s);
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
border-bottom: 1px solid var(--background-modifier-border);
|
||||
}
|
||||
|
||||
.projects--gallery--card__media img {
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
border-top-left-radius: var(--radius-s);
|
||||
border-top-right-radius: var(--radius-s);
|
||||
}
|
||||
|
||||
.workspace-leaf-content[data-type=obsidian-projects] .view-content {
|
||||
padding: 0;
|
||||
}
|
||||
|
||||
.projects--popover {
|
||||
background-color: var(--background-primary);
|
||||
border: 1px solid var(--background-modifier-border);
|
||||
box-shadow: var(--shadow-s);
|
||||
border-radius: var(--radius-m);
|
||||
padding: var(--size-4-5);
|
||||
max-height: 95vh;
|
||||
}
|
||||
|
||||
/*# sourceMappingURL=styles.css.map */
|
|
@ -0,0 +1,28 @@
|
|||
{
|
||||
"recentFiles": [
|
||||
{
|
||||
"basename": "9.4006 - Feedback flow - Notes for technician on site TL22 - Q3-Q1",
|
||||
"path": "03-VM/HENKEL/93040 - HENKEL - BowlingGreen/TL22-L25/24 - 9.4006 - Feedback flow - TL22-L25 Q3/9.4006 - Feedback flow - Notes for technician on site TL22 - Q3-Q1.md"
|
||||
},
|
||||
{
|
||||
"basename": "E5.007161 - Modifica O&U - SAE346 - Notes",
|
||||
"path": "04-SIDEL/05 - E5.007161 - Modifica O&U - SAE346/E5.007161 - Modifica O&U - SAE346 - Notes.md"
|
||||
},
|
||||
{
|
||||
"basename": "E5.007161 - Modifica O&U - SAE346 - Modified on PLC",
|
||||
"path": "04-SIDEL/05 - E5.007161 - Modifica O&U - SAE346/E5.007161 - Modifica O&U - SAE346 - Modified on PLC.md"
|
||||
},
|
||||
{
|
||||
"basename": "Drawing 2025-04-02 11.05.14.excalidraw",
|
||||
"path": "04-SIDEL/05 - E5.007161 - Modifica O&U - SAE346/Drawing 2025-04-02 11.05.14.excalidraw.md"
|
||||
},
|
||||
{
|
||||
"basename": "Drawing 2025-03-26 13.28.27.excalidraw",
|
||||
"path": "04-SIDEL/05 - E5.007161 - Modifica O&U - SAE346/Drawing 2025-03-26 13.28.27.excalidraw.md"
|
||||
}
|
||||
],
|
||||
"omittedPaths": [],
|
||||
"omittedTags": [],
|
||||
"updateOn": "file-open",
|
||||
"omitBookmarks": false
|
||||
}
|
File diff suppressed because one or more lines are too long
|
@ -0,0 +1,16 @@
|
|||
{
|
||||
"id": "recent-files-obsidian",
|
||||
"name": "Recent Files",
|
||||
"version": "1.7.4",
|
||||
"minAppVersion": "0.16.3",
|
||||
"description": "List files by most recently opened",
|
||||
"author": "Tony Grosinger",
|
||||
"authorUrl": "https://grosinger.net",
|
||||
"isDesktopOnly": false,
|
||||
"fundingUrl": {
|
||||
"Github Sponsor": "https://github.com/sponsors/tgrosinger",
|
||||
"Buy me a Coffee": "https://buymeacoffee.com/tgrosinger",
|
||||
"Paypal": "https://paypal.me/tgrosinger"
|
||||
},
|
||||
"donation": "https://buymeacoffee.com/tgrosinger"
|
||||
}
|
|
@ -0,0 +1,34 @@
|
|||
.recent-files-file {
|
||||
.tree-item-spacer {
|
||||
flex-grow: 1;
|
||||
}
|
||||
}
|
||||
|
||||
.recent-files-title {
|
||||
justify-content: flex-start;
|
||||
align-items: unset;
|
||||
}
|
||||
|
||||
.recent-files-file-delete {
|
||||
justify-content: right;
|
||||
display: none;
|
||||
}
|
||||
|
||||
.recent-files-title:hover .recent-files-file-delete {
|
||||
display: flex;
|
||||
cursor: var(--cursor);
|
||||
}
|
||||
|
||||
.recent-files-file-delete:hover {
|
||||
color: var(--nav-item-color-hover);
|
||||
}
|
||||
|
||||
.recent-files-donation {
|
||||
width: 70%;
|
||||
margin: 0 auto;
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
.recent-files-donate-button {
|
||||
margin: 10px;
|
||||
}
|
|
@ -0,0 +1,8 @@
|
|||
{
|
||||
"name": "Minimal",
|
||||
"version": "7.7.19",
|
||||
"minAppVersion": "1.6.1",
|
||||
"author": "@kepano",
|
||||
"authorUrl": "https://twitter.com/kepano",
|
||||
"fundingUrl": "https://www.buymeacoffee.com/kepano"
|
||||
}
|
File diff suppressed because one or more lines are too long
|
@ -4,20 +4,39 @@
|
|||
"type": "split",
|
||||
"children": [
|
||||
{
|
||||
"id": "98b7207724e72bb7",
|
||||
"id": "63158942a4984cd3",
|
||||
"type": "tabs",
|
||||
"children": [
|
||||
{
|
||||
"id": "8e9cd00e3f1b6144",
|
||||
"id": "7e19a0f648386a7a",
|
||||
"type": "leaf",
|
||||
"state": {
|
||||
"type": "empty",
|
||||
"state": {},
|
||||
"type": "markdown",
|
||||
"state": {
|
||||
"file": "04-SIDEL/05 - E5.007161 - Modifica O&U - SAE346/E5.007161 - Modifica O&U - SAE346 - Notes.md",
|
||||
"mode": "source",
|
||||
"source": false
|
||||
},
|
||||
"icon": "lucide-file",
|
||||
"title": "New tab"
|
||||
"title": "E5.007161 - Modifica O&U - SAE346 - Notes"
|
||||
}
|
||||
},
|
||||
{
|
||||
"id": "0ff3b5b4d36c0278",
|
||||
"type": "leaf",
|
||||
"state": {
|
||||
"type": "markdown",
|
||||
"state": {
|
||||
"file": "03-VM/HENKEL/93040 - HENKEL - BowlingGreen/TL22-L25/24 - 9.4006 - Feedback flow - TL22-L25 Q3/9.4006 - Feedback flow - Notes for technician on site TL22 - Q3-Q1.md",
|
||||
"mode": "source",
|
||||
"source": false
|
||||
},
|
||||
"icon": "lucide-file",
|
||||
"title": "9.4006 - Feedback flow - Notes for technician on site TL22 - Q3-Q1"
|
||||
}
|
||||
}
|
||||
]
|
||||
],
|
||||
"currentTab": 1
|
||||
}
|
||||
],
|
||||
"direction": "vertical"
|
||||
|
@ -37,7 +56,7 @@
|
|||
"type": "file-explorer",
|
||||
"state": {
|
||||
"sortOrder": "alphabetical",
|
||||
"autoReveal": false
|
||||
"autoReveal": true
|
||||
},
|
||||
"icon": "lucide-folder-closed",
|
||||
"title": "Files"
|
||||
|
@ -79,6 +98,16 @@
|
|||
"icon": "lucide-bookmark",
|
||||
"title": "Bookmarks"
|
||||
}
|
||||
},
|
||||
{
|
||||
"id": "e02fd11d9cdb76c9",
|
||||
"type": "leaf",
|
||||
"state": {
|
||||
"type": "recent-files",
|
||||
"state": {},
|
||||
"icon": "clock",
|
||||
"title": "Recent Files"
|
||||
}
|
||||
}
|
||||
]
|
||||
}
|
||||
|
@ -183,12 +212,11 @@
|
|||
}
|
||||
}
|
||||
],
|
||||
"currentTab": 6
|
||||
"currentTab": 5
|
||||
}
|
||||
],
|
||||
"direction": "horizontal",
|
||||
"width": 369.5,
|
||||
"collapsed": true
|
||||
"width": 369.5
|
||||
},
|
||||
"left-ribbon": {
|
||||
"hiddenItems": {
|
||||
|
@ -209,17 +237,75 @@
|
|||
"obsidian-git:Open Git source control": false,
|
||||
"copilot:Open Copilot Chat": false,
|
||||
"markitdown:Convert to Markdown with Markitdown": false,
|
||||
"obsidian-importer:Open Importer": false
|
||||
"obsidian-importer:Open Importer": false,
|
||||
"obsidian-projects:Open projects": false
|
||||
}
|
||||
},
|
||||
"active": "8e9cd00e3f1b6144",
|
||||
"floating": {
|
||||
"id": "bc3bc23273d2c426",
|
||||
"type": "floating",
|
||||
"children": [
|
||||
{
|
||||
"id": "c4fa51c5f1c19078",
|
||||
"type": "window",
|
||||
"children": [
|
||||
{
|
||||
"id": "39e6acdae102d48a",
|
||||
"type": "tabs",
|
||||
"children": [
|
||||
{
|
||||
"id": "60a3a46515a8104b",
|
||||
"type": "leaf",
|
||||
"state": {
|
||||
"type": "webviewer",
|
||||
"state": {
|
||||
"url": "https://florianwoelki.github.io/obsidian-iconize/files-and-folders/icon-before-file-or-folder.html",
|
||||
"title": "Icon before file or folder name | Obsidian Iconize",
|
||||
"mode": "webview"
|
||||
},
|
||||
"icon": "globe-2",
|
||||
"title": "Icon before file or folder name | Obsidian Iconize"
|
||||
}
|
||||
}
|
||||
]
|
||||
}
|
||||
],
|
||||
"direction": "vertical",
|
||||
"x": 448,
|
||||
"y": 116,
|
||||
"width": 1024,
|
||||
"height": 800,
|
||||
"maximize": false,
|
||||
"zoom": 0
|
||||
}
|
||||
]
|
||||
},
|
||||
"active": "0ff3b5b4d36c0278",
|
||||
"lastOpenFiles": [
|
||||
"04-SIDEL/05 - E5.007161 - Modifica O&U - SAE346/E5.007161 - Modifica O&U - SAE346 - Notes.md",
|
||||
"04-SIDEL/05 - E5.007161 - Modifica O&U - SAE346/E5.007161 - Modifica O&U - SAE346 - Modified on PLC.md",
|
||||
"04-SIDEL/05 - E5.007161 - Modifica O&U - SAE346/Drawing 2025-04-02 11.05.14.excalidraw.md",
|
||||
"04-SIDEL/05 - E5.007161 - Modifica O&U - SAE346/Drawing 2025-03-26 13.28.27.excalidraw.md",
|
||||
"Excalidraw/Drawing 2025-04-05 23.12.18.excalidraw.md",
|
||||
"03-VM/HENKEL/93040 - HENKEL - BowlingGreen/TL22-L25/24 - 9.4006 - Feedback flow - TL22-L25 Q3/9.4006 - Feedback flow - Notes for technician on site TL22 - Q3-Q1.md",
|
||||
"Excalidraw",
|
||||
"03-VM/HENKEL/93040 - HENKEL - BowlingGreen/Backups/HENKEL Backup Versions.md",
|
||||
"03-VM/HENKEL/93040 - HENKEL - BowlingGreen/9.3976 - Interlock FormatChange/9.3976 - From factory feedback - Prohibit simultaneous changeover on all lines.md",
|
||||
"04-SIDEL/00 - MASTER/SIDEL - Mixer - Equivalences.md",
|
||||
"04-SIDEL/00 - MASTER/SIDEL - Mixer - Master - IO Tags.md",
|
||||
"04-SIDEL/03 - 5.007382-EXMU01UF - RVU008 - EQPT24731/5.007382-EXMU01UF - RVU008 - EQPT24731 - Initial Data.md",
|
||||
"04-SIDEL/03 - 5.007382-EXMU01UF - RVU008 - EQPT24731/5.007382-EXMU01UF - RVU008 - EQPT24731 - Notes.md",
|
||||
"04-SIDEL/04 - E5.007299 - Modifica O&U - RNF032/FDM RNF032 E5.007299.md",
|
||||
"04-SIDEL/04 - E5.007299 - Modifica O&U - RNF032/E5.007299 - RNF032 - FDM.md",
|
||||
"04-SIDEL/04 - E5.007299 - Modifica O&U - RNF032/E5.007299 - Modifica O&U - RNF032 - NOTES.md",
|
||||
"01-Documentation/SIDEL/Master Mixer/Mixer - Notes.md",
|
||||
"01-Documentation/SIDEL/SIDEL - FLD.md",
|
||||
"01-Documentation/SIDEL/SIDEL - Passwords.md",
|
||||
"TODY - Punti da vedere.md",
|
||||
"Palabras Tecnicas/Lista.md",
|
||||
"Temporales/NAT - Switch.md",
|
||||
"Temporales/Drawing 2024-10-13 20.08.30.excalidraw.md",
|
||||
"Excalidraw/Drawing 2025-01-27 16.50.21.excalidraw.md",
|
||||
"04-SIDEL/00 - MASTER/SIDEL - Mixer - Master - IO Tags.md",
|
||||
"cronologiaI-93040-3074-ALPLA-BG-open-points.md",
|
||||
"markitdown-output/adjuntos/TIA Portal Ethernet communication Rules V0.1.pdf",
|
||||
"HTML import/TIA Portal Ethernet communication Rules V0.1.md",
|
||||
|
@ -236,30 +322,12 @@
|
|||
"HTML import/Attachments/image131.gif",
|
||||
"HTML import/Attachments",
|
||||
"HTML import",
|
||||
"04-SIDEL/05 - E5.007161 - Modifica O&U - SAE346/IO/IO - PLC - Software.md",
|
||||
"01-Documentation/SIDEL/MASTER/Communication/contenidoImportado.md",
|
||||
"01-Documentation/SIDEL/MASTER/Communication/adjuntos/temp_conversion.html",
|
||||
"01-Documentation/SIDEL/MASTER/Communication/adjuntos/header.htm",
|
||||
"01-Documentation/SIDEL/MASTER/Communication/adjuntos",
|
||||
"04-SIDEL/05 - E5.007161 - Modifica O&U - SAE346/COMM - FILLER - MIXER/Comm - Mixer - Filler.md",
|
||||
"01-Documentation/SIDEL/MASTER/Communication",
|
||||
"01-Documentation/SIDEL/MASTER",
|
||||
"04-SIDEL/04 - E5.007299 - Modifica O&U - RNF032/contenidoImportado.md",
|
||||
"04-SIDEL/04 - E5.007299 - Modifica O&U - RNF032/FDM RNF032 E5.007299.md",
|
||||
"04-SIDEL/04 - E5.007299 - Modifica O&U - RNF032/E5.007299 - Modifica O&U - RNF032 - NOTES.md",
|
||||
"04-SIDEL/04 - E5.007299 - Modifica O&U - RNF032/data.json",
|
||||
"04-SIDEL/04 - E5.007299 - Modifica O&U - RNF032/E5.007299 - RNF032 - FDM.md",
|
||||
"01-Documentation/SIDEL/SIDEL - FLD.md",
|
||||
"04-SIDEL/00 - MASTER/Untitled.md",
|
||||
"markitdown-output/TIA Portal Ethernet communication Rules V0.1.md",
|
||||
"markitdown-output/1743758594713_TIA Portal Ethernet communication Rules V0.1.docx",
|
||||
"markitdown-output/Specifiche per implemetare com. Siemens V6.5-It.md",
|
||||
"01-Documentation/SIDEL/SIDEL - Passwords.md",
|
||||
"04-SIDEL/03 - 5.007382-EXMU01UF - RVU008 - EQPT24731/5.007382-EXMU01UF - RVU008 - EQPT24731 - Notes.md",
|
||||
"04-SIDEL/03 - 5.007382-EXMU01UF - RVU008 - EQPT24731/5.007382-EXMU01UF - RVU008 - EQPT24731 - Initial Data.md",
|
||||
"01-Documentation/SIEMENS & WINCC/PLC Siemens/TCON, TDISCON, TSEND, and TRCV (TCP communication) instructions.md",
|
||||
"04-SIDEL/00 - MASTER/SIDEL - Master - IPs.md",
|
||||
"01-Documentation/SIEMENS & WINCC/PLC Siemens/Communication TSEND_C - TRCV_C.md",
|
||||
"03-Revised/93789 Sipa Italia - Tinny - HSCounters - Piattaforma/Divider/Untitled.canvas",
|
||||
"04-InLavoro/9..... MASTER Transport/Standard Transport/FB500 Logic.canvas",
|
||||
"04-InLavoro/HENKEL/93040 - HENKEL - BowlingGreen/TL22-L25/Synoptic Change/Q3.canvas",
|
||||
|
|
|
@ -20,11 +20,11 @@ SPARE PARTS KIT, 00000260552 KMT-08-AT, FOR MIXER 00000225909 TMI2AC: Static bea
|
|||
|
||||
![[20250320_091355[1].jpg|450]]
|
||||
|
||||
![[Pasted image 20250320125038.png]]
|
||||
![[Pasted image 20250320125038.png|543]]
|
||||
|
||||
![[Pasted image 20250320161833.png]]
|
||||
![[Pasted image 20250320161833.png|449]]
|
||||
|
||||
![[Pasted image 20250320161852.png]]
|
||||
![[Pasted image 20250320161852.png|738]]
|
||||
|
||||
|
||||
# Offer
|
||||
|
|
Loading…
Reference in New Issue