this post was submitted on 04 Apr 2024
475 points (86.3% liked)

Lemmy.World Announcements

28910 readers
5 users here now

This Community is intended for posts about the Lemmy.world server by the admins.

Follow us for server news 🐘

Outages πŸ”₯

https://status.lemmy.world

For support with issues at Lemmy.world, go to the Lemmy.world Support community.

Support e-mail

Any support requests are best sent to [email protected] e-mail.

Report contact

Donations πŸ’—

If you would like to make a donation to support the cost of running this platform, please do so at the following donation URLs.

If you can, please use / switch to Ko-Fi, it has the lowest fees for us

Ko-Fi (Donate)

Bunq (Donate)

Open Collective backers and sponsors

Patreon

Join the team

founded 1 year ago
MODERATORS
475
submitted 5 months ago* (last edited 5 months ago) by [email protected] to c/[email protected]
 

Hello world!

We would like to start by saying thank you ❀, no really πŸ™ THANK YOU to ALL the moderators out there!

Without you folks, we would have no one to help keep our community safe and help build the communities both here on Lemmy.World and on other fine instances. To this end, we want to make sure your voices are heard πŸ“£ loud and clearπŸ“£.

So, in the spirit of transparency, we would like everyone to know that we are looking to help out the folks working on Sublinks. Over the last several months we have grown to be more than just Lemmy.World. We've added platforms such as Pixelfed and Sharkey to help offer our users more diverse options for expressing themselves online. We still are very committed to Mastodon as well.

We DO NOT plan on moving away from Lemmy as a software platform at this time. Any changes in our core services would need to be discussed extensively internally AND externally with our community members. We firmly believe in the growth of the Fediverse and without the users, there would only be software, and that's no fun!

Sooo...

The Sublinks team has written up a little survey, which we feel is both thorough and inclusive. It covers a wide range of topics, such as user privacy, and community engagement, along with trying to gauge things that are difficult when moderating.

Also please be aware the information collected by this survey is completely anonymous. As many of us in the social sciences background know, if you want the REAL feelings of individuals, they need to feel safe to express themselves.

πŸ‘‰Moderation Survey HEREπŸ‘ˆ

Please feel free to comment in this thread, we will do our best to respond to any genuine questions.

We look forward to hearing from each and every one of you!

=Sincerely,
Fedihosting Foundation

PS ... also if this sounds like a corporate press release to you folks, we still punk 🀘😜🀘

you are viewing a single comment's thread
view the rest of the comments
[–] [email protected] 51 points 5 months ago (2 children)

If I'm looking to build skills in a new language, that language is probably going to be Rust and not Java. One of those languages has a bright future. The other is going to look a lot like Fortran in 15 years.

I expect real performance issues with Java at some point, especially compared to Rust. The initial difficulty in picking up the language is worth it if I never have to see another Factory pattern that only returns one type. Why just use a constructor when you can use ~~idiopathic~~ idiomatic java?

[–] [email protected] 19 points 5 months ago (1 children)

I expect real performance issues with Java at some point

FWIW I think the performance is probably not the biggest of deals. Java isn't like Python, it's not super slow or anything.

That said, there are other reasons to favour Rust. It's a newer language that has learned from the mistakes of the past, such as overzealous OOP with inheritance and the billion dollar mistake, null pointers. Add to that a host of problems many programs run into with concurrency and shared memory and you've got a whole lot of potential bugs.

Potential bugs that are quite impossible in Rust (assuming you don't use unsafe Rust but you definitely don't need that for a web server).

[–] [email protected] 12 points 5 months ago* (last edited 5 months ago) (2 children)

In normal use cases I'd agree about performance. But on the scale of Lemmy it's absolutely likely to make a difference long term.

And if you're going to use a managed language, why not something that has less baggage and a brighter future, like C#? It's as open and multiplatform as Java these days with less of the overzealous, Java-specific OOP culture.

[–] [email protected] 12 points 5 months ago

Feel free to start your own, to be honest I feel it's like the only major language missing now, as we have PHP with Mbin, Rust with Lemmy, Python with Piefed and Java with Sublinks

[–] [email protected] 6 points 5 months ago

Agree on both points. Especially Javas memory usage could be problematic.