Add everything

This commit is contained in:
Jerry Jacobs 2024-08-09 14:10:26 +02:00
parent 8c27dd39b3
commit 6d0a0c9fd8
183 changed files with 86927 additions and 1347 deletions

BIN
.DS_Store vendored

Binary file not shown.

14
.Ulysses-Settings.plist Normal file
View File

@ -0,0 +1,14 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<dict>
<key>defaultPathExtensions</key>
<string>md</string>
<key>enforceFencedCodeBlocks</key>
<false/>
<key>sheetFormat</key>
<string>foreign</string>
<key>useInlineLinks</key>
<false/>
</dict>
</plist>

5
.gitattributes vendored Normal file
View File

@ -0,0 +1,5 @@
*.pdf filter=lfs diff=lfs merge=lfs -text
*.jpg filter=lfs diff=lfs merge=lfs -text
*.png filter=lfs diff=lfs merge=lfs -text
*.pages filter=lfs diff=lfs merge=lfs -text
*.pptx filter=lfs diff=lfs merge=lfs -text

1
.obsidian/app.json vendored Normal file
View File

@ -0,0 +1 @@
{}

3
.obsidian/appearance.json vendored Normal file
View File

@ -0,0 +1,3 @@
{
"accentColor": ""
}

3
.obsidian/community-plugins.json vendored Normal file
View File

@ -0,0 +1,3 @@
[
"obsidian-git"
]

30
.obsidian/core-plugins-migration.json vendored Normal file
View File

@ -0,0 +1,30 @@
{
"file-explorer": true,
"global-search": true,
"switcher": true,
"graph": true,
"backlink": true,
"canvas": true,
"outgoing-link": true,
"tag-pane": true,
"properties": false,
"page-preview": true,
"daily-notes": true,
"templates": true,
"note-composer": true,
"command-palette": true,
"slash-command": false,
"editor-status": true,
"bookmarks": true,
"markdown-importer": false,
"zk-prefixer": false,
"random-note": false,
"outline": true,
"word-count": true,
"slides": false,
"audio-recorder": false,
"workspaces": false,
"file-recovery": true,
"publish": false,
"sync": false
}

20
.obsidian/core-plugins.json vendored Normal file
View File

@ -0,0 +1,20 @@
[
"file-explorer",
"global-search",
"switcher",
"graph",
"backlink",
"canvas",
"outgoing-link",
"tag-pane",
"page-preview",
"daily-notes",
"templates",
"note-composer",
"command-palette",
"editor-status",
"bookmarks",
"outline",
"word-count",
"file-recovery"
]

22
.obsidian/graph.json vendored Normal file
View File

@ -0,0 +1,22 @@
{
"collapse-filter": true,
"search": "",
"showTags": false,
"showAttachments": false,
"hideUnresolved": false,
"showOrphans": true,
"collapse-color-groups": true,
"colorGroups": [],
"collapse-display": true,
"showArrow": false,
"textFadeMultiplier": 0,
"nodeSizeMultiplier": 1,
"lineSizeMultiplier": 1,
"collapse-forces": true,
"centerStrength": 0.518713248970312,
"repelStrength": 10,
"linkStrength": 1,
"linkDistance": 250,
"scale": 1,
"close": false
}

View File

@ -0,0 +1,58 @@
{
"commitMessage": "vault backup: {{date}}",
"commitDateFormat": "YYYY-MM-DD HH:mm:ss",
"autoSaveInterval": 0,
"autoPushInterval": 0,
"autoPullInterval": 0,
"autoPullOnBoot": true,
"disablePush": false,
"pullBeforePush": true,
"disablePopups": false,
"disablePopupsForNoChanges": false,
"listChangedFilesInMessageBody": false,
"showStatusBar": true,
"updateSubmodules": false,
"syncMethod": "merge",
"customMessageOnAutoBackup": false,
"autoBackupAfterFileChange": false,
"treeStructure": false,
"refreshSourceControl": true,
"basePath": "",
"differentIntervalCommitAndPush": false,
"changedFilesInStatusBar": false,
"showedMobileNotice": true,
"refreshSourceControlTimer": 7000,
"showBranchStatusBar": true,
"setLastSaveToLastCommit": false,
"submoduleRecurseCheckout": false,
"gitDir": "",
"showFileMenu": true,
"authorInHistoryView": "hide",
"dateInHistoryView": false,
"lineAuthor": {
"show": false,
"followMovement": "inactive",
"authorDisplay": "initials",
"showCommitHash": false,
"dateTimeFormatOptions": "date",
"dateTimeFormatCustomString": "YYYY-MM-DD HH:mm",
"dateTimeTimezone": "viewer-local",
"coloringMaxAge": "1y",
"colorNew": {
"r": 255,
"g": 150,
"b": 150
},
"colorOld": {
"r": 120,
"g": 160,
"b": 255
},
"textColorCss": "var(--text-muted)",
"ignoreWhitespace": false,
"gutterSpacingFallbackLength": 5,
"lastShownAuthorDisplay": "initials",
"lastShownDateTimeFormatOptions": "date"
},
"autoCommitMessage": "vault backup: {{date}}"
}

44901
.obsidian/plugins/obsidian-git/main.js vendored Normal file

File diff suppressed because one or more lines are too long

View File

@ -0,0 +1,10 @@
{
"author": "Vinzent",
"authorUrl": "https://github.com/Vinzent03",
"id": "obsidian-git",
"name": "Git",
"description": "Integrate Git version control with automatic backup and other advanced features.",
"isDesktopOnly": false,
"fundingUrl": "https://ko-fi.com/vinzent",
"version": "2.25.0"
}

View File

