vault backup: 2021-09-22 11:40:15

This commit is contained in:
Daniel Bulant 2021-09-22 11:40:15 +02:00
parent 128167518e
commit 98ea2f76f6
30 changed files with 90715 additions and 5 deletions

View file

@ -2,5 +2,12 @@
"obsidian-charts",
"obsidian-git",
"obsidian-activity-history",
"obsidian-gist"
"obsidian-gist",
"emoji-shortcodes",
"dataview",
"templater-obsidian",
"obsidian-mind-map",
"obsidian-outliner",
"obsidian-admonition",
"table-editor-obsidian"
]

13106
notes/.obsidian/plugins/dataview/main.js vendored Normal file

File diff suppressed because one or more lines are too long

View file

@ -0,0 +1,10 @@
{
"id": "dataview",
"name": "Dataview",
"version": "0.4.10",
"minAppVersion": "0.12.0",
"description": "Complex data views for the data-obsessed.",
"author": "Michael Brenan <blacksmithgu@gmail.com>",
"authorUrl": "https://github.com/blacksmithgu",
"isDesktopOnly": false
}

View file

@ -0,0 +1,40 @@
/* List View Default Styling; rendered internally as a table. */
.table-view-table {
width: 100%;
}
.table-view-table > thead > tr, .table-view-table > tbody > tr {
margin-top: 1em;
margin-bottom: 1em;
text-align: left;
}
.table-view-table > thead > tr > th {
font-weight: 700;
font-size: larger;
border-top: none;
border-left: none;
border-right: none;
border-bottom: solid;
max-width: 100%;
}
.table-view-table > tbody > tr > td {
text-align: left;
border: none;
font-weight: 400;
max-width: 100%;
}
/** Rendered value styling for any view. */
.dataview-result-list-root-ul {
padding: 0em !important;
margin: 0em !important;
}
/** Generic grouping styling. */
.dataview.result-group {
padding-left: 8px;
}

File diff suppressed because one or more lines are too long

View file

@ -0,0 +1,10 @@
{
"id": "emoji-shortcodes",
"name": "Emoji Shortcodes",
"version": "2.0.0",
"minAppVersion": "0.12.11",
"description": "This Plugin enables the use of Markdown Emoji Shortcodes :smile:",
"author": "phibr0",
"authorUrl": "https://github.com/phibr0",
"isDesktopOnly": false
}

View file

@ -0,0 +1,20 @@
a[href="https://www.buymeacoffee.com/phibr0"] > img {
height: 2.2em;
}
a[href="https://www.buymeacoffee.com/phibr0"]{
transform: translate(0, 5%);
}
.ES-suggester-container {
display: flex;
place-content: space-between;
}
.ES-shortcode {
margin-right: 8px;
}
.ES-suggestion-item {
padding-left: 10px;
}

View file

@ -13,7 +13,7 @@
{
"path": "/",
"date": "2021-09-22",
"size": 18466
"size": 19387
}
],
"activityHistory": [
@ -58,7 +58,7 @@
},
{
"date": "2021-09-22",
"value": 0
"value": 939
}
]
}

View file

@ -0,0 +1,10 @@
{
"userAdmonitions": {},
"syntaxHighlight": false,
"copyButton": false,
"version": "6.3.0",
"autoCollapse": false,
"defaultCollapseType": "open",
"syncLinks": true,
"enableMarkdownProcessor": false
}

File diff suppressed because one or more lines are too long

View file

@ -0,0 +1,10 @@
{
"id": "obsidian-admonition",
"name": "Admonition",
"version": "6.3.0",
"minAppVersion": "0.11.0",
"description": "Admonition block-styled content for Obsidian.md",
"author": "Jeremy Valentine",
"authorUrl": "",
"isDesktopOnly": false
}

View file

