Fixing CI missing links. (#177)

* Fixing CI missing links.

* Organizing resources.
This commit is contained in:
Dessalines 2023-05-13 15:56:44 -04:00 committed by GitHub
parent 17218d5eff
commit fce0210cdf
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 25 additions and 14 deletions

View file

@ -18,7 +18,7 @@ This contains extras not in the [API docs](/api).
**GET example** **GET example**
The current api `{version}` is [here](https://github.com/LemmyNet/lemmy-js-client/blob/main/src/interfaces/others.ts#L1). The current api `{version}` is [here](https://github.com/LemmyNet/lemmy-js-client/blob/main/src/types/others.ts#L1).
``` ```
curl "http://localhost:8536/api/{version}/community/list?sort=Hot"` curl "http://localhost:8536/api/{version}/community/list?sort=Hot"`

View file

@ -1,31 +1,42 @@
# Resources / Libraries # Resources / Libraries
## Rust
- [Diesel to Postgres data types](https://kotiri.com/2018/01/31/postgresql-diesel-rust-types.html) - [Diesel to Postgres data types](https://kotiri.com/2018/01/31/postgresql-diesel-rust-types.html)
- [helpful diesel examples](http://siciarz.net/24-days-rust-diesel/) - [helpful diesel examples](http://siciarz.net/24-days-rust-diesel/)
- [Recursive query for adjacency list for nested comments](https://stackoverflow.com/questions/192220/what-is-the-most-efficient-elegant-way-to-parse-a-flat-table-into-a-tree/192462#192462) - [Rust JWT](https://github.com/Keats/jsonwebtoken)
- https://github.com/sparksuite/simplemde-markdown-editor - [Rust docker build](https://shaneutt.com/blog/rust-fast-small-docker-image-builds/)
## Typescript
- [Markdown-it](https://github.com/markdown-it/markdown-it) - [Markdown-it](https://github.com/markdown-it/markdown-it)
- [Sticky Sidebar](https://stackoverflow.com/questions/38382043/how-to-use-css-position-sticky-to-keep-a-sidebar-visible-with-bootstrap-4/49111934) - [Sticky Sidebar](https://stackoverflow.com/questions/38382043/how-to-use-css-position-sticky-to-keep-a-sidebar-visible-with-bootstrap-4/49111934)
- [RXJS websocket](https://stackoverflow.com/questions/44060315/reconnecting-a-websocket-in-angular-and-rxjs/44067972#44067972) - [RXJS websocket](https://stackoverflow.com/questions/44060315/reconnecting-a-websocket-in-angular-and-rxjs/44067972#44067972)
- [Rust JWT](https://github.com/Keats/jsonwebtoken) - [Simple markdown editor](https://github.com/sparksuite/simplemde-markdown-editor)
- [Hierarchical tree building javascript](https://stackoverflow.com/a/40732240/1655478)
- [Hot sorting discussion](https://meta.stackexchange.com/questions/11602/what-formula-should-be-used-to-determine-hot-questions) [2](https://medium.com/hacking-and-gonzo/how-reddit-ranking-algorithms-work-ef111e33d0d9)
- [Classification types.](https://www.reddit.com/r/ModeratorDuck/wiki/subreddit_classification)
- [RES expando - Possibly make this into a switching react component.](https://github.com/honestbleeps/Reddit-Enhancement-Suite/tree/d21f55c21e734f47d8ed03fe0ebce5b16653b0bd/lib/modules/hosts)
- [Temp Icon](https://www.flaticon.com/free-icon/mouse_194242)
- [Rust docker build](https://shaneutt.com/blog/rust-fast-small-docker-image-builds/)
- [Zurb mentions](https://github.com/zurb/tribute) - [Zurb mentions](https://github.com/zurb/tribute)
- [TippyJS](https://github.com/atomiks/tippyjs) - [TippyJS](https://github.com/atomiks/tippyjs)
### Trees
- [Hierarchical tree building javascript](https://stackoverflow.com/a/40732240/1655478)
- [Recursive query for adjacency list for nested comments](https://stackoverflow.com/questions/192220/what-is-the-most-efficient-elegant-way-to-parse-a-flat-table-into-a-tree/192462#192462)
## Sorting
- [Hot sorting discussion](https://meta.stackexchange.com/questions/11602/what-formula-should-be-used-to-determine-hot-questions) [2](https://medium.com/hacking-and-gonzo/how-reddit-ranking-algorithms-work-ef111e33d0d9)
## SQL
- [SQL function indexes](https://sorentwo.com/2013/12/30/let-postgres-do-the-work.html) - [SQL function indexes](https://sorentwo.com/2013/12/30/let-postgres-do-the-work.html)
# ActivityPub Resources ## ActivityPub Resources
## Official Documents ### Official Documents
- [ActivityPub standard](https://www.w3.org/TR/activitypub/) - [ActivityPub standard](https://www.w3.org/TR/activitypub/)
- [Activitypub vocabulary](https://www.w3.org/TR/activitystreams-vocabulary/) - [Activitypub vocabulary](https://www.w3.org/TR/activitystreams-vocabulary/)
## Explanations ### Explanations
- [ActivityPub - one protocol to rule them all?](https://schub.io/blog/2018/02/01/activitypub-one-protocol-to-rule-them-all.html) - [ActivityPub - one protocol to rule them all?](https://schub.io/blog/2018/02/01/activitypub-one-protocol-to-rule-them-all.html)
- [A highly opinionated guide to learning about ActivityPub](https://tinysubversions.com/notes/reading-activitypub/) - [A highly opinionated guide to learning about ActivityPub](https://tinysubversions.com/notes/reading-activitypub/)
@ -35,7 +46,7 @@
- [Data storage questions](https://socialhub.activitypub.rocks/t/data-storage-questions/579) - [Data storage questions](https://socialhub.activitypub.rocks/t/data-storage-questions/579)
- [Activitypub as it has been understood](https://flak.tedunangst.com/post/ActivityPub-as-it-has-been-understood) - [Activitypub as it has been understood](https://flak.tedunangst.com/post/ActivityPub-as-it-has-been-understood)
## Examples and Libraries ### Examples and Libraries
- [activitypub-federation-rust library](https://crates.io/crates/activitypub-federation) - [activitypub-federation-rust library](https://crates.io/crates/activitypub-federation)
- [ActivityPub example server](https://github.com/tOkeshu/activitypub-example) - [ActivityPub example server](https://github.com/tOkeshu/activitypub-example)