Setup Mkdocs (#7)

* Compile docs with Mkdocs

* Add info about project
This commit is contained in:
Marcello 2022-05-26 19:11:28 +02:00
parent 4c5c361db7
commit 75b392d778
134 changed files with 549 additions and 1495 deletions

2
.gitignore vendored Normal file
View file

@ -0,0 +1,2 @@
.venv
site/

View file

@ -1,4 +1,4 @@
# C/C++ Cheat Sheet # C/C++
## Naming convention ## Naming convention

View file

@ -82,7 +82,7 @@ cp SOURCE DESTINATION # copy SOURCE to DESTINATION
### Files Permissions & Ownership ### Files Permissions & Ownership
![Linux Permissions](../.images/bash_files-permissions-and-ownership-basics-in-linux.png "files info and permissions") ![Linux Permissions](../img/bash_files-permissions-and-ownership-basics-in-linux.png "files info and permissions")
```sh ```sh
chmod MODE FILE # change file (or directory) permissions chmod MODE FILE # change file (or directory) permissions

View file

@ -1,4 +1,4 @@
# Bash Cheat Sheet # Bash Scripting
[Bash Manual](https://www.gnu.org/software/bash/manual/) [Bash Manual](https://www.gnu.org/software/bash/manual/)

View file

@ -1,4 +1,4 @@
# CSS Cheat Sheet # CSS
## Applying CSS to HTML ## Applying CSS to HTML
@ -644,7 +644,7 @@ Specificity is usually the reason why CSS-rules don't apply to some elements whe
## Box Model ## Box Model
![Box Model](../.images/css_box-model.png) ![Box Model](../img/css_box-model.png)
### Padding ### Padding

View file

@ -277,7 +277,7 @@ Indexes are special data structures that store a small portion of the collection
Indexes _slow down writing operations_ since the index must be updated at every writing. Indexes _slow down writing operations_ since the index must be updated at every writing.
![IXSCAN](../.images/mongodb_ixscan.png ".find() using an index") ![IXSCAN](../img/mongodb_ixscan.png ".find() using an index")
### [Index Types](https://docs.mongodb.com/manual/indexes/#index-types) ### [Index Types](https://docs.mongodb.com/manual/indexes/#index-types)
@ -403,7 +403,7 @@ Shard components are:
- A config server, instance of MongoDB which contains metadata on the cluster, that is the set of instances that have the shard data. - A config server, instance of MongoDB which contains metadata on the cluster, that is the set of instances that have the shard data.
- A router (or `mongos`), instance of MongoDB used to redirect the user instructions from the client to the correct server. - A router (or `mongos`), instance of MongoDB used to redirect the user instructions from the client to the correct server.
![Shared Cluster](../.images/mongodb_shared-cluster.png "Components of a shared cluster") ![Shared Cluster](../img/mongodb_shared-cluster.png "Components of a shared cluster")
### [Replica set](https://docs.mongodb.com/manual/replication/) ### [Replica set](https://docs.mongodb.com/manual/replication/)

View file

@ -1286,7 +1286,7 @@ public static System.Collections.IEnumerable<int> IterateRange(int start = 0, in
## Structs (Custom Value Types) & Classes (Custom Reference Types) ## Structs (Custom Value Types) & Classes (Custom Reference Types)
![reference-vs-value](../../.images/dotnet_pass-by-reference-vs-pass-by-value-animation.gif) ![reference-vs-value](../../img/dotnet_pass-by-reference-vs-pass-by-value-animation.gif)
**Structure** types have _value semantics_. That is, a variable of a structure type contains an _instance_ of the type. **Structure** types have _value semantics_. That is, a variable of a structure type contains an _instance_ of the type.
@ -2030,7 +2030,7 @@ Generic type parameters support covariance and contravariance to provide greater
- **Contravariance**: Enables to use a more generic (less derived) type than originally specified. - **Contravariance**: Enables to use a more generic (less derived) type than originally specified.
- **Invariance**: it's possible to use _only_ the type originally specified; so an invariant generic type parameter is neither covariant nor contravariant. - **Invariance**: it's possible to use _only_ the type originally specified; so an invariant generic type parameter is neither covariant nor contravariant.
![covariance-vs-contravariance](../../.images/dotnet_covariant_contravariant.png) ![covariance-vs-contravariance](../../img/dotnet_covariant_contravariant.png)
**NOTE**: annotate generic type parameters with `out` and `in` annotations to specify whether they should behave covariantly or contravariantly. **NOTE**: annotate generic type parameters with `out` and `in` annotations to specify whether they should behave covariantly or contravariantly.

View file

@ -9,8 +9,8 @@ Components are .NET C# classes built into .NET assemblies that:
- Can be nested and reused. - Can be nested and reused.
- Can be shared and distributed as Razor class libraries or NuGet packages. - Can be shared and distributed as Razor class libraries or NuGet packages.
![Blazor Server Architecture](../../.images/dotnet_blazor-server.png) ![Blazor Server Architecture](../../img/dotnet_blazor-server.png)
![Blazor WASM Architecture](../../.images/dotnet_blazor-webassembly.png) ![Blazor WASM Architecture](../../img/dotnet_blazor-webassembly.png)
The component class is usually written in the form of a Razor markup page with a `.razor` file extension. Components in Blazor are formally referred to as *Razor components*. The component class is usually written in the form of a Razor markup page with a `.razor` file extension. Components in Blazor are formally referred to as *Razor components*.

View file

@ -13,8 +13,8 @@ Custom filters can be created to handle cross-cutting concerns. Examples of cros
Filters run within the _ASP.NET Core action invocation pipeline_, sometimes referred to as the _filter pipeline_. The filter pipeline runs after ASP.NET Core selects the action to execute. Filters run within the _ASP.NET Core action invocation pipeline_, sometimes referred to as the _filter pipeline_. The filter pipeline runs after ASP.NET Core selects the action to execute.
![filter-pipeline-1](../../.images/dotnet_filter-pipeline-1.png) ![filter-pipeline-1](../../img/dotnet_filter-pipeline-1.png)
![filter-pipeline-2](../../.images/dotnet_filter-pipeline-2.png) ![filter-pipeline-2](../../img/dotnet_filter-pipeline-2.png)
## **Filter types** ## **Filter types**

View file

@ -23,7 +23,7 @@ When a middleware short-circuits, it's called a *terminal middleware* because it
The ASP.NET Core request pipeline consists of a sequence of request delegates, called one after the other. The ASP.NET Core request pipeline consists of a sequence of request delegates, called one after the other.
![request-delegate-pipeline](../../.images/dotnet_request-delegate-pipeline.png) ![request-delegate-pipeline](../../img/dotnet_request-delegate-pipeline.png)
Each delegate can perform operations before and after the next delegate. Exception-handling delegates should be called early in the pipeline, so they can catch exceptions that occur in later stages of the pipeline. It's possible to chain multiple request delegates together with `Use`. Each delegate can perform operations before and after the next delegate. Exception-handling delegates should be called early in the pipeline, so they can catch exceptions that occur in later stages of the pipeline. It's possible to chain multiple request delegates together with `Use`.
@ -74,8 +74,8 @@ public class Startup
## Middleware Order ## Middleware Order
![middleware-pipeline](../../.images/dotnet_middleware-pipeline.png) ![middleware-pipeline](../../img/dotnet_middleware-pipeline.png)
![mvc-endpoint](../../.images/dotnet_mvc-endpoint.png) ![mvc-endpoint](../../img/dotnet_mvc-endpoint.png)
The Endpoint middleware executes the filter pipeline for the corresponding app type. The Endpoint middleware executes the filter pipeline for the corresponding app type.

View file

@ -242,7 +242,7 @@ git checkout <primary_branch>
git rebase <feature_branch> # moves commits from the branch on top of master git rebase <feature_branch> # moves commits from the branch on top of master
``` ```
![branch](../.images/git_branches.png "how branches work") ![branch](../img/git_branches.png "how branches work")
### Clone Branches ### Clone Branches

View file

@ -1,4 +1,4 @@
# HTML Cheat Sheet # HTML
## Terminology ## Terminology

View file

Before

Width:  |  Height:  |  Size: 45 KiB

After

Width:  |  Height:  |  Size: 45 KiB

View file

Before

Width:  |  Height:  |  Size: 41 KiB

After

Width:  |  Height:  |  Size: 41 KiB

View file

Before

Width:  |  Height:  |  Size: 27 KiB

After

Width:  |  Height:  |  Size: 27 KiB

View file

Before

Width:  |  Height:  |  Size: 9.3 KiB

After

Width:  |  Height:  |  Size: 9.3 KiB

View file

Before

Width:  |  Height:  |  Size: 8.7 KiB

After

Width:  |  Height:  |  Size: 8.7 KiB

View file

Before

Width:  |  Height:  |  Size: 12 KiB

After

Width:  |  Height:  |  Size: 12 KiB

View file

Before

Width:  |  Height:  |  Size: 7.9 KiB

After

Width:  |  Height:  |  Size: 7.9 KiB

View file

Before

Width:  |  Height:  |  Size: 17 KiB

After

Width:  |  Height:  |  Size: 17 KiB

View file

Before

Width:  |  Height:  |  Size: 40 KiB

After

Width:  |  Height:  |  Size: 40 KiB

View file

Before

Width:  |  Height:  |  Size: 50 KiB

After

Width:  |  Height:  |  Size: 50 KiB

View file

Before

Width:  |  Height:  |  Size: 56 KiB

After

Width:  |  Height:  |  Size: 56 KiB

View file

Before

Width:  |  Height:  |  Size: 87 KiB

After

Width:  |  Height:  |  Size: 87 KiB

View file

Before

Width:  |  Height:  |  Size: 116 KiB

After

Width:  |  Height:  |  Size: 116 KiB

View file

Before

Width:  |  Height:  |  Size: 37 KiB

After

Width:  |  Height:  |  Size: 37 KiB

View file

Before

Width:  |  Height:  |  Size: 16 KiB

After

Width:  |  Height:  |  Size: 16 KiB

View file

Before

Width:  |  Height:  |  Size: 24 KiB

After

Width:  |  Height:  |  Size: 24 KiB

View file

Before

Width:  |  Height:  |  Size: 62 KiB

After

Width:  |  Height:  |  Size: 62 KiB

View file

Before

Width:  |  Height:  |  Size: 84 KiB

After

Width:  |  Height:  |  Size: 84 KiB

View file

Before

Width:  |  Height:  |  Size: 49 KiB

After

Width:  |  Height:  |  Size: 49 KiB

View file

Before

Width:  |  Height:  |  Size: 72 KiB

After

Width:  |  Height:  |  Size: 72 KiB

View file

Before

Width:  |  Height:  |  Size: 79 KiB

After

Width:  |  Height:  |  Size: 79 KiB

View file

Before

Width:  |  Height:  |  Size: 32 KiB

After

Width:  |  Height:  |  Size: 32 KiB

4
docs/index.md Normal file
View file

@ -0,0 +1,4 @@
# Programming Notes
Personal notes on various programming languages to be used as quick reference.
Sum-up of personal knowledge.

View file

@ -12,7 +12,7 @@ The **Java Collection Framework** is constituted by:
- **Classes** that implement the interfaces using different data structures. - **Classes** that implement the interfaces using different data structures.
- **Algorithms** consisting in methods to operate over a collection. - **Algorithms** consisting in methods to operate over a collection.
![Java Collection Hierarchy](../.images/java_java-collection-framework.png "Java Collection Hierarchy") ![Java Collection Hierarchy](../img/java_java-collection-framework.png "Java Collection Hierarchy")
## java.util.Collections ## java.util.Collections

View file

@ -1,4 +1,4 @@
# Java Cheat Sheet # Java
```java ```java
//single line comment //single line comment

View file

@ -44,7 +44,7 @@ let event = new CustomEvent(type, { detail: /* custom data */ }); // create eve
domNode.dispatchEvent(event); // launch the event domNode.dispatchEvent(event); // launch the event
``` ```
![Event Inheritance](../.images/javascript_event-inheritance.png) ![Event Inheritance](../img/javascript_event-inheritance.png)
## Animation ## Animation

View file

@ -1,4 +1,4 @@
# JavaScript Cheat Sheet # JavaScript
## Basics ## Basics

View file

@ -6,7 +6,7 @@
```html ```html
<head> <head>
<script src="jquery-3.2.1.min.js"></script> <script src="jquery-x.x.x.min.js"></script>
</head> </head>
``` ```
@ -14,13 +14,13 @@
```html ```html
<head> <head>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.5.1/jquery.min.js"></script> <script src="https://ajax.googleapis.com/ajax/libs/jquery/x.x.x/jquery.min.js"></script>
</head> </head>
<!-- OR --> <!-- OR -->
<head> <head>
<script src="https://ajax.aspnetcdn.com/ajax/jQuery/jquery-3.5.1.min.js"></script> <script src="https://ajax.aspnetcdn.com/ajax/jQuery/jquery-x.x.x.min.js"></script>
</head> </head>
``` ```

View file

@ -1,4 +1,4 @@
# Kotlin Cheat Sheet # Kotlin
## Package & Imports ## Package & Imports

View file

@ -1,4 +1,4 @@
# PHP CheatSheet # PHP
[PHP Docs](https://www.php.net/docs.php) [PHP Docs](https://www.php.net/docs.php)

View file

@ -1,4 +1,4 @@
# PowerShell Cheat Sheet # PowerShell Scripting
Cmdlets are formed by a verb-noun pair. Cmdlets are case-insensitive. Cmdlets are formed by a verb-noun pair. Cmdlets are case-insensitive.

View file

@ -1,5 +1,5 @@
# CSV Module Cheat Sheet # CSV Module
``` python ``` python
# iterate lines of csvfile # iterate lines of csvfile

View file

@ -1,4 +1,4 @@
# JSON Module Cheat Sheet # JSON Module
## JSON Format ## JSON Format

View file

@ -1,4 +1,4 @@
# Tkinter Module/Library Cheat Sheet # Tkinter Module/Library
## Standard Imports ## Standard Imports

View file

@ -69,12 +69,12 @@ logging.disable(level=LOG_LEVEL)
Log Levels (Low To High): Log Levels (Low To High):
- NOTSET -- 0 - default: `0`
- DEBUG -- 10 - debug: `10`
- INFO -- 20 - info: `20`
- WARNING -- 30 - warning: `30`
- ERROR -- 40 - error: `40`
- CRITICAL -- 50 - critical: `50`
```python ```python
logging.debug(msg) # Logs a message with level DEBUG on the root logger logging.debug(msg) # Logs a message with level DEBUG on the root logger

Some files were not shown because too many files have changed in this diff Show more