diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..d29be9c --- /dev/null +++ b/.gitignore @@ -0,0 +1,2 @@ +.venv +site/ \ No newline at end of file diff --git a/C++/cpp.md b/docs/C++/cpp.md similarity index 99% rename from C++/cpp.md rename to docs/C++/cpp.md index 4992021..3825520 100644 --- a/C++/cpp.md +++ b/docs/C++/cpp.md @@ -1,4 +1,4 @@ -# C/C++ Cheat Sheet +# C/C++ ## Naming convention diff --git a/bash/commands.md b/docs/bash/commands.md similarity index 98% rename from bash/commands.md rename to docs/bash/commands.md index bd4cda8..e458fdf 100644 --- a/bash/commands.md +++ b/docs/bash/commands.md @@ -82,7 +82,7 @@ cp SOURCE DESTINATION # copy SOURCE to DESTINATION ### 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 chmod MODE FILE # change file (or directory) permissions diff --git a/bash/scripting.md b/docs/bash/scripting.md similarity index 99% rename from bash/scripting.md rename to docs/bash/scripting.md index ff39acf..5793dd1 100644 --- a/bash/scripting.md +++ b/docs/bash/scripting.md @@ -1,4 +1,4 @@ -# Bash Cheat Sheet +# Bash Scripting [Bash Manual](https://www.gnu.org/software/bash/manual/) diff --git a/css/css.md b/docs/css/css.md similarity index 99% rename from css/css.md rename to docs/css/css.md index baa2b15..7a86898 100644 --- a/css/css.md +++ b/docs/css/css.md @@ -1,4 +1,4 @@ -# CSS Cheat Sheet +# CSS ## 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](../.images/css_box-model.png) +![Box Model](../img/css_box-model.png) ### Padding diff --git a/database/mongo-db.md b/docs/database/mongo-db.md similarity index 99% rename from database/mongo-db.md rename to docs/database/mongo-db.md index c1d169b..585ffa3 100644 --- a/database/mongo-db.md +++ b/docs/database/mongo-db.md @@ -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. -![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) @@ -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 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/) diff --git a/database/redis.md b/docs/database/redis.md similarity index 100% rename from database/redis.md rename to docs/database/redis.md diff --git a/database/sql.md b/docs/database/sql.md similarity index 100% rename from database/sql.md rename to docs/database/sql.md diff --git a/dotnet/C#/C#.md b/docs/dotnet/C#/C#.md similarity index 99% rename from dotnet/C#/C#.md rename to docs/dotnet/C#/C#.md index 5a501a1..c48c13e 100644 --- a/dotnet/C#/C#.md +++ b/docs/dotnet/C#/C#.md @@ -1286,7 +1286,7 @@ public static System.Collections.IEnumerable IterateRange(int start = 0, in ## 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. @@ -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. - **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. diff --git a/dotnet/C#/async-programming.md b/docs/dotnet/C#/async-programming.md similarity index 100% rename from dotnet/C#/async-programming.md rename to docs/dotnet/C#/async-programming.md diff --git a/dotnet/C#/collections.md b/docs/dotnet/C#/collections.md similarity index 100% rename from dotnet/C#/collections.md rename to docs/dotnet/C#/collections.md diff --git a/dotnet/C#/linq.md b/docs/dotnet/C#/linq.md similarity index 100% rename from dotnet/C#/linq.md rename to docs/dotnet/C#/linq.md diff --git a/dotnet/C#/reactive-extensions.md b/docs/dotnet/C#/reactive-extensions.md similarity index 100% rename from dotnet/C#/reactive-extensions.md rename to docs/dotnet/C#/reactive-extensions.md diff --git a/dotnet/C#/unit-tests.md b/docs/dotnet/C#/unit-tests.md similarity index 100% rename from dotnet/C#/unit-tests.md rename to docs/dotnet/C#/unit-tests.md diff --git a/dotnet/asp.net/app-configuration.md b/docs/dotnet/asp.net/app-configuration.md similarity index 100% rename from dotnet/asp.net/app-configuration.md rename to docs/dotnet/asp.net/app-configuration.md diff --git a/dotnet/asp.net/blazor.md b/docs/dotnet/asp.net/blazor.md similarity index 98% rename from dotnet/asp.net/blazor.md rename to docs/dotnet/asp.net/blazor.md index 4edf2d7..9f5c2d8 100644 --- a/dotnet/asp.net/blazor.md +++ b/docs/dotnet/asp.net/blazor.md @@ -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](../../.images/dotnet_blazor-server.png) -![Blazor WASM Architecture](../../.images/dotnet_blazor-webassembly.png) +![Blazor Server Architecture](../../img/dotnet_blazor-server.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*. diff --git a/dotnet/asp.net/filters.md b/docs/dotnet/asp.net/filters.md similarity index 97% rename from dotnet/asp.net/filters.md rename to docs/dotnet/asp.net/filters.md index efc2b36..7b23f48 100644 --- a/dotnet/asp.net/filters.md +++ b/docs/dotnet/asp.net/filters.md @@ -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](../../.images/dotnet_filter-pipeline-1.png) -![filter-pipeline-2](../../.images/dotnet_filter-pipeline-2.png) +![filter-pipeline-1](../../img/dotnet_filter-pipeline-1.png) +![filter-pipeline-2](../../img/dotnet_filter-pipeline-2.png) ## **Filter types** diff --git a/dotnet/asp.net/middleware.md b/docs/dotnet/asp.net/middleware.md similarity index 97% rename from dotnet/asp.net/middleware.md rename to docs/dotnet/asp.net/middleware.md index 58a985d..a6d29ed 100644 --- a/dotnet/asp.net/middleware.md +++ b/docs/dotnet/asp.net/middleware.md @@ -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](../../.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`. @@ -74,8 +74,8 @@ public class Startup ## Middleware Order -![middleware-pipeline](../../.images/dotnet_middleware-pipeline.png) -![mvc-endpoint](../../.images/dotnet_mvc-endpoint.png) +![middleware-pipeline](../../img/dotnet_middleware-pipeline.png) +![mvc-endpoint](../../img/dotnet_mvc-endpoint.png) The Endpoint middleware executes the filter pipeline for the corresponding app type. diff --git a/dotnet/asp.net/minimal-api.md b/docs/dotnet/asp.net/minimal-api.md similarity index 100% rename from dotnet/asp.net/minimal-api.md rename to docs/dotnet/asp.net/minimal-api.md diff --git a/dotnet/asp.net/mvc.md b/docs/dotnet/asp.net/mvc.md similarity index 100% rename from dotnet/asp.net/mvc.md rename to docs/dotnet/asp.net/mvc.md diff --git a/dotnet/asp.net/razor-pages.md b/docs/dotnet/asp.net/razor-pages.md similarity index 100% rename from dotnet/asp.net/razor-pages.md rename to docs/dotnet/asp.net/razor-pages.md diff --git a/dotnet/asp.net/Razor Syntax.md b/docs/dotnet/asp.net/razor-syntax.md similarity index 100% rename from dotnet/asp.net/Razor Syntax.md rename to docs/dotnet/asp.net/razor-syntax.md diff --git a/dotnet/asp.net/rest-api.md b/docs/dotnet/asp.net/rest-api.md similarity index 100% rename from dotnet/asp.net/rest-api.md rename to docs/dotnet/asp.net/rest-api.md diff --git a/dotnet/asp.net/signal-r.md b/docs/dotnet/asp.net/signalr.md similarity index 100% rename from dotnet/asp.net/signal-r.md rename to docs/dotnet/asp.net/signalr.md diff --git a/dotnet/asp.net/web-forms.md b/docs/dotnet/asp.net/web-forms.md similarity index 100% rename from dotnet/asp.net/web-forms.md rename to docs/dotnet/asp.net/web-forms.md diff --git a/dotnet/database/ado.net.md b/docs/dotnet/database/ado.net.md similarity index 100% rename from dotnet/database/ado.net.md rename to docs/dotnet/database/ado.net.md diff --git a/dotnet/database/entity-framework.md b/docs/dotnet/database/entity-framework.md similarity index 100% rename from dotnet/database/entity-framework.md rename to docs/dotnet/database/entity-framework.md diff --git a/git/git.md b/docs/git/git.md similarity index 99% rename from git/git.md rename to docs/git/git.md index 36153b0..3771dc6 100644 --- a/git/git.md +++ b/docs/git/git.md @@ -242,7 +242,7 @@ git checkout git rebase # 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 diff --git a/graph-ql.md b/docs/graph-ql.md similarity index 100% rename from graph-ql.md rename to docs/graph-ql.md diff --git a/html/html.md b/docs/html/html.md similarity index 99% rename from html/html.md rename to docs/html/html.md index 7289f37..b46bfc7 100644 --- a/html/html.md +++ b/docs/html/html.md @@ -1,4 +1,4 @@ -# HTML Cheat Sheet +# HTML ## Terminology diff --git a/.images/android_activity-lifecycle.png b/docs/img/android_activity-lifecycle.png similarity index 100% rename from .images/android_activity-lifecycle.png rename to docs/img/android_activity-lifecycle.png diff --git a/.images/android_fragment-lifecycle.png b/docs/img/android_fragment-lifecycle.png similarity index 100% rename from .images/android_fragment-lifecycle.png rename to docs/img/android_fragment-lifecycle.png diff --git a/.images/android_fragments.png b/docs/img/android_fragments.png similarity index 100% rename from .images/android_fragments.png rename to docs/img/android_fragments.png diff --git a/.images/bash_files-permissions-and-ownership-basics-in-linux.png b/docs/img/bash_files-permissions-and-ownership-basics-in-linux.png similarity index 100% rename from .images/bash_files-permissions-and-ownership-basics-in-linux.png rename to docs/img/bash_files-permissions-and-ownership-basics-in-linux.png diff --git a/.images/css_box-model.png b/docs/img/css_box-model.png similarity index 100% rename from .images/css_box-model.png rename to docs/img/css_box-model.png diff --git a/.images/dotnet_blazor-server.png b/docs/img/dotnet_blazor-server.png similarity index 100% rename from .images/dotnet_blazor-server.png rename to docs/img/dotnet_blazor-server.png diff --git a/.images/dotnet_blazor-webassembly.png b/docs/img/dotnet_blazor-webassembly.png similarity index 100% rename from .images/dotnet_blazor-webassembly.png rename to docs/img/dotnet_blazor-webassembly.png diff --git a/.images/dotnet_covariant_contravariant.png b/docs/img/dotnet_covariant_contravariant.png similarity index 100% rename from .images/dotnet_covariant_contravariant.png rename to docs/img/dotnet_covariant_contravariant.png diff --git a/.images/dotnet_filter-pipeline-1.png b/docs/img/dotnet_filter-pipeline-1.png similarity index 100% rename from .images/dotnet_filter-pipeline-1.png rename to docs/img/dotnet_filter-pipeline-1.png diff --git a/.images/dotnet_filter-pipeline-2.png b/docs/img/dotnet_filter-pipeline-2.png similarity index 100% rename from .images/dotnet_filter-pipeline-2.png rename to docs/img/dotnet_filter-pipeline-2.png diff --git a/.images/dotnet_middleware-pipeline.png b/docs/img/dotnet_middleware-pipeline.png similarity index 100% rename from .images/dotnet_middleware-pipeline.png rename to docs/img/dotnet_middleware-pipeline.png diff --git a/.images/dotnet_mvc-endpoint.png b/docs/img/dotnet_mvc-endpoint.png similarity index 100% rename from .images/dotnet_mvc-endpoint.png rename to docs/img/dotnet_mvc-endpoint.png diff --git a/.images/dotnet_pass-by-reference-vs-pass-by-value-animation.gif b/docs/img/dotnet_pass-by-reference-vs-pass-by-value-animation.gif similarity index 100% rename from .images/dotnet_pass-by-reference-vs-pass-by-value-animation.gif rename to docs/img/dotnet_pass-by-reference-vs-pass-by-value-animation.gif diff --git a/.images/dotnet_request-delegate-pipeline.png b/docs/img/dotnet_request-delegate-pipeline.png similarity index 100% rename from .images/dotnet_request-delegate-pipeline.png rename to docs/img/dotnet_request-delegate-pipeline.png diff --git a/.images/dotnet_xamarin-layouts.png b/docs/img/dotnet_xamarin-layouts.png similarity index 100% rename from .images/dotnet_xamarin-layouts.png rename to docs/img/dotnet_xamarin-layouts.png diff --git a/.images/dotnet_xamarin-pages.png b/docs/img/dotnet_xamarin-pages.png similarity index 100% rename from .images/dotnet_xamarin-pages.png rename to docs/img/dotnet_xamarin-pages.png diff --git a/.images/git_branches.png b/docs/img/git_branches.png similarity index 100% rename from .images/git_branches.png rename to docs/img/git_branches.png diff --git a/.images/java_java-collection-framework.png b/docs/img/java_java-collection-framework.png similarity index 100% rename from .images/java_java-collection-framework.png rename to docs/img/java_java-collection-framework.png diff --git a/.images/javascript_event-inheritance.png b/docs/img/javascript_event-inheritance.png similarity index 100% rename from .images/javascript_event-inheritance.png rename to docs/img/javascript_event-inheritance.png diff --git a/.images/mongodb_ixscan.png b/docs/img/mongodb_ixscan.png similarity index 100% rename from .images/mongodb_ixscan.png rename to docs/img/mongodb_ixscan.png diff --git a/.images/mongodb_shared-cluster.png b/docs/img/mongodb_shared-cluster.png similarity index 100% rename from .images/mongodb_shared-cluster.png rename to docs/img/mongodb_shared-cluster.png diff --git a/.images/node_url-structure.png b/docs/img/node_url-structure.png similarity index 100% rename from .images/node_url-structure.png rename to docs/img/node_url-structure.png diff --git a/docs/index.md b/docs/index.md new file mode 100644 index 0000000..8d538bd --- /dev/null +++ b/docs/index.md @@ -0,0 +1,4 @@ +# Programming Notes + +Personal notes on various programming languages to be used as quick reference. +Sum-up of personal knowledge. diff --git a/ios/content-view.md b/docs/ios/content-view.md similarity index 100% rename from ios/content-view.md rename to docs/ios/content-view.md diff --git a/java/dao.md b/docs/java/dao.md similarity index 100% rename from java/dao.md rename to docs/java/dao.md diff --git a/java/java-collection-framework.md b/docs/java/java-collection-framework.md similarity index 97% rename from java/java-collection-framework.md rename to docs/java/java-collection-framework.md index 2f6071c..eb1d01f 100644 --- a/java/java-collection-framework.md +++ b/docs/java/java-collection-framework.md @@ -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](../.images/java_java-collection-framework.png "Java Collection Hierarchy") +![Java Collection Hierarchy](../img/java_java-collection-framework.png "Java Collection Hierarchy") ## java.util.Collections diff --git a/java/java.md b/docs/java/java.md similarity index 99% rename from java/java.md rename to docs/java/java.md index af64ae5..9846254 100644 --- a/java/java.md +++ b/docs/java/java.md @@ -1,4 +1,4 @@ -# Java Cheat Sheet +# Java ```java //single line comment diff --git a/java/spring/pom.xml.md b/docs/java/spring/pom.xml.md similarity index 100% rename from java/spring/pom.xml.md rename to docs/java/spring/pom.xml.md diff --git a/java/spring/spring-project.md b/docs/java/spring/spring-project.md similarity index 100% rename from java/spring/spring-project.md rename to docs/java/spring/spring-project.md diff --git a/java/web/servlet.md b/docs/java/web/servlet.md similarity index 100% rename from java/web/servlet.md rename to docs/java/web/servlet.md diff --git a/javascript/ajax.md b/docs/javascript/ajax.md similarity index 100% rename from javascript/ajax.md rename to docs/javascript/ajax.md diff --git a/javascript/dom.md b/docs/javascript/dom.md similarity index 100% rename from javascript/dom.md rename to docs/javascript/dom.md diff --git a/javascript/events-animation.md b/docs/javascript/events-animation.md similarity index 97% rename from javascript/events-animation.md rename to docs/javascript/events-animation.md index e9c12fb..0dc6d8f 100644 --- a/javascript/events-animation.md +++ b/docs/javascript/events-animation.md @@ -44,7 +44,7 @@ let event = new CustomEvent(type, { detail: /* custom data */ }); // create eve domNode.dispatchEvent(event); // launch the event ``` -![Event Inheritance](../.images/javascript_event-inheritance.png) +![Event Inheritance](../img/javascript_event-inheritance.png) ## Animation diff --git a/javascript/javascript.md b/docs/javascript/javascript.md similarity index 99% rename from javascript/javascript.md rename to docs/javascript/javascript.md index b5ec12e..9f39f10 100644 --- a/javascript/javascript.md +++ b/docs/javascript/javascript.md @@ -1,4 +1,4 @@ -# JavaScript Cheat Sheet +# JavaScript ## Basics diff --git a/javascript/jquery.md b/docs/javascript/jquery.md similarity index 95% rename from javascript/jquery.md rename to docs/javascript/jquery.md index 80623cb..8c5c7ab 100644 --- a/javascript/jquery.md +++ b/docs/javascript/jquery.md @@ -6,7 +6,7 @@ ```html - + ``` @@ -14,13 +14,13 @@ ```html - + - + ``` diff --git a/javascript/react/react-router.md b/docs/javascript/react/react-router.md similarity index 100% rename from javascript/react/react-router.md rename to docs/javascript/react/react-router.md diff --git a/javascript/react/react-tests.md b/docs/javascript/react/react-tests.md similarity index 100% rename from javascript/react/react-tests.md rename to docs/javascript/react/react-tests.md diff --git a/javascript/react/react.md b/docs/javascript/react/react.md similarity index 100% rename from javascript/react/react.md rename to docs/javascript/react/react.md diff --git a/javascript/react/redux-tests.md b/docs/javascript/react/redux-tests.md similarity index 100% rename from javascript/react/redux-tests.md rename to docs/javascript/react/redux-tests.md diff --git a/javascript/react/redux.md b/docs/javascript/react/redux.md similarity index 100% rename from javascript/react/redux.md rename to docs/javascript/react/redux.md diff --git a/javascript/svelte/svelte.md b/docs/javascript/svelte/svelte.md similarity index 100% rename from javascript/svelte/svelte.md rename to docs/javascript/svelte/svelte.md diff --git a/kotlin/kotlin.md b/docs/kotlin/kotlin.md similarity index 99% rename from kotlin/kotlin.md rename to docs/kotlin/kotlin.md index eade744..3a07697 100644 --- a/kotlin/kotlin.md +++ b/docs/kotlin/kotlin.md @@ -1,4 +1,4 @@ -# Kotlin Cheat Sheet +# Kotlin ## Package & Imports diff --git a/markdown.md b/docs/markdown.md similarity index 100% rename from markdown.md rename to docs/markdown.md diff --git a/php/composer.md b/docs/php/composer.md similarity index 100% rename from php/composer.md rename to docs/php/composer.md diff --git a/php/database.md b/docs/php/database.md similarity index 100% rename from php/database.md rename to docs/php/database.md diff --git a/php/dependecy-injection.md b/docs/php/dependency-injection.md similarity index 100% rename from php/dependecy-injection.md rename to docs/php/dependency-injection.md diff --git a/php/php.md b/docs/php/php.md similarity index 99% rename from php/php.md rename to docs/php/php.md index a899913..3ea9c4a 100644 --- a/php/php.md +++ b/docs/php/php.md @@ -1,4 +1,4 @@ -# PHP CheatSheet +# PHP [PHP Docs](https://www.php.net/docs.php) diff --git a/php/plates-templating.md b/docs/php/plates-templating.md similarity index 100% rename from php/plates-templating.md rename to docs/php/plates-templating.md diff --git a/php/psr-7.md b/docs/php/psr-7.md similarity index 100% rename from php/psr-7.md rename to docs/php/psr-7.md diff --git a/php/simple-mvc/rest-api.md b/docs/php/simple-mvc/rest-api.md similarity index 100% rename from php/simple-mvc/rest-api.md rename to docs/php/simple-mvc/rest-api.md diff --git a/php/simple-mvc/simple-mvc.md b/docs/php/simple-mvc/simple-mvc.md similarity index 100% rename from php/simple-mvc/simple-mvc.md rename to docs/php/simple-mvc/simple-mvc.md diff --git a/php/unit-tests.md b/docs/php/unit-tests.md similarity index 100% rename from php/unit-tests.md rename to docs/php/unit-tests.md diff --git a/php/web.md b/docs/php/web.md similarity index 100% rename from php/web.md rename to docs/php/web.md diff --git a/powershell/commands.md b/docs/powershell/commands.md similarity index 100% rename from powershell/commands.md rename to docs/powershell/commands.md diff --git a/powershell/scripting.md b/docs/powershell/scripting.md similarity index 99% rename from powershell/scripting.md rename to docs/powershell/scripting.md index fb6f46c..6bce137 100644 --- a/powershell/scripting.md +++ b/docs/powershell/scripting.md @@ -1,4 +1,4 @@ -# PowerShell Cheat Sheet +# PowerShell Scripting Cmdlets are formed by a verb-noun pair. Cmdlets are case-insensitive. diff --git a/python/standard-library/argparse.md b/docs/python/argparse.md similarity index 100% rename from python/standard-library/argparse.md rename to docs/python/argparse.md diff --git a/python/standard-library/collections.md b/docs/python/collections.md similarity index 100% rename from python/standard-library/collections.md rename to docs/python/collections.md diff --git a/python/standard-library/csv.md b/docs/python/csv.md similarity index 96% rename from python/standard-library/csv.md rename to docs/python/csv.md index fbdd2b4..7b060de 100644 --- a/python/standard-library/csv.md +++ b/docs/python/csv.md @@ -1,5 +1,5 @@ -# CSV Module Cheat Sheet +# CSV Module ``` python # iterate lines of csvfile diff --git a/python/standard-library/ftplib.md b/docs/python/ftplib.md similarity index 100% rename from python/standard-library/ftplib.md rename to docs/python/ftplib.md diff --git a/python/standard-library/itertools.md b/docs/python/itertools.md similarity index 100% rename from python/standard-library/itertools.md rename to docs/python/itertools.md diff --git a/python/standard-library/json.md b/docs/python/json.md similarity index 99% rename from python/standard-library/json.md rename to docs/python/json.md index 868fe77..599f663 100644 --- a/python/standard-library/json.md +++ b/docs/python/json.md @@ -1,4 +1,4 @@ -# JSON Module Cheat Sheet +# JSON Module ## JSON Format diff --git a/python/libs/web/beautiful-soup.md b/docs/python/libs/beautiful-soup.md similarity index 100% rename from python/libs/web/beautiful-soup.md rename to docs/python/libs/beautiful-soup.md diff --git a/python/libs/math/numpy.md b/docs/python/libs/numpy.md similarity index 100% rename from python/libs/math/numpy.md rename to docs/python/libs/numpy.md diff --git a/python/libs/math/pandas.md b/docs/python/libs/pandas.md similarity index 100% rename from python/libs/math/pandas.md rename to docs/python/libs/pandas.md diff --git a/python/libs/web/requests.md b/docs/python/libs/requests.md similarity index 100% rename from python/libs/web/requests.md rename to docs/python/libs/requests.md diff --git a/python/libs/math/seaborn.md b/docs/python/libs/seaborn.md similarity index 100% rename from python/libs/math/seaborn.md rename to docs/python/libs/seaborn.md diff --git a/python/libs/gui/tkinter.md b/docs/python/libs/tkinter.md similarity index 99% rename from python/libs/gui/tkinter.md rename to docs/python/libs/tkinter.md index 5664144..de1ac1c 100644 --- a/python/libs/gui/tkinter.md +++ b/docs/python/libs/tkinter.md @@ -1,4 +1,4 @@ -# Tkinter Module/Library Cheat Sheet +# Tkinter Module/Library ## Standard Imports diff --git a/python/standard-library/logging.md b/docs/python/logging.md similarity index 98% rename from python/standard-library/logging.md rename to docs/python/logging.md index 388e969..d9311d8 100644 --- a/python/standard-library/logging.md +++ b/docs/python/logging.md @@ -69,12 +69,12 @@ logging.disable(level=LOG_LEVEL) Log Levels (Low To High): -- NOTSET -- 0 -- DEBUG -- 10 -- INFO -- 20 -- WARNING -- 30 -- ERROR -- 40 -- CRITICAL -- 50 +- default: `0` +- debug: `10` +- info: `20` +- warning: `30` +- error: `40` +- critical: `50` ```python logging.debug(msg) # Logs a message with level DEBUG on the root logger diff --git a/python/python.md b/docs/python/python.md similarity index 100% rename from python/python.md rename to docs/python/python.md diff --git a/python/standard-library/shutil.md b/docs/python/shutil.md similarity index 100% rename from python/standard-library/shutil.md rename to docs/python/shutil.md diff --git a/python/standard-library/smtplib.md b/docs/python/smtplib.md similarity index 99% rename from python/standard-library/smtplib.md rename to docs/python/smtplib.md index b35b7cb..99acd65 100644 --- a/python/standard-library/smtplib.md +++ b/docs/python/smtplib.md @@ -1,4 +1,4 @@ -# SMTPlib Module Cheat Sheet +# SMTPlib Module ```python import smtplib diff --git a/python/standard-library/socket.md b/docs/python/socket.md similarity index 97% rename from python/standard-library/socket.md rename to docs/python/socket.md index 40fc9a1..6720ad5 100644 --- a/python/standard-library/socket.md +++ b/docs/python/socket.md @@ -1,4 +1,4 @@ -# Socket Module CheatSheet +# Socket Module ## Definition diff --git a/python/standard-library/sqllite.md b/docs/python/sqlite.md similarity index 99% rename from python/standard-library/sqllite.md rename to docs/python/sqlite.md index f627e95..bf3f5e3 100644 --- a/python/standard-library/sqllite.md +++ b/docs/python/sqlite.md @@ -1,4 +1,4 @@ -# sqlite3 Module CheatSheet +# sqlite3 Module ## Connecting To The Database diff --git a/python/standard-library/time_datetime.md b/docs/python/time-datetime.md similarity index 100% rename from python/standard-library/time_datetime.md rename to docs/python/time-datetime.md diff --git a/python/standard-library/unittest.md b/docs/python/unittest.md similarity index 100% rename from python/standard-library/unittest.md rename to docs/python/unittest.md diff --git a/regular-expressions.md b/docs/regular-expressions.md similarity index 100% rename from regular-expressions.md rename to docs/regular-expressions.md diff --git a/rust/cargo.md b/docs/rust/cargo.md similarity index 100% rename from rust/cargo.md rename to docs/rust/cargo.md diff --git a/rust/rust.md b/docs/rust/rust.md similarity index 100% rename from rust/rust.md rename to docs/rust/rust.md diff --git a/rust/unit-tests.md b/docs/rust/unit-tests.md similarity index 100% rename from rust/unit-tests.md rename to docs/rust/unit-tests.md diff --git a/swift/swift.md b/docs/swift/swift.md similarity index 100% rename from swift/swift.md rename to docs/swift/swift.md diff --git a/dotnet/godot/scripting.md b/dotnet/godot/scripting.md deleted file mode 100644 index 8fcf91a..0000000 --- a/dotnet/godot/scripting.md +++ /dev/null @@ -1,140 +0,0 @@ -# Godot Scripting - -## Basics - -```cs -using Godot; - - -public class NodeName : NodeType -{ - [Export] // make variable visible in inspector - Type variable = value; - - - - // Called when the node enters the scene tree for the first time. - public override void _Ready() - { - GetNode("NodeName"); // fetch a child node in the scene - GetNode("ParentNode/ChildNode"); // fetch a child node in the scene - - AddToGroup("Group"); // add a node to a group (similar to tags) - - GetTree().CallGroup("Group", "Function"); // call Function on all group members - var groupMembers = GetTree().GetNodesInGroup("Group"); - } - - // Called every frame. 'delta' is the elapsed time since the previous frame. - public override void _Process(float delta) - { - - } - - public void _OnEmitterSignal() { } -} -``` - -### Overridable Functions - -```cs -public override void _EnterTree() -{ - // When the node enters the Scene Tree, it becomes active and this function is called. - // Children nodes have not entered the active scene yet. - // In general, it's better to use _ready() for most cases. - base._EnterTree(); -} - -public override void _Ready() -{ - // This function is called after _enter_tree, but it ensures - // that all children nodes have also entered the Scene Tree, - // and became active. - base._Ready(); -} - -public override void _ExitTree() -{ - // When the node exits the Scene Tree, this function is called. - // Children nodes have all exited the Scene Tree at this point and all became inactive. - base._ExitTree(); -} - -public override void _Process(float delta) -{ - // This function is called every frame. - base._Process(delta); -} - -public override void _PhysicsProcess(float delta) -{ - // This is called every physics frame. - base._PhysicsProcess(delta); -} -``` - -### Creating Nodes - -```cs -private Sprite _sprite; - -public override void _Ready() -{ - base._Ready(); - - _sprite = new Sprite(); // Create a new sprite - - AddChild(_sprite); // Add it as a child of this node - _sprite.Free(); // Immediately removes the node from the scene and frees it. -} -``` - -**Note**: When a node is freed, it also frees all its child nodes. - -The safest way to delete a node is by using `Node.QueueFree()`. This erases the node safely during idle. - -### Instantiating Scenes - -```cs -// STEP 1: load the scene -var scene = GD.Load("res://scene.tscn"); // Will load when the script is instanced. - -// STEP 2: instantiate the scene-node -var node = scene.Instance(); -AddChild(node); -``` - -The advantage of this two-step process is that a packed scene may be kept loaded and ready to use so that it's possible to create as many instances as desired. -This is especially useful to quickly instance several enemies, bullets, and other entities in the active scene. - -## Signals - -Signals are Godot's version of the *observer* pattern. They allow a node to send out a message that other nodes can listen for and respond to. - -Signals are a way to decouple game objects, which leads to better organized and more manageable code. Instead of forcing game objects to expect other objects to always be present, they can instead emit signals that all interested objects can subscribe to and respond to. - -```cs -public override _Ready() -{ - GetNode("Node").Connect("signal", targetNode, nameof(TargetFunction)); // connect node and signal -} - -// Signal Handler -public void OnEmitterSignal() { } -``` - -### Custom Signals - -```cs -public class Node : Node2D -{ - [Signal] - public delegate void CustomSignal(Type arg, ...); - - public override void _Ready() - { - EmitSignal(nameof(CustomSignal), args); - } -} -``` diff --git a/dotnet/lib/skia-sharp.md b/dotnet/lib/skia-sharp.md deleted file mode 100644 index 09b2aee..0000000 --- a/dotnet/lib/skia-sharp.md +++ /dev/null @@ -1,35 +0,0 @@ -# SkiaSharp - -```cs -SKImageInfo info = new SKImageInfo(width, height); - -using (SKSurface surface = SKSurface.Create(info)) -{ - SKCanvas canvas = surface.Canvas; - canvas.DrawColor(SKColors.); - - using (SKPaint paint = new SKPaint()) - { - paint.Color = SKColors.Blue; - paint.IsAntialias = true; - paint.StrokeWidth = 5; - paint.Style = SKPaintStyle.Stroke; - - // draw - canvas.DrawLine(x0, y0, x1, y1, paint); - - } - - // save to file - using (var image = surface.Snapshot()) - { - using (var data = image.Encode(SKEncodedImageFormat.Png, 100)) - { - using (var stream = File.OpenWrite(png_filename)) - { - data.SaveTo(stream); - } - } - } -} -``` diff --git a/dotnet/unity/collisions.md b/dotnet/unity/collisions.md deleted file mode 100644 index 58155c9..0000000 --- a/dotnet/unity/collisions.md +++ /dev/null @@ -1,81 +0,0 @@ -# Collisions (Physics) - -## Rigidbody Component - -Enables physics on the game objects. - -Rigidbodies collide with other objects instead of going through them. - -Avoid object rotation on collisions: - -1. Assign `Rigidbody` component to object -2. Enable Freeze Rotation in Rigidbody > Constraints - -```cs -using UnityEngine; -using System.Collections; - -public class GameObject : MonoBehaviour { - - Rigidbody = rigidbody; // game object rigidbody reference container - - void Start() - { - rigidbody = GetComponent(); // get rigidbody reference - } - - void Update() - { - } - - // FixedUpdate is calls every x seconds (not influenced by FPS instability) - // used for physics calculations which should be FPS independent - void FixedUpdate() - { - Time.fixedDeltaTime; // fixed amount of time - Time.timeDelta; // if called inside FIxedUpdate() behaves like fixedDeltaTime - } - -} -``` - -## Box Collider Component - -Enable `Is Trigger` to register the collision but avoid blocking the movement of the objects. -The trigger can generate a event to signal the contact with the object. - -One of the colliding GameObjects *must have* the `Rigidbody` component and the other `Is Trigger` enabled. -To detect the collision but avoid computing the physics `Is Kinematic` must be enabled in the `Rigidbody` component. - -```cs -using UnityEngine; -using System.Collections; - -public class GameObject : MonoBehaviour { - - Rigidbody = rigidbody; // game object rigidbody reference container - - void Start() - { - rigidbody = GetComponent(); // get rigidbody reference - } - - // FixedUpdate is calls every x seconds (not influenced by FPS instability) - // used for physics calculations which should be FPS independent - void FixedUpdate() - { - Time.fixedDeltaTime; // fixed amount of time - Time.timeDelta; // if called inside FixedUpdate() behaves like fixedDeltaTime - } - - // called on box collision. - void OnTriggerEnter(Collider triggerCollider) { - - // detect a collision with a particular GameObject(must have a TAG) - if (triggerCollider.tag = "tag") { - Destroy(triggerCollider.gameObject); // destroy tagged item on collision - //or - Destroy(gameObject); // destroy itself - } - } -``` diff --git a/dotnet/unity/coroutines.md b/dotnet/unity/coroutines.md deleted file mode 100644 index 08ef8a2..0000000 --- a/dotnet/unity/coroutines.md +++ /dev/null @@ -1,30 +0,0 @@ -# Coroutines - -[Coroutines - Unity manual](https://docs.unity3d.com/Manual/Coroutines.html) - -When you call a function, it runs to completion before returning. This effectively means that any action taking place in a function must happen *within a single frame update*; a function call can't be used to contain a procedural animation or a sequence of events over time. - -A coroutine is like a function that has the ability to pause execution and return control to Unity but then to continue where it left off on the following frame. - -It is essentially a function declared with a return type of IEnumerator and with the yield return statement included somewhere in the body. The `yield return null` line is the point at which execution will pause and be resumed the following frame. - -```cs -//coroutine -IEnumerator coroutine() -{ - // action performed - yield return null; // pause until next iteration - - // or - - // By default, a coroutine is resumed on the frame after it yields but it is also possible to introduce a time delay - yield return new WaitForSeconds(seconds); // wait seconds before resuming - - // or - - yeld return StartCoroutine(coroutine()); // wait for another coroutine to finish before starting -} - -StartCoroutine(coroutine()); // start the coroutine -StopCoroutine(coroutine()); // stop the coroutine -``` diff --git a/dotnet/unity/input-manager.md b/dotnet/unity/input-manager.md deleted file mode 100644 index 30c26a7..0000000 --- a/dotnet/unity/input-manager.md +++ /dev/null @@ -1,81 +0,0 @@ -# Input Manager - -The Input Manager uses the following types of controls: - -- **Key** refers to any key on a physical keyboard, such as `W`, `Shift`, or the `space bar`. -- **Button** refers to any button on a physical controller (for example, gamepads), such as the `X` button on an Xbox One controller. -- A **virtual axis** (plural: axes) is mapped to a **control**, such as a button or a key. When the user activates the control, the axis receives a value in the range of `[-1..1]`. - -## Virtual axes - -### Axis Properties - -**Name**: Axis name. You can use this to access the axis from scripts. -**Negative Button**, **Positive Button**: The controls to push the axis in the negative and positive direction respectively. These can be keys on a keyboard, or buttons on a joystick or mouse. -**Alt Negative Button**, **Alt Positive Button**: Alternative controls to push the axis in the negative and positive direction respectively. -**Gravity**: Speed in units per second that the axis falls toward neutral when no input is present. -**Dead**: How far the user needs to move an analog stick before your application registers the movement. At runtime, input from all analog devices that falls within this range will be considered null. -**Sensitivity**: Speed in units per second that the axis will move toward the target value. This is for digital devices only. -**Snap**: If enabled, the axis value will reset to zero when pressing a button that corresponds to the opposite direction. -**Type**: The type of input that controls the axis. Select from these values: - -- Key or Mouse button -- Mouse Movement -- Joystick Axis - -**Axis**: The axis of a connected device that controls this axis. -**JoyNum**: The connected Joystick that controls this axis. You can select a specific joystick, or query input from all joysticks. - -### Axis Values - -Axis values can be: - -- Between `-1` and `1` for joystick and keyboard input. The neutral position for these axes is `0`. Some types of controls, such as buttons on a keyboard, aren't sensitive to input intensity, so they can't produce values other than `-1`, `0`, or `1`. -- Mouse delta (how much the mouse has moved during the last frame) for mouse input. The values for mouse input axes can be larger than `1` or smaller than `-1` when the user moves the mouse quickly. - -```cs -//Define the speed at which the object moves. -float moveSpeed = 10; - -//Get the value of the Horizontal input axis. -float horizontalInput = Input.GetAxis("Horizontal"); - -//Get the value of the Vertical input axis. -float verticalInput = Input.GetAxis("Vertical"); - -Vector3 direction = new Vector3(horizontalInput, 0, verticalInput).normalized; -Vector3 velocity = direction * moveSpeed; - -//Move the object to XYZ coordinates defined as horizontalInput, 0, and verticalInput respectively. -transform.Translate(velocity * Time.deltaTime); -``` - -[Time.deltaTime][dt] represents the time that passed since the last frame. Multiplying the moveSpeed variable by Time.deltaTime ensures that the GameObject moves at a constant speed every frame. - -[dt]: https://docs.unity3d.com/ScriptReference/Time-deltaTime.html - -`GetAxis`: returns the value of the virtual axis identified. -`GetAxisRaw`: returns the value of the virtual axis identified with no smoothing filtering applied. - -## Keys - -**Letter keys**: `a`, `b`, `c`, ... -**Number keys**: `1`, `2`, `3`, ... -**Arrow keys**: `up`, `down`, `left`, `right` -**Numpad keys**: `[1]`, `[2]`, `[3]`, `[+]`, `[equals]`, ... -**Modifier keys**: `right shift`, `left shift`, `right ctrl`, `left ctrl`, `right alt`, `left alt`, `right cmd`, `left cmd` -**Special keys**: `backspace`, `tab`, `return`, `escape`, `space`, `delete`, `enter`, `insert`, `home`, `end`, `page up`, `page down` -**Function keys**: `f1`, `f2`, `f3`, ... - -**Mouse buttons**: `mouse 0`, `mouse 1`, `mouse 2`, ... - -**Specific button on *any* joystick**: `joystick button 0`, `joystick button 1`, `joystick button 2`, ... -**specific button on a *specific* joystick**: `joystick 1 button 0`, `joystick 1 button 1`, `joystick 2 button 0`, ... - -```cs -Input.GetKey("a"); -Input.GetKey(KeyCode.A); -``` - -[Input.GetKey](https://docs.unity3d.com/ScriptReference/Input.GetKey.html) -[KeyCode](https://docs.unity3d.com/ScriptReference/KeyCode.html) diff --git a/dotnet/unity/prefabs-instantiation.md b/dotnet/unity/prefabs-instantiation.md deleted file mode 100644 index 9c8833b..0000000 --- a/dotnet/unity/prefabs-instantiation.md +++ /dev/null @@ -1,14 +0,0 @@ -# Prefabs - -Prefabs are a blueprint for GameObjects and any change made to the prefab is inherited by all it's instances. - -## Script Instantiation - -```cs - -public GameObject prefab; // reference to the prefab - -// instantiate a game GameObject from the prefab with specified position and rotation (rotation must be a quaternion) -GameObject newInstance = (GameObject) Instantiate(prefab, positionVector3, Quaternion.Euler(rotationVector3)); // instantiate prefab and get reference to instance -// Instance returns a object and since a GameObject was passed to Instantiate() the returned object can be casted to a GameObject -``` diff --git a/dotnet/unity/raycasting.md b/dotnet/unity/raycasting.md deleted file mode 100644 index 51bc979..0000000 --- a/dotnet/unity/raycasting.md +++ /dev/null @@ -1,83 +0,0 @@ -# Raycasting Notes - -A raycast is conceptually like a laser beam that is fired from a point in space along a particular direction. Any object making contact with the beam can be detected and reported. - -## 3D Raycasting - -```cs -void Update() -{ - // constructor takes in a position end direction - Ray ray = new Ray(transform,position, transform.forward); - RaycastHit hitInfo; // struct, stores data on ray collision - - hitInfo.distance // distance from origin to collision point - hitInfo.collider // collider of the hit object - hitInfo.transform // transform og the hit object - hitInfo.collider.gameObject // reference to the object hit by the ray - hitInfo.collider.gameObject // reference to the object hit by the ray - hitInfo.normal // normal vector og the hit surface - hitInfo.point // actual point of collision - - // static method, object must have a collider dot the collision to happen, returns a BOOL - Physics.Raycast(ray, out hitInfo); // update hitInfo based on ray collisions - Physics.Raycast(ray, out hitInfo, float maxRayDistance); // limit the ray length - Physics.Raycast(ray, out hitInfo, Mask mask); // specify with which layers the ray can interact, layer must be applied to object's mask - Physics.Raycast(ray, out hitInfo, Mask mask, QueryTriggerInteraction.Ignore); // ignore collision if "is trigger" is enabled on other objects - - // detect a collision - if (Physics.Raycast(ray, out hitInfo)) - { - //collision happened - - // draw the ray in game for debugging - Debug.DrawLine(ray.origin, hitInfo.point, Color.red); // draw red line if collision happens - } - else - { - Debug.DrawLine(ray.origin, ray.origin + ray.direction * 100, Color.blue); // draw blue line if collision happens, arrival point is 100 units from the origin since the ray goes to infinity - } -} -``` - -### Detect mouse pointed point in-game - -```cs -public Camera gameCamera; - -void Update() -{ - // ray going from camera through a screen point - Ray ray = gameCamera.ScreenPointToRay(Input.mousePosition); // Input.mousePosition is the position of the mouse in pixels (screen points) - RaycastHit hitInfo; // place pointed by the mouse - - Physics.Raycast(ray, out hitInfo) // update pointed position -} -``` - -## 2D Raycasting - -```cs - -void Start() -{ - Physics2D.queriesStartColliders = false; // avoid collision with collider of the ray generator gameObject -} - -void Update() -{ - // returns a RaycastHit2D, needs an origin and direction separately - Raycast2D hitInfo = Physics2D.Raycast(Vector2 origin, Vector2 direction); - Raycast2D hitInfo = Physics2D.Raycast(Vector2 origin, Vector2 direction, float maxRayDistance); - Raycast2D hitInfo = Physics2D.Raycast(Vector2 origin, Vector2 direction, float maxRayDistance); - Raycast2D hitInfo = Physics2D.Raycast(Vector2 origin, Vector2 direction, float minDepth, float maxDepth); // set range of z-coord values in which detect hits (sprites depth) - - //! the ray starts from INSIDE the gameObject and can collider with it's collider - - // detect collision - if (hitInfo.collider != null) { - // collision happened - Debug.DrawLine(transform.position, hitInfo.point) - } -} -``` diff --git a/dotnet/unity/scripting.md b/dotnet/unity/scripting.md deleted file mode 100644 index bc57190..0000000 --- a/dotnet/unity/scripting.md +++ /dev/null @@ -1,135 +0,0 @@ -# Unity C# Scripting - -## Logging - -```c# -Debug.Log(string); //output message to console (more powerful and flexible than print()) -Print(string); //output message to console -``` - -## Scripts - -```c# -public class ClassName : MonoBehaviour { - - // Start is called before the first frame update - void Start() - { - - } - - // Update is called once per frame - void Update() - { - Time.deltaTime; // time since last frame - } - - // FixedUpdate is calls every x seconds (not influenced by FPS instability) - // used for physics calculations which should be FPS independent - void FixedUpdate() - { - Time.fixedDeltaTime; // fixed amount of time - Time.timeDelta; // if called inside FIxedUpdate() behaves like fixedDeltaTime - } -} -``` - -### Script communication - -Referencing data in a script from another. - -```cs -//example of a script to be referenced in another -Using System; - -public class Player : MonoBehaviour { - - public float health = 10; - public event Action OnPlayerDeath; //event of type Action, needs using System - - void Start() { - - } - - void Update() { - - if (health <= 0) { - if (OnPlayerDeath != null) { - OnPlayerDeath(); // invoke Action (if no subscribers event will be NULL, can cause errors) - } - - Destroy(GameObject); // needs to be notified - } - } -} -``` - -```cs -// example of script needing a reference to another -public class GameUI : MonoBehaviour { - - Player player; //instance of referenced GameObject to be found by its type - - void Start(){ - GameObject playerObj = GameObject.Find("Player"); //reference to game object - GameObject playerObj = GameObject.FindGameObjectWithTag("Tag"); //reference to game object - player = playerObj.GetComponent(); // get script attached to the GameObject - - player = FindObjectOfType(); // get reference to an object - - // on event invocation all subscriber methods will be called - player.OnPlayerDeath += GameOver; // subscribe method to event - } - - void Update() { - DrawHealthBar(plyer.health); // call method passing data of player GameObject - } - - void DrawHealthBar(float playerHealth) { - // implementation - } - - public void GameOver() { - //game over screen - } -} -``` - -## Screen - -### 2D Screen Measures - -Aspect Ratio = `(screen_width [px]) / (screen_height [px])` -Orthographic Size `[world units]` = `(screen_height [world units] / 2)` -Aspect Ratio * Orthographic Size = `(screen_width [world units] / 2)` -Screen Width `[world units]` = `(AspectRatio * OrthographicSize * 2)` - -```cs -screenWidth = Camera.main.aspect * Camera.main.orthographicSize * 2; -``` - -## Scriptable Objects - -Class to store data in stand alone assets, used to keep data out of scripts. -Can be used as a template. - -```c# -[CreateAssetMenu(menuName = "ScriptableObjectName")] //enable creation of scriptable object -public class ScriptableObjectName : ScriptableObject { - //data structure here -} -``` - -### Game Object Serialization - -```c# -[SerializeField] type variable; //access game object from code -``` - -### Game Object Data Access - -```c# -public type GetVariable(){ - return variable; -} -``` diff --git a/dotnet/unity/vectors-tranfrorms-space.md b/dotnet/unity/vectors-tranfrorms-space.md deleted file mode 100644 index 81842a3..0000000 --- a/dotnet/unity/vectors-tranfrorms-space.md +++ /dev/null @@ -1,87 +0,0 @@ -# Vector, Transform, Space - -## Vector2, Vector3, Vector4 - -[Vector3 Docs](https://docs.unity3d.com/ScriptReference/Vector3.html) - -Used to store positions, velocities and directions. - -Magnitude = `sqrt(Math.pow(x, 2) + Math.pow(y, 2))` -Direction = `(x / Magnitude, y / Magnitude)` - -The direction is calculated by normalizing the vector to make it become a unit vector (*versor*). - -```cs -Vector3.x // x coord of vector -Vector3.y // x coord of vector -Vector3.z // x coord of vector - -Vector3.magnitude -Vector3.normalized - -Vector3.up // Vector3(0, 1, 0) -Vector3.down // Vector3(0, -1, 0) -Vector3.left // Vector3(-1, 0, 0) -Vector3.right // Vector3(1, 0, 0) -Vector3.forward // Vector3(0, 0, 1) -Vector3.back // Vector3(0, 0, -1) -Vector3.one // Vector3(1, 1, 1) -Vector3.zero // Vector3(0, 0, 0) -Vector3.one // Vector3(1, 1, 1) -``` - -### Operations - -```cs -Vector3(x, y, z) * n = Vector3(xn, yn, yz); -Vector3(x, y, z) / n = Vector3(x / n, y / n, y / z); - -Vector3(x1, y1, z1) + Vector3(x2, y2, z2) = Vector3(x1 + x2, y1 + y2, z1 + z2); -Vector3(x1, y1, z1) - Vector3(x2, y2, z2) = Vector3(x1 - x2, y1 - y2, z1 - z2); - -Quaternion.Euler(Vector3) // convert a Vector3 to a Quaternion -``` - -### Movement - -Speed = value m/s -Velocity = Direction * Speed - -MovementInFrame = Speed * timeSinceLastFrame - -## Transform - -[Transform Docs](https://docs.unity3d.com/ScriptReference/Transform.html) - -```cs -// properties -transform.position // Vector3 - global position -transform.localPosition // Vector3 - local position -transform.rotation // Quaternion - global rotation -transform.parent // Transform - parent of the object - -transform.localScale = Vector3; // set object dimensions - -// methods -transform.Rotate(Vector3 * Time.deltaTime * speed, Space); // set rotation using vectors in selected space (Space.Self or Space.World) -transform.Translate(Vector3 * Time.deltaTime * speed, Space); // set movement in selected space -``` - -### Local, GLobal & Object Space - -**Local Space**: Applies transformation relative to the *local* coordinate system (`Space.Self`). -**Global Space**: Applies transformation relative to the *world* coordinate system (`Space.World`) - -### Parenting - -Changing the parent will make position, scale and rotation of the child object relative to the parent but keep the world space's position, rotation and scale the same. - -Setting the parentele by script: - -```cs -public class ParentScript : MonoBehaviour { - public Transform childTransform; // reference to the child object transform - - childTransform.parent = transform; // when evaluated at runtime sets current object as parent of another -} -``` diff --git a/dotnet/xamarin/app.xaml.cs.md b/dotnet/xamarin/app.xaml.cs.md deleted file mode 100644 index 08a675c..0000000 --- a/dotnet/xamarin/app.xaml.cs.md +++ /dev/null @@ -1,35 +0,0 @@ -# App.xaml.cs - -This `App` class is defined as `public` and derives from the Xamarin.Forms `Application` class. -The constructor has just one responsibility: to set the `MainPage` property of the `Application` class to an object of type `Page`. - -```cs -using System; -using Xamarin.Forms; -using Xamarin.Forms.Xaml; - -namespace AppName -{ - public partial class App : Application - { - public App() - { - InitializeComponent(); - - MainPage = new MainPage(); - } - - protected override void OnStart() - { - } - - protected override void OnSleep() - { - } - - protected override void OnResume() - { - } - } -} -``` diff --git a/dotnet/xamarin/app.xaml.md b/dotnet/xamarin/app.xaml.md deleted file mode 100644 index c1fd1f5..0000000 --- a/dotnet/xamarin/app.xaml.md +++ /dev/null @@ -1,51 +0,0 @@ -# App.xaml - -## Root Tag - -The `` tag begins with two XML namespace declarations, both of which are URIs. - -The default namespace belongs to **Xamarin**. This is the XML namespace (`xmlns`) for elements in the file with no prefix, such as the `ContentPage` tag. -The URI includes the year that this namespace came into being and the word *forms* as an abbreviation for Xamarin.Forms. - -The second namespace is associated with a prefix of `x` by convention, and it belongs to **Microsoft**. This namespace refers to elements and attributes that are intrinsic to XAML and are found in every XAML implementation. -The word *winfx* refers to a name once used for the .NET Framework 3.0, which introduced WPF and XAML. - -The `x:Class` attribute can appear only on the root element of a XAML file. It specifies the .NET namespace and name of a derived class. The base class of this derived class is the root element. - -In other words, this `x:Class` specification indicates that the `App` class in the `AppName` namespace derives from `Application`. -That's exactly the same information as the `App` class definition in the `App.xaml.cs` file. - -```xml - - - -``` - -## Shared Resources - -```xml - - - - - - - - - - value - - - - - - - -``` diff --git a/dotnet/xamarin/page.xaml.cs.md b/dotnet/xamarin/page.xaml.cs.md deleted file mode 100644 index d408e8b..0000000 --- a/dotnet/xamarin/page.xaml.cs.md +++ /dev/null @@ -1,22 +0,0 @@ -# Page.xaml.cs - -```cs -using System; -using System.Collections.Generic; -using System.ComponentModel; -using System.Linq; -using System.Text; -using System.Threading.Tasks; -using Xamarin.Forms; - -namespace AppName -{ - public partial class PageName : ContentPage - { - public PageName() - { - InitializeComponent(); - } - } -} -``` diff --git a/dotnet/xamarin/page.xaml.md b/dotnet/xamarin/page.xaml.md deleted file mode 100644 index 9ea1369..0000000 --- a/dotnet/xamarin/page.xaml.md +++ /dev/null @@ -1,86 +0,0 @@ -# Page.xaml - -## Anatomy of an app - -The modern user interface is constructed from visual objects of various sorts. Depending on the operating system, these visual objects might go by different names—controls, elements, views, widgets—but they are all devoted to the jobs of presentation or interaction or both. - -In Xamarin.Forms, the objects that appear on the screen are collectively called *visual elements* (`VisualElement` class). - -They come in three main categories: - -- page (`Page` class) -- layout (`Layout` class) -- view (`View` class) - -A Xamarin.Forms application consists of one or more pages. A page usually occupies all (or at least a large area) of the screen. -Some applications consist of only a single page, while others allow navigating between multiple pages. - -On each page, the visual elements are organized in a parent-child hierarchy. -Some layouts have a single child, but many layouts have multiple children that the layout arranges within itself. These children can be other layouts or views. - -The term *view* in Xamarin.Forms denotes familiar types of presentation and interactive objects. - -## Pages - -![pages](../../.images/dotnet_xamarin-pages.png) - -```xml - - - - - - - - - - - - - - - - - - - -``` - -## Layouts - -![layouts](../../.images/dotnet_xamarin-layouts.png) - -- StackLayout: Organizes views linearly, either horizontally or vertically. -- AbsoluteLayout: Organizes views by setting coordinates & size in terms of absolute values or ratios. -- RelativeLayout: Organizes views by setting constraints relative to their parent's dimensions & position. -- Grid: Organizes views in a grid of Rows and Columns -- FlexLayout: Organizes views horizontally or vertically with wrapping. -- ScrollView: Layout that's capable of scrolling its content. - -### Grid Layout - -```xml - - - - - - - - - - -``` - -## [Views](https://docs.microsoft.com/en-us/xamarin/xamarin-forms/xaml/xaml-controls "XAML Views") - -```xml - - - - - - - -