Skip to content

Commit 08aef6f

Browse files
author
VR-Rathod
committed
makes SEO friendly Things for website and added Tags for logseq better View
1 parent ea2e71b commit 08aef6f

File tree

306 files changed

+1836
-21
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

306 files changed

+1836
-21
lines changed

README.md

Lines changed: 6 additions & 21 deletions
Original file line numberDiff line numberDiff line change
@@ -1,43 +1,34 @@
11
# Free Code Notes
22

33
Welcome to the Free Code Notes repository! This project is designed to provide a collection of coding notes and resources created using Logseq. Whether you're a beginner or an experienced developer, you'll find valuable information to enhance your coding skills.
4-
54
- ## Table of Contents
6-
75
- [Introduction](#introduction) || [[Introduction]] 🦖
8-
96
- [Getting Started](#getting-started)
107
- [contributer](#contributer)🦚
118
- [contribution query](#contribution)🦧
129
- [License](https://github.com/VR-Rathod/Code-Note/blob/main/LICENSE)🦐
1310
- [Contribute Guideline](https://github.com/VR-Rathod/Code-Note/blob/main/Dev/format.md)🐱‍👤
1411

1512
Note : - after || (Something) Was use for navigate on Logseq and if pages are blank that means there data will add in future
16-
1713
- ## Introduction
1814
- This repository serves as a comprehensive resource for various programming concepts, languages, and best practices. The notes are organized and structured using Logseq, making it easy to navigate and reference. You can also use SumatraPDF for reading PDFs. For more in-depth knowledge, navigate to the Software page section to find details on various software tools and resources. ||( ((6722a764-cba3-430a-805a-3a2746eb9e3f)) )
19-
2015
- ## Getting Started
2116

2217
To get started with the code notes:
23-
2418
- 1. **Clone the Repository**
2519
```bash
2620
git clone https://github.com/VR-Rathod/Code-Note.git
2721
cd code-note
2822
```
29-
3023
- 2. **Usefull Software**
31-
32-
## Logseq
24+
- ## Logseq
3325
Logseq is an open-source, non-linear outliner notebook that helps you organize and share your knowledge.
3426

3527
You can download it by [Clicking Here](https://logseq.com/).
36-
37-
## Sumitra
28+
- ## Sumitra
3829
Sumitra is an open-source tool designed to help you annotate and manage PDF documents efficiently. With its intuitive interface, you can highlight, comment, and create outlines from your PDFs.
3930
You can download it by [Clicking Here](https://www.sumatrapdfreader.org/free-pdf-reader).
40-
31+
4132
------------
4233
Both tools can be used together to enhance your productivity and knowledge management!
4334

@@ -46,13 +37,11 @@ Welcome to the Free Code Notes repository! This project is designed to provide a
4637
Then open Your project Like This: -
4738

4839
https://github.com/user-attachments/assets/e4cd771b-a7f0-4656-8737-4ea55ac40a5e
49-
5040
- 3. ### **The Final Gift**
5141

5242
You can Directorly View on github but i suggest open in logseq for Better view and update This repo regulerly...
5343
Look Introduction page For Easy navigate, Now You have all data, pdfs, topics , Links related to This Subject.
54-
55-
### *Note* :- Repo updating daily use this for daily update content
44+
- ### *Note* :- Repo updating daily use this for daily update content
5645

5746
Pull Updates Regularly:
5847
Whenever you update the content, users can run the following command in their local clone to get the latest changes:
@@ -68,15 +57,11 @@ Welcome to the Free Code Notes repository! This project is designed to provide a
6857
Happy Learning...🙏
6958
- ## Author
7059
- [@VR-Rathod](https://github.com/VR-Rathod)
71-
7260
- ## contributer
7361
- [@Nirmit Kotadiya](https://github.com/nirmitkotadiya)
74-
75-
7662
- ## contribution query
7763
- You can Give Your feedback on [Discussions](https://github.com/VR-Rathod/Code-Note/discussions)
7864
- if you interested to share your note please read and follow instructions written on [Dev](https://github.com/VR-Rathod/Code-Note/blob/Admin/Dev/format.md)
79-
80-
## Note - In recent update Logseq showing some bug on Page Loding.
81-
If you see `Page is not loading` / `Try quick fix` error
65+
- ## Note - In recent update Logseq showing some bug on Page Loding.
66+
If you see `Page is not loading` / `Try quick fix` error
8267
- ### Press `Ctrl + Shift + r` to slove it.

pages/AA Tree.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
---
2+
seoTitle: AA Tree Explained – Balanced BST Implementation Guide
3+
description: "AA tree is a balanced binary search tree variant of red-black trees. Learn insertion, deletion, skew, split operations, and time complexity analysis."
4+
keywords: "AA tree, balanced BST, self-balancing tree, binary search tree, skew operation, split operation, time complexity, space complexity, tree rotation, data structures"
5+
---
6+
17
# Explanation
28
- The **AA Tree** is a self-balancing binary search tree (BST). It’s a variation of the Red-Black Tree but with a simpler set of rules. The primary difference lies in how the tree is balanced, and it ensures that operations like insertion, deletion, and searching remain efficient.
39
-

pages/Ableton Live.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
---
2+
seoTitle: Ableton Live Reference – DAW Guide for Music Production
3+
description: "Ableton Live reference covering Session and Arrangement views, clips, MIDI, audio effects, instruments, Max for Live, and music production workflows."
4+
keywords: "Ableton Live, DAW, music production, Session view, Arrangement view, MIDI, audio effects, Max for Live, instruments, music software, electronic music, recording"
5+
---
6+
17
## 1. History
28
-
39
- **How**: Ableton Live was developed by Ableton AG and first released in 2003 as a digital audio workstation (DAW) designed for live performance and music production.

pages/Abstract Classes.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
---
2+
seoTitle: Abstract Classes in OOP – Definition, Usage, and Examples Guide
3+
description: "Abstract classes define interfaces with partial implementation in OOP. Covers abstract methods, inheritance, differences from interfaces, and language-specific."
4+
keywords: "abstract classes, OOP, object-oriented programming, abstract methods, inheritance, interfaces, polymorphism, Java abstract class, Python ABC, C# abstract, design patterns"
5+
---
6+
17
# Explanation
28
- An **Abstract Class** is a class that cannot be instantiated directly. It defines a blueprint for subclasses to follow, and may contain abstract methods (methods without implementation) that must be implemented by concrete subclasses.
39
- **"Enforces a contract"**: Abstract classes ensure that subclasses implement the required methods.

pages/Abstraction.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
---
2+
seoTitle: Abstraction in OOP – Principles, Examples, and Best Practices
3+
description: "Abstraction hides implementation details and exposes only essential features. Covers data abstraction, procedural abstraction, abstract classes, interfaces,."
4+
keywords: "abstraction, OOP, object-oriented programming, data abstraction, procedural abstraction, abstract classes, interfaces, encapsulation, design principles, software design"
5+
---
6+
17
# Explanation
28
- Abstraction is the OOP concept where you hide the complex implementation details and show only the essential features of an object. It allows you to focus on what an object does rather than how it performs the task. In Python, abstraction is typically implemented using abstract classes and abstract methods, where the class provides a skeleton and the subclass implements the details.
39

pages/Ackermann Function.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
---
2+
seoTitle: Ackermann Function Explained – Recursion and Complexity
3+
description: "The Ackermann function is a total computable function that is not primitive recursive. Explore its definition, recursion depth, and complexity analysis."
4+
keywords: "Ackermann function, recursion, primitive recursive, computability theory, recursive function, time complexity, space complexity, theoretical computer science, call stack"
5+
---
6+
17
# Explanation
28
- The **Ackermann function** is a well-known recursive function that grows very quickly. It is often used in theoretical computer science to illustrate the difference between primitive recursive functions and general recursive functions.
39
-

pages/Adobe After Effects.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
---
2+
seoTitle: Adobe After Effects Reference – Motion Graphics and VFX Guide
3+
description: "After Effects reference covering compositions, keyframes, expressions, effects, masks, 3D layers, rendering, and motion graphics for video production."
4+
keywords: "Adobe After Effects, motion graphics, VFX, compositions, keyframes, expressions, effects, masks, 3D layers, rendering, video production, animation"
5+
---
6+
17
# Adobe After Effects Notes
28
- ## 1. History
39
-

pages/Adobe XD.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
---
2+
seoTitle: Adobe XD Reference – UI/UX Design and Prototyping Guide
3+
description: "Adobe XD reference covering artboards, components, prototyping, auto-animate, plugins, design systems, and handoff to developers for UI/UX design."
4+
keywords: "Adobe XD, UI design, UX design, prototyping, artboards, components, auto-animate, design systems, developer handoff, wireframing, interaction design, plugins"
5+
---
6+
17
## 1. History
28
-
39
- **How**: Adobe XD was developed by Adobe Inc., first released in 2016 as part of the Adobe Creative Cloud suite.

pages/Affinity Designer.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
---
2+
seoTitle: Affinity Designer Reference – Vector Graphics Design Guide
3+
description: "Affinity Designer reference covering vector and pixel personas, nodes, curves, symbols, grids, export options, and professional illustration workflows."
4+
keywords: "Affinity Designer, vector graphics, illustration, vector persona, pixel persona, nodes, curves, symbols, export, graphic design, Illustrator alternative, design tool"
5+
---
6+
17
## 1. History
28
-
39
- **How**: Affinity Designer was developed by Serif and first released in 2014 as part of the Affinity suite of creative software.

pages/Altair.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1 +1,7 @@
1+
---
2+
seoTitle: Altair Python Library – Declarative Data Visualization Guide
3+
description: "Altair is a declarative statistical visualization library for Python based on Vega-Lite. Covers charts, encodings, transformations, interactive plots, and data."
4+
keywords: "Altair, Python visualization, declarative charts, Vega-Lite, statistical visualization, interactive plots, data encoding, Python library, data science, chart types"
5+
---
6+
17
- [Website](https://altair-viz.github.io/)

0 commit comments

Comments
 (0)