@ -0,0 +1,229 @@
/** Constants */
:root {
--admonition-details-icon: url("data:image/svg+xml;charset=utf-8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path d='M8.59 16.58L13.17 12 8.59 7.41 10 6l6 6-6 6-1.41-1.42z'/></svg>");
}
.admonition {
margin: 1.5625em 0;
padding: 0;
overflow: hidden;
color: var(--text-normal);
page-break-inside: avoid;
background-color: var(--background-secondary);
border-left: 0.2rem solid rgb(var(--admonition-color));
border-radius: 0.1rem;
box-shadow: 0 0.2rem 0.5rem var(--background-modifier-box-shadow);
}
.admonition-title {
position: relative;
padding: 0.6rem 0.25em;
font-weight: 700;
background-color: rgba(var(--admonition-color), 0.1);
}
.admonition-title-content {
display: flex;
justify-content: flex-start;
margin-top: 0 !important;
margin-bottom: 0 !important;
}
.admonition-title-icon {
color: rgb(var(--admonition-color));
display: flex;
align-items: center;
justify-content: center;
margin: 0 0.5em 0 0.25em;
min-width: 1em;
}
.admonition-title-markdown {
display: block;
}
.admonition-title.no-title {
display: none;
}
.admonition > .admonition-title.no-title + .admonition-content-holder {
margin-top: 1rem;
margin-bottom: 1rem;
}
.admonition-content-holder {
position: relative;
}
.admonition-content {
margin: 10px 15px;
position: relative;
overflow-x: auto;
}
.admonition-content-copy {
color: var(--text-faint);
cursor: pointer;
opacity: 0;
position: absolute;
right: 0.375rem;
top: -5px;
transition: 0.3s opacity ease-in;
}
.admonition-content-copy:hover {
color: var(--text-normal);
}
.admonition:hover .admonition-content-copy,
.admonition-content-copy:hover {
opacity: 1;
}
.admonition-title:hover + .admonition-content .admonition-content-copy {
opacity: 0;
}
details.admonition:not([open]) {
padding-bottom: 0;
box-shadow: none;
}
details.admonition > summary {
outline: none;
display: block !important;
list-style: none !important;
list-style-type: none !important;
min-height: 1rem;
border-top-left-radius: 0.1rem;
border-top-right-radius: 0.1rem;
cursor: pointer;
}
details.admonition > summary::-webkit-details-marker,
details.admonition > summary::marker {
display: none !important;
}
details.admonition > summary > .collapser {
position: absolute;
top: 50%;
right: 8px;
transform: translateY(-50%);
content: "";
}
details.admonition > summary > .collapser > .handle {
transform: rotate(0deg);
transition: transform 0.25s;
background-color: currentColor;
-webkit-mask-repeat: no-repeat;
mask-repeat: no-repeat;
-webkit-mask-size: contain;
mask-size: contain;
-webkit-mask-image: var(--admonition-details-icon);
mask-image: var(--admonition-details-icon);
width: 20px;
height: 20px;
}
details.admonition[open] > summary > .collapser > .handle {
transform: rotate(90deg);
}
/** Settings */
.admonition-setting-additional-container
> .setting-item:not(.setting-item-heading) {
border: 0px;
}
.admonition-setting-additional-container {
border-bottom: 1px solid var(--background-modifier-border);
border-top: 1px solid var(--background-modifier-border);
padding: 18px 0 0 0;
}
.admonition-setting-additional-container > .setting-item-heading:only-child {
padding-bottom: 18px;
}
.admonition-setting-additional-container > .additional {
margin: 6px 12px;
}
.admonition-setting-additional-container > .additional > .setting-item {
border-top: 0;
padding-top: 9px;
}
.admonition-setting-additional-container
> .additional
> .setting-item
> .setting-item-control
> *:first-child {
margin: 0 6px;
}
.setting-item > .admonition {
width: 50%;
margin: 0;
}
.unset-align-items {
align-items: unset;
}
.has-invalid-message {
display: grid;
grid-template-columns: 1fr 1fr;
grid-template-rows: 1fr 1fr;
grid-template-areas:
"text image"
"inv inv";
}
input.is-invalid {
border-color: #dc3545 !important;
background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12' width='12' height='12' fill='none' stroke='%23dc3545'%3e%3ccircle cx='6' cy='6' r='4.5'/%3e%3cpath stroke-linejoin='round' d='M5.8 3.6h.4L6 6.5z'/%3e%3ccircle cx='6' cy='8.2' r='.6' fill='%23dc3545' stroke='none'/%3e%3c/svg%3e");
background-repeat: no-repeat;
background-position: right calc(0.375em + 0.1875rem) center;
background-size: calc(0.75em + 0.375rem) calc(0.75em + 0.375rem);
}
.admonition-type-setting input {
grid-column: span 2;
}
.invalid-feedback {
display: block;
grid-area: inv;
width: 100%;
margin-top: 0.25rem;
font-size: 0.875em;
color: #dc3545;
}
.admonition-suggester-icon svg {
width: 1em;
}
/** Internal */
.admonition li.task-list-item.is-checked p {
text-decoration: line-through;
}
.admonition-settings .coffee {
width: 60%;
color: var(--text-faint);
margin: 1rem auto;
text-align: center;
}
.admonition-settings .coffee img {
height: 30px;
}
.admonition-file-upload {
margin-right: 0;
margin-left: 12px;
}
.admonition-file-upload > input[type="file"] {
display: none;
}

