diff --git a/collections/web-games/index.md b/collections/web-games/index.md index 8b30c86c0fa..60200252f0a 100644 --- a/collections/web-games/index.md +++ b/collections/web-games/index.md @@ -6,6 +6,14 @@ items: - AlexNisnevich/untrusted - doublespeakgames/adarkroom - Hextris/hextris + - mrbid/Cubes2 + - mrbid/Snowboarder + - mrbid/Snowling + - mrbid/SNOWBALL2 + - mrbid/SpaceMiner + - mrbid/FractalAttackOnlineLite + - mrbid/CoinPusher + - mrbid/TuxPusher display_name: Web games created_by: leereilly --- diff --git a/topics/activitypub/index.md b/topics/activitypub/index.md index c07774beb32..f955db6bfbf 100644 --- a/topics/activitypub/index.md +++ b/topics/activitypub/index.md @@ -2,10 +2,10 @@ display_name: ActivityPub github_url: https://github.com/w3c/activitypub logo: activitypub.png -related: api, decentralized, federated, protocol, social-network, w3c +related: api, decentralized, federated, protocol, social-network, w3c, federation, mastodon, lemmy, json-ld short_description: ActivityPub is an open, decentralized social networking protocol. topic: activitypub url: https://activitypub.rocks/ wikipedia_url: https://en.wikipedia.org/wiki/ActivityPub --- -ActivityPub is a decentralized social networking protocol standardized by the World Wide Web Consortium (W3C). It includes both an API for social networking clients and an API for server-server federation. +**ActivityPub** is a decentralized social networking protocol standardized by the World Wide Web Consortium (W3C). It includes both an API for social networking clients and an API for server-server federation. diff --git a/topics/csv/index.md b/topics/csv/index.md index bcb75fe7e0e..300a77f9fd8 100644 --- a/topics/csv/index.md +++ b/topics/csv/index.md @@ -2,7 +2,7 @@ display_name: CSV short_description: A CSV file stores tabular data in a delimited text file that uses commas to separate the values. topic: csv -related: tsv +related: tsv, rfc-4180, data-exchange, tabular-data, spreadsheet, dsv, flat-file wikipedia_url: https://en.wikipedia.org/wiki/Comma-separated_values --- -CSV is a common data exchange format that stores tabular data in a plain text file. A CSV file stores the data in a delimited text file that uses commas to separate the values. +**CSV** is a common data exchange format that stores tabular data in a plain text file. A CSV file stores the data in a delimited text file that uses commas to separate the values. diff --git a/topics/database/index.md b/topics/database/index.md index d9787e27df5..4d200126268 100644 --- a/topics/database/index.md +++ b/topics/database/index.md @@ -6,5 +6,6 @@ short_description: A database is a structured set of data held in a computer, us topic: database logo: database.png wikipedia_url: https://en.wikipedia.org/wiki/Database +related: dbms, sql, relational-database, nosql, document-oriented, in-memory-database, data-warehouse, graphdb, spatial-database, crud --- A database is a structured set of data held in a computer, most often a server. Databases use a database management system (DBMS) that interacts with users, similar to a lookup table. Modern databases are designed to allow for creation, querying, updating, and administration of the data it holds. diff --git a/topics/localstorage/index.md b/topics/localstorage/index.md new file mode 100644 index 00000000000..ac127a1c77b --- /dev/null +++ b/topics/localstorage/index.md @@ -0,0 +1,12 @@ +--- +aliases: local-storage +display_name: LocalStorage +short_description: LocalStorage is a JavaScript object that allows storing arbitrary key-value pairs in the web browser as an alternative to cookies. +topic: localstorage +url: https://html.spec.whatwg.org/multipage/webstorage.html#dom-localstorage-dev +wikipedia_url: https://en.wikipedia.org/wiki/Web_storage +related: sessionstorage, indexeddb, websql, web-storage, webstorage +--- +LocalStorage is a JavaScript object that allows storing arbitrary key-value pairs in the web browser as an alternative to cookies—another alternative if the data in question goes beyond key-value pairs is to use the IndexedDB. + +`localStorage` data is specific to the protocol of the document. In particular, for a site loaded over HTTP (e.g., http://example.com), `localStorage` returns a different object than `localStorage` for the corresponding site loaded over HTTPS (e.g., https://example.com). diff --git a/topics/logging/index.md b/topics/logging/index.md new file mode 100644 index 00000000000..62b3c3ee2fe --- /dev/null +++ b/topics/logging/index.md @@ -0,0 +1,8 @@ +--- +aliases: event-logging, data-logging, application-logging, system-logging, error-logging, audit-trail, logging-framework, log-analysis +display_name: Logging +short_description: Logging is your software's way of keeping a record, like a journal, documenting events and errors for future reference. +topic: logging +wikipedia_url: https://en.wikipedia.org/wiki/Logging_(computing) +--- +In computing, logging is the act of keeping a log of events that occur in a computer system, such as problems, errors or just information on current operations. diff --git a/topics/mongodb/index.md b/topics/mongodb/index.md index af049a62700..430426bfd81 100644 --- a/topics/mongodb/index.md +++ b/topics/mongodb/index.md @@ -1,5 +1,5 @@ --- -aliases: mongodb-database +aliases: mongodb-database, mongo, mongo-db created_by: MongoDB Inc. display_name: MongoDB github_url: https://github.com/mongodb @@ -9,5 +9,6 @@ short_description: MongoDB is an open source NoSQL document-oriented database. topic: mongodb url: https://www.mongodb.com/ wikipedia_url: https://en.wikipedia.org/wiki/MongoDB +related: nosql, no-sql, document-oriented-database, database --- MongoDB is an open source NoSQL document-oriented database. MongoDB allows flexible schema representation instead of relying on fixed tables and columns. It supports full indexing, query, aggregation, tunable consistency and durability levels, and linear horizontal scaling through sharding.