background effect
Foreground
Foreground
D0Z - motion / graphic / dev๐Ÿงบ
VSCodeโœ•

brain

Some files are private or not ready yet, if a link gives you a 404 that's why :)
This is a work in progress, new notes will be added daily

List of note Indexes

    
                .... |\| .|||.    |\/|  .|\\. .|.
              .\\||/|.  .\|..||  .\|..|||...||.....
            .|   .....||.|\\\\\\    ... |\\\/. .\\. .||
        .\\|   .|\\|..|\\ .\\\\  .\\|. .\\\\\|  |\| |\\|
        |\\  |\\|..  /\\\. |\|\\   \\\\|.   .|\\. .\\\\|
        .\\. |\\\\\\\|.. .\\|      .\\||\\/|. |\\|     .|/\|
      \. .\\\||/\|....   \\| |\/   |\\\  |\\\| .\\|  \\| ....
    |\/  |\\| |\\\\\\\| |\|.\\\   \\\\. |\\\\| |\\  \\.  ||..
      ..|||\|  .. .\\\\. |\\\\\\  .\\|....|\\\. |\\\\\\  |/. |/
    \\\|..   .\\\ |\\. .\\\| \\|   |||\\\.  ...|\\/||.  .\\\
  |\|  |\/.  /\\\\\| .\\\\. \\.   .../|.   .|\\\|.   |\\\|  |\\
    .  |||\\|.  ..||| .\\|.  |\|  \\|..../\\| |\\|  .\\\\\   ..
    \\|  .||\|.|..      |\\\|./\  \\||\. ||...    .\\\\/.  |\/||
    ..|/||.   |\\\\\|.     .|/\|  ||.        .||\\\     .|||. |\
  .\/|  \\\. .|\\\|||\\\||..       .|\\\\\\\|\\\\.  /\\\\||. |
    .|| |\\\\|  .......|\\\\\\.  .\\\. ..|||....  .\\\\|.. ...
    \\||....|\\\\\\\\||\\\\\\\/   |\|....|||\\\\\\\/....|\\\|
      ||.|\||\\| .....|\\\\..\\|    .|\\\. ||........ .|\|...
          . |\  /\\/\\\\\\. |\.  .\\\\\\.  ./\\\\/  |\\\||.
        .|\.|\| .|\|... ..              ./\\|..|\\|  ..
            .|\\|  .\\\\.\\\\\\\   \||...\\\|..|\\\|.||
                |\. ..||....||     ... ..||\\\. .|.
                        ...            .......

  

โ†‘ ๐ŸŒ DEVELOPMENT


VSCode

Website | GitHub | WebApp

Plugins

{
  "recommendations": [
    "aaron-bond.better-comments",
    "biomejs.biome",
    "davidanson.vscode-markdownlint",
    "dbaeumer.vscode-eslint",
    "esbenp.prettier-vscode",
    "firefox-devtools.vscode-firefox-debug",
    "github.vscode-github-actions",
    "github.vscode-pull-request-github",
    "gruntfuggly.todo-tree",
    "humao.rest-client",
    "irongeek.vscode-env",
    "mhutchie.git-graph",
    "ms-azuretools.vscode-docker",
    "ms-vscode-remote.remote-ssh",
    "ms-vscode-remote.remote-ssh-edit",
    "ms-vscode-remote.remote-wsl",
    "ms-vscode-remote.vscode-remote-extensionpack",
    "ms-vscode.remote-explorer",
    "ms-vscode.remote-server",
    "nrwl.angular-console",
    "pflannery.vscode-versionlens",
    "pkief.material-icon-theme",
    "redhat.vscode-xml",
    "redhat.vscode-yaml",
    "rust-lang.rust-analyzer",
    "serayuzgur.crates",
    "streetsidesoftware.code-spell-checker",
    "tamasfe.even-better-toml",
    "tauri-apps.tauri-vscode",
    "timonwong.shellcheck",
    "tyriar.sort-lines",
    "usernamehw.errorlens",
    "vadimcn.vscode-lldb",
    "visualstudioexptteam.intellicode-api-usage-examples",
    "visualstudioexptteam.vscodeintellicode",
    "mrmlnc.vscode-apache",
    "github.github-vscode-theme",
    "yoavbls.pretty-ts-errors"
  ]
}
json

Settings