File diff suppressed because one or more lines are too long

View file

@ -0,0 +1,8 @@
{
"id": "obsidian-mind-map",
"name": "Mind Map",
"version": "1.1.0",
"description": "A plugin to preview notes as Markmap mind maps",
"isDesktopOnly": false,
"js": "main.js"
}

File diff suppressed because one or more lines are too long

View file

@ -0,0 +1,10 @@
{
"id": "obsidian-outliner",
"name": "Outliner",
"version": "1.3.1",
"minAppVersion": "0.12.10",
"description": "Work with your lists like in Workflowy or RoamResearch.",
"author": "Viacheslav Slinko",
"authorUrl": "https://github.com/vslinko",
"isDesktopOnly": true
}

View file

@ -0,0 +1,42 @@
/* lists */
.outliner-plugin-bls .cm-s-obsidian .HyperMD-list-line {
padding-top: 0.4em;
}
/* bullets */
.outliner-plugin-bls .cm-s-obsidian span.cm-formatting-list {
letter-spacing: 3px;
}
.outliner-plugin-bls .cm-s-obsidian span.cm-formatting-list-ul {
color: var(--background-primary) !important;
}
.outliner-plugin-bls .cm-s-obsidian span.cm-formatting-list-ul:before {
content: "•";
position: absolute;
margin-left: -3px;
margin-top: -5px;
font-size: 24px;
color: var(--text-muted);
visibility: visible !important;
}
/* lines */
.outliner-plugin-bls .cm-hmd-list-indent .cm-tab {
position: relative;
}
.outliner-plugin-bls .cm-hmd-list-indent .cm-tab::before {
content: "";
border-left: 1px solid var(--text-faint);
position: absolute;
left: 3px;
top: -9px;
bottom: -9999px;
}
.outliner-plugin-bls .cm-s-obsidian .CodeMirror-line {
position: relative;
overflow: hidden;
}

File diff suppressed because one or more lines are too long

View file

@ -0,0 +1,10 @@
{
"id": "sliding-panes-obsidian",
"name": "Sliding Panes (Andy's Mode)",
"author": "death_au",
"authorUrl": "https://github.com/deathau",
"description": "Sliding Panes! Based on the style of [Andy Matuschak's Notes](https://notes.andymatuschak.org/)",
"isDesktopOnly": false,
"version": "3.2.3",
"minAppVersion": "0.10.3"
}

View file

