Sjmarf
spoiler
Hello world
- 72 Posts
- 25 Comments
r/MenAndFemales
There is no Lemmy equivalent
Sjmarf@sh.itjust.worksto
Fediverse@lemmy.world•No wonder Reddit has turned to shitEnglish
8·7 months agoELI5:
ChatGPT can search Google to give better answers. Reddit threads often appear as top search results.
Let’s say you work in marketing at a chocolate company. You can use this guy’s script to find Reddit posts that ChatGPT might read when someone asks it about chocolate. The script replies to each post and praises your chocolate, specifically.
When ChatGPT reads the thread, it might tell people about your chocolate.
The Lemmy UI doesn’t allow you to see others’ private messages, no, but you shouldn’t consider them to be private. It’s possible for instance admins to read them, and in the past there’s been exploits allowing anyone to read them. If you need more secure messaging, use Matrix instead.
Yes. This is the Armor 33 Pro by Ulefone. It’s got a 25500mAh battery.
Sjmarf@sh.itjust.worksto
Fediverse@lemmy.world•Are there any Lemmy/Mbin instances by women for women?English
1332·1 year agoCommunity-wise there’s !WomensStuff@lazysoci.al
Sjmarf@sh.itjust.worksto
Lemmy@lemmy.ml•I read somewhere that lemmy is planning to edit links so that they point to your instance, how will this be handled?English
10·1 year agoYou can read up on the conversation on the GitHub issue here.
TL;DR: the current system on the (unreleased) 1.0 codebase is that your Lemmy instance will replace all Lemmy URLs in posts/comments with the equivalent URLs on your own instance. In the issue I linked, some concerns are raised about this system and various other options are discussed. It’s possible that the way it works will change before Lemmy 1.0 is released.
Sjmarf@sh.itjust.worksto
Lemmy@lemmy.ml•Is there a way on Lemmy to hide/filter posts with chosen keywords?English
7·1 year agoLemmy doesn’t support this natively, but many clients do. Off the top of my head:
- Tesseract (desktop)
- Voyager (web frontend designed for mobile. I believe you need to install the app rather than using the website to use keyword filters)
- Mlem (iOS)
- Arctic (iOS)
- Thunder (Android & iOS)
- Sync (Android; I’ve heard Sync is unmaintained though)
Assuming you’re on desktop, Tesseract is probably your best bet. It might also be possible to get Voyager working. Some instances (like sh.itjust.works) run their own Tesseract instances (https://tesh.itjust.works/), but lemm.ee doesn’t. You’d have to use some other Tesseract instance, specifically one that allows connecting to any Lemmy instance (https://tesh.itjust.works/ is for sh.itjust.works accounts only). E.g. https://tesseract.dubvee.org/
Sjmarf@sh.itjust.worksto
Fediverse@lemmy.world•Lemmy Just Broke the 54k MAU Record Set During the 2023 API Exodus!English
22·1 year agoThe change was merged in Dec 2023 (see here). The Reddit Exodus was in summer 2023.
Sjmarf@sh.itjust.worksto
Fediverse@lemmy.world•Lemmy Just Broke the 54k MAU Record Set During the 2023 API Exodus!English
147·1 year agoWorth noting is that what counts as an “active user” has changed between now and then. During the Reddit API exodus, an “active user” was a user who had posted or commented in the past month. Now, it includes users who have voted. If the 54k MAU record was set using the first algorithm, it is likely that the MAU using the new algorithm (which includes voting) would have been much higher.
Sjmarf@sh.itjust.worksto
Selfhosted@lemmy.world•Can you login to the mobile apps with selfhosted Lemmy?English
2·2 years agoMobile apps should allow you to log into any instance. My Lemmy client won’t connect to lemmy.rip either, and fails with the following error:
The certificate for this server is invalid. You might be connecting to a server that is pretending to be “lemmy.rip”, which could put your confidential information at risk.This is also what I see when I try to connect to
lemmy.ripin the browser:
I am able to bypass this warning and see the site in the browser.
Toy = Spielzeug = Play Stuff
English has “plaything”, which is kinda similar.
Sjmarf@sh.itjust.worksto
MeanwhileOnGrad@sh.itjust.works•Not believing that half of hexbear users are trans = transphobicEnglish
101·2 years agoMost mobile clients allow you to hide posts that contain a certain keyword in their title. Here’s a non-exhaustive list of clients that support keyword filtering off the top of my head:
- Voyager (multiplatform; I believe you need to have the app because the option doesn’t show up on the website for me)
- Mlem (iOS)
- Arctic (iOS)
- Thunder (Android)
- Sync (Android)
I don’t know of any that can hide posts with a keyword mentioned in any of the post’s comments; doing so would require the client to make a lot of extra API requests.
Sjmarf@sh.itjust.worksto
Fediverse@lemmy.world•Decentralized Instagram alternative Pixelfed launches mobile appsEnglish
25·2 years agoIt has a dark mode now (on iOS, at least. Maybe they’ve got a different codebase for Android)Edit: Scratch that. Only the login flow has dark mode.
Sjmarf@sh.itjust.worksto
Lemmy@lemmy.ml•Should sort by "controversial" and "most comments" include a time range?English
12·2 years agoHere’s the relevant issue on the GitHub repo: https://github.com/LemmyNet/lemmy/issues/4340
Sjmarf@sh.itjust.worksto
MeanwhileOnGrad@sh.itjust.works•Hexbear's admin twisting reality (and we haven't defederated them yet 😋)English
6·2 years agoUnfortunately it looks like SubLinks is mostly dead. They haven’t made any changes to the code since August















Paste the link in the search bar of another instance. If the post is cached, it’ll return it. Ideally, use the link to the post on the original instance, rather than the link to the post on another instance.
Technical answer:
Instances store posts from other instances. Every post on the fediverse has a unique ID called the “actor ID”. The actor ID of a post is the URL of the post on the instance of the user that authored the post. On the Lemmy web UI, you can retrieve this by right-clicking on the rainbow star icon below any post and copying the link.
To retrieve the details for a cached post, you can call
resolve_object?q=<actor-id>. For example:https://sh.itjust.works/api/v3/resolve_object?=https%3A%2F%2Flemmings.world%2Fpost%2F41938713
For convenience, the Lemmy UI calls this when you paste a URL in the search bar.
This can work for any URL that points to the post, but you should use the actor ID where possible. The Lemmy backend knows the actor ID of every post it has, but it may not know whichever URL you’re querying with, and you may get a null result when the post is cached.
I hope this helps.