Skip to content

Commit

Permalink
Merge branch 'github:main' into monitoring
Browse files Browse the repository at this point in the history
  • Loading branch information
shaedrich authored Oct 7, 2023
2 parents a213cd5 + 1da9722 commit 3fc5b81
Show file tree
Hide file tree
Showing 7 changed files with 35 additions and 5 deletions.
8 changes: 8 additions & 0 deletions collections/web-games/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
---
Expand Down
4 changes: 2 additions & 2 deletions topics/activitypub/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.
4 changes: 2 additions & 2 deletions topics/csv/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.
1 change: 1 addition & 0 deletions topics/database/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.
12 changes: 12 additions & 0 deletions topics/localstorage/index.md
Original file line number Diff line number Diff line change
@@ -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).
8 changes: 8 additions & 0 deletions topics/logging/index.md
Original file line number Diff line number Diff line change
@@ -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.
3 changes: 2 additions & 1 deletion topics/mongodb/index.md
Original file line number Diff line number Diff line change
@@ -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
Expand All @@ -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.

0 comments on commit 3fc5b81

Please sign in to comment.