@ -0,0 +1,115 @@
body.plugin-sliding-panes .workspace > .mod-root {
overflow-x: auto;
overflow-y: hidden;
}
body.plugin-sliding-panes .workspace > .mod-root > .workspace-leaf {
display: block;
flex: none;
}
body.plugin-sliding-panes .workspace > .mod-root > .workspace-leaf .workspace-leaf-content {
position: relative;
}
body.plugin-sliding-panes .workspace > .mod-root .mod-am-right-of-active .cm-s-obsidian > div:not([class]) {
left: -50% !important;
}
body.plugin-sliding-panes .workspace > .mod-root .mod-am-left-of-active .cm-s-obsidian > div:not([class]) {
left: 150% !important;
}
body.plugin-sliding-panes-stacking .workspace > .mod-root > .workspace-leaf {
box-shadow: 0px 0px 20px 20px rgba(0, 0, 0, 0.25);
position: sticky;
}
body.plugin-sliding-panes-rotate-header .workspace > .mod-root > .workspace-leaf {
/* first we'll add a bit of gap for the spines */
/* active titles have different border colours */
}
body.plugin-sliding-panes-rotate-header .workspace > .mod-root > .workspace-leaf > .workspace-leaf-content {
padding-left: var(--header-width);
/* this is where the magic happens */
/* get rid of the gap left by the now-missing horizontal title */
}
body.plugin-sliding-panes-rotate-header .workspace > .mod-root > .workspace-leaf > .workspace-leaf-content > .view-header {
writing-mode: vertical-lr;
text-orientation: sideways;
border-right: 1px solid var(--background-secondary-alt);
border-left: 2px solid var(--background-secondary-alt);
border-top: none;
border-bottom: none;
width: var(--header-width);
height: auto;
position: absolute;
left: 0;
top: 0;
bottom: 0;
/* unset the title container height and swap padding */
/* swap the padding/margin around for the header and actions icons */
}
body.plugin-sliding-panes-rotate-header .workspace > .mod-root > .workspace-leaf > .workspace-leaf-content > .view-header > .view-header-title-container {
height: unset;
padding-left: unset;
padding-top: 0;
/* get rid of unnecessary padding */
/* fix the long-title-obscuring shadows */
}
body.plugin-sliding-panes-rotate-header .workspace > .mod-root > .workspace-leaf > .workspace-leaf-content > .view-header > .view-header-title-container > .view-header-title {
padding-right: 0;
padding-top: 15px;
padding-bottom: 15px;
}
body.plugin-sliding-panes-rotate-header .workspace > .mod-root > .workspace-leaf > .workspace-leaf-content > .view-header > .view-header-title-container:after {
width: 100%;
height: 15px;
top: unset;
bottom: 0;
background: linear-gradient(to bottom, transparent, var(--background-secondary));
}
body.plugin-sliding-panes-rotate-header .workspace > .mod-root > .workspace-leaf > .workspace-leaf-content > .view-header > .view-header-title-container:before {
content: "";
position: absolute;
width: 100%;
height: 15px;
top: 0;
bottom: unset;
background: linear-gradient(to top, transparent, var(--background-secondary));
}
body.plugin-sliding-panes-rotate-header .workspace > .mod-root > .workspace-leaf > .workspace-leaf-content > .view-header .view-header-icon,
body.plugin-sliding-panes-rotate-header .workspace > .mod-root > .workspace-leaf > .workspace-leaf-content > .view-header .view-actions {
padding: 0;
}
body.plugin-sliding-panes-rotate-header .workspace > .mod-root > .workspace-leaf > .workspace-leaf-content > .view-header .view-header-icon {
margin: 8px 0 3px 0;
}
body.plugin-sliding-panes-rotate-header .workspace > .mod-root > .workspace-leaf > .workspace-leaf-content > .view-header .view-action {
margin: 8px 0;
}
body.plugin-sliding-panes-rotate-header .workspace > .mod-root > .workspace-leaf > .workspace-leaf-content > .view-content {
height: 100%;
}
body.plugin-sliding-panes-rotate-header .workspace > .mod-root > .workspace-leaf.mod-active > .workspace-leaf-content > .view-header {
border-right: 2px solid var(--interactive-accent);
border-bottom: none;
}
body.plugin-sliding-panes-rotate-header .workspace > .mod-root > .workspace-leaf.mod-active > .workspace-leaf-content > .view-header > .view-header-title-container:after {
background: linear-gradient(to bottom, transparent, var(--background-primary-alt));
}
body.plugin-sliding-panes-rotate-header .workspace > .mod-root > .workspace-leaf.mod-active > .workspace-leaf-content > .view-header > .view-header-title-container:before {
background: linear-gradient(to top, transparent, var(--background-primary-alt));
}
body.plugin-sliding-panes-rotate-header.plugin-sliding-panes-header-alt .workspace > .mod-root > .workspace-leaf > .workspace-leaf-content > .view-header .view-header-title-container {
transform: rotate(180deg);
text-align: right;
margin-top: 10px;
}
body.plugin-sliding-panes-rotate-header.plugin-sliding-select-orientation-sideway .workspace > .mod-root > .workspace-leaf > .workspace-leaf-content > .view-header {
text-orientation: sideways !important;
}
body.plugin-sliding-panes-rotate-header.plugin-sliding-select-orientation-mixed .workspace > .mod-root > .workspace-leaf > .workspace-leaf-content > .view-header {
text-orientation: mixed !important;
}
body.plugin-sliding-panes-rotate-header.plugin-sliding-select-orientation-upright .workspace > .mod-root > .workspace-leaf > .workspace-leaf-content > .view-header {
text-orientation: upright !important;
}