{
  "files.eol": "\n",
  "editor.tabSize": 2,
  "npm.packageManager": "pnpm",
  "explorer.excludeGitIgnore": false,
  "workbench.localHistory.exclude": {
    "**/.output/**": true,
    "**/.vinxi/**": true,
    "**/target/**": true,
    "**/.nx/**": true,
    "**/dist/**": true,
    "**/node_modules/**": true
  },
  "explorer.autoRevealExclude": {
    "**/.output/**": true,
    "**/.vinxi/**": true,
    "**/target/**": true,
    "**/.nx/**": true,
    "**/dist/**": true,
    "**/node_modules/**": true
  },
  "files.watcherExclude": {
    "**/.output/**": true,
    "**/.vinxi/**": true,
    "**/target/**": true,
    "**/.nx/**": true,
    "**/dist/**": true,
    "**/node_modules/**": true
  },
  "search.followSymlinks": false,
  "emmet.includeLanguages": {
    "javascript": "javascriptreact",
    "typescript": "typescriptreact"
  },
  "typescript.preferences.importModuleSpecifier": "relative",
  "files.associations": {
    "*.env.local": "env",
    "*.env.example": "env",
    "*.mdx": "markdown"
  },
  "biome_lsp.trace.server": "verbose",
  "editor.defaultFormatter": "esbenp.prettier-vscode",
  "editor.formatOnSave": true,
  "editor.bracketPairColorization.enabled": true,
  "terminal.integrated.fontFamily": "BlexMono Nerd Font Mono",
  "terminal.integrated.fontSize": 12,
  "cSpell.diagnosticLevel": "Hint",
  "[rust]": {
    "editor.defaultFormatter": "rust-lang.rust-analyzer",
    "editor.formatOnSave": true // Optional
  },
  "rust-analyzer.check.command": "clippy",
  "todo-tree.regex.regex": "(?:(?://|#|<!--|;|/\\*\\*?|\\*)\\s*($TAGS)|^\\s*- \\[ \\])",
  "[markdown]": {
    "editor.defaultFormatter": "DavidAnson.vscode-markdownlint",
    "editor.unicodeHighlight.ambiguousCharacters": false,
    "editor.unicodeHighlight.invisibleCharacters": true,
    "diffEditor.ignoreTrimWhitespace": false,
    "editor.wordWrap": "on",
    "editor.quickSuggestions": {
      "comments": "off",
      "strings": "off",
      "other": "off"
    }
  },
  "markdown.validate.enabled": true,
  "markdown.validate.fileLinks.markdownFragmentLinks": "error",
  "markdown.validate.fileLinks.enabled": "error",
  "markdown.validate.fragmentLinks.enabled": "error",
  "markdown.copyFiles.destination": {
    "**/*": "./apps/brain/assets/${fileName}"
  },
  "markdown.updateLinksOnFileMove.enabled": "always",
  "markdown.occurrencesHighlight.enabled": false,
  "markdown.suggest.paths.includeWorkspaceHeaderCompletions": "onSingleOrDoubleHash",
  "markdown.updateLinksOnFileMove.enableForDirectories": true,
  "markdown.extension.list.indentationSize": "inherit",
  "markdown.extension.toc.slugifyMode": "github",
  "foam.files.ignore": [
    "**/.nx/**",
    "**/.output/**",
    "**/.trash/**",
    "**/.vinxi/**",
    "**/assets/**",
    "**/target/**",
    "**/node_modules/**",
    "**/templates/**"
  ],
  "foam.openDailyNote.directory": "./apps/brain/notes/daily/",
  "foam.openDailyNote.filenameFormat": "yyyy-mm-dd",
  "foam.links.sync.enable": false,
  "foam.graph.style": {
    "node": {
      "moc": "#7000FF",
      "people": "#E05252",
      "source": "#05CDFF"
    }
  },
  "[javascript]": {
    "editor.defaultFormatter": "biomejs.biome",
    "editor.codeActionsOnSave": {
      "quickfix.biome": "explicit",
      "source.organizeImports.biome": "explicit"
    }
  },
  "[typescript]": {
    "editor.defaultFormatter": "biomejs.biome",
    "editor.codeActionsOnSave": {
      "quickfix.biome": "explicit",
      "source.organizeImports.biome": "explicit"
    }
  },
  "[javascriptreact]": {
    "editor.defaultFormatter": "biomejs.biome",
    "editor.codeActionsOnSave": {
      "quickfix.biome": "explicit",
      "source.organizeImports.biome": "explicit"
    }
  },
  "[typescriptreact]": {
    "editor.defaultFormatter": "biomejs.biome",
    "editor.codeActionsOnSave": {
      "quickfix.biome": "explicit",
      "source.organizeImports.biome": "explicit"
    }
  },
  "[scss]": {
    "editor.suggest.insertMode": "replace",
    "editor.defaultFormatter": "esbenp.prettier-vscode"
  },
  "[xml]": {
    "editor.defaultFormatter": "redhat.vscode-xml"
  },
  "[jsonc]": {
    "editor.defaultFormatter": "biomejs.biome",
    "editor.formatOnSave": true, // Optional
    "editor.codeActionsOnSave": {
      "quickfix.biome": "explicit",
      "source.organizeImports.biome": "explicit"
    }
  },
  "[json]": {
    "editor.defaultFormatter": "biomejs.biome",
    "editor.formatOnSave": true, // Optional
    "editor.codeActionsOnSave": {
      "quickfix.biome": "explicit",
      "source.organizeImports.biome": "explicit"
    }
  },
  "workbench.colorTheme": "GitHub Dark Default",
  "workbench.iconTheme": "material-icon-theme",
  "material-icon-theme.files.associations": {
    "main.ts": "nodejs_alt",
    "**.entity.ts": "database",
    "**.dto.ts": "serverless",
    "**.controller.ts": "nest",
    "**.decorator.ts": "nest",
    "**.filter.ts": "nest",
    "**.gateway.ts": "nest",
    "**.guard.ts": "nest",
    "**.middleware.ts": "nest",
    "**.module.ts": "nest",
    "**.pipe.ts": "nest",
    "**.resolver.ts": "nest",
    "**.service.ts": "nest",
    "**.processor.ts": "quasar"
  },
  "material-icon-theme.folders.associations": {
    "eslint-config-custom": "config",
    "tsconfig": "typescript",
    "type-orm": "database",
    "core-nestjs": "core",
    "rest-api": "api",
    "rust-api": "api",
    "d0z": "home",
    "d0z-api": "server",
    "d0z_old": "archive",
    "brain": "docs",
    "game-of-life": "console",
    "lafrappe": "client",
    "gateway": "jinja",
    "entities": "database",
    "dtos": "serverless",
    "dto": "serverless"
  },
  "prettier.enableDebugLogs": true,
  "markdown.extension.toc.updateOnSave": false
}
json
ยฉ 2026 d0z.eu | 0.1.0-beta.41