@ -0,0 +1,562 @@
@keyframes loading {
0% {
transform: rotate(0deg);
}
100% {
transform: rotate(360deg);
}
}
.workspace-leaf-content[data-type="git-view"] .button-border {
border: 2px solid var(--interactive-accent);
border-radius: var(--radius-s);
}
.workspace-leaf-content[data-type="git-view"] .view-content {
padding: 0;
}
.workspace-leaf-content[data-type="git-history-view"] .view-content {
padding: 0;
}
.loading > svg {
animation: 2s linear infinite loading;
transform-origin: 50% 50%;
display: inline-block;
}
.obsidian-git-center {
margin: auto;
text-align: center;
width: 50%;
}
.obsidian-git-textarea {
display: block;
margin-left: auto;
margin-right: auto;
}
.obsidian-git-center-button {
display: block;
margin: 20px auto;
}
.tooltip.mod-left {
overflow-wrap: break-word;
}
.tooltip.mod-right {
overflow-wrap: break-word;
}
.git-tools {
display: flex;
margin-left: auto;
}
.git-tools .type {
padding-left: var(--size-2-1);
display: flex;
align-items: center;
justify-content: center;
width: 11px;
}
.git-tools .type[data-type="M"] {
color: orange;
}
.git-tools .type[data-type="D"] {
color: red;
}
.git-tools .buttons {
display: flex;
}
.git-tools .buttons > * {
padding: 0 0;
height: auto;
}
.is-active .git-tools .buttons > * {
color: var(--nav-item-color-active);
}
.git-author {
color: var(--text-accent);
}
.git-date {
color: var(--text-accent);
}
.git-ref {
color: var(--text-accent);
}
.workspace-leaf-content[data-type="diff-view"] .d2h-d-none {
display: none;
}
.workspace-leaf-content[data-type="diff-view"] .d2h-wrapper {
text-align: left;
}
.workspace-leaf-content[data-type="diff-view"] .d2h-file-header {
background-color: var(--background-primary);
border-bottom: 1px solid var(--interactive-accent);
font-family: var(--font-monospace);
height: 35px;
padding: 5px 10px;
}
.workspace-leaf-content[data-type="diff-view"] .d2h-file-header,
.workspace-leaf-content[data-type="diff-view"] .d2h-file-stats {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
}
.workspace-leaf-content[data-type="diff-view"] .d2h-file-stats {
font-size: 14px;
margin-left: auto;
}
.workspace-leaf-content[data-type="diff-view"] .d2h-lines-added {
border: 1px solid #b4e2b4;
border-radius: 5px 0 0 5px;
color: #399839;
padding: 2px;
text-align: right;
vertical-align: middle;
}
.workspace-leaf-content[data-type="diff-view"] .d2h-lines-deleted {
border: 1px solid #e9aeae;
border-radius: 0 5px 5px 0;
color: #c33;
margin-left: 1px;
padding: 2px;
text-align: left;
vertical-align: middle;
}
.workspace-leaf-content[data-type="diff-view"] .d2h-file-name-wrapper {
-webkit-box-align: center;
-ms-flex-align: center;
align-items: center;
display: -webkit-box;
display: -ms-flexbox;
display: flex;
font-size: 15px;
width: 100%;
}
.workspace-leaf-content[data-type="diff-view"] .d2h-file-name {
overflow-x: hidden;
text-overflow: ellipsis;
white-space: nowrap;
}
.workspace-leaf-content[data-type="diff-view"] .d2h-file-wrapper {
border: 1px solid var(--background-modifier-border);
border-radius: 3px;
margin-bottom: 1em;
}
.workspace-leaf-content[data-type="diff-view"] .d2h-file-collapse {
-webkit-box-pack: end;
-ms-flex-pack: end;
-webkit-box-align: center;
-ms-flex-align: center;
align-items: center;
border: 1px solid var(--background-modifier-border);
border-radius: 3px;
cursor: pointer;
display: none;
font-size: 12px;
justify-content: flex-end;
padding: 4px 8px;
}
.workspace-leaf-content[data-type="diff-view"] .d2h-file-collapse.d2h-selected {
background-color: #c8e1ff;
}
.workspace-leaf-content[data-type="diff-view"] .d2h-file-collapse-input {
margin: 0 4px 0 0;
}
.workspace-leaf-content[data-type="diff-view"] .d2h-diff-table {
border-collapse: collapse;
font-family: Menlo, Consolas, monospace;
font-size: 13px;
width: 100%;
}
.workspace-leaf-content[data-type="diff-view"] .d2h-files-diff {
width: 100%;
}
.workspace-leaf-content[data-type="diff-view"] .d2h-file-diff {
overflow-y: hidden;
}
.workspace-leaf-content[data-type="diff-view"] .d2h-file-side-diff {
display: inline-block;
margin-bottom: -8px;
margin-right: -4px;
overflow-x: scroll;
overflow-y: hidden;
width: 50%;
}
.workspace-leaf-content[data-type="diff-view"] .d2h-code-line {
padding: 0 8em;
}
.workspace-leaf-content[data-type="diff-view"] .d2h-code-line,
.workspace-leaf-content[data-type="diff-view"] .d2h-code-side-line {
display: inline-block;
-webkit-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none;
white-space: nowrap;
width: 100%;
}
.workspace-leaf-content[data-type="diff-view"] .d2h-code-side-line {
padding: 0 4.5em;
}
.workspace-leaf-content[data-type="diff-view"] .d2h-code-line-ctn {
word-wrap: normal;
background: none;
display: inline-block;
padding: 0;
-webkit-user-select: text;
-moz-user-select: text;
-ms-user-select: text;
user-select: text;
vertical-align: middle;
white-space: pre;
width: 100%;
}
.theme-light .workspace-leaf-content[data-type="diff-view"] .d2h-code-line del,
.theme-light
.workspace-leaf-content[data-type="diff-view"]
.d2h-code-side-line
del {
background-color: #ffb6ba;
}
.theme-dark .workspace-leaf-content[data-type="diff-view"] .d2h-code-line del,
.theme-dark
.workspace-leaf-content[data-type="diff-view"]
.d2h-code-side-line
del {
background-color: #8d232881;
}
.workspace-leaf-content[data-type="diff-view"] .d2h-code-line del,
.workspace-leaf-content[data-type="diff-view"] .d2h-code-line ins,
.workspace-leaf-content[data-type="diff-view"] .d2h-code-side-line del,
.workspace-leaf-content[data-type="diff-view"] .d2h-code-side-line ins {
border-radius: 0.2em;
display: inline-block;
margin-top: -1px;
text-decoration: none;
vertical-align: middle;
}
.theme-light .workspace-leaf-content[data-type="diff-view"] .d2h-code-line ins,
.theme-light
.workspace-leaf-content[data-type="diff-view"]
.d2h-code-side-line
ins {
background-color: #97f295;
text-align: left;
}
.theme-dark .workspace-leaf-content[data-type="diff-view"] .d2h-code-line ins,
.theme-dark
.workspace-leaf-content[data-type="diff-view"]
.d2h-code-side-line
ins {
background-color: #1d921996;
text-align: left;
}
.workspace-leaf-content[data-type="diff-view"] .d2h-code-line-prefix {
word-wrap: normal;
background: none;
display: inline;
padding: 0;
white-space: pre;
}
.workspace-leaf-content[data-type="diff-view"] .line-num1 {
float: left;
}
.workspace-leaf-content[data-type="diff-view"] .line-num1,
.workspace-leaf-content[data-type="diff-view"] .line-num2 {
-webkit-box-sizing: border-box;
box-sizing: border-box;
overflow: hidden;
padding: 0 0.5em;
text-overflow: ellipsis;
width: 3.5em;
}
.workspace-leaf-content[data-type="diff-view"] .line-num2 {
float: right;
}
.workspace-leaf-content[data-type="diff-view"] .d2h-code-linenumber {
background-color: var(--background-primary);
border: solid var(--background-modifier-border);
border-width: 0 1px;
-webkit-box-sizing: border-box;
box-sizing: border-box;
color: var(--text-muted);
cursor: pointer;
display: inline-block;
position: absolute;
text-align: right;
width: 7.5em;
}
.workspace-leaf-content[data-type="diff-view"] .d2h-code-linenumber:after {
content: "\200b";
}
.workspace-leaf-content[data-type="diff-view"] .d2h-code-side-linenumber {
background-color: var(--background-primary);
border: solid var(--background-modifier-border);
border-width: 0 1px;
-webkit-box-sizing: border-box;
box-sizing: border-box;
color: var(--text-muted);
cursor: pointer;
display: inline-block;
overflow: hidden;
padding: 0 0.5em;
position: absolute;
text-align: right;
text-overflow: ellipsis;
width: 4em;
}
.workspace-leaf-content[data-type="diff-view"] .d2h-diff-tbody tr {
position: relative;
}
.workspace-leaf-content[data-type="diff-view"] .d2h-code-side-linenumber:after {
content: "\200b";
}
.workspace-leaf-content[data-type="diff-view"] .d2h-code-side-emptyplaceholder,
.workspace-leaf-content[data-type="diff-view"] .d2h-emptyplaceholder {
background-color: var(--background-primary);
border-color: var(--background-modifier-border);
}
.workspace-leaf-content[data-type="diff-view"] .d2h-code-line-prefix,
.workspace-leaf-content[data-type="diff-view"] .d2h-code-linenumber,
.workspace-leaf-content[data-type="diff-view"] .d2h-code-side-linenumber,
.workspace-leaf-content[data-type="diff-view"] .d2h-emptyplaceholder {
-webkit-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none;
}
.workspace-leaf-content[data-type="diff-view"] .d2h-code-linenumber,
.workspace-leaf-content[data-type="diff-view"] .d2h-code-side-linenumber {
direction: rtl;
}
.theme-light .workspace-leaf-content[data-type="diff-view"] .d2h-del {
background-color: #fee8e9;
border-color: #e9aeae;
}
.theme-light .workspace-leaf-content[data-type="diff-view"] .d2h-ins {
background-color: #dfd;
border-color: #b4e2b4;
}
.theme-dark .workspace-leaf-content[data-type="diff-view"] .d2h-del {
background-color: #521b1d83;
border-color: #691d1d73;
}
.theme-dark .workspace-leaf-content[data-type="diff-view"] .d2h-ins {
background-color: rgba(30, 71, 30, 0.5);
border-color: #13501381;
}
.workspace-leaf-content[data-type="diff-view"] .d2h-info {
background-color: var(--background-primary);
border-color: var(--background-modifier-border);
color: var(--text-normal);
}
.theme-light
.workspace-leaf-content[data-type="diff-view"]
.d2h-file-diff
.d2h-del.d2h-change {
background-color: #fdf2d0;
}
.theme-dark
.workspace-leaf-content[data-type="diff-view"]
.d2h-file-diff
.d2h-del.d2h-change {
background-color: #55492480;
}
.theme-light
.workspace-leaf-content[data-type="diff-view"]
.d2h-file-diff
.d2h-ins.d2h-change {
background-color: #ded;
}
.theme-dark
.workspace-leaf-content[data-type="diff-view"]
.d2h-file-diff
.d2h-ins.d2h-change {
background-color: rgba(37, 78, 37, 0.418);
}
.workspace-leaf-content[data-type="diff-view"] .d2h-file-list-wrapper {
margin-bottom: 10px;
}
.workspace-leaf-content[data-type="diff-view"] .d2h-file-list-wrapper a {
color: #3572b0;
text-decoration: none;
}
.workspace-leaf-content[data-type="diff-view"]
.d2h-file-list-wrapper
a:visited {
color: #3572b0;
}
.workspace-leaf-content[data-type="diff-view"] .d2h-file-list-header {
text-align: left;
}
.workspace-leaf-content[data-type="diff-view"] .d2h-file-list-title {
font-weight: 700;
}
.workspace-leaf-content[data-type="diff-view"] .d2h-file-list-line {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
text-align: left;
}
.workspace-leaf-content[data-type="diff-view"] .d2h-file-list {
display: block;
list-style: none;
margin: 0;
padding: 0;
}
.workspace-leaf-content[data-type="diff-view"] .d2h-file-list > li {
border-bottom: 1px solid var(--background-modifier-border);
margin: 0;
padding: 5px 10px;
}
.workspace-leaf-content[data-type="diff-view"] .d2h-file-list > li:last-child {
border-bottom: none;
}
.workspace-leaf-content[data-type="diff-view"] .d2h-file-switch {
cursor: pointer;
display: none;
font-size: 10px;
}
.workspace-leaf-content[data-type="diff-view"] .d2h-icon {
fill: currentColor;
margin-right: 10px;
vertical-align: middle;
}
.workspace-leaf-content[data-type="diff-view"] .d2h-deleted {
color: #c33;
}
.workspace-leaf-content[data-type="diff-view"] .d2h-added {
color: #399839;
}
.workspace-leaf-content[data-type="diff-view"] .d2h-changed {
color: #d0b44c;
}
.workspace-leaf-content[data-type="diff-view"] .d2h-moved {
color: #3572b0;
}
.workspace-leaf-content[data-type="diff-view"] .d2h-tag {
background-color: var(--background-primary);
display: -webkit-box;
display: -ms-flexbox;
display: flex;
font-size: 10px;
margin-left: 5px;
padding: 0 2px;
}
.workspace-leaf-content[data-type="diff-view"] .d2h-deleted-tag {
border: 2px solid #c33;
}
.workspace-leaf-content[data-type="diff-view"] .d2h-added-tag {
border: 1px solid #399839;
}
.workspace-leaf-content[data-type="diff-view"] .d2h-changed-tag {
border: 1px solid #d0b44c;
}
.workspace-leaf-content[data-type="diff-view"] .d2h-moved-tag {
border: 1px solid #3572b0;
}
/* ====================== Line Authoring Information ====================== */
.cm-gutterElement.obs-git-blame-gutter {
/* Add background color to spacing inbetween and around the gutter for better aesthetics */
border-width: 0px 2px 0.2px 2px;
border-style: solid;
border-color: var(--background-secondary);
background-color: var(--background-secondary);
}
.cm-gutterElement.obs-git-blame-gutter > div,
.line-author-settings-preview {
/* delegate text color to settings */
color: var(--obs-git-gutter-text);
font-family: monospace;
height: 100%; /* ensure, that age-based background color occupies entire parent */
text-align: right;
padding: 0px 6px 0px 6px;
white-space: pre; /* Keep spaces and do not collapse them. */
}
@media (max-width: 800px) {
/* hide git blame gutter not to superpose text */
.cm-gutterElement.obs-git-blame-gutter {
display: none;
}
}