View file

@ -0,0 +1,6 @@
{
"formatType": "normal",
"showRibbonIcon": true,
"bindEnter": true,
"bindTab": true
}

File diff suppressed because one or more lines are too long

View file

@ -0,0 +1,11 @@
{
"id": "table-editor-obsidian",
"name": "Advanced Tables",
"author": "Tony Grosinger",
"authorUrl": "https://grosinger.net",
"description": "Improved table navigation, formatting, manipulation, and formulas",
"isDesktopOnly": false,
"minAppVersion": "0.11.12",
"version": "0.13.0",
"js": "main.js"
}

View file

@ -0,0 +1,28 @@
.HyperMD-table-row span.cm-inline-code {
font-size: 100%;
}
.widget-icon {
width: 20px;
height: 20px;
fill: var(--text-muted);
}
.widget-icon:hover {
fill: var(--text-normal);
}
.advanced-tables-csv-export textarea {
height: 200px;
width: 100%;
}
.advanced-tables-donation {
width: 70%;
margin: 0 auto;
text-align: center;
}
.advanced-tables-donate-button {
margin: 10px;
}

File diff suppressed because one or more lines are too long

View file

@ -0,0 +1,10 @@
{
"id": "templater-obsidian",
"name": "Templater",
"version": "1.8.1",
"description": "Create and use templates",
"minAppVersion": "0.11.13",
"author": "SilentVoid",
"authorUrl": "https://github.com/SilentVoid13",
"isDesktopOnly": false
}

View file

@ -0,0 +1,256 @@
.templater_div {
border-top: 1px solid var(--background-modifier-border);
}
.templater_div > .setting-item {
border-top: none !important;
align-self: center;
}
.templater_div > .setting-item > .setting-item-control {
justify-content: space-around;
padding: 0;
width: 100%;
}
.templater_div > .setting-item > .setting-item-control > .setting-editor-extra-setting-button {
align-self: center;
}
.templater_title {
margin: 0;
padding: 0;
margin-top: 5px;
text-align: center;
}
.templater_template {
align-self: center;
margin-left: 5px;
margin-right: 5px;
width: 70%;
}
.templater_cmd {
margin-left: 5px;
margin-right: 5px;
font-size: 14px;
width: 100%;
}
.templater_div2 > .setting-item {
align-content: center;
justify-content: center;
}
.templater_button:hover {
background-color: #00496A !important;
}
.templater-prompt-div {
display: flex;
}
.templater-prompt-form {
display: flex;
flex-grow: 1;
}
.templater-prompt-input {
flex-grow: 1;
}
.cm-s-obsidian .templater-command-bg {
left: 0px;
right: 0px;
background-color: var(--background-primary-alt);
}
.cm-s-obsidian .cm-templater-command{
color: #d4d4d4;
font-size: 0.85em;
font-family: var(--font-monospace);
line-height: 1.3;
}
.cm-s-obsidian .templater-inline .cm-templater-command {
background-color: var(--background-primary-alt);
}
.cm-s-obsidian .cm-templater-command.cm-templater-opening-tag {
font-weight: bold;
}
.cm-s-obsidian .cm-templater-command.cm-templater-closing-tag {
font-weight: bold;
}
.cm-s-obsidian .cm-templater-command.cm-templater-interpolation-tag {
color: #008BFF;
}
.cm-s-obsidian .cm-templater-command.cm-templater-execution-tag {
color: #C0D700;
}
.cm-s-obsidian .cm-templater-command.cm-templater-raw-tag {
color: green;
}
.cm-s-obsidian .cm-templater-command.cm-keyword {
color: #00A7AA;
font-weight: normal;
}
.cm-s-obsidian .cm-templater-command.cm-atom {
color: #F39B35;
}
.cm-s-obsidian .cm-templater-command.cm-number {
color: #A06FCA;
}
.cm-s-obsidian .cm-templater-command.cm-type {
color: #A06FCA;
}
.cm-s-obsidian .cm-templater-command.cm-def {
color: #98E342;
}
.cm-s-obsidian .cm-templater-command.cm-property {
color: #D4D4D4;
}
.cm-s-obsidian .cm-templater-command.cm-variable {
color: #D4D4D4;
}
.cm-s-obsidian .cm-templater-command.cm-variable-2 {
color: #da7dae;
}
.cm-s-obsidian .cm-templater-command.cm-variable-3 {
color: #A06FCA;
}
.cm-s-obsidian .cm-templater-command.cm-type.cm-def {
color: #FC4384;
}
.cm-s-obsidian .cm-templater-command.cm-property.cm-def {
color: #FC4384;
}
.cm-s-obsidian .cm-templater-command.cm-callee {
color: #FC4384;
}
.cm-s-obsidian .cm-templater-command.cm-operator {
color: #FC4384;
}
.cm-s-obsidian .cm-templater-command.cm-qualifier {
color: #FC4384;
}
.cm-s-obsidian .cm-templater-command.cm-tag {
color: #FC4384;
}
.cm-s-obsidian .cm-templater-command.cm-tag.cm-bracket {
color: #D4D4D4;
}
.cm-s-obsidian .cm-templater-command.cm-attribute {
color: #A06FCA;
}
.cm-s-obsidian .cm-templater-command.cm-comment {
color: #696d70;
}
.cm-s-obsidian .cm-templater-command.cm-comment.cm-tag {
color: #FC4384;
}
.cm-s-obsidian .cm-templater-command.cm-comment.cm-attribute {
color: #D4D4D4;
}
.cm-s-obsidian .cm-templater-command.cm-string {
color: #E6DB74;
}
.cm-s-obsidian .cm-templater-command.cm-string-2 {
color: #F39B35;
}
.cm-s-obsidian .cm-templater-command.cm-meta {
color: #D4D4D4;
background: inherit;
}
.cm-s-obsidian .cm-templater-command.cm-builtin {
color: #FC4384;
}
.cm-s-obsidian .cm-templater-command.cm-header {
color: #da7dae;
}
.cm-s-obsidian .cm-templater-command.cm-hr {
color: #98E342;
}
.cm-s-obsidian .cm-templater-command.cm-link {
color: #696d70;
}
.cm-s-obsidian .cm-templater-command.cm-error {
border-bottom: 1px solid #C42412;
}
.cm-s-obsidian pre.HyperMD-codeblock .cm-keyword {
font-weight: normal;
}
.cm-s-obsidian .cm-templater-command.CodeMirror-activeline-background {
background: #272727;
}
.cm-s-obsidian .cm-templater-command.CodeMirror-matchingbracket {
outline: 1px solid grey;
color: #D4D4D4 !important;
}

