Skip to content

Commit 3d8a738

Browse files
authored
Merge branch 'github:main' into f-droid
2 parents 941097a + 1da9722 commit 3d8a738

File tree

7 files changed

+35
-5
lines changed

7 files changed

+35
-5
lines changed

collections/web-games/index.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,14 @@ items:
66
- AlexNisnevich/untrusted
77
- doublespeakgames/adarkroom
88
- Hextris/hextris
9+
- mrbid/Cubes2
10+
- mrbid/Snowboarder
11+
- mrbid/Snowling
12+
- mrbid/SNOWBALL2
13+
- mrbid/SpaceMiner
14+
- mrbid/FractalAttackOnlineLite
15+
- mrbid/CoinPusher
16+
- mrbid/TuxPusher
917
display_name: Web games
1018
created_by: leereilly
1119
---

topics/activitypub/index.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,10 @@
22
display_name: ActivityPub
33
github_url: https://github.com/w3c/activitypub
44
logo: activitypub.png
5-
related: api, decentralized, federated, protocol, social-network, w3c
5+
related: api, decentralized, federated, protocol, social-network, w3c, federation, mastodon, lemmy, json-ld
66
short_description: ActivityPub is an open, decentralized social networking protocol.
77
topic: activitypub
88
url: https://activitypub.rocks/
99
wikipedia_url: https://en.wikipedia.org/wiki/ActivityPub
1010
---
11-
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.
11+
**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.

topics/csv/index.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
display_name: CSV
33
short_description: A CSV file stores tabular data in a delimited text file that uses commas to separate the values.
44
topic: csv
5-
related: tsv
5+
related: tsv, rfc-4180, data-exchange, tabular-data, spreadsheet, dsv, flat-file
66
wikipedia_url: https://en.wikipedia.org/wiki/Comma-separated_values
77
---
8-
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.
8+
**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.

topics/database/index.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,5 +6,6 @@ short_description: A database is a structured set of data held in a computer, us
66
topic: database
77
logo: database.png
88
wikipedia_url: https://en.wikipedia.org/wiki/Database
9+
related: dbms, sql, relational-database, nosql, document-oriented, in-memory-database, data-warehouse, graphdb, spatial-database, crud
910
---
1011
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.

topics/localstorage/index.md

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
---
2+
aliases: local-storage
3+
display_name: LocalStorage
4+
short_description: LocalStorage is a JavaScript object that allows storing arbitrary key-value pairs in the web browser as an alternative to cookies.
5+
topic: localstorage
6+
url: https://html.spec.whatwg.org/multipage/webstorage.html#dom-localstorage-dev
7+
wikipedia_url: https://en.wikipedia.org/wiki/Web_storage
8+
related: sessionstorage, indexeddb, websql, web-storage, webstorage
9+
---
10+
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.
11+
12+
`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).

topics/logging/index.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
---
2+
aliases: event-logging, data-logging, application-logging, system-logging, error-logging, audit-trail, logging-framework, log-analysis
3+
display_name: Logging
4+
short_description: Logging is your software's way of keeping a record, like a journal, documenting events and errors for future reference.
5+
topic: logging
6+
wikipedia_url: https://en.wikipedia.org/wiki/Logging_(computing)
7+
---
8+
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.

topics/mongodb/index.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
---
2-
aliases: mongodb-database
2+
aliases: mongodb-database, mongo, mongo-db
33
created_by: MongoDB Inc.
44
display_name: MongoDB
55
github_url: https://github.com/mongodb
@@ -9,5 +9,6 @@ short_description: MongoDB is an open source NoSQL document-oriented database.
99
topic: mongodb
1010
url: https://www.mongodb.com/
1111
wikipedia_url: https://en.wikipedia.org/wiki/MongoDB
12+
related: nosql, no-sql, document-oriented-database, database
1213
---
1314
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 commit comments

Comments
 (0)