199
.obsidian/workspace.json vendored Normal file
View File

@ -0,0 +1,199 @@
{
"main": {
"id": "80dfc042c640b15d",
"type": "split",
"children": [
{
"id": "bfbb46bdc92f3ad2",
"type": "tabs",
"children": [
{
"id": "30745a6909e8f4cf",
"type": "leaf",
"state": {
"type": "markdown",
"state": {
"file": "2024/freebsd-notes.md",
"mode": "source",
"source": false
}
}
}
]
}
],
"direction": "vertical"
},
"left": {
"id": "590610b14e29519d",
"type": "split",
"children": [
{
"id": "af92d155439dd2e9",
"type": "tabs",
"children": [
{
"id": "a6af6521d0a87290",
"type": "leaf",
"state": {
"type": "file-explorer",
"state": {
"sortOrder": "alphabetical"
}
}
},
{
"id": "783320241c5007e2",
"type": "leaf",
"state": {
"type": "search",
"state": {
"query": "",
"matchingCase": false,
"explainSearch": false,
"collapseAll": false,
"extraContext": false,
"sortOrder": "alphabetical"
}
}
},
{
"id": "9fd1befacbc60855",
"type": "leaf",
"state": {
"type": "bookmarks",
"state": {}
}
}
]
}
],
"direction": "horizontal",
"width": 300
},
"right": {
"id": "a604f67a04e15115",
"type": "split",
"children": [
{
"id": "5aa370a223f7373d",
"type": "tabs",
"children": [
{
"id": "e898fba6fc2202a4",
"type": "leaf",
"state": {
"type": "backlink",
"state": {
"file": "2024/freebsd-notes.md",
"collapseAll": false,
"extraContext": false,
"sortOrder": "alphabetical",
"showSearch": false,
"searchQuery": "",
"backlinkCollapsed": false,
"unlinkedCollapsed": true
}
}
},
{
"id": "59e072f96f7cae77",
"type": "leaf",
"state": {
"type": "outgoing-link",
"state": {
"file": "2024/freebsd-notes.md",
"linksCollapsed": false,
"unlinkedCollapsed": true
}
}
},
{
"id": "332de545256273fd",
"type": "leaf",
"state": {
"type": "tag",
"state": {
"sortOrder": "frequency",
"useHierarchy": true
}
}
},
{
"id": "e4063ef042af97c0",
"type": "leaf",
"state": {
"type": "outline",
"state": {
"file": "2024/freebsd-notes.md"
}
}
}
]
}
],
"direction": "horizontal",
"width": 300,
"collapsed": true
},
"left-ribbon": {
"hiddenItems": {
"switcher:Open quick switcher": false,
"graph:Open graph view": false,
"canvas:Create new canvas": false,
"daily-notes:Open today's daily note": false,
"templates:Insert template": false,
"command-palette:Open command palette": false
}
},
"active": "30745a6909e8f4cf",
"lastOpenFiles": [
"2024/freebsd-jail-vanilla.md",
"2024/doelen-2024.md",
"2024/Batterij apparaten voor opladen.md",
"2024/1gabba.pw-links.md",
"2024/Untitled",
"2024/freebsd-notes.md",
"2024-08-03.md",
"2024/piet-hein-state-gebouwbeheer.md",
"2021/vakantie-liefde-op-terschelling-zomer-2019.md",
"2024/Why I am tasting colors?.md",
"2024/mac-reinstall-notes.md",
"2024/april-training-mental-physical-goede-voornemens.md",
"2024/verjaardagskaart-pap-59-met-jerry-erbij/Tekst pap kaart 59 jaar.md",
"2024/verjaardagskaart-pap-59-met-jerry-erbij/IMG_0736.JPG",
"2024/verjaardagskaart-pap-59-met-jerry-erbij/IMG_0725.JPG",
"2024/verjaardagskaart-pap-59-met-jerry-erbij/DSC07975.JPG",
"2024/verjaardagskaart-pap-59-met-jerry-erbij/DSC03175.JPG",
"2024/verjaardagskaart-pap-59-met-jerry-erbij/20240331_102549_jerry_leon.jpg",
"2024/verjaardagskaart-pap-59-met-jerry-erbij",
"2024/verjaardagskaart-pap-met-jerry/DSC03175.JPG",
"2024/verjaardagskaart-pap-met-jerry/DSC07975.JPG",
"2024/verjaardagskaart-pap-met-jerry/20240331_102549_jerry_leon.jpg",
"2024/verjaardagskaart-pap-met-jerry",
"2024/untitled folder",
"2024/verjaardags-feest-35-jaar-in-breugel.md",
"2024/verjaardag-uitnodiging-jerry-35j-23-mrt-2024.png",
"2024/just-in-case-als-er-iets-gebeurd-2024-01-20.pdf",
"2024/chlorate-cell.md",
"2024/Gezonde routines boek review & notes.md",
"2024/Brouwsels 2024.md",
"2021/Tagliatelle-Bolognese.md",
"2024/gyros-kruiden-jacobus.md",
"2024/POP gesprek 2024-Q1.md",
"2024/Neways introductie interview voorbereiding.md",
"2024/Motivation-Letter-Neways.pdf",
"2024/JJacobs-Motivation-Letter-Lead-Embedded-Software.pdf",
"2024/macos-markdown-editors-2024-review.md",
"2024/just-in-case-als-er-iets-gebeurd-2024.pages.sb-6e88701c-W6gf83",
"2024/just-in-case-als-er-iets-gebeurd-2024.pages",
"2024/just-in-case-als-er-iets-gebeurd.pages",
"2021/CICD/cicd-platforms-and-software.md",
"Untitled.canvas",
"2024-01-19.md",
"2021/CICD/cicd-terminology.md",
"2021/CICD/cicd-agent.md",
"2021/macOS issues and fixes and tricks.md",
"2020/golf-4-koppeling-nota.jpeg"
]
}

