blawsybogsy

joined 4 years ago
[–] blawsybogsy@lemmy.ml 3 points 5 months ago

looks like a lacrosse stick, or a crutch maybe?

[–] blawsybogsy@lemmy.ml 11 points 7 months ago

i'm so high i can see hotdogs grooving, smirking, and winking at me.

[–] blawsybogsy@lemmy.ml 1 points 7 months ago

maybe it can't be done? I think Jerboa doesn't implement, but i thought the web UI did...

14
submitted 7 months ago* (last edited 7 months ago) by blawsybogsy@lemmy.ml to c/lemmydev@lemm.ee
 

There's now a swagger documentation for the Lemmy API.

See also https://mv-gh.github.io/lemmy_openapi_spec/

 

I just implemented a user overview of mixed posts and comments, but I'm unsure how to do so while respecting sort (hot, new, old, etc.). Currently I merge the user's comments and posts into a list, then sort them all by timestamp.

Because sorting is handled on the server, and merging posts/comments happens after, I can't see how I can't respect sort and still merge the two sets. Does anyone have any pointers?

I expect a similar issue would arise for the unified inbox view also (replies, mentions, and private messages), although in that case there's less need to sort by anything other than recency.

EDIT: here's the relevant ts code in the official lemmy ui. it sorts by date if sort is new, which i already do, then otherwise it just sorts by "score".

https://github.com/LemmyNet/lemmy-ui/blob/79ed5903354067636f5eb9686ff0a005117bc541/src/shared/components/person/person-details.tsx#L245

[–] blawsybogsy@lemmy.ml 2 points 8 months ago

it'd be helpful to post to sth like masto yeah, as its much more public facing than matrix.

[–] blawsybogsy@lemmy.ml 1 points 9 months ago

you could take ask on the repo or ask the dev, they're obvs active on the fediverse. (poss relevant: https://github.com/superseriousbusiness/gotosocial/issues/1468.)

[–] blawsybogsy@lemmy.ml 1 points 9 months ago

ah i solved it, it's that the max_depth arg has no sane default, so a client needs to set it manually. currently the server has a hard 300 max value i think.

[–] blawsybogsy@lemmy.ml 3 points 9 months ago (1 children)

blocking instances for users was added in 0.19. it works like community block: you don't see any posts from an instance, but you can see the activity of users from that instance on any other instances where they do stuff.

https://github.com/LemmyNet/lemmy/pull/3869

[this is not an endorsement of deferating with any meta product. i believe in deplatforming hostile actors, which they've well and truly proven themselves to be.]

[–] blawsybogsy@lemmy.ml 1 points 9 months ago (1 children)

no one else is having issues with this?

[–] blawsybogsy@lemmy.ml 11 points 9 months ago

i read the page title, then looked at first result and it was mastodon.social and second was mstdn.social.

mayb for your site to match its title you want to not make "federated" the default status sort option?

 

currently my client displays child comments/replies to a given comment based on a get-comments request and the sort arg. if a child comment is returned by such a request, it will be included as part of the tree, but otherwise not. it means the child is subject to sorting itself.

but what is needed is that if a parent comment is displayed/returned by request/sort arg, all its children should be also. that seems to me to be how the webUI works also.

any tips on how to ensure that?

[–] blawsybogsy@lemmy.ml 2 points 10 months ago* (last edited 10 months ago)

EDIT: all good, I worked it out, I found some other api docs.

Is the ModeratorView listing type in this release? If so what feed view is it available in? I can't see it in the lemmy.ml webUI at the moment, nor in the API docs, but the code is merged.

[–] blawsybogsy@lemmy.ml 18 points 10 months ago* (last edited 10 months ago) (2 children)

(or a b)

i never thought of lisp as concise before

 

Is there anywhere that lemmy's various types of internal links are documented? like !community links @user links, links of the form https://lemmy.com/c/community@otherinstance.net. i have also seen links that just have "/c/community@otherinstance.net"... at the moment i'm only developing rendering code for them as i happen upon them, which is ad-hoc

 

Or is it documented? with mastodon, i set up clients to always load URLs in my app if they resembled masto-compatible URLS. I'm unsure how to go about this with lemmy. the lemmy-js-client "documentation" makes no mention of webfinger at all, though the lemmy repos have PRs fixing it.

 

The Limit property is just a number, but it is different for different API endpoints. I'd like to have a list of the different values so i can easily stay within the max for each endpoint. Are the values documented somewhere? From the official js-client docs site, not even a given endpoint documents its maximum.

 

i have requests to fetch comment and post data, but i'm struggling to work out how to build a tree from the responses? do i fetch comments with arg parent_id to get a comment's children, and do so recursively for those comments returned that themselves have comments?

view more: next ›