116 lines
4.1 KiB
YAML
116 lines
4.1 KiB
YAML
site_name: Notes
|
|
theme:
|
|
name: material
|
|
palette:
|
|
- scheme: default
|
|
primary: indigo
|
|
accent: indigo
|
|
toggle:
|
|
icon: material/weather-night
|
|
name: Switch to dark mode
|
|
- scheme: slate
|
|
primary: indigo
|
|
accent: indigo
|
|
toggle:
|
|
icon: material/weather-sunny
|
|
name: Switch to light mode
|
|
features:
|
|
- navigation.instant
|
|
- navigation.tabs
|
|
- navigation.top
|
|
- navigation.footer
|
|
- toc.integrate
|
|
- content.code.copy
|
|
- content.code.annotate
|
|
- search.suggest
|
|
- search.highlight
|
|
- search.share
|
|
- content.action.edit
|
|
- content.action.view
|
|
markdown_extensions:
|
|
- admonition
|
|
- attr_list
|
|
- def_list
|
|
- footnotes
|
|
- md_in_html
|
|
- meta
|
|
- toc:
|
|
permalink: true
|
|
- codehilite
|
|
- extra
|
|
- pymdownx.highlight
|
|
- pymdownx.superfences
|
|
- pymdownx.inlinehilite
|
|
- pymdownx.magiclink
|
|
- pymdownx.betterem
|
|
- pymdownx.critic
|
|
- pymdownx.details
|
|
- pymdownx.keys
|
|
- pymdownx.mark
|
|
- pymdownx.smartsymbols
|
|
- pymdownx.tasklist:
|
|
custom_checkbox: true
|
|
- pymdownx.arithmatex:
|
|
generic: true
|
|
|
|
extra_javascript:
|
|
- https://cdn.jsdelivr.net/npm/mathjax@3/es5/tex-mml-chtml.js
|
|
|
|
plugins:
|
|
- search
|
|
- minify:
|
|
minify_html: true
|
|
|
|
nav:
|
|
- Home: index.md
|
|
- Books:
|
|
- Designing Data-Intensive Applications:
|
|
- Preface: books/designing_data_intensive_applications/preface/index.md
|
|
- Part 1. Foundations of Data Systems:
|
|
- Chapter 1. Reliable, Scalable and Maintainable Applications: books/designing_data_intensive_applications/part1/chapter1.md
|
|
- Chapter 2. Data Models and Query Languages: books/designing_data_intensive_applications/part1/chapter2.md
|
|
- API Design Patterns:
|
|
- Part 1. Introduction:
|
|
- Chapter 1. Introduction to APIs: books/api_design_patterns/part1/chapter1.md
|
|
- Chapter 2. Introduction to API Design Patterns: books/api_design_patterns/part1/chapter2.md
|
|
- Part 2. Design Principles:
|
|
- Chapter 3. Naming: books/api_design_patterns/part2/chapter3.md
|
|
- Chapter 4. Resource Scope and Hierarchy: books/api_design_patterns/part2/chapter4.md
|
|
- Lecture Notes:
|
|
- Developing Maintainable Software:
|
|
- Java Collections: lectures/dms/01_java_collections.md
|
|
- UML Diagrams: lectures/dms/02_uml.md
|
|
- Operating Systems and Concurreny:
|
|
- Scheduling Algorithms: lectures/osc/01_scheduling_algorithms.md
|
|
- Threads: lectures/osc/02_threads.md
|
|
- Processes 4: lectures/osc/03_processes4.md
|
|
- Concurrency 1: lectures/osc/04_concurrency1.md
|
|
- Concurrency 2: lectures/osc/05_concurrency2.md
|
|
- Concurrency 3: lectures/osc/06_concurrency3.md
|
|
- Concurrency 4: lectures/osc/07_concurrency4.md
|
|
- Concurrency 6: lectures/osc/08_concurrency6.md
|
|
- Memory Management 1: lectures/osc/09_mem_management1.md
|
|
- Memory Management 2: lectures/osc/10_mem_management2.md
|
|
- Memory Management 3: lectures/osc/11_mem_management3.md
|
|
- Memory Management 4: lectures/osc/12_mem_management4.md
|
|
- Memory Management 5: lectures/osc/13_mem_management5.md
|
|
- Memory Management 6: lectures/osc/14_mem_management6.md
|
|
- File Systems 1: lectures/osc/15_file_systems1.md
|
|
- File Systems 2: lectures/osc/16_file_systems2.md
|
|
- File Systems 3: lectures/osc/17_file_systems3.md
|
|
- Advanced Computer Networks:
|
|
- Intro: lectures/acn/01_intro.md
|
|
- MANET And DTN: lectures/acn/02_MANET_and_DTN.md
|
|
- VANET And DTN: lectures/acn/03_VANET_and_DTN.md
|
|
- DTN Protocols: lectures/acn/04_DTN_Protocols.md
|
|
- DTN Advanced Protocols: lectures/acn/05_DTN_advanced_protocols.md
|
|
- DTN Congestion Control: lectures/acn/06_DTN_congestion_control.md
|
|
- Information Centric Networks: lectures/acn/07_information_centric_networks.md
|
|
- Content Centric Networks: lectures/acn/08_content_centric_networks.md
|
|
- DTN Security: lectures/acn/09_DTN_security.md
|
|
- Drones: lectures/acn/10_drones.md
|
|
- Connecting: lectures/acn/11_connecting.md
|
|
- Naming: lectures/acn/12_naming.md
|
|
- Reliability: lectures/acn/13_reliability.md
|
|
- BGP: lectures/acn/14_bgp.md
|