View File

@ -0,0 +1,190 @@
{
"main": {
"id": "80dfc042c640b15d",
"type": "split",
"children": [
{
"id": "b758c3ce9a341cd0",
"type": "tabs",
"children": [
{
"id": "86decb4fbab6de4d",
"type": "leaf",
"state": {
"type": "release-notes",
"state": {
"currentVersion": "1.5.11"
}
}
}
]
}
],
"direction": "vertical"
},
"left": {
"id": "590610b14e29519d",
"type": "split",
"children": [
{
"id": "af92d155439dd2e9",
"type": "tabs",
"children": [
{
"id": "a6af6521d0a87290",
"type": "leaf",
"state": {
"type": "file-explorer",
"state": {
"sortOrder": "alphabetical"
}
}
},
{
"id": "783320241c5007e2",
"type": "leaf",
"state": {
"type": "search",
"state": {
"query": "sshguard",
"matchingCase": false,
"explainSearch": false,
"collapseAll": false,
"extraContext": false,
"sortOrder": "alphabetical"
}
}
},
{
"id": "9fd1befacbc60855",
"type": "leaf",
"state": {
"type": "bookmarks",
"state": {}
}
}
],
"currentTab": 1
}
],
"direction": "horizontal",
"width": 300
},
"right": {
"id": "a604f67a04e15115",
"type": "split",
"children": [
{
"id": "5aa370a223f7373d",
"type": "tabs",
"children": [
{
"id": "e898fba6fc2202a4",
"type": "leaf",
"state": {
"type": "backlink",
"state": {
"collapseAll": false,
"extraContext": false,
"sortOrder": "alphabetical",
"showSearch": false,
"searchQuery": "",
"backlinkCollapsed": false,
"unlinkedCollapsed": true
}
}
},
{
"id": "59e072f96f7cae77",
"type": "leaf",
"state": {
"type": "outgoing-link",
"state": {
"linksCollapsed": false,
"unlinkedCollapsed": true
}
}
},
{
"id": "332de545256273fd",
"type": "leaf",
"state": {
"type": "tag",
"state": {
"sortOrder": "frequency",
"useHierarchy": true
}
}
},
{
"id": "e4063ef042af97c0",
"type": "leaf",
"state": {
"type": "outline",
"state": {}
}
}
]
}
],
"direction": "horizontal",
"width": 300,
"collapsed": true
},
"left-ribbon": {
"hiddenItems": {
"switcher:Open quick switcher": false,
"graph:Open graph view": false,
"canvas:Create new canvas": false,
"daily-notes:Open today's daily note": false,
"templates:Insert template": false,
"command-palette:Open command palette": false
}
},
"active": "86decb4fbab6de4d",
"lastOpenFiles": [
"2024/freebsd-notes.md",
"2024/verjaardags-feest-35-jaar-in-breugel.md",
"2024/just-in-case-als-er-iets-gebeurd-2024-01-20.pdf",
"2024/chlorate-cell.md",
"2024/Gezonde routines boek review & notes.md",
"2024/Brouwsels 2024.md",
"2021/Tagliatelle-Bolognese.md",
"2024/doelen-2024.md",
"2024/gyros-kruiden-jacobus.md",
"2024/POP gesprek 2024-Q1.md",
"2024/Neways introductie interview voorbereiding.md",
"2024/piet-hein-state-gebouwbeheer.md",
"2024/mac-reinstall-notes.md",
"2024/Motivation-Letter-Neways.pdf",
"2024/JJacobs-Motivation-Letter-Lead-Embedded-Software.pdf",
"2024/macos-markdown-editors-2024-review.md",
"2024/just-in-case-als-er-iets-gebeurd-2024.pages.sb-6e88701c-W6gf83",
"2024/just-in-case-als-er-iets-gebeurd-2024.pages",
"2024/just-in-case-als-er-iets-gebeurd.pages",
"2021/CICD/cicd-platforms-and-software.md",
"Untitled.canvas",
"2024-01-19.md",
"2021/CICD/cicd-terminology.md",
"2021/CICD/cicd-agent.md",
"2021/macOS issues and fixes and tricks.md",
"2021/Cocktail of downers.md",
"2020/golf-4-koppeling-nota.jpeg",
"2020/golf-4-distributieriem-nota.jpeg",
"2019/Nieuwsbrief #24 - knoflook kweken.pdf",
"2024/freebsd-jail-vanilla.md",
"2023/woorden-cloud-bloem-imct-jerryjacobs.pdf",
"2023/beer-recipe-single-malt-ipa-dec-2023.md",
"2023/jerry-newyear-card-2024.png",
"2023/reflectie-2023.md",
"2022/todoist-recurring-routine.png",
"2022/Sleep Quality Scale (SQS).pdf",
"2022/Screenshot 2022-12-17 at 17.06.37.png",
"2022/Roll-een-verhaal spel praatgroep bipolar spel - https___docs.google.com_ - https___docs.google.com_.pdf",
"2022/pyroforum-purechemical-profiel-2009-aangemaakt.png",
"2022/chilli-hot-sauce-ingredients.png",
"2022/apc-forum-donate-copyleft-symbool-dat-is-gek.png",
"2022/grandioze-donatie-aan-erowid-bevestigng.png",
"2022/github-archievement.png"
]
}

