From 8026e1465b5a15353c1cd0ff84356f8e498d1580 Mon Sep 17 00:00:00 2001 From: Marcello Lamonaca Date: Sun, 16 Jun 2024 19:14:59 +0200 Subject: [PATCH] remove mkdocs specific syntax --- docs/containers/kubernetes.md | 6 +- docs/databases/mongo-db.md | 56 ++--- docs/databases/redis.md | 12 +- docs/databases/sql.md | 52 ++-- docs/languages/bash/commands.md | 16 +- docs/languages/bash/scripting.md | 28 +-- docs/languages/c/c.md | 72 +++--- docs/languages/dotnet/asp.net/blazor.md | 20 +- docs/languages/dotnet/asp.net/middleware.md | 12 +- docs/languages/dotnet/asp.net/minimal-api.md | 48 ++-- docs/languages/dotnet/asp.net/razor-syntax.md | 18 +- docs/languages/dotnet/asp.net/signalr.md | 22 +- docs/languages/dotnet/asp.net/web-forms.md | 8 +- .../dotnet/csharp/async-programming.md | 10 +- docs/languages/dotnet/csharp/collections.md | 20 +- docs/languages/dotnet/csharp/csharp.md | 230 +++++++++--------- docs/languages/dotnet/csharp/linq.md | 8 +- .../dotnet/csharp/reactive-extensions.md | 2 +- docs/languages/dotnet/csharp/unit-tests.md | 4 +- docs/languages/dotnet/database/ado.net.md | 8 +- .../dotnet/database/entity-framework.md | 16 +- docs/languages/html/html.md | 70 +++--- docs/languages/java/dao.md | 6 +- .../java/java-collection-framework.md | 10 +- docs/languages/java/java.md | 134 +++++----- docs/languages/java/spring/pom.xml.md | 2 +- docs/languages/java/spring/spring-project.md | 12 +- docs/languages/java/web/servlet.md | 4 +- docs/languages/javascript/ajax.md | 8 +- docs/languages/javascript/dom.md | 20 +- docs/languages/javascript/events-animation.md | 8 +- docs/languages/javascript/javascript.md | 104 ++++---- docs/languages/javascript/jquery.md | 38 +-- .../javascript/react/react-router.md | 12 +- .../languages/javascript/react/react-tests.md | 12 +- docs/languages/javascript/react/react.md | 26 +- .../languages/javascript/react/redux-tests.md | 12 +- docs/languages/javascript/react/redux.md | 32 +-- docs/languages/javascript/svelte/svelte.md | 24 +- docs/languages/kotlin/kotlin.md | 28 +-- docs/languages/markdown.md | 16 +- docs/languages/php/composer.md | 10 +- docs/languages/php/database.md | 12 +- docs/languages/php/dependency-injection.md | 10 +- docs/languages/php/php.md | 116 ++++----- docs/languages/php/plates-templating.md | 18 +- docs/languages/php/psr-7.md | 2 +- docs/languages/php/simple-mvc/rest-api.md | 4 +- docs/languages/php/simple-mvc/simple-mvc.md | 12 +- docs/languages/php/unit-tests.md | 20 +- docs/languages/php/web.md | 16 +- docs/languages/powershell/commands.md | 2 +- docs/languages/powershell/scripting.md | 54 ++-- docs/languages/python/libs/beautiful-soup.md | 18 +- docs/languages/python/libs/numpy.md | 34 +-- docs/languages/python/libs/pandas.md | 92 +++---- docs/languages/python/libs/requests.md | 26 +- docs/languages/python/libs/seaborn.md | 30 +-- docs/languages/python/libs/tkinter.md | 86 +++---- docs/languages/python/modules/argparse.md | 32 +-- docs/languages/python/modules/ftplib.md | 6 +- docs/languages/python/modules/json.md | 6 +- docs/languages/python/modules/logging.md | 4 +- docs/languages/python/modules/shutil.md | 2 +- docs/languages/python/modules/smtplib.md | 2 +- docs/languages/python/modules/socket.md | 4 +- docs/languages/python/modules/sqlite.md | 12 +- .../languages/python/modules/time-datetime.md | 4 +- docs/languages/python/modules/unittest.md | 2 +- docs/languages/python/python.md | 96 ++++---- docs/languages/rust/cargo.md | 16 +- docs/languages/rust/rust.md | 138 +++++------ docs/languages/rust/unit-tests.md | 4 +- docs/languages/swift/swift.md | 56 ++--- docs/misc/graph-ql.md | 40 +-- docs/misc/regular-expressions.md | 16 +- docs/misc/ssh.md | 8 +- 77 files changed, 1128 insertions(+), 1128 deletions(-) diff --git a/docs/containers/kubernetes.md b/docs/containers/kubernetes.md index e600461..906d565 100644 --- a/docs/containers/kubernetes.md +++ b/docs/containers/kubernetes.md @@ -110,7 +110,7 @@ Each kubernetes configuration file is composed by 3 parts: ### `kubectl get` -```sh linenums="1" +```sh kubectl config get-contexts # list available contexts kubectl get namespaces # list namespaces inside current context @@ -121,12 +121,12 @@ kubectl get pod [-n|--namespace ] -o|--output jsonpath='{.spec. ### `kubectl exec` -```sh linenums="1" +```sh kubectl exec [-i|--stdin] [-t|--tty] [-n|--namespace ] [-c|--container ] -- # execute a command inside a container ``` ### `kubectl logs` -```sh linenums="1" +```sh kubectl logs [-f|--follow] [-n|--namespace ] [-c|--container] # get pod/container logs ``` diff --git a/docs/databases/mongo-db.md b/docs/databases/mongo-db.md index 1ca98f9..b3b3c09 100644 --- a/docs/databases/mongo-db.md +++ b/docs/databases/mongo-db.md @@ -25,7 +25,7 @@ MongoDB automatically creates an `ObjectId()` if it's not provided. To create a database is sufficient to switch towards a non existing one with `use ` (implicit creation). The database is not actually created until a document is inserted. -```sh linenums="1" +```sh show dbs # list all databases use # use a particular database show collections # list all collection for the current database @@ -38,7 +38,7 @@ db..insertOne({document}) # implicit collection creation ## Operators (MQL Syntax) -```json linenums="1" +```json /* --- Update operators --- */ { "$inc": { "": "", ... } } // increment value { "$set": { "": "", ... } } // set value @@ -83,7 +83,7 @@ db..insertOne({document}) # implicit collection creation > **Note**: `$` is used to access the value of the field dynamically -```json linenums="1" +```json { "$expr": { "" } } // aggregation expression, variables, conditional expressions { "$expr": { "$": [ "$", "$" ] } } // compare field values (operators use aggregation syntax) ``` @@ -99,7 +99,7 @@ Insertion results: - error -> rollback - success -> entire documents gets saved -```sh linenums="1" +```sh # explicit collection creation, all options are optional db.createCollection( , { @@ -132,7 +132,7 @@ db..insertMany([ { document }, { document } ] , { "ordered": false } ### Querying -```sh linenums="1" +```sh db..findOne() # find only one document db..find(filter) # show selected documents db..find().pretty() # show documents formatted @@ -176,7 +176,7 @@ db..find().hint( { $natural : -1 } ) # force the query to perform a [Update Operators](https://docs.mongodb.com/manual/reference/operator/update/ "Update Operators Documentation") -```sh linenums="1" +```sh db..replaceOne(filter, update, options) db..updateOne(filter, update, {upsert: true}) # modify document if existing, insert otherwise @@ -185,7 +185,7 @@ db..updateOne(filter, { "$push": { ... }, "$set": { ... }, { "$inc": ### Deletion -```sh linenums="1" +```sh db..deleteOne(filter, options) db..deleteMany(filter, options) @@ -203,7 +203,7 @@ Utility to import all docs into a specified collection. If the collection already exists `--drop` deletes it before reuploading it. **WARNING**: CSV separators must be commas (`,`) -```sh linenums="1" +```sh mongoimport --uri= @@ -222,7 +222,7 @@ mongoimport Utility to export documents into a specified file. -```sh linenums="1" +```sh mongoexport --collection= --uri= @@ -276,7 +276,7 @@ Indexes _slow down writing operations_ since the index must be updated at every ### Diagnosis and query planning -```sh linenums="1" +```sh db..find({...}).explain() # explain won't accept other functions db.explain()..find({...}) # can accept other functions db.explain("executionStats")..find({...}) # more info @@ -284,7 +284,7 @@ db.explain("executionStats")..find({...}) # more info ### Index Creation -```sh linenums="1" +```sh db..createIndex( , ) db..createIndex( { "": , "": , ... } ) # normal, compound or multikey (field is array) index @@ -306,7 +306,7 @@ db..createIndex( ### [Index Management](https://docs.mongodb.com/manual/tutorial/manage-indexes/) -```sh linenums="1" +```sh # view all db indexes db.getCollectionNames().forEach(function(collection) { indexes = db[collection].getIndexes(); @@ -343,7 +343,7 @@ handling connections, requests and persisting the data. ### Basic Shell Helpers -```sh linenums="1" +```sh db.() # database interaction db..() # collection interaction rs.(); # replica set deployment and management @@ -382,7 +382,7 @@ Log Verbosity Level: - `0`: Default Verbosity (Information) - `1 - 5`: Increases the verbosity up to Debug messages -```sh linenums="1" +```sh db.getLogComponents() # get components and their verbosity db.adminCommand({"getLog": ""}) # retrieve logs (getLog must be run on admin db -> adminCommand) db.setLogLevel(, ""); # set log level (output is OLD verbosity levels) @@ -408,7 +408,7 @@ Events captured by the profiler: > **Note**: Logs are saved in the `system.profile` _capped_ collection. -```sh linenums="1" +```sh db.setProfilingLevel(n) # set profiler level db.setProfilingLevel(1, { slowms: }) db.getProfilingStatus() # check profiler status @@ -456,7 +456,7 @@ Built-in Roles Groups and Names: - Backup/Restore: `backup`, `restore` - Super User: `root` -```sh linenums="1" +```sh db.createUser({ user: "", pwd: "", @@ -538,7 +538,7 @@ Variable syntax in aggregations: Filters the documents to pass only the documents that match the specified condition(s) to the next pipeline stage. -```sh linenums="1" +```sh db..aggregate([ { "$match": { "" } }, @@ -570,7 +570,7 @@ Passes along the documents with the requested fields to the next stage in the pi - [`$sum`][$sum_docs] - [`$avg`][$avg_docs] -```sh linenums="1" +```sh db..aggregate([ { "$project": { @@ -627,7 +627,7 @@ db..aggregate([ Adds new fields to documents (can be result of computation). `$addFields` outputs documents that contain _all existing fields_ from the input documents and newly added fields. -```sh linenums="1" +```sh db..aggregate({ { $addFields: { : , ... } } }) @@ -639,7 +639,7 @@ db..aggregate({ The $`group` stage separates documents into groups according to a "group key". The output is one document for each unique group key. -```sh linenums="1" +```sh db..aggregate([ { "$group": { @@ -658,7 +658,7 @@ db..aggregate([ Deconstructs an array field from the input documents to output a document for each element. Each output document is the input document with the value of the array field replaced by the element -```sh linenums="1" +```sh db..aggregate([ { "$unwind": "" } @@ -676,7 +676,7 @@ db..aggregate([ ### [`$count` Aggregation Stage][$count_docs] -```sh linenums="1" +```sh db..aggregate([ { "$count": "" } ]) @@ -686,7 +686,7 @@ db..aggregate([ ### [`$sort` Aggregation Stage][$sort_docs] -```sh linenums="1" +```sh db..aggregate([ { "$sort": { @@ -705,7 +705,7 @@ db..aggregate([ ### [`$skip` Aggregation Stage][$skip_docs] -```sh linenums="1" +```sh db..aggregate([ { "$skip": "" } ]) @@ -715,7 +715,7 @@ db..aggregate([ ### [`$limit` Aggregation Stage][$limit_docs] -```sh linenums="1" +```sh db..aggregate([ { "$limit": "" } ]) @@ -730,7 +730,7 @@ The `$lookup` stage adds a new array field to each input document. The new array > **Note**: To combine elements from two different collections, use the [`$unionWith`][$unionWith_docs] pipeline stage. -```sh linenums="1" +```sh db..aggregate([ { "$lookup": { @@ -753,7 +753,7 @@ Performs a recursive search on a collection, with options for restricting the se The collection on which the aggregation is performed and the `from` collection can be the same (in-collection search) or different (cross-collection search) -```sh linenums="1" +```sh db..aggregate([ { $graphLookup: { @@ -783,7 +783,7 @@ Each output document contains two fields: an `_id` field containing the distinct The documents are sorted by count in descending order. -```sh linenums="1" +```sh db..aggregate([ { $sortByCount: } ]) diff --git a/docs/databases/redis.md b/docs/databases/redis.md index df1436e..a130b89 100644 --- a/docs/databases/redis.md +++ b/docs/databases/redis.md @@ -10,14 +10,14 @@ Often Redis it is called a *data structure* server because it has outer key-valu ### Server Startup -```bash linenums="1" +```bash redis-server # start the server redis-cli ``` ### [Key-Value Pairs](https://redis.io/commands#generic) -```sh linenums="1" +```sh SET [ EX ] # store a key-value pair, TTL optional GET # read a key content EXISTS # check if a key exists @@ -40,7 +40,7 @@ PERSIST # make the key permanent A list is a series of ordered values. -```sh linenums="1" +```sh RPUSH ... # add one or more values to the end of the list LPUSH ... # add one or more values to the start of a list @@ -55,7 +55,7 @@ RPOP # remove and return the last item fro the list A set is similar to a list, except it does not have a specific order and each element may only appear once. -```sh linenums="1" +```sh SADD ... # add one or more values to the set (return 0 if values are already inside) SREM # remove the given member from the set, return 1 or 0 to signal if the member was actually there or not. SPOP # remove and return value from the set @@ -72,7 +72,7 @@ Sets are a very handy data type, but as they are unsorted they don't work well f A sorted set is similar to a regular set, but now each value has an associated score. This score is used to sort the elements in the set. -```sh linenums="1" +```sh ZADD # add a value with it's score ZRANGE # return a subset of the sortedSet @@ -84,7 +84,7 @@ ZRANGE # return a subset of the sortedSet Hashes are maps between string fields and string values, so they are the perfect data type to represent objects. -```sh linenums="1" +```sh HSET [ ... ] # set the string of a hash field HSETNX # set the value of a hash field, only if the field does not exist diff --git a/docs/databases/sql.md b/docs/databases/sql.md index 3504865..1870cbb 100644 --- a/docs/databases/sql.md +++ b/docs/databases/sql.md @@ -2,7 +2,7 @@ ## DDL -```sql linenums="1" +```sql show databases; -- mostra database CREATE DATABASE ; -- database creation use ; -- usa un database particolare @@ -16,7 +16,7 @@ show tables; -- mostra tabelle del database ### Table Creation -```sql linenums="1" +```sql CREATE TABLE (