Is this a robot.txt alternative?
- 41 Posts
- 329 Comments
matcha_addict@lemy.lolto
Games@lemmy.world•Weekly Recommendations Thread: What are you playing this week?English
2·4 months agoFinal Fantasy: strangers of paradise
It has a co-op mode (up to 3 players), which is a huge plus for me.
Whats great:
- variety of weapons and combat styles
- aesthetics
- Variety of enemies
- co-op mode
Whats decent:
- combat
- character customizations
- level design
Whats meh:
- exploration and rewards
Whats not good
- story. Wasn’t really interesting and some parts I didn’t understand.
Overall I really enjoyed it, because not many coop games I can play with loved ones.
The reason is because company decisions are largely driven by investors, and investors want their big investments in AI to return something.
Investors want constant growth, even if it must be shoehorned.
If you just make it public it wouldn’t be an announcement, and it wouldn’t have the irreplaceable first impression effect that you fear, because the only people who will see it are the very curious ones like I am.
At least explain to us what it’s all about if you won’t post it. I would love to know and see if I would be interested in contributing!
matcha_addict@lemy.lolto
Fediverse@lemmy.world•I totally missed the point when PeerTube got so goodEnglish
2·5 months agoI don’t want to watch the people who aspire to do it as a job. They saw some influences online who are profit driven and think they can get similarly rich. Many see it as an easy job (it’s not).
I want to watch people motivated by their thirst for creativity and sharing knowledge, and if money comes their way they will see it as secondary. I would prefer them to do something else as a job.
matcha_addict@lemy.lolOPto
Fediverse@lemmy.ml•[Technical] Why not Fanout via static files or CDNs in the Fediverse?English
1·5 months agobringing up RSS feeds is actually very good, because although you can paginate or partition your feeds, I have never seen a feed that does that, even when they have decades of history. But if needed, partioning is an option so you don’t have to pull all of its posts but only recent ones, or by date/time range.
I would also respectfully disagree that people don’t subscribe to 100’s of RSS feeds. I would bet most people who consistently use RSS feed readers will have more than 100 feeds, me included.
And last, even if you follow 10,000, yes it would require a lot more time than reading from a single database, but it is still on the order of double digit seconds at most. If you compare 10,000 static file fetches with 10,000 database writes across different instances, I think the static files would fare better. This isn’t to mention that you are more likely to have to write more than read more (users with 100k followers are far more common than users with 100k subscriptions)
And just to emphasize, I do agree that double digit seconds would be quite long for a user’s loading time, which is why I would expect to fetch regularly so the user logs onto a pre made news feed.
matcha_addict@lemy.lolOPto
Fediverse@lemmy.ml•[Technical] Why not Fanout via static files or CDNs in the Fediverse?English
1·5 months agoSure, but constantly having to do it is not really a bad thing, given it is automated and those reads are quite inexpensive compared to a database query. It’s a lot easier to handle heavy loads when serving static files.
matcha_addict@lemy.lolOPto
Fediverse@lemmy.ml•[Technical] Why not Fanout via static files or CDNs in the Fediverse?English
1·5 months agoYes, precisely. The existing implementation in the Fediverse does the opposite: everyone you follow has to insert their posts into the feed of everyone that follows them, which has its own issues.
matcha_addict@lemy.lolOPto
Fediverse@lemmy.ml•[Technical] Why not Fanout via static files or CDNs in the Fediverse?English
3·5 months agoOh my bad, I can explain that.
Before I do, one benefit of this method is that your timeline is entirely up to your client. Your instance becomes primarily tasked with making your posts available, and clients have the freedom of implementing the reading and news feed / timeline formation.
Hence, there are a few ways to do this. The best one is probably a mix of those.
Naive approach: fetch posts and build news feed when user requests it
This is not a good approach, but I mention it first because it’ll make explaining the next one easier.
- User opens app or website, thereby requesting their timeline / news feed
- server fetches list of user’s subscriptions and followees
- for each followee or subscription, server fetches their content via their static file wherever they are hosted
- server performs whatever filtering and ordering of content they want
- user sees the result
Cons: loading time for the user may be long, depending on how many subscriptions they have it could be several seconds. P90 may even be in double digits.
Better approach: pre-build user’s timeline periodically.
Think like a periodic job (hourly, or every 10 min, etc) , which fetches posts in a similar manner as described above, but instead of doing it when user requests it, it is done in advance
Pros:
- fast loading time compared to previous solution
- when the job runs, if users on the same instance share a followee or subscription, we don’t have to query it twice (This benefit already exists on current fediverse implementations) Cons: posts aren’t real-time, delayed by the batch job frequency.
Best approach: hybrid
In this approach, we primarily do the second method, to achieve fast loading time. But to get more up-to-date content, we also simultaneously fetch the latest in the background, and interleave or add the latest posts as the user scrolls.
This way we get both fast initial load times and recent posts.
Surely there’s other good approaches. As I said in the beginning, clients have the freedom to implement this however they like.
matcha_addict@lemy.lolOPto
Fediverse@lemmy.ml•[Technical] Why not Fanout via static files or CDNs in the Fediverse?English
1·5 months ago- I write a post, and send a request to the server to publish it
- The server takes the post and preprends it to the file housing all my posts
- Now, when someone requests my posts, they will see my new one
If a CDN is involved, we would have to properly take care of the invalidations and what not. We would have to run a batch process to update the CDN files, so that we are not doing it too often, but doing it every minute or so is still plenty fast for social media use cases.
Have to emphasize that I am not expert, so I may be missing a big pitfall here.
matcha_addict@lemy.lolto
Fediverse@lemmy.world•Tumblr’s move to WordPress and fediverse integration is ‘on hold’English
4·6 months agoIt’s just less hyped now compared to days of reddit API change and Twitter going to Elon Musk.
matcha_addict@lemy.lolto
Fediverse@lemmy.world•list of some instances i found from some languages (not complete)English
7·6 months agoStill waiting for an Arabic lemmy 😔
matcha_addict@lemy.lolOPto
Fediverse@lemmy.world•Building A Multi-Platform Feed Reader App - is it Worthwhile?English
2·6 months agoIt seems it does, but when I tried it it didn’t work very well. I don’t remember why, but it wasn’t exactly what I hoped.
matcha_addict@lemy.lolOPto
Fediverse@lemmy.world•Building A Multi-Platform Feed Reader App - is it Worthwhile?English
1·6 months agoWhere? Please show me as I’d rather contribute to or fork existing projects
matcha_addict@lemy.lolto
Fediverse@lemmy.world•Best place for a community alternative to Facebook group?English
1·6 months agoFriendica does
matcha_addict@lemy.lolOPto
Fediverse@lemmy.world•Building A Multi-Platform Feed Reader App - is it Worthwhile?English
3·6 months agoEmail is a great addition, I didn’t consider that one. Thanks for that!
I’d love to add reddit and other big social medias even, but their restrictive access policies aren’t very promising.
matcha_addict@lemy.lolto
Android@lemdro.id•OnePlus will ditch Alert Slider across 'all' its new smartphones alongside major AI pushEnglish
2·7 months agoWho split?
matcha_addict@lemy.lolto
Selfhosted@lemmy.world•Android Password Store is back on F-DroidEnglish
4·7 months agoIs this an alternative to bitwarden and keepass? Is it better in terms of security?
matcha_addict@lemy.lolOPto
Fediverse@lemmy.world•An open (or federated) searchable catalog of hikes and hiking trails (alltrails alternative)?English
3·7 months agoFor the mid Atlantic area there’s “hiking upward”, it’s pretty awesome.


I tried using bubble wrap for this purpose, but it’s too difficult and doesn’t seem to target this use case.