View file

@ -85,4 +85,15 @@ Střídá se zpěv a mluvené slovo.
#### Muzikál
Převládá mluvené slovo s občasným zpěvem.
#### Melodram
Drama doprovázeno melodií.
Drama doprovázeno melodií.
## Tropy
Přirovnání, metafora, metonymie.
## Figury
Určitá slova na určitých místech.
### Anafora
Stejné slovo ve dvou verších na začátku.
### Epifora
Stejné slovo ve dvou verších na konci.
### Gradace
Stupňování
> tu zní, tam volá a burácí všady

5
notes/har/IQRF.md Normal file
View file

@ -0,0 +1,5 @@
# IQRF
<abbr title="Internet of Things">IoT</abbr>, chytré spotřebiče/domácnost/škola.
- česká technologie
- 868MHz nebo 343MHz (větší dosah než Wi-Fi)

View file

@ -77,8 +77,26 @@
- pokročilejščí miniaturizace
- Texas Instruments
#### Multiprogramátorství
Zatímco program čeká na přísun informací je procesorem zpracována další úloha.
- proces
#### Multitasking
Procesor zpracovává více úloh naráz - procesor střídá procesy tak rychle že to vypadá že je dělá naráz.
#### Gordon Moore
> Kapacita integrovaných obvodů se každých 12 až 18 měsíců zdvojnásobí bez zvýšení výrobních nákladů.
### Čtvrtá generace
Je to pravda dodnes.
### Čtvrtá generace (1981 - ...)
- osobní počítače - PC
- mikroprocesory
#### Mikroprocesor
- procesor
- jedno pouzdro s několika mikroprocesory
- multiprocesor
- použití několika procesorů najednou
#### Bill Gates
- DOS
- IBM
- Microsoft
- 2 členy (+ Paul Allen)