Skip to content

Commit

Permalink
convert images to avif
Browse files Browse the repository at this point in the history
  • Loading branch information
m-lamonaca committed Jun 25, 2024
1 parent 8026e14 commit 145c7c6
Show file tree
Hide file tree
Showing 54 changed files with 18 additions and 18 deletions.
4 changes: 2 additions & 2 deletions docs/databases/mongo-db.md
Original file line number Diff line number Diff line change
Expand Up @@ -262,7 +262,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.
![IXSCAN](../img/mongodb_ixscan.png ".find() using an index")
![IXSCAN](../img/mongodb_ixscan.avif ".find() using an index")
### [Index Types](https://docs.mongodb.com/manual/indexes/#index-types)
Expand Down Expand Up @@ -517,7 +517,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 router (or `mongos`), instance of MongoDB used to redirect the user instructions from the client to the correct server.
![Shared Cluster](../img/mongodb_shared-cluster.png "Components of a shared cluster")
![Shared Cluster](../img/mongodb_shared-cluster.avif "Components of a shared cluster")
---
Expand Down
Binary file added docs/img/android_activity-lifecycle.avif
Binary file not shown.
Binary file removed docs/img/android_activity-lifecycle.png
Binary file not shown.
Binary file added docs/img/android_fragment-lifecycle.avif
Binary file not shown.
Binary file removed docs/img/android_fragment-lifecycle.png
Binary file not shown.
Binary file added docs/img/android_fragments.avif
Binary file not shown.
Binary file removed docs/img/android_fragments.png
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file added docs/img/css_box-model.avif
Binary file not shown.
Binary file removed docs/img/css_box-model.png
Binary file not shown.
Binary file added docs/img/dotnet_blazor-server.avif
Binary file not shown.
Binary file removed docs/img/dotnet_blazor-server.png
Binary file not shown.
Binary file added docs/img/dotnet_blazor-webassembly.avif
Binary file not shown.
Binary file removed docs/img/dotnet_blazor-webassembly.png
Binary file not shown.
Binary file added docs/img/dotnet_covariant_contravariant.avif
Binary file not shown.
Binary file removed docs/img/dotnet_covariant_contravariant.png
Binary file not shown.
Binary file added docs/img/dotnet_filter-pipeline-1.avif
Binary file not shown.
Binary file removed docs/img/dotnet_filter-pipeline-1.png
Binary file not shown.
Binary file added docs/img/dotnet_filter-pipeline-2.avif
Binary file not shown.
Binary file removed docs/img/dotnet_filter-pipeline-2.png
Binary file not shown.
Binary file added docs/img/dotnet_middleware-pipeline.avif
Binary file not shown.
Binary file removed docs/img/dotnet_middleware-pipeline.png
Binary file not shown.
Binary file added docs/img/dotnet_mvc-endpoint.avif
Binary file not shown.
Binary file removed docs/img/dotnet_mvc-endpoint.png
Binary file not shown.
Binary file added docs/img/dotnet_request-delegate-pipeline.avif
Binary file not shown.
Binary file removed docs/img/dotnet_request-delegate-pipeline.png
Binary file not shown.
Binary file added docs/img/dotnet_xamarin-layouts.avif
Binary file not shown.
Binary file removed docs/img/dotnet_xamarin-layouts.png
Binary file not shown.
Binary file added docs/img/dotnet_xamarin-pages.avif
Binary file not shown.
Binary file removed docs/img/dotnet_xamarin-pages.png
Binary file not shown.
Binary file added docs/img/git_branches.avif
Binary file not shown.
Binary file removed docs/img/git_branches.png
Binary file not shown.
Binary file added docs/img/java_java-collection-framework.avif
Binary file not shown.
Binary file removed docs/img/java_java-collection-framework.png
Binary file not shown.
Binary file added docs/img/javascript_event-inheritance.avif
Binary file not shown.
Binary file removed docs/img/javascript_event-inheritance.png
Binary file not shown.
Binary file added docs/img/mongodb_ixscan.avif
Binary file not shown.
Binary file removed docs/img/mongodb_ixscan.png
Binary file not shown.
Binary file added docs/img/mongodb_shared-cluster.avif
Binary file not shown.
Binary file removed docs/img/mongodb_shared-cluster.png
Binary file not shown.
Binary file added docs/img/node_url-structure.avif
Binary file not shown.
Binary file removed docs/img/node_url-structure.png
Binary file not shown.
2 changes: 1 addition & 1 deletion docs/languages/bash/commands.md
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@ cp SOURCE DESTINATION # copy SOURCE to DESTINATION

### Files Permissions & Ownership

![Linux Permissions](../../img/bash_files-permissions-and-ownership-basics-in-linux.png "files info and permissions")
![Linux Permissions](../../img/bash_files-permissions-and-ownership-basics-in-linux.avif "files info and permissions")

```sh
chmod MODE FILE # change file (or directory) permissions
Expand Down
2 changes: 1 addition & 1 deletion docs/languages/css/css.md
Original file line number Diff line number Diff line change
Expand Up @@ -569,7 +569,7 @@ There are several methods to 'hide' elements:

## [Box Model](https://developer.mozilla.org/en-US/docs/Learn/CSS/Building_blocks/The_box_model)

![Box Model](../../img/css_box-model.png)
![Box Model](../../img/css_box-model.avif)

### Padding

Expand Down
4 changes: 2 additions & 2 deletions docs/languages/dotnet/asp.net/blazor.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,8 @@ Components are .NET C# classes built into .NET assemblies that:
- Can be nested and reused.
- Can be shared and distributed as Razor class libraries or NuGet packages.

![Blazor Server Architecture](../../../img/dotnet_blazor-server.png)
![Blazor WASM Architecture](../../../img/dotnet_blazor-webassembly.png)
![Blazor Server Architecture](../../../img/dotnet_blazor-server.avif)
![Blazor WASM Architecture](../../../img/dotnet_blazor-webassembly.avif)

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*.

Expand Down
4 changes: 2 additions & 2 deletions docs/languages/dotnet/asp.net/filters.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.

![filter-pipeline-1](../../../img/dotnet_filter-pipeline-1.png)
![filter-pipeline-2](../../../img/dotnet_filter-pipeline-2.png)
![filter-pipeline-1](../../../img/dotnet_filter-pipeline-1.avif)
![filter-pipeline-2](../../../img/dotnet_filter-pipeline-2.avif)

## **Filter types**

Expand Down
6 changes: 3 additions & 3 deletions docs/languages/dotnet/asp.net/middleware.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.

![request-delegate-pipeline](../../../img/dotnet_request-delegate-pipeline.png)
![request-delegate-pipeline](../../../img/dotnet_request-delegate-pipeline.avif)

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`.

Expand Down Expand Up @@ -62,8 +62,8 @@ app.Run(async context =>

## Middleware Order

![middleware-pipeline](../../../img/dotnet_middleware-pipeline.png)
![mvc-endpoint](../../../img/dotnet_mvc-endpoint.png)
![middleware-pipeline](../../../img/dotnet_middleware-pipeline.avif)
![mvc-endpoint](../../../img/dotnet_mvc-endpoint.avif)

The Endpoint middleware executes the filter pipeline for the corresponding app type.

Expand Down
4 changes: 2 additions & 2 deletions docs/languages/dotnet/asp.net/web-forms.md
Original file line number Diff line number Diff line change
Expand Up @@ -49,9 +49,9 @@ The fist loaded page is `Default.aspx` and its underlying code.
<!-- LinkButton: POstBackEvent reloads the page -->
<asp:LinkButton ID="lbtHome" runat="server" PostBackUrl="~/Page.aspx" OnClick="lbt_Click">BUTTON TEXT</asp:LinkButton>
<!-- Image -->
<asp:Image ID="img_" runat="server" ImageUrl="~/Images/image.png"/>
<asp:Image ID="img_" runat="server" ImageUrl="~/Images/image.avif"/>
<!-- ImageButton -->
<asp:ImageButton ID="imb_" runat="server" ImageUrl="~/Images/image.png" PostBackUrl="~/Page.aspx"/>
<asp:ImageButton ID="imb_" runat="server" ImageUrl="~/Images/image.avif" PostBackUrl="~/Page.aspx"/>

<!-- SqlSataSource; connection string specified in Web.config -->
<asp:SqlDataSource ID="sds_" runat="server" ConnectionString="<%$ ConnectionStrings:ConnectionString %>" SelectCommand="SQL Query"></asp:SqlDataSource>
Expand Down
2 changes: 1 addition & 1 deletion docs/languages/dotnet/csharp/csharp.md
Original file line number Diff line number Diff line change
Expand Up @@ -2148,7 +2148,7 @@ Generic type parameters support covariance and contravariance to provide greater
- **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.

![covariance-vs-contravariance](../../../img/dotnet_covariant_contravariant.png)
![covariance-vs-contravariance](../../../img/dotnet_covariant_contravariant.avif)

> **Note**: annotate generic type parameters with `out` and `in` annotations to specify whether they should behave covariantly or contravariantly.

Expand Down
2 changes: 1 addition & 1 deletion docs/languages/java/java-collection-framework.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ The **Java Collection Framework** is constituted by:
- **Classes** that implement the interfaces using different data structures.
- **Algorithms** consisting in methods to operate over a collection.

![Java Collection Hierarchy](../../img/java_java-collection-framework.png "Java Collection Hierarchy")
![Java Collection Hierarchy](../../img/java_java-collection-framework.avif "Java Collection Hierarchy")

## java.util.Collections

Expand Down
2 changes: 1 addition & 1 deletion docs/languages/javascript/events-animation.md
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ let event = new CustomEvent(type, { detail: /* custom data */ }); // create eve
domNode.dispatchEvent(event); // launch the event
```

![Event Inheritance](../../img/javascript_event-inheritance.png)
![Event Inheritance](../../img/javascript_event-inheritance.avif)

## Animation

Expand Down
2 changes: 1 addition & 1 deletion docs/misc/git.md
Original file line number Diff line number Diff line change
Expand Up @@ -166,7 +166,7 @@ It's generally recommended creating annotated tags so it's possible to have all

### Branching And Merging

![branch](../img/git_branches.png "how branches work")
![branch](../img/git_branches.avif "how branches work")

`git branch`: shows branches
`git branch -vv`: show branch + last commit + remote status
Expand Down
2 changes: 1 addition & 1 deletion docs/misc/ssh.md
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ ssh -J user_1@destination_1,user_2@destination_2 user@final_destination

## Port Forwarding

![ssh-tunnels](https://iximiuz.com/ssh-tunnels/ssh-tunnels.png "SSH Tunnels Cheat Sheet By Ivan Velichko")
![ssh-tunnels](https://iximiuz.com/ssh-tunnels/ssh-tunnels.avif "SSH Tunnels Cheat Sheet By Ivan Velichko")

### Local Port Forwarding

Expand Down

0 comments on commit 145c7c6

Please sign in to comment.