├── .obsidian ├── app.json ├── appearance.json ├── community-plugins.json ├── core-plugins-migration.json ├── core-plugins.json ├── plugins │ └── obsidian-git │ │ ├── data.json │ │ ├── main.js │ │ ├── manifest.json │ │ └── styles.css └── workspace-mobile.json ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── _config.yml └── cover.jpeg /.obsidian/app.json: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /.obsidian/appearance.json: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /.obsidian/community-plugins.json: -------------------------------------------------------------------------------- 1 | [ 2 | "obsidian-git" 3 | ] -------------------------------------------------------------------------------- /.obsidian/core-plugins-migration.json: -------------------------------------------------------------------------------- 1 | { 2 | "file-explorer": true, 3 | "global-search": true, 4 | "switcher": true, 5 | "graph": true, 6 | "backlink": true, 7 | "canvas": true, 8 | "outgoing-link": true, 9 | "tag-pane": true, 10 | "properties": false, 11 | "page-preview": true, 12 | "daily-notes": true, 13 | "templates": true, 14 | "note-composer": true, 15 | "command-palette": true, 16 | "slash-command": false, 17 | "editor-status": true, 18 | "bookmarks": true, 19 | "markdown-importer": false, 20 | "zk-prefixer": false, 21 | "random-note": false, 22 | "outline": true, 23 | "word-count": true, 24 | "slides": false, 25 | "audio-recorder": false, 26 | "workspaces": false, 27 | "file-recovery": true, 28 | "publish": false, 29 | "sync": false 30 | } -------------------------------------------------------------------------------- /.obsidian/core-plugins.json: -------------------------------------------------------------------------------- 1 | [ 2 | "file-explorer", 3 | "global-search", 4 | "switcher", 5 | "graph", 6 | "backlink", 7 | "canvas", 8 | "outgoing-link", 9 | "tag-pane", 10 | "page-preview", 11 | "daily-notes", 12 | "templates", 13 | "note-composer", 14 | "command-palette", 15 | "editor-status", 16 | "bookmarks", 17 | "outline", 18 | "word-count", 19 | "file-recovery" 20 | ] -------------------------------------------------------------------------------- /.obsidian/plugins/obsidian-git/data.json: -------------------------------------------------------------------------------- 1 | { 2 | "commitMessage": "vault backup: {{date}}", 3 | "commitDateFormat": "YYYY-MM-DD HH:mm:ss", 4 | "autoSaveInterval": 0, 5 | "autoPushInterval": 0, 6 | "autoPullInterval": 0, 7 | "autoPullOnBoot": true, 8 | "disablePush": false, 9 | "pullBeforePush": true, 10 | "disablePopups": false, 11 | "disablePopupsForNoChanges": false, 12 | "listChangedFilesInMessageBody": false, 13 | "showStatusBar": true, 14 | "updateSubmodules": false, 15 | "syncMethod": "merge", 16 | "customMessageOnAutoBackup": false, 17 | "autoBackupAfterFileChange": false, 18 | "treeStructure": false, 19 | "refreshSourceControl": false, 20 | "basePath": "", 21 | "differentIntervalCommitAndPush": false, 22 | "changedFilesInStatusBar": true, 23 | "showedMobileNotice": true, 24 | "refreshSourceControlTimer": 7000, 25 | "showBranchStatusBar": true, 26 | "setLastSaveToLastCommit": false, 27 | "submoduleRecurseCheckout": false, 28 | "gitDir": "", 29 | "showFileMenu": true, 30 | "authorInHistoryView": "hide", 31 | "dateInHistoryView": false, 32 | "lineAuthor": { 33 | "show": false, 34 | "followMovement": "inactive", 35 | "authorDisplay": "initials", 36 | "showCommitHash": false, 37 | "dateTimeFormatOptions": "date", 38 | "dateTimeFormatCustomString": "YYYY-MM-DD HH:mm", 39 | "dateTimeTimezone": "viewer-local", 40 | "coloringMaxAge": "1y", 41 | "colorNew": { 42 | "r": 255, 43 | "g": 150, 44 | "b": 150 45 | }, 46 | "colorOld": { 47 | "r": 120, 48 | "g": 160, 49 | "b": 255 50 | }, 51 | "textColorCss": "var(--text-muted)", 52 | "ignoreWhitespace": false, 53 | "gutterSpacingFallbackLength": 5, 54 | "lastShownAuthorDisplay": "initials", 55 | "lastShownDateTimeFormatOptions": "date" 56 | }, 57 | "autoCommitMessage": "vault backup: {{date}}" 58 | } -------------------------------------------------------------------------------- /.obsidian/plugins/obsidian-git/manifest.json: -------------------------------------------------------------------------------- 1 | { 2 | "author": "Vinzent", 3 | "authorUrl": "https://github.com/Vinzent03", 4 | "id": "obsidian-git", 5 | "name": "Git", 6 | "description": "Integrate Git version control with automatic backup and other advanced features.", 7 | "isDesktopOnly": false, 8 | "fundingUrl": "https://ko-fi.com/vinzent", 9 | "version": "2.26.0" 10 | } 11 | -------------------------------------------------------------------------------- /.obsidian/plugins/obsidian-git/styles.css: -------------------------------------------------------------------------------- 1 | @keyframes loading { 2 | 0% { 3 | transform: rotate(0deg); 4 | } 5 | 6 | 100% { 7 | transform: rotate(360deg); 8 | } 9 | } 10 | 11 | .workspace-leaf-content[data-type="git-view"] .button-border { 12 | border: 2px solid var(--interactive-accent); 13 | border-radius: var(--radius-s); 14 | } 15 | 16 | .workspace-leaf-content[data-type="git-view"] .view-content { 17 | padding: 0; 18 | } 19 | 20 | .workspace-leaf-content[data-type="git-history-view"] .view-content { 21 | padding: 0; 22 | } 23 | 24 | .loading > svg { 25 | animation: 2s linear infinite loading; 26 | transform-origin: 50% 50%; 27 | display: inline-block; 28 | } 29 | 30 | .obsidian-git-center { 31 | margin: auto; 32 | text-align: center; 33 | width: 50%; 34 | } 35 | 36 | .obsidian-git-textarea { 37 | display: block; 38 | margin-left: auto; 39 | margin-right: auto; 40 | } 41 | 42 | .obsidian-git-center-button { 43 | display: block; 44 | margin: 20px auto; 45 | } 46 | 47 | .tooltip.mod-left { 48 | overflow-wrap: break-word; 49 | } 50 | 51 | .tooltip.mod-right { 52 | overflow-wrap: break-word; 53 | } 54 | .git-tools { 55 | display: flex; 56 | margin-left: auto; 57 | } 58 | .git-tools .type { 59 | padding-left: var(--size-2-1); 60 | display: flex; 61 | align-items: center; 62 | justify-content: center; 63 | width: 11px; 64 | } 65 | 66 | .git-tools .type[data-type="M"] { 67 | color: orange; 68 | } 69 | .git-tools .type[data-type="D"] { 70 | color: red; 71 | } 72 | .git-tools .buttons { 73 | display: flex; 74 | } 75 | .git-tools .buttons > * { 76 | padding: 0 0; 77 | height: auto; 78 | } 79 | 80 | .is-active .git-tools .buttons > * { 81 | color: var(--nav-item-color-active); 82 | } 83 | 84 | .git-author { 85 | color: var(--text-accent); 86 | } 87 | 88 | .git-date { 89 | color: var(--text-accent); 90 | } 91 | 92 | .git-ref { 93 | color: var(--text-accent); 94 | } 95 | 96 | .workspace-leaf-content[data-type="diff-view"] .d2h-d-none { 97 | display: none; 98 | } 99 | 100 | .workspace-leaf-content[data-type="diff-view"] .d2h-wrapper { 101 | text-align: left; 102 | } 103 | 104 | .workspace-leaf-content[data-type="diff-view"] .d2h-file-header { 105 | background-color: var(--background-primary); 106 | border-bottom: 1px solid var(--interactive-accent); 107 | font-family: var(--font-monospace); 108 | height: 35px; 109 | padding: 5px 10px; 110 | } 111 | 112 | .workspace-leaf-content[data-type="diff-view"] .d2h-file-header, 113 | .workspace-leaf-content[data-type="diff-view"] .d2h-file-stats { 114 | display: -webkit-box; 115 | display: -ms-flexbox; 116 | display: flex; 117 | } 118 | 119 | .workspace-leaf-content[data-type="diff-view"] .d2h-file-stats { 120 | font-size: 14px; 121 | margin-left: auto; 122 | } 123 | 124 | .workspace-leaf-content[data-type="diff-view"] .d2h-lines-added { 125 | border: 1px solid #b4e2b4; 126 | border-radius: 5px 0 0 5px; 127 | color: #399839; 128 | padding: 2px; 129 | text-align: right; 130 | vertical-align: middle; 131 | } 132 | 133 | .workspace-leaf-content[data-type="diff-view"] .d2h-lines-deleted { 134 | border: 1px solid #e9aeae; 135 | border-radius: 0 5px 5px 0; 136 | color: #c33; 137 | margin-left: 1px; 138 | padding: 2px; 139 | text-align: left; 140 | vertical-align: middle; 141 | } 142 | 143 | .workspace-leaf-content[data-type="diff-view"] .d2h-file-name-wrapper { 144 | -webkit-box-align: center; 145 | -ms-flex-align: center; 146 | align-items: center; 147 | display: -webkit-box; 148 | display: -ms-flexbox; 149 | display: flex; 150 | font-size: 15px; 151 | width: 100%; 152 | } 153 | 154 | .workspace-leaf-content[data-type="diff-view"] .d2h-file-name { 155 | overflow-x: hidden; 156 | text-overflow: ellipsis; 157 | white-space: nowrap; 158 | } 159 | 160 | .workspace-leaf-content[data-type="diff-view"] .d2h-file-wrapper { 161 | border: 1px solid var(--background-modifier-border); 162 | border-radius: 3px; 163 | margin-bottom: 1em; 164 | } 165 | 166 | .workspace-leaf-content[data-type="diff-view"] .d2h-file-collapse { 167 | -webkit-box-pack: end; 168 | -ms-flex-pack: end; 169 | -webkit-box-align: center; 170 | -ms-flex-align: center; 171 | align-items: center; 172 | border: 1px solid var(--background-modifier-border); 173 | border-radius: 3px; 174 | cursor: pointer; 175 | display: none; 176 | font-size: 12px; 177 | justify-content: flex-end; 178 | padding: 4px 8px; 179 | } 180 | 181 | .workspace-leaf-content[data-type="diff-view"] .d2h-file-collapse.d2h-selected { 182 | background-color: #c8e1ff; 183 | } 184 | 185 | .workspace-leaf-content[data-type="diff-view"] .d2h-file-collapse-input { 186 | margin: 0 4px 0 0; 187 | } 188 | 189 | .workspace-leaf-content[data-type="diff-view"] .d2h-diff-table { 190 | border-collapse: collapse; 191 | font-family: Menlo, Consolas, monospace; 192 | font-size: 13px; 193 | width: 100%; 194 | } 195 | 196 | .workspace-leaf-content[data-type="diff-view"] .d2h-files-diff { 197 | width: 100%; 198 | } 199 | 200 | .workspace-leaf-content[data-type="diff-view"] .d2h-file-diff { 201 | overflow-y: hidden; 202 | } 203 | 204 | .workspace-leaf-content[data-type="diff-view"] .d2h-file-side-diff { 205 | display: inline-block; 206 | margin-bottom: -8px; 207 | margin-right: -4px; 208 | overflow-x: scroll; 209 | overflow-y: hidden; 210 | width: 50%; 211 | } 212 | 213 | .workspace-leaf-content[data-type="diff-view"] .d2h-code-line { 214 | padding: 0 8em; 215 | } 216 | 217 | .workspace-leaf-content[data-type="diff-view"] .d2h-code-line, 218 | .workspace-leaf-content[data-type="diff-view"] .d2h-code-side-line { 219 | display: inline-block; 220 | -webkit-user-select: none; 221 | -moz-user-select: none; 222 | -ms-user-select: none; 223 | user-select: none; 224 | white-space: nowrap; 225 | width: 100%; 226 | } 227 | 228 | .workspace-leaf-content[data-type="diff-view"] .d2h-code-side-line { 229 | padding: 0 4.5em; 230 | } 231 | 232 | .workspace-leaf-content[data-type="diff-view"] .d2h-code-line-ctn { 233 | word-wrap: normal; 234 | background: none; 235 | display: inline-block; 236 | padding: 0; 237 | -webkit-user-select: text; 238 | -moz-user-select: text; 239 | -ms-user-select: text; 240 | user-select: text; 241 | vertical-align: middle; 242 | white-space: pre; 243 | width: 100%; 244 | } 245 | 246 | .theme-light .workspace-leaf-content[data-type="diff-view"] .d2h-code-line del, 247 | .theme-light 248 | .workspace-leaf-content[data-type="diff-view"] 249 | .d2h-code-side-line 250 | del { 251 | background-color: #ffb6ba; 252 | } 253 | 254 | .theme-dark .workspace-leaf-content[data-type="diff-view"] .d2h-code-line del, 255 | .theme-dark 256 | .workspace-leaf-content[data-type="diff-view"] 257 | .d2h-code-side-line 258 | del { 259 | background-color: #8d232881; 260 | } 261 | 262 | .workspace-leaf-content[data-type="diff-view"] .d2h-code-line del, 263 | .workspace-leaf-content[data-type="diff-view"] .d2h-code-line ins, 264 | .workspace-leaf-content[data-type="diff-view"] .d2h-code-side-line del, 265 | .workspace-leaf-content[data-type="diff-view"] .d2h-code-side-line ins { 266 | border-radius: 0.2em; 267 | display: inline-block; 268 | margin-top: -1px; 269 | text-decoration: none; 270 | vertical-align: middle; 271 | } 272 | 273 | .theme-light .workspace-leaf-content[data-type="diff-view"] .d2h-code-line ins, 274 | .theme-light 275 | .workspace-leaf-content[data-type="diff-view"] 276 | .d2h-code-side-line 277 | ins { 278 | background-color: #97f295; 279 | text-align: left; 280 | } 281 | 282 | .theme-dark .workspace-leaf-content[data-type="diff-view"] .d2h-code-line ins, 283 | .theme-dark 284 | .workspace-leaf-content[data-type="diff-view"] 285 | .d2h-code-side-line 286 | ins { 287 | background-color: #1d921996; 288 | text-align: left; 289 | } 290 | 291 | .workspace-leaf-content[data-type="diff-view"] .d2h-code-line-prefix { 292 | word-wrap: normal; 293 | background: none; 294 | display: inline; 295 | padding: 0; 296 | white-space: pre; 297 | } 298 | 299 | .workspace-leaf-content[data-type="diff-view"] .line-num1 { 300 | float: left; 301 | } 302 | 303 | .workspace-leaf-content[data-type="diff-view"] .line-num1, 304 | .workspace-leaf-content[data-type="diff-view"] .line-num2 { 305 | -webkit-box-sizing: border-box; 306 | box-sizing: border-box; 307 | overflow: hidden; 308 | padding: 0 0.5em; 309 | text-overflow: ellipsis; 310 | width: 3.5em; 311 | } 312 | 313 | .workspace-leaf-content[data-type="diff-view"] .line-num2 { 314 | float: right; 315 | } 316 | 317 | .workspace-leaf-content[data-type="diff-view"] .d2h-code-linenumber { 318 | background-color: var(--background-primary); 319 | border: solid var(--background-modifier-border); 320 | border-width: 0 1px; 321 | -webkit-box-sizing: border-box; 322 | box-sizing: border-box; 323 | color: var(--text-muted); 324 | cursor: pointer; 325 | display: inline-block; 326 | position: absolute; 327 | text-align: right; 328 | width: 7.5em; 329 | } 330 | 331 | .workspace-leaf-content[data-type="diff-view"] .d2h-code-linenumber:after { 332 | content: "\200b"; 333 | } 334 | 335 | .workspace-leaf-content[data-type="diff-view"] .d2h-code-side-linenumber { 336 | background-color: var(--background-primary); 337 | border: solid var(--background-modifier-border); 338 | border-width: 0 1px; 339 | -webkit-box-sizing: border-box; 340 | box-sizing: border-box; 341 | color: var(--text-muted); 342 | cursor: pointer; 343 | display: inline-block; 344 | overflow: hidden; 345 | padding: 0 0.5em; 346 | position: absolute; 347 | text-align: right; 348 | text-overflow: ellipsis; 349 | width: 4em; 350 | } 351 | 352 | .workspace-leaf-content[data-type="diff-view"] .d2h-diff-tbody tr { 353 | position: relative; 354 | } 355 | 356 | .workspace-leaf-content[data-type="diff-view"] .d2h-code-side-linenumber:after { 357 | content: "\200b"; 358 | } 359 | 360 | .workspace-leaf-content[data-type="diff-view"] .d2h-code-side-emptyplaceholder, 361 | .workspace-leaf-content[data-type="diff-view"] .d2h-emptyplaceholder { 362 | background-color: var(--background-primary); 363 | border-color: var(--background-modifier-border); 364 | } 365 | 366 | .workspace-leaf-content[data-type="diff-view"] .d2h-code-line-prefix, 367 | .workspace-leaf-content[data-type="diff-view"] .d2h-code-linenumber, 368 | .workspace-leaf-content[data-type="diff-view"] .d2h-code-side-linenumber, 369 | .workspace-leaf-content[data-type="diff-view"] .d2h-emptyplaceholder { 370 | -webkit-user-select: none; 371 | -moz-user-select: none; 372 | -ms-user-select: none; 373 | user-select: none; 374 | } 375 | 376 | .workspace-leaf-content[data-type="diff-view"] .d2h-code-linenumber, 377 | .workspace-leaf-content[data-type="diff-view"] .d2h-code-side-linenumber { 378 | direction: rtl; 379 | } 380 | 381 | .theme-light .workspace-leaf-content[data-type="diff-view"] .d2h-del { 382 | background-color: #fee8e9; 383 | border-color: #e9aeae; 384 | } 385 | 386 | .theme-light .workspace-leaf-content[data-type="diff-view"] .d2h-ins { 387 | background-color: #dfd; 388 | border-color: #b4e2b4; 389 | } 390 | 391 | .theme-dark .workspace-leaf-content[data-type="diff-view"] .d2h-del { 392 | background-color: #521b1d83; 393 | border-color: #691d1d73; 394 | } 395 | 396 | .theme-dark .workspace-leaf-content[data-type="diff-view"] .d2h-ins { 397 | background-color: rgba(30, 71, 30, 0.5); 398 | border-color: #13501381; 399 | } 400 | 401 | .workspace-leaf-content[data-type="diff-view"] .d2h-info { 402 | background-color: var(--background-primary); 403 | border-color: var(--background-modifier-border); 404 | color: var(--text-normal); 405 | } 406 | 407 | .theme-light 408 | .workspace-leaf-content[data-type="diff-view"] 409 | .d2h-file-diff 410 | .d2h-del.d2h-change { 411 | background-color: #fdf2d0; 412 | } 413 | 414 | .theme-dark 415 | .workspace-leaf-content[data-type="diff-view"] 416 | .d2h-file-diff 417 | .d2h-del.d2h-change { 418 | background-color: #55492480; 419 | } 420 | 421 | .theme-light 422 | .workspace-leaf-content[data-type="diff-view"] 423 | .d2h-file-diff 424 | .d2h-ins.d2h-change { 425 | background-color: #ded; 426 | } 427 | 428 | .theme-dark 429 | .workspace-leaf-content[data-type="diff-view"] 430 | .d2h-file-diff 431 | .d2h-ins.d2h-change { 432 | background-color: rgba(37, 78, 37, 0.418); 433 | } 434 | 435 | .workspace-leaf-content[data-type="diff-view"] .d2h-file-list-wrapper { 436 | margin-bottom: 10px; 437 | } 438 | 439 | .workspace-leaf-content[data-type="diff-view"] .d2h-file-list-wrapper a { 440 | color: #3572b0; 441 | text-decoration: none; 442 | } 443 | 444 | .workspace-leaf-content[data-type="diff-view"] 445 | .d2h-file-list-wrapper 446 | a:visited { 447 | color: #3572b0; 448 | } 449 | 450 | .workspace-leaf-content[data-type="diff-view"] .d2h-file-list-header { 451 | text-align: left; 452 | } 453 | 454 | .workspace-leaf-content[data-type="diff-view"] .d2h-file-list-title { 455 | font-weight: 700; 456 | } 457 | 458 | .workspace-leaf-content[data-type="diff-view"] .d2h-file-list-line { 459 | display: -webkit-box; 460 | display: -ms-flexbox; 461 | display: flex; 462 | text-align: left; 463 | } 464 | 465 | .workspace-leaf-content[data-type="diff-view"] .d2h-file-list { 466 | display: block; 467 | list-style: none; 468 | margin: 0; 469 | padding: 0; 470 | } 471 | 472 | .workspace-leaf-content[data-type="diff-view"] .d2h-file-list > li { 473 | border-bottom: 1px solid var(--background-modifier-border); 474 | margin: 0; 475 | padding: 5px 10px; 476 | } 477 | 478 | .workspace-leaf-content[data-type="diff-view"] .d2h-file-list > li:last-child { 479 | border-bottom: none; 480 | } 481 | 482 | .workspace-leaf-content[data-type="diff-view"] .d2h-file-switch { 483 | cursor: pointer; 484 | display: none; 485 | font-size: 10px; 486 | } 487 | 488 | .workspace-leaf-content[data-type="diff-view"] .d2h-icon { 489 | fill: currentColor; 490 | margin-right: 10px; 491 | vertical-align: middle; 492 | } 493 | 494 | .workspace-leaf-content[data-type="diff-view"] .d2h-deleted { 495 | color: #c33; 496 | } 497 | 498 | .workspace-leaf-content[data-type="diff-view"] .d2h-added { 499 | color: #399839; 500 | } 501 | 502 | .workspace-leaf-content[data-type="diff-view"] .d2h-changed { 503 | color: #d0b44c; 504 | } 505 | 506 | .workspace-leaf-content[data-type="diff-view"] .d2h-moved { 507 | color: #3572b0; 508 | } 509 | 510 | .workspace-leaf-content[data-type="diff-view"] .d2h-tag { 511 | background-color: var(--background-primary); 512 | display: -webkit-box; 513 | display: -ms-flexbox; 514 | display: flex; 515 | font-size: 10px; 516 | margin-left: 5px; 517 | padding: 0 2px; 518 | } 519 | 520 | .workspace-leaf-content[data-type="diff-view"] .d2h-deleted-tag { 521 | border: 2px solid #c33; 522 | } 523 | 524 | .workspace-leaf-content[data-type="diff-view"] .d2h-added-tag { 525 | border: 1px solid #399839; 526 | } 527 | 528 | .workspace-leaf-content[data-type="diff-view"] .d2h-changed-tag { 529 | border: 1px solid #d0b44c; 530 | } 531 | 532 | .workspace-leaf-content[data-type="diff-view"] .d2h-moved-tag { 533 | border: 1px solid #3572b0; 534 | } 535 | 536 | /* ====================== Line Authoring Information ====================== */ 537 | 538 | .cm-gutterElement.obs-git-blame-gutter { 539 | /* Add background color to spacing inbetween and around the gutter for better aesthetics */ 540 | border-width: 0px 2px 0.2px 2px; 541 | border-style: solid; 542 | border-color: var(--background-secondary); 543 | background-color: var(--background-secondary); 544 | } 545 | 546 | .cm-gutterElement.obs-git-blame-gutter > div, 547 | .line-author-settings-preview { 548 | /* delegate text color to settings */ 549 | color: var(--obs-git-gutter-text); 550 | font-family: monospace; 551 | height: 100%; /* ensure, that age-based background color occupies entire parent */ 552 | text-align: right; 553 | padding: 0px 6px 0px 6px; 554 | white-space: pre; /* Keep spaces and do not collapse them. */ 555 | } 556 | 557 | @media (max-width: 800px) { 558 | /* hide git blame gutter not to superpose text */ 559 | .cm-gutterElement.obs-git-blame-gutter { 560 | display: none; 561 | } 562 | } 563 | -------------------------------------------------------------------------------- /.obsidian/workspace-mobile.json: -------------------------------------------------------------------------------- 1 | { 2 | "main": { 3 | "id": "3beb48340abc7732", 4 | "type": "split", 5 | "children": [ 6 | { 7 | "id": "1eb0d0960c8a92c7", 8 | "type": "tabs", 9 | "children": [ 10 | { 11 | "id": "6575f3b6fa2c9e68", 12 | "type": "leaf", 13 | "state": { 14 | "type": "markdown", 15 | "state": { 16 | "file": "README.md", 17 | "mode": "source", 18 | "source": false 19 | } 20 | } 21 | } 22 | ] 23 | } 24 | ], 25 | "direction": "vertical" 26 | }, 27 | "left": { 28 | "id": "fb56d250287bae35", 29 | "type": "mobile-drawer", 30 | "children": [ 31 | { 32 | "id": "e887d9b89f9cd615", 33 | "type": "leaf", 34 | "state": { 35 | "type": "file-explorer", 36 | "state": { 37 | "sortOrder": "alphabetical" 38 | } 39 | } 40 | }, 41 | { 42 | "id": "3563881f40c64a84", 43 | "type": "leaf", 44 | "state": { 45 | "type": "search", 46 | "state": { 47 | "query": "", 48 | "matchingCase": false, 49 | "explainSearch": false, 50 | "collapseAll": false, 51 | "extraContext": false, 52 | "sortOrder": "alphabetical" 53 | } 54 | } 55 | }, 56 | { 57 | "id": "2447ed28c6468dbb", 58 | "type": "leaf", 59 | "state": { 60 | "type": "tag", 61 | "state": { 62 | "sortOrder": "frequency", 63 | "useHierarchy": true 64 | } 65 | } 66 | }, 67 | { 68 | "id": "2ca80ea890a7f86b", 69 | "type": "leaf", 70 | "state": { 71 | "type": "bookmarks", 72 | "state": {} 73 | } 74 | } 75 | ], 76 | "currentTab": 0 77 | }, 78 | "right": { 79 | "id": "06c50f74a9d44a78", 80 | "type": "mobile-drawer", 81 | "children": [ 82 | { 83 | "id": "7cb0826a1041c599", 84 | "type": "leaf", 85 | "state": { 86 | "type": "backlink", 87 | "state": { 88 | "file": "README.md", 89 | "collapseAll": false, 90 | "extraContext": false, 91 | "sortOrder": "alphabetical", 92 | "showSearch": false, 93 | "searchQuery": "", 94 | "backlinkCollapsed": false, 95 | "unlinkedCollapsed": true 96 | } 97 | } 98 | }, 99 | { 100 | "id": "1012f0f291755f6e", 101 | "type": "leaf", 102 | "state": { 103 | "type": "outgoing-link", 104 | "state": { 105 | "file": "README.md", 106 | "linksCollapsed": false, 107 | "unlinkedCollapsed": true 108 | } 109 | } 110 | }, 111 | { 112 | "id": "5883b4d6ed6cf0a2", 113 | "type": "leaf", 114 | "state": { 115 | "type": "outline", 116 | "state": { 117 | "file": "README.md" 118 | } 119 | } 120 | } 121 | ], 122 | "currentTab": 0 123 | }, 124 | "left-ribbon": { 125 | "hiddenItems": { 126 | "switcher:Open quick switcher": false, 127 | "graph:Open graph view": false, 128 | "canvas:Create new canvas": false, 129 | "daily-notes:Open today's daily note": false, 130 | "templates:Insert template": false, 131 | "command-palette:Open command palette": false, 132 | "obsidian-git:Open Git source control": false 133 | } 134 | }, 135 | "active": "6575f3b6fa2c9e68", 136 | "lastOpenFiles": [ 137 | "/README.md", 138 | "cover.jpeg", 139 | "/a-cover-photo-with-the-text-android-resources-in-a-xIaQRI9wTZWNuImBSRtaAw-bb-4nMRyT0OrWy6pjXAZ1A.jpeg", 140 | "README.md" 141 | ] 142 | } -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- 1 | # Contributor Covenant Code of Conduct 2 | 3 | ## Our Pledge 4 | 5 | We as members, contributors, and leaders pledge to make participation in our community a harassment-free experience for everyone, regardless of age, body size, visible or invisible disability, ethnicity, sex characteristics, gender identity and expression, level of experience, education, socio-economic status, nationality, personal appearance, race, religion, or sexual identity and orientation. 6 | 7 | We pledge to act and interact in ways that contribute to an open, welcoming, diverse, inclusive, and healthy community. 8 | 9 | ## Our Standards 10 | 11 | Examples of behavior that contributes to a positive environment for our community include: 12 | 13 | * Demonstrating empathy and kindness toward other people 14 | * Being respectful of differing opinions, viewpoints, and experiences 15 | * Giving and gracefully accepting constructive feedback 16 | * Accepting responsibility and apologizing to those affected by our mistakes, and learning from the experience 17 | * Focusing on what is best not just for us as individuals, but for the overall community 18 | 19 | Examples of unacceptable behavior include: 20 | 21 | * The use of sexualized language or imagery, and sexual attention or advances of any kind 22 | * Trolling, insulting or derogatory comments, and personal or political attacks 23 | * Public or private harassment 24 | * Publishing others’ private information, such as a physical or email address, without their explicit permission 25 | * Other conduct which could reasonably be considered inappropriate in a professional setting 26 | 27 | ## Enforcement Responsibilities 28 | 29 | Community leaders are responsible for clarifying and enforcing our standards of acceptable behavior and will take appropriate and fair corrective action in response to any behavior that they deem inappropriate, threatening, offensive, or harmful. 30 | 31 | Community leaders have the right and responsibility to remove, edit, or reject comments, commits, code, wiki edits, issues, and other contributions that are not aligned to this Code of Conduct, and will communicate reasons for moderation decisions when appropriate. 32 | 33 | ## Scope 34 | 35 | This Code of Conduct applies within all community spaces, and also applies when an individual is officially representing the community in public spaces. Examples of representing our community include using an official e-mail address, posting via an official social media account, or acting as an appointed representative at an online or offline event. 36 | 37 | ## Enforcement 38 | 39 | Instances of abusive, harassing, or otherwise unacceptable behavior may be reported to the community leaders responsible for enforcement at [INSERT CONTACT METHOD]. All complaints will be reviewed and investigated promptly and fairly. 40 | 41 | All community leaders are obligated to respect the privacy and security of the reporter of any incident. 42 | 43 | ## Enforcement Guidelines 44 | 45 | Community leaders will follow these Community Impact Guidelines in determining the consequences for any action they deem in violation of this Code of Conduct: 46 | 47 | ### 1. Correction 48 | 49 | **Community Impact**: Use of inappropriate language or other behavior deemed unprofessional or unwelcome in the community. 50 | 51 | **Consequence**: A private, written warning from community leaders, providing clarity around the nature of the violation and an explanation of why the behavior was inappropriate. A public apology may be requested. 52 | 53 | ### 2. Warning 54 | 55 | **Community Impact**: A violation through a single incident or series of actions. 56 | 57 | **Consequence**: A warning with consequences for continued behavior. No interaction with the people involved, including unsolicited interaction with those enforcing the Code of Conduct, for a specified period of time. This includes avoiding interactions in community spaces as well as external channels like social media. Violating these terms may lead to a temporary or permanent ban. 58 | 59 | ### 3. Temporary Ban 60 | 61 | **Community Impact**: A serious violation of community standards, including sustained inappropriate behavior. 62 | 63 | **Consequence**: A temporary ban from any sort of interaction or public communication with the community for a specified period of time. No public or private interaction with the people involved, including unsolicited interaction with those enforcing the Code of Conduct, is allowed during this period. Violating these terms may lead to a permanent ban. 64 | 65 | ### 4. Permanent Ban 66 | 67 | **Community Impact**: Demonstrating a pattern of violation of community standards, including sustained inappropriate behavior, harassment of an individual, or aggression toward or disparagement of classes of individuals. 68 | 69 | **Consequence**: A permanent ban from any sort of public interaction within the community. 70 | 71 | ## Attribution 72 | 73 | This Code of Conduct is adapted from the [Contributor Covenant][homepage], version 2.0, available at https://www.contributor-covenant.org/version/2/0/code_of_conduct.html. 74 | 75 | Community Impact Guidelines were inspired by [Mozilla's code of conduct enforcement ladder](https://github.com/mozilla/diversity). 76 | 77 | For answers to common questions about this code of conduct, see the FAQ at https://www.contributor-covenant.org/faq. Translations are available at https://www.contributor-covenant.org/translations. 78 | 79 | [homepage]: https://www.contributor-covenant.org 80 | -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- 1 | ## How to Contribute 2 | 3 | We welcome contributions from the community! Here are some ways you can contribute: 4 | 5 | ### Reporting Issues 6 | 7 | If you encounter any issues or have suggestions for improvements, please open an issue on GitHub. Provide as much detail as possible to help us understand and address the problem. 8 | 9 | ### Suggesting New Resources 10 | 11 | If you have come across valuable resources related to Android development that are not included in this repository, feel free to suggest them. You can do this by opening an issue or submitting a pull request with the details of the resource. 12 | 13 | ### Submitting Pull Requests 14 | 15 | We encourage you to contribute to this repository by submitting pull requests. Here are the steps to follow: 16 | 17 | 1. Fork the repository. 18 | 2. Create a new branch for your contribution. 19 | 3. Make your changes and commit them with clear and descriptive commit messages. 20 | 4. Push your changes to your forked repository. 21 | 5. Open a pull request, providing a detailed description of your changes. 22 | 23 | ### Code of Conduct 24 | 25 | Please note that we have a code of conduct in place to ensure a welcoming and inclusive environment for all contributors. We expect all contributors to adhere to this code of conduct. You can find the code of conduct [here](./CODE_OF_CONDUCT.md). 26 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | MIT License 2 | 3 | Copyright (c) 2024 Yogesh Choudhary Paliyal 4 | 5 | Permission is hereby granted, free of charge, to any person obtaining a copy 6 | of this software and associated documentation files (the "Software"), to deal 7 | in the Software without restriction, including without limitation the rights 8 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | copies of the Software, and to permit persons to whom the Software is 10 | furnished to do so, subject to the following conditions: 11 | 12 | The above copyright notice and this permission notice shall be included in all 13 | copies or substantial portions of the Software. 14 | 15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 21 | SOFTWARE. 22 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # Android-Resources 2 | ![android-resources-cover](./cover.jpeg) 3 | 4 | visitCount 5 | 6 | This repository serves as a curated collection of valuable resources related to Android development. It aims to provide developers with a centralized hub to discover and explore informative content on various Android-specific topics, including, internals of android, performance optimization, architectural patterns, testing methodologies, popular libraries and tools, and best practices. 7 | 8 | ## Table of Contents 9 | - [Internals](#internals) 10 | - [Android](#android) 11 | - [Kotlin](#kotlin) 12 | - [Popular Libraries](#popular-libraries) 13 | - [Coroutines](#coroutines) 14 | - [Performance](#performance) 15 | - [Baseline Profiles](#baseline-profiles) 16 | - [Startup Profiles](#startup-profiles) 17 | - [Build Tools](#build-tools) 18 | - [Gradle](#gradle) 19 | - [R8](#r8) 20 | - [Tools](#tools) 21 | - [ADB](#adb) 22 | - [Debugging](#debugging) 23 | - [System Design](#system-design) 24 | 25 |
26 | 27 | ## Internals 28 | ### Android 29 | - [The internals of Android APK build process — Article](https://medium.com/androiddevnotes/the-internals-of-android-apk-build-process-article-5b68c385fb20) 30 | - [Bytecode analysis for everyone!](https://youtu.be/6cYmdoeZ1OY) 31 | - [Desugaring in Android](https://blog.mindorks.com/desugaring-in-android/) 32 | ### Kotlin 33 | - [How to make kotlin compile 2x faster on a super large project?](https://www.droidcon.com/2024/08/11/how-to-make-kotlin-compile-2x-faster-on-a-super-large-project/) 34 | - [Advanced Kotlin Flow Cheat sheet (for Android Engineer)](https://medium.com/@galou.minisini/advanced-kotlin-flow-cheat-sheet-for-android-engineer-cb8157d4f848) 35 | ### Popular Libraries 36 | #### Coroutines 37 | - [Coroutines Mastery: Tips, Best Practices, and Real-world Insights](https://www.droidcon.com/2024/08/30/coroutines-mastery-tips-best-practices-and-real-world-insights/) 38 | 39 |
40 | 41 | ## Performance 42 | #### Video 43 | - [Unblocking The Main Thread: Solving ANRs and Frozen Frames](https://youtu.be/BSB7ZLNm9ac) 44 | - [🔍 LeakCanary Masterclass with Pierre-Yves Ricau - Unraveling Android Memory Leaks 🐦 #LiveTechT](https://youtu.be/ZdZSGnJw3mY) 45 | - [Perfetto Your App for Perfect Performance](https://www.droidcon.com/2024/08/30/perfetto-your-app-for-perfect-performance/) 46 | #### Blog 47 | - [Mastering Android App Performance: Analyzing Bottlenecks with Perfetto 🚦](https://blog.shreyaspatil.dev/mastering-android-app-performance-analyzing-bottlenecks-with-perfetto) 48 | 49 | 50 | ### Baseline Profiles 51 | - [Making apps blazing fast with Baseline Profiles](https://youtu.be/yJm5On5Gp4c) 52 | - [Make your app faster with Baseline Profiles Perfetto and more - Rahul Ravikumar](https://youtu.be/7bLTmPpUIno) 53 | 54 | ### Startup Profiles 55 | - [Official Documentation](https://developer.android.com/topic/performance/baselineprofiles/dex-layout-optimizations) 56 | 57 |
58 | 59 | ## Build Tools 60 | - [Creating Different Build Variants in Android](https://blog.mindorks.com/build-variants-in-android/) 61 | ### Gradle 62 | ### R8 63 | - [What is R8 and how we enabled it](https://stefma.medium.com/what-is-r8-and-how-we-enabled-it-4f5764a7ff9c#:~:text=The%20R8%20compiler%20detects%20unused,also%20optimizes%20the%20source%20code.) 64 | - [ProGuard — Everything You Need to Know](https://medium.com/@attilaptkai/proguard-everything-you-need-to-know-bb5ff9c04bcd) 65 | 66 |
67 | 68 | ## Tools 69 | ### ADB 70 | - [What if ADB does not have to be that complicated?](https://youtu.be/auiGFhKBDAE) 71 | - [PRACTICAL ADB USAGE TO ENHANCE YOUR LIFE! - Benjamin Kadel | Droidcon Italy 2023 Talk](https://youtu.be/KFnqoze9nZc) 72 | 73 | ## Debugging 74 | - [DAAS: Debugging as a skill!](https://www.droidcon.com/2024/08/30/daas-debugging-as-a-skill/) 75 | 76 | 77 | ## System Design 78 | - [Grokking the Mobile System Design interview](https://artem-goncharov.medium.com/grokking-the-mobile-system-design-interview-6a06fa94491b) 79 | - [Mobile System Design Interviews (iOS and Android)](https://naxirmahmood.medium.com/mobile-system-design-interviews-ios-and-android-f5d360292c22) 80 | 81 | ## How to Contribute 82 | 83 | We welcome contributions from the community! Here are some ways you can contribute: 84 | 85 | ### Reporting Issues 86 | 87 | If you encounter any issues or have suggestions for improvements, please open an issue on GitHub. Provide as much detail as possible to help us understand and address the problem. 88 | 89 | ### Suggesting New Resources 90 | 91 | If you have come across valuable resources related to Android development that are not included in this repository, feel free to suggest them. You can do this by opening an issue or submitting a pull request with the details of the resource. 92 | 93 | ### Submitting Pull Requests 94 | 95 | We encourage you to contribute to this repository by submitting pull requests. Here are the steps to follow: 96 | 97 | 1. Fork the repository. 98 | 2. Create a new branch for your contribution. 99 | 3. Make your changes and commit them with clear and descriptive commit messages. 100 | 4. Push your changes to your forked repository. 101 | 5. Open a pull request, providing a detailed description of your changes. 102 | 103 | ### Code of Conduct 104 | 105 | Please note that we have a code of conduct in place to ensure a welcoming and inclusive environment for all contributors. We expect all contributors to adhere to this code of conduct. You can find the code of conduct [here](./CODE_OF_CONDUCT.md). 106 | -------------------------------------------------------------------------------- /_config.yml: -------------------------------------------------------------------------------- 1 | remote_theme: pages-themes/cayman@v0.2.0 2 | plugins: 3 | - jekyll-remote-theme # add this line to the plugins list if you already have one 4 | -------------------------------------------------------------------------------- /cover.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yogeshpaliyal/android-resources/488670e66ce6dbe1c34ef7751b363cad384e6649/cover.jpeg --------------------------------------------------------------------------------