View File

@ -0,0 +1,190 @@
{
"main": {
"id": "80dfc042c640b15d",
"type": "split",
"children": [
{
"id": "b758c3ce9a341cd0",
"type": "tabs",
"children": [
{
"id": "86decb4fbab6de4d",
"type": "leaf",
"state": {
"type": "release-notes",
"state": {
"currentVersion": "1.5.11"
}
}
}
]
}
],
"direction": "vertical"
},
"left": {
"id": "590610b14e29519d",
"type": "split",
"children": [
{
"id": "af92d155439dd2e9",
"type": "tabs",
"children": [
{
"id": "a6af6521d0a87290",
"type": "leaf",
"state": {
"type": "file-explorer",
"state": {
"sortOrder": "alphabetical"
}
}
},
{
"id": "783320241c5007e2",
"type": "leaf",
"state": {
"type": "search",
"state": {
"query": "sshguard",
"matchingCase": false,
"explainSearch": false,
"collapseAll": false,
"extraContext": false,
"sortOrder": "alphabetical"
}
}
},
{
"id": "9fd1befacbc60855",
"type": "leaf",
"state": {
"type": "bookmarks",
"state": {}
}
}
],
"currentTab": 1
}
],
"direction": "horizontal",
"width": 300
},
"right": {
"id": "a604f67a04e15115",
"type": "split",
"children": [
{
"id": "5aa370a223f7373d",
"type": "tabs",
"children": [
{
"id": "e898fba6fc2202a4",
"type": "leaf",
"state": {
"type": "backlink",
"state": {
"collapseAll": false,
"extraContext": false,
"sortOrder": "alphabetical",
"showSearch": false,
"searchQuery": "",
"backlinkCollapsed": false,
"unlinkedCollapsed": true
}
}
},
{
"id": "59e072f96f7cae77",
"type": "leaf",
"state": {
"type": "outgoing-link",
"state": {
"linksCollapsed": false,
"unlinkedCollapsed": true
}
}
},
{
"id": "332de545256273fd",
"type": "leaf",
"state": {
"type": "tag",
"state": {
"sortOrder": "frequency",
"useHierarchy": true
}
}
},
{
"id": "e4063ef042af97c0",
"type": "leaf",
"state": {
"type": "outline",
"state": {}
}
}
]
}
],
"direction": "horizontal",
"width": 300,
"collapsed": true
},
"left-ribbon": {
"hiddenItems": {
"switcher:Open quick switcher": false,
"graph:Open graph view": false,
"canvas:Create new canvas": false,
"daily-notes:Open today's daily note": false,
"templates:Insert template": false,
"command-palette:Open command palette": false
}
},
"active": "86decb4fbab6de4d",
"lastOpenFiles": [
"2024/freebsd-notes.md",
"2024/verjaardags-feest-35-jaar-in-breugel.md",
"2024/just-in-case-als-er-iets-gebeurd-2024-01-20.pdf",
"2024/chlorate-cell.md",
"2024/Gezonde routines boek review & notes.md",
"2024/Brouwsels 2024.md",
"2021/Tagliatelle-Bolognese.md",
"2024/doelen-2024.md",
"2024/gyros-kruiden-jacobus.md",
"2024/POP gesprek 2024-Q1.md",
"2024/Neways introductie interview voorbereiding.md",
"2024/piet-hein-state-gebouwbeheer.md",
"2024/mac-reinstall-notes.md",
"2024/Motivation-Letter-Neways.pdf",
"2024/JJacobs-Motivation-Letter-Lead-Embedded-Software.pdf",
"2024/macos-markdown-editors-2024-review.md",
"2024/just-in-case-als-er-iets-gebeurd-2024.pages.sb-6e88701c-W6gf83",
"2024/just-in-case-als-er-iets-gebeurd-2024.pages",
"2024/just-in-case-als-er-iets-gebeurd.pages",
"2021/CICD/cicd-platforms-and-software.md",
"Untitled.canvas",
"2024-01-19.md",
"2021/CICD/cicd-terminology.md",
"2021/CICD/cicd-agent.md",
"2021/macOS issues and fixes and tricks.md",
"2021/Cocktail of downers.md",
"2020/golf-4-koppeling-nota.jpeg",
"2020/golf-4-distributieriem-nota.jpeg",
"2019/Nieuwsbrief #24 - knoflook kweken.pdf",
"2024/freebsd-jail-vanilla.md",
"2023/woorden-cloud-bloem-imct-jerryjacobs.pdf",
"2023/beer-recipe-single-malt-ipa-dec-2023.md",
"2023/jerry-newyear-card-2024.png",
"2023/reflectie-2023.md",
"2022/todoist-recurring-routine.png",
"2022/Sleep Quality Scale (SQS).pdf",
"2022/Screenshot 2022-12-17 at 17.06.37.png",
"2022/Roll-een-verhaal spel praatgroep bipolar spel - https___docs.google.com_ - https___docs.google.com_.pdf",
"2022/pyroforum-purechemical-profiel-2009-aangemaakt.png",
"2022/chilli-hot-sauce-ingredients.png",
"2022/apc-forum-donate-copyleft-symbool-dat-is-gek.png",
"2022/grandioze-donatie-aan-erowid-bevestigng.png",
"2022/github-archievement.png"
]
}

BIN
2021/.DS_Store vendored

Binary file not shown.

Binary file not shown.

View File

@ -21,13 +21,8 @@
| Laminar CI | [github.com/ohwgiles/laminar](https://github.com/ohwgiles/laminar) | Yes | | | C++ | Lightweight and modular |
- [500 Lines or Less | A Continuous Integration System](http://www.aosabook.org/en/500L/a-continuous-integration-system.html)
- [Comparison of continuous integration software - Wikiwand](https://www.wikiwand.com/en/Comparison_of_continuous_integration_software)
- [GitHub - ligurio/awesome-ci: List of Continuous Integration services](https://github.com/ligurio/awesome-ci)
- [Best Continuous Integration Tools in 2021: Compare Reviews on 80+ | G2](https://www.g2.com/categories/continuous-integration)
- [Apps with &#x27;Continuous Integration&#x27; feature | AlternativeTo](https://alternativeto.net/feature/continuous-integration/)
- [Concepts in GoCD | GoCD User Documentation](https://docs.gocd.org/current/introduction/concepts_in_go.html)

BIN
2021/GGzE/.DS_Store vendored

Binary file not shown.

Binary file not shown.

Before

Width:  |  Height:  |  Size: 2.8 MiB

After

Width:  |  Height:  |  Size: 132 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 2.8 MiB

After

Width:  |  Height:  |  Size: 132 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 2.8 MiB

After

Width:  |  Height:  |  Size: 132 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 2.9 MiB

After

Width:  |  Height:  |  Size: 132 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.9 MiB

After

Width:  |  Height:  |  Size: 132 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 3.0 MiB

After

Width:  |  Height:  |  Size: 132 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 2.9 MiB

After

Width:  |  Height:  |  Size: 132 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 3.3 MiB

After

Width:  |  Height:  |  Size: 132 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 3.3 MiB

After

Width:  |  Height:  |  Size: 132 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 3.1 MiB

After

Width:  |  Height:  |  Size: 132 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 3.0 MiB

After

Width:  |  Height:  |  Size: 132 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 3.2 MiB

After

Width:  |  Height:  |  Size: 132 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 2.9 MiB

After

Width:  |  Height:  |  Size: 132 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 2.8 MiB

After

Width:  |  Height:  |  Size: 132 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 3.3 MiB

After

Width:  |  Height:  |  Size: 132 B

View File

@ -1,16 +1,16 @@
# Reflectie 2021
* Pap kreeg kanker
* Pap kreeg darm kanker en een stoma
* Behandeling bipolaire stoornis deel twee met signaleringsplan
* In maart afbouwen medicatie en geestelijke toestand onstabiel stress, paniekaanvallen, licht psychotische klachten en slapeloosheid
* Afscheid genomen om samen te tuinieren met hans, nu een eigen stuk met berging op de volkstuin
* Afscheid genomen om samen te tuinieren met hans, nu een eigen stuk met berging op de volkstuin naast Diny
* Rijangst bijna overwonnen
* Nero in huis gekomen
* Nero de kat in huis gekomen
* Maarten komt in Son wonen
* Bipolaire stoornis geaccepteerd
* Geaccepteerd dat medicijnen nemen kan helpen
* Mild geweest zijn voor mijzelf na 3 weken licht depressief in december en daarna een dag hypomanisch
* Goede beoordeling bij Adimec met een verlenging van een jaarcontract. Met een toezegging voor een vast contract met een functie schaal verhoging van medior naar kern. Ook een eindejaars beoordeeling zeer goed gekregen met een kleine loonsverhoging.
* Assertiviteits training gevolgt
* Deelnemer geworden van een bipolaire praatgroep met lotgenoten van dezelfde leeftijd
* Deelnemer geworden van een fysieke bipolaire praatgroep met lotgenoten van dezelfde leeftijd in Eindhoven
* Maas in zuid limburg stroomde over

Binary file not shown.

Before

Width:  |  Height:  |  Size: 419 KiB

After

Width:  |  Height:  |  Size: 131 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 615 KiB

After

Width:  |  Height:  |  Size: 131 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 640 KiB

After

Width:  |  Height:  |  Size: 131 B

View File

@ -1,4 +1,4 @@
# Tagliatelle Bolognese
# Tagliatelle Bolognese Pasta
200 gram white flour (100 gr/1egg)

Binary file not shown.

Before

Width:  |  Height:  |  Size: 751 KiB

After

Width:  |  Height:  |  Size: 131 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 33 KiB

After

Width:  |  Height:  |  Size: 130 B

Binary file not shown.

Binary file not shown.

Before

Width:  |  Height:  |  Size: 813 KiB

After

Width:  |  Height:  |  Size: 131 B

Binary file not shown.

BIN
2022/.DS_Store vendored

Binary file not shown.

View File

@ -1,3 +0,0 @@
# Reb00tLAN visit
Voor diegene die nieuw zijn en mij niet kennen. Ik ben een mattie van @SuicideFunky (ken hem al 22 jaar of wat). En we hebben samen met @Kaasschaaf eerst ByteLAN gehad (in een schuur/garage met 10-15man) naderhand 50 man ongeveer in de resi speelzaal. Daarna hebben we na jaren een doorstart gemaakt met een invite only LAN en daar is Reb00tlan uit voort gekomen. Toen zijn we bij de resi verhuisd naar zolder.

View File

@ -1,49 +0,0 @@
Afbouwschema olanzapine 2022
Week 25
21 juni 2.5mg
22 juni 1.25mg
23 juni 2.5mg
24 juni 2.5mg
25 juni 1.25mg
26 juni 2.5mg
Week 26
27 juni 1.25mg
28 juni 2.5mg
29 juni 1.25mg
30 juni 2.5mg
1 juli 1.25mg
2 juli 2.5mg
3 juli 1.25mg
Week 27
4 juli 2.5mg
5 juli 1.25mg
6 juli 2.5mg
7 juli 1.25mg
8 juli 2.5 mg
9 juli 1.25 mg
10 juli 2.5 mg
Week 28
11 juli 1.25mg
12 juli 2.5mg
13 juli 1.25mg
14 juli 2.5mg
15 juli 1.25mg
16 juli 2.5mg
17 juli 1.25mg
Week 29, 18 - 24 juli 1.25mg
Week 30, 25 - 31 juli 1.25mg
Week 31 1.25mg
Week 32 1.25mg
Week 33 1.25 mg
Week 34 1.25 mg/none (every other day)
Week 35 1.25 mg/none (every other day)

Binary file not shown.

Binary file not shown.

BIN
2022/Brochure - Heggenstraat 10 - Landgraaf.pdf (Stored with Git LFS) Normal file

Binary file not shown.

View File

@ -1,18 +0,0 @@
# Piet Heinstate Gebouwbeheer
## Programmeren intercom
Bluetooth modus:
- toets 99999
- wachtwoord 5692
- code android toestel 0000 (of 1234)
Zie map elbo-urmet-intercom voor APK en PDF
* <https://www.elbotechnology.nl/nieuws/handig-apps-voor-2voice-en-entreepanelen/>
## GFT container Piet Heinstaete
* Elke 4 weken is de reiniging van de container. Door [Cleanprofs (wasweken)](https://www.cleanprofs.nl/mijn-wasweken/) op postcode en huisnummer 5694CB nr 63.
* Vanaf april elke N weken tot november (lente, zomer, herfst)
* Vanaf november tot april elke 2 weken (winter)

View File

@ -1,15 +0,0 @@
# GrowAndGoBox
* Ledstrips
* White, Blue and Red (1:1:1) approximate
* Powersupply
* Timer (e.g Philips Hue Smartplug)
* Thermometer
* Plant sprayer
* Seedling tray
* Transparant plastic box with lid
* Potting mix
* Vermiculite
* Sifted sand
* Cocopeat sifted
* PC fan

Binary file not shown.

View File

@ -1,9 +0,0 @@
# Hop supply '22
* Cascade 6.6% (old) few handfulls -> Aromahop
* East kent golding UK ~5.46% 125gr (nieuw) -> Aromahop
* Opal 5.3% 125gr (nieuw) -> Aromahop
* Citra 12.8% 80gr -> Aromahop
* [Target](https://www.britishhops.org.uk/varieties/target/) 10.4% 250 gr pellets -> Dual hop
* [El dorado](https://beermaverick.com/hop/el-dorado/) 11,7% 250 gr pellets -> Dual hop
* [Amarillo](https://beermaverick.com/hop/amarillo/) 9% 250 gr pellets -> Aroma hop

View File

@ -1,19 +0,0 @@
Praatgroep dec 22
* Voorstel keer informele stadswandeling te doen in de lente/zomer met lunch/drankje
Takenpakketten
Laura
- voorzitter bijeenkomst
- Contactpunt nieuwe aanmeldingen
Jerry
- contact Zelfhulpnetwerk
- In oktober plannen ism Zelfhulpnetwerk voor volgend jaar
- Voorbereiding thema
- Aankondiging week van te voren op app dat er een bijeenkomst is
- Aanspreekpunt groeps genoten/zorgen dat “het loopt”

Binary file not shown.

Before

Width:  |  Height:  |  Size: 152 KiB

After

Width:  |  Height:  |  Size: 131 B

Binary file not shown.

View File

@ -1,461 +0,0 @@
# Dorpstraat server
Oude NAS/Server mini-itx computer
- Mainboard: Gigabyte Technology Co., Ltd. D525TUD
- CPU: Intel(R) Atom(TM) CPU D525 Dualcore 1.8 GHz
- Mem: 2x 2GB DDR3 800 MHz
- Voeding: 350watt
- USB 2 meerdere aansluitingen
- LAN Netwerk aansluiting Realtek RTL8111E chip (10/100/1000 Mbit)
- 4 SATA aansluitigen (3GB/s SATA II)
- 1x PCI slot met netwerk extra netwerkkaart
Zonder harddisk en besturingsysteem geleverd, maar kan met een 320GB oudere harddisk geleverd worden geinstalleerd met een Opensource besturingssysteem naar keuze. B.v FreeNAS, Fedora, Linux Mint.
```
root@dorpstraat:/home/jerry# /usr/sbin/dmidecode
# dmidecode 3.2
Getting SMBIOS data from sysfs.
SMBIOS 2.4 present.
37 structures occupying 1160 bytes.
Table at 0x000F0100.
Handle 0x0000, DMI type 0, 24 bytes
BIOS Information
Vendor: Award Software International, Inc.
Version: F5
Release Date: 06/20/2011
Address: 0xE0000
Runtime Size: 128 kB
ROM Size: 512 kB
Characteristics:
PCI is supported
PNP is supported
APM is supported
BIOS is upgradeable
BIOS shadowing is allowed
Boot from CD is supported
Selectable boot is supported
EDD is supported
5.25"/360 kB floppy services are supported (int 13h)
5.25"/1.2 MB floppy services are supported (int 13h)
3.5"/720 kB floppy services are supported (int 13h)
3.5"/2.88 MB floppy services are supported (int 13h)
Print screen service is supported (int 5h)
8042 keyboard services are supported (int 9h)
Serial services are supported (int 14h)
Printer services are supported (int 17h)
CGA/mono video services are supported (int 10h)
ACPI is supported
USB legacy is supported
LS-120 boot is supported
ATAPI Zip drive boot is supported
BIOS boot specification is supported
Targeted content distribution is supported
Handle 0x0001, DMI type 1, 27 bytes
System Information
Manufacturer: Gigabyte Technology Co., Ltd.
Product Name: D525TUD
Version:
Serial Number:
UUID: 00000000-0000-0000-0000-50e549d8c3e1
Wake-up Type: Power Switch
SKU Number:
Family:
Handle 0x0002, DMI type 2, 8 bytes
Base Board Information
Manufacturer: Gigabyte Technology Co., Ltd.
Product Name: D525TUD
Version: x.x
Serial Number:
Handle 0x0003, DMI type 3, 17 bytes
Chassis Information
Manufacturer: Gigabyte Technology Co., Ltd.
Type: Desktop
Lock: Not Present
Version:
Serial Number:
Asset Tag:
Boot-up State: Unknown
Power Supply State: Unknown
Thermal State: Unknown
Security Status: Unknown
OEM Information: 0x00000000
Handle 0x0004, DMI type 4, 35 bytes
Processor Information
Socket Designation: Socket 775
Type: Central Processor
Family: Other
Manufacturer: Intel
ID: CA 06 01 00 FF FB EB BF
Version: Intel(R) Atom(TM) CPU D525
Voltage: 1.0 V
External Clock: 200 MHz
Max Speed: 4000 MHz
Current Speed: 1800 MHz
Status: Populated, Enabled
Upgrade: Socket 478
L1 Cache Handle: 0x000A
L2 Cache Handle: 0x000B
L3 Cache Handle: Not Provided
Serial Number:
Asset Tag:
Part Number:
Handle 0x0005, DMI type 5, 24 bytes
Memory Controller Information
Error Detecting Method: 8-bit Parity
Error Correcting Capabilities:
None
Supported Interleave: One-way Interleave
Current Interleave: One-way Interleave
Maximum Memory Module Size: 1024 MB
Maximum Total Memory Size: 4096 MB
Supported Speeds:
Other
Supported Memory Types:
Other
Memory Module Voltage: 5.0 V
Associated Memory Slots: 4
0x0006
0x0007
0x0008
0x0009
Enabled Error Correcting Capabilities:
None
Handle 0x0006, DMI type 6, 12 bytes
Memory Module Information
Socket Designation: A0
Bank Connections: 1
Current Speed: Unknown
Type: Other
Installed Size: 2048 MB (Single-bank Connection)
Enabled Size: 2048 MB (Single-bank Connection)
Error Status: OK
Handle 0x0007, DMI type 6, 12 bytes
Memory Module Information
Socket Designation: A1
Bank Connections: 2
Current Speed: Unknown
Type: Other
Installed Size: 2048 MB (Single-bank Connection)
Enabled Size: 2048 MB (Single-bank Connection)
Error Status: OK
Handle 0x0008, DMI type 6, 12 bytes
Memory Module Information
Socket Designation: A2
Bank Connections: 3
Current Speed: Unknown
Type: Unknown
Installed Size: Not Installed
Enabled Size: Not Installed
Error Status: OK
Handle 0x0009, DMI type 6, 12 bytes
Memory Module Information
Socket Designation: A3
Bank Connections: 4
Current Speed: Unknown
Type: Unknown
Installed Size: Not Installed
Enabled Size: Not Installed
Error Status: OK
Handle 0x000A, DMI type 7, 19 bytes
Cache Information
Socket Designation: Internal Cache
Configuration: Enabled, Not Socketed, Level 1
Operational Mode: Write Back
Location: Internal
Installed Size: 56 kB
Maximum Size: 56 kB
Supported SRAM Types:
Synchronous
Installed SRAM Type: Synchronous
Speed: Unknown
Error Correction Type: Unknown
System Type: Unknown
Associativity: Unknown
Handle 0x000B, DMI type 7, 19 bytes
Cache Information
Socket Designation: External Cache
Configuration: Enabled, Not Socketed, Level 2
Operational Mode: Write Back
Location: Internal
Installed Size: 512 kB
Maximum Size: 2048 kB
Supported SRAM Types:
Synchronous
Installed SRAM Type: Synchronous
Speed: Unknown
Error Correction Type: Unknown
System Type: Unknown
Associativity: Unknown
Handle 0x000C, DMI type 8, 9 bytes
Port Connector Information
Internal Reference Designator: PRIMARY IDE
Internal Connector Type: On Board IDE
External Reference Designator:
External Connector Type: None
Port Type: Other
Handle 0x000D, DMI type 8, 9 bytes
Port Connector Information
Internal Reference Designator: SECONDARY IDE
Internal Connector Type: On Board IDE
External Reference Designator:
External Connector Type: None
Port Type: Other
Handle 0x000E, DMI type 8, 9 bytes
Port Connector Information
Internal Reference Designator: FDD
Internal Connector Type: On Board Floppy
External Reference Designator:
External Connector Type: None
Port Type: 8251 FIFO Compatible
Handle 0x000F, DMI type 8, 9 bytes
Port Connector Information
Internal Reference Designator: COM1
Internal Connector Type: 9 Pin Dual Inline (pin 10 cut)
External Reference Designator:
External Connector Type: DB-9 male
Port Type: Serial Port 16450 Compatible
Handle 0x0010, DMI type 8, 9 bytes
Port Connector Information
Internal Reference Designator: COM2
Internal Connector Type: 9 Pin Dual Inline (pin 10 cut)
External Reference Designator:
External Connector Type: DB-9 male
Port Type: Serial Port 16450 Compatible
Handle 0x0011, DMI type 8, 9 bytes
Port Connector Information
Internal Reference Designator: LPT1
Internal Connector Type: DB-25 female
External Reference Designator:
External Connector Type: DB-25 female
Port Type: Parallel Port ECP/EPP
Handle 0x0012, DMI type 8, 9 bytes
Port Connector Information
Internal Reference Designator: Keyboard
Internal Connector Type: Other
External Reference Designator:
External Connector Type: PS/2
Port Type: Keyboard Port
Handle 0x0013, DMI type 8, 9 bytes
Port Connector Information
Internal Reference Designator: PS/2 Mouse
Internal Connector Type: PS/2
External Reference Designator: No Detected
External Connector Type: PS/2
Port Type: Mouse Port
Handle 0x0014, DMI type 8, 9 bytes
Port Connector Information
Internal Reference Designator: USB
Internal Connector Type: None
External Reference Designator:
External Connector Type: Access Bus (USB)
Port Type: USB
Handle 0x0015, DMI type 8, 9 bytes
Port Connector Information
Internal Reference Designator: USB
Internal Connector Type: None
External Reference Designator:
External Connector Type: Access Bus (USB)
Port Type: USB
Handle 0x0016, DMI type 9, 13 bytes
System Slot Information
Designation: PCI
Type: 32-bit PCI
Current Usage: In Use
Length: Long
ID: 0
Characteristics:
5.0 V is provided
3.3 V is provided
PME signal is supported
SMBus signal is supported
Handle 0x0017, DMI type 13, 22 bytes
BIOS Language Information
Language Description Format: Long
Installable Languages: 3
n|US|iso8859-1
n|US|iso8859-1
r|CA|iso8859-1
Currently Installed Language: n|US|iso8859-1
Handle 0x0018, DMI type 16, 15 bytes
Physical Memory Array
Location: System Board Or Motherboard
Use: System Memory
Error Correction Type: None
Maximum Capacity: 32 GB
Error Information Handle: Not Provided
Number Of Devices: 4
Handle 0x0019, DMI type 17, 27 bytes
Memory Device
Array Handle: 0x0018
Error Information Handle: Not Provided
Total Width: 256 bits
Data Width: 226 bits
Size: 2048 MB
Form Factor: DIMM
Set: None
Locator: A0
Bank Locator: Bank0/1
Type: Unknown
Type Detail: None
Speed: 400 MT/s
Manufacturer:
Serial Number:
Asset Tag:
Part Number:
Handle 0x001A, DMI type 17, 27 bytes
Memory Device
Array Handle: 0x0018
Error Information Handle: Not Provided
Total Width: 256 bits
Data Width: 226 bits
Size: 2048 MB
Form Factor: DIMM
Set: None
Locator: A1
Bank Locator: Bank2/3
Type: Unknown
Type Detail: None
Speed: 400 MT/s
Manufacturer:
Serial Number:
Asset Tag:
Part Number:
Handle 0x001B, DMI type 17, 27 bytes
Memory Device
Array Handle: 0x0018
Error Information Handle: Not Provided
Total Width: Unknown
Data Width: Unknown
Size: No Module Installed
Form Factor: DIMM
Set: None
Locator: A2
Bank Locator: Bank4/5
Type: Unknown
Type Detail: None
Speed: Unknown
Manufacturer:
Serial Number:
Asset Tag:
Part Number:
Handle 0x001C, DMI type 17, 27 bytes
Memory Device
Array Handle: 0x0018
Error Information Handle: Not Provided
Total Width: Unknown
Data Width: Unknown
Size: No Module Installed
Form Factor: DIMM
Set: None
Locator: A3
Bank Locator: Bank6/7
Type: Unknown
Type Detail: None
Speed: Unknown
Manufacturer:
Serial Number:
Asset Tag:
Part Number:
Handle 0x001D, DMI type 19, 15 bytes
Memory Array Mapped Address
Starting Address: 0x00000000000
Ending Address: 0x000FFFFFFFF
Range Size: 4 GB
Physical Array Handle: 0x0018
Partition Width: 1
Handle 0x001E, DMI type 20, 19 bytes
Memory Device Mapped Address
Starting Address: 0x00000000000
Ending Address: 0x0007FFFFFFF
Range Size: 2 GB
Physical Device Handle: 0x0019
Memory Array Mapped Address Handle: 0x001D
Partition Row Position: 1
Handle 0x001F, DMI type 20, 19 bytes
Memory Device Mapped Address
Starting Address: 0x00080000000
Ending Address: 0x000FFFFFFFF
Range Size: 2 GB
Physical Device Handle: 0x001A
Memory Array Mapped Address Handle: 0x001D
Partition Row Position: 1
Handle 0x0020, DMI type 20, 19 bytes
Memory Device Mapped Address
Starting Address: 0x00000000000
Ending Address: 0x000000003FF
Range Size: 1 kB
Physical Device Handle: 0x001B
Memory Array Mapped Address Handle: 0x001D
Partition Row Position: 1
Handle 0x0021, DMI type 20, 19 bytes
Memory Device Mapped Address
Starting Address: 0x00000000000
Ending Address: 0x000000003FF
Range Size: 1 kB
Physical Device Handle: 0x001C
Memory Array Mapped Address Handle: 0x001D
Partition Row Position: 1
Handle 0x0022, DMI type 32, 11 bytes
System Boot Information
Status: No errors detected
Handle 0x0023, DMI type 64, 13 bytes
Unknown Type
Header and Data:
40 0D 23 00 FF FF FF FF FF FF FF FF FF
Strings:
Handle 0x0024, DMI type 127, 4 bytes
End Of Table
```
```
Bus 005 Device 001: ID 1d6b:0002 Linux Foundation 2.0 root hub
Bus 004 Device 001: ID 1d6b:0001 Linux Foundation 1.1 root hub
Bus 003 Device 002: ID 046d:c316 Logitech, Inc. HID-Compliant Keyboard
Bus 003 Device 001: ID 1d6b:0001 Linux Foundation 1.1 root hub
Bus 002 Device 001: ID 1d6b:0001 Linux Foundation 1.1 root hub
Bus 001 Device 001: ID 1d6b:0001 Linux Foundation 1.1 root hub
```
```
Intel(R) Atom(TM) CPU D525 @ 1.80GHz
```

Binary file not shown.

Before

Width:  |  Height:  |  Size: 18 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 144 KiB

After

Width:  |  Height:  |  Size: 131 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 221 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 242 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 95 KiB

View File

@ -1,23 +0,0 @@
{\rtf1\ansi\ansicpg1252\cocoartf2639
\cocoatextscaling0\cocoaplatform0{\fonttbl\f0\fswiss\fcharset0 Helvetica;}
{\colortbl;\red255\green255\blue255;}
{\*\expandedcolortbl;;}
\paperw11900\paperh16840\margl1440\margr1440\vieww20400\viewh15380\viewkind0
\pard\tx566\tx1133\tx1700\tx2267\tx2834\tx3401\tx3968\tx4535\tx5102\tx5669\tx6236\tx6803\pardirnatural\partightenfactor0
\f0\fs24 \cf0 5375 gr castle malting ch\'e2teau Pilsen 6 3-3.5 EBC\
500gr dark crystal Thomas Fawcett & sons 320 ebc\
500gr carared weijerman 50 ebc\
425gr carahell weijerman 30 ebc\
350gr rolled oats\
\
33 liter fermenter\
\
\
\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\partightenfactor0
\cf0 {{\NeXTGraphic Screenshot 2022-12-02 at 13.10.24.png \width10000 \height8140 \appleattachmentpadding0 \appleembedtype0 \appleaqc
}¬}\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\partightenfactor0
\cf0 {{\NeXTGraphic Screenshot 2022-12-02 at 13.10.15.png \width19580 \height10480 \appleattachmentpadding0 \appleembedtype0 \appleaqc
}¬}\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\partightenfactor0
\cf0 {{\NeXTGraphic Screenshot 2022-12-02 at 13.10.05.png \width19740 \height9800 \appleattachmentpadding0 \appleembedtype0 \appleaqc
}¬}}

Some files were not shown because too many files have changed in this diff Show More