Skip to content

Commit 5b443b6

Browse files
authored
Merge branch 'main' into design-system
2 parents ac17faf + ee51e0d commit 5b443b6

File tree

16 files changed

+96
-10
lines changed

16 files changed

+96
-10
lines changed

collections/clean-code-linters/index.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -33,6 +33,7 @@ items:
3333
- pmd/pmd
3434
- diffplug/spotless
3535
- spotbugs/spotbugs
36+
- trunk-io/plugins
3637
display_name: Clean code linters
3738
created_by: holman
3839
---

collections/voxel-editors/index.md

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
---
2+
items:
3+
- woxels/Woxel
4+
- guillaumechereau/goxel
5+
- emilk/sproxel
6+
- grking/zoxel
7+
- mgerhardy/vengi
8+
- Perkovec/Vuxel
9+
- GaidamakUA/Voxenko
10+
- gerardparareda/BlockyTracer
11+
- Bequen/GridEditor
12+
- honestabelink/stonevox3d
13+
- jval1972/DD_VOXEL
14+
- cubzh/cubzh
15+
- nimadez/voxel-builder
16+
- matpow2/voxie
17+
- rubenwardy/NodeBoxEditor
18+
- chrmoritz/Troxel
19+
- zakorgy/voxel-editor
20+
- simlu/voxelshop
21+
display_name: Voxel Editors
22+
---
23+
Software to design and edit 3D voxel files, this list is only for standalone software and not extensions/plugins/addons to existing software. This is list is NOT to be used to list software that is not designed to be Voxel First software - this means that if software has Voxel capabilities on the side and was not originally intended/designed to be used for Voxel editing then is not suitable for this list.
14.8 KB
Loading

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/ecmascript/index.md

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,9 +4,11 @@ created_by: Brendan Eich, Ecma International
44
display_name: ECMAScript
55
github_url: https://github.com/tc39
66
logo: ecmascript.png
7-
short_description: ECMAScript is the standards organization behind JavaScript.
7+
short_description: ECMAScript is the language standard behind JavaScript and other, similar languages.
88
topic: ecmascript
99
url: http://www.ecma-international.org/
1010
wikipedia_url: https://en.wikipedia.org/wiki/ECMAScript
11+
related: ecma-262, javascript, js, actionscript, jscript, qtscript, inscript, google-apps-script, nodejs
12+
released: June 1997
1113
---
12-
ECMAScript is the standardization of the family of scripting languages that includes JavaScript. New versions of the standard are released every year.
14+
**ECMAScript** is the standardization of the family of scripting languages that includes JavaScript. New versions of the standard are released every year. It is standardized by Ecma International. ECMAScript is commonly used for client-side scripting on the World Wide Web, and it is increasingly being used to write server-side applications and services using Node.js and other runtime environments. The ECMAScript language includes [structured](https://github.com/topics/structured-programming), [dynamic](https://github.com/topics/dynamic-programmng), [functional](https://github.com/topics/functional-programming), and prototype-based features.

topics/eloquent/index.md

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
---
2+
display_name: Eloquent ORM
3+
short_description: Eloquent is an ORM which is part of the Laravel framework.
4+
aliases: eloquent-orm
5+
topic: eloquent
6+
related: laravel, orm, moloquent
7+
url: https://laravel.com/docs/eloquent
8+
---
9+
**Eloquent** is an ORM which is part of the Laravel framework. When using Eloquent, each database table has a corresponding "Model" that is used to interact with that table. Eloquent models are usually stored in `app/Models` and extend from Laravel's model base class `Illuminate\Database\Eloquent\Model`. In addition to retrieving records from the database table, Eloquent models allow you to insert, update, and delete records from the table as well.

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/matlab/matlab.png

-20.7 KB
Loading

0 commit comments

Comments
 (0)