I live in Spain, the cost of living here is much cheaper than Germany or especially the United States. I also dont need luxuries, and have enough money saved to last for a while. If donations are not enough I could always work for some company, and spend less time on Lemmy.
Lemmy maintainer
- 36 Posts
- 147 Comments
African or European swallow?
The upload function is mainly meant for images, like others said its better to use external sites for video uploads. Integrating upload to those remote sites seems like a lot of work for little benefit though.
Exactly, the more time goes by the better Lemmy will get. For sites like Reddit or now Digg its much easier to do marketing and get a quick user growth, but when they have problems then users will move to Lemmy.
Not that I know of, only some open source projects as mentioned by others.
You can export your settings, community follows etc and import them in another instance. Moving your existing posts and comments doesnt work well with federation.
This is currently work in progress.
The stack is great, I wouldnt want to change anything. Postgres is very mature and performant, with a high focus on correctness. It can sometimes be difficult to optimize queries, but there are wizards like @dullbananas@lemmy.ca who know how to do that. Anyway there is no better alternative that I know of. Rust is also great, just like Postgres it is very performant and has a focus on correctness. Unlike most programming languages it is almost impossible to get any runtime crashes, which is very valuable for a webservice.
The high performance means that less hardware is required to host a given number of users, compared to something like NodeJS or PHP. For example when kbin.social was popular, I remember it had to run on multiple beefy servers. Meanwhile lemmy.ml is still running on a single dedicated server, with much more active users. Or Mastodon having to handle incoming federation activities in background tasks which makes the code more complicated, while Lemmy can process them directly in the HTTP handler.
Nevertheless, scaling for more users always has its surprises. I remember very early in development, Lemmy wasnt able to handle more than a dozen requests per second. Turns out we only used a single database connection instead of a connection pool, so each db query was running after that last one was finished, which of course is very slow. It seems obvious in retrospect, but you never notice this problem until there are a dozen or so users active at the same time.
With the Reddit migration two years ago a lot of performance problems came up, as active users on Lemmy suddenly grew around 70 times. You can see some of that in the 0.18.x release announcements. One part of the solution was to add missing database indexes. Another was to remove websocket support, which was keeping a connection open for each user. That works fine with 100 users, but completely breaks down with 1000 or more.
After all there is nothing I would do different really. It would have been good to know about these scaling problems earlier, but thats impossible. In fact for my project Ibis (federated wiki) Im using the exact same architecture as Lemmy.
- There is no specific maximum capacity, in theory it can scale indefinitely with horizontal scaling. Also see my reply here regarding scaling.
- 0.19.10 already includes a fix to remove private messages when a user gets banned which should help a lot. There is an issue about disabling private messages by default, but Im not sure if that will be necessary. Also 1.0 will include a plugin system, so other devs and instance admins can write their own checks. That way spam waves can be fought in a more flexible way, without having to get a change merged into Lemmy and then waiting for a new release.
We also added a new maintainer, @flamingos@feddit.uk!
Sorry I said it wrong, reports do federate but only in a limited way. Particularly if you moderate a remote community you wont see the reports. Also the action of resolving a report is currently not federated at all. Both of these are fixed with the PR above.
I implemented reports federation recently, in current versions it is not available at all. So you may have to wait until version 1.0, though @MrKaplan mentioned that he plans to backport it to 0.19.xEdit: Nevermind I was talking nonsense. Reports do federate, but only in a limited way. Particularly if you moderate a remote community you wont see the reports. Also the action of resolving a report is currently not federated at all. Both of these are fixed with the PR above.
Yes we always release backend and frontend versions together.
nutomic@lemmy.mlto Fediverse@lemmy.ml•Working on MèngZǐ, the Federated Search Engine Alternative2·3 months agoMainly SEO spam with text copied from other sites and lots of ads/referral links to make the owner a profit. But after thinking about it more, those would be rather easy to filter based on ad code in the HTML.
A much bigger challenge will be the ranking of search results. When searching for a term and there are 100 pages in the index that contain it, which of these pages should be shown first? Google developed the Pagerank when they started out, so that might be a good starting point to research further.
nutomic@lemmy.mlto Fediverse@lemmy.ml•Working on MèngZǐ, the Federated Search Engine Alternative6·3 months agoThis sounds like a very interesting idea. I agree that Yacy doesnt work, when I checked it out years ago it was a completely bloated mess. Not sure how viable how your idea is, because Im not familiar with webrings, and not sure how the federation will work. Anyway the main challenge for this project will be to actually give useful search results, both early on when there are very few crawlers, and also later once spammers try to abuse it.
nutomic@lemmy.mlto Fediverse@lemmy.ml•Free Our Feeds: "it will take independent funding and governance to turn Bluesky’s underlying tech—the AT Protocol—into something more powerful than a single app"English101·3 months agoFunny, Mastodon just posted a similar thing about creating a foundation. But the problem is, the existence of a foundation does nothing to prevent billionaires from controlling social media. For billionaires its very easy to donate a few hundred thousand USD to the foundation and gain influence that way. I expect that Bluesky will be fine for the first years (maybe like early Twitter), but sooner or later the foundation will take decisions that the users dont like, and there is nothing they can do about it.
In my view, the only way to avoid influence from billionaires is to avoid any large centralized structures. In the Fediverse there are dozens of platforms and thousands of instances. Even if a billionaire were to take control over a couple of projects or large instances, people would create forks in a matter of days. Some admins would block these corrupted instances, and their users would barely notice that anything changed.
So Bluesky is just trying to repeat something that has already failed. The Fediverse is the future, but it will take a long time for most people to understand that.
nutomic@lemmy.mlOPto Fediverse@lemmy.ml•Ibis release 0.2.0 - Federated Wiki with Shiny Redesign2·4 months agoSounds like you are familiar with this topic. I dont have time to work more on this particular aspect (there are lots of other tasks like comment support, federation with Lemmy, etc). But contributions are definitely welcome, preferably directly to
leptos_use
so that others can benefit and its easier to maintain.
nutomic@lemmy.mlOPto Fediverse@lemmy.ml•Ibis release 0.2.0 - Federated Wiki with Shiny Redesign1·4 months agoIt uses the browser preference for light/dark theme by default. After you click the theme toggle on the site, it keeps using that chosen theme by storing it in a cookie.
Turns out the size limits for animations that we set on lemmy.ml also apply to proxied images. I would think its only for local uploads. Removed the limits now to get it working. Thanks for letting me know.