Skip to content

Latest commit

 

History

History
72 lines (68 loc) · 2.41 KB

README.md

File metadata and controls

72 lines (68 loc) · 2.41 KB

Programming Knowledge Repository

source/
│
├── README.md
├── components/
│   ├── web/
│   │   ├── Button.md
│   │   ├── Card.md
│   │   └── ...
│   ├── mobile/
│   │   ├── Button.md
│   │   ├── List.md
│   │   └── ...
│   └── backend/
│       ├── Auth.md
│       ├── Database.md
│       └── ...
├── commands/
│   ├── git-commands.md
│   ├── docker-commands.md
│   ├── kubernetes-commands.md
│   └── ...
├── languages/
│   ├── python/
│   │   ├── basics.md
│   │   ├── advanced.md
│   │   └── ...
│   ├── javascript/
│   │   ├── basics.md
│   │   ├── advanced.md
│   │   └── ...
│   └── ...
├── frameworks/
│   ├── react/
│   │   ├── getting-started.md
│   │   ├── advanced-concepts.md
│   │   └── ...
│   ├── django/
│   │   ├── getting-started.md
│   │   ├── advanced-concepts.md
│   │   └── ...
│   └── ...
├── best-practices/
│   ├── coding-standards.md
│   ├── testing.md
│   ├── security.md
│   └── ...
├── algorithms/
│   ├── sorting.md
│   ├── searching.md
│   └── ...
└── data-structures/
    ├── arrays.md
    ├── linked-lists.md
    └── ...

Welcome to the Programming Knowledge Repository. This repository is a comprehensive collection of reusable components, helpful commands, language guides, framework tutorials, best practices, algorithms, and data structures.

Structure

  • components/: Detailed documentation on reusable components for web, mobile, and backend development.
  • commands/: Lists essential commands for various tools and technologies.
  • languages/: Guides and tutorials for different programming languages.
  • frameworks/: Tutorials and advanced concepts for various frameworks.
  • best-practices/: Best practices in coding standards, testing, security, and more.
  • algorithms/: Detailed explanations and examples of various algorithms.
  • data-structures/: Comprehensive guides on different data structures.

Usage

Navigate through the folders to find the specific information you need. Each markdown file is well-documented and includes examples where applicable.