this post was submitted on 09 Mar 2024
134 points (100.0% liked)

Beehaw Support

2794 readers
1 users here now

Support and meta community for Beehaw. Ask your questions about the community, technical issues, and other such things here.

A brief FAQ for lurkers and new users can be found here.

Our September 2024 financial update is here.

For a refresher on our philosophy, see also What is Beehaw?, The spirit of the rules, and Beehaw is a Community


This community's icon was made by Aaron Schneider, under the CC-BY-NC-SA 4.0 license.


if you can see this, it's up  

founded 2 years ago
MODERATORS
you are viewing a single comment's thread
view the rest of the comments
[–] [email protected] 19 points 6 months ago (3 children)

The problem with this, in my opinion, is Lemmy is written in Rust. From what I can tell, there aren't enough Rust developers to pitch in AND there are better languages to use in a web application.

[–] [email protected] 20 points 6 months ago (2 children)

I really don't think the language is the problem here. I wrote some thoughts here https://feddit.dk/comment/6556927

I'm a professional software developer using Rust so I guess you can either call me "biased" or "qualified to answer", but take that how you will.

But I suppose time will tell if some other threadiverse implementation in another language takes over.

[–] [email protected] 6 points 6 months ago* (last edited 6 months ago) (1 children)

I think the definition of best programming language here is not popular and hyped but “the one I use”. I really believe Java is worse than Rust for contributors. We’ll see how it goes.

[–] [email protected] 3 points 6 months ago (3 children)

Then again, a java codebase would be much more accessible to someone who has only coded in JS.

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

JS only has "Java" in the name, other than that they're pretty different languages (basically: JS is a clusterfuck, Java is a "get paid by the line" hyper-explicit enterprisey invention with deployment horror stories).

[–] [email protected] 4 points 6 months ago* (last edited 6 months ago)

Despite their names, Java and JavaScript are very different languages and they really don't have much in common, so this doesn't make much sense.

[–] [email protected] 2 points 6 months ago (1 children)

Really? I mainly code in JS and to be honest, Java gives me C# vibes.

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

Definitely. I just mentioned JS because i think there are many people who only code for web. Or have js as their first language.

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

I concur; the best language is the one you know to get the task done. That said, Excel VBA isn't the correct language to use to write a Super Mario Bros Clone. I mean you can, but that doesn't make it the best language to do so.

In this case, the problem absolutely is that Lemmy is written in Rust. The developers constantly state there are only two devs for 40k+ people. IF Lemmy was written in another programing language, regardless of using the 'best' one, there would likely be more able and willing development contributions. Then again with an attitude like this regardless of chosen programming language; I doubt it.

[–] [email protected] 2 points 6 months ago (2 children)

there would likely be more able and willing development contributions

As I said in the linked comment above, I'm not convinced that this is actually true and we've yet to see evidence that it is true.

the problem absolutely is that Lemmy is written in Rust ... Then again with an attitude like this regardless of chosen programming language ...

I mean, didn't you just say it there? The problem isn't with Rust, the problem is with people, the resources available, the devs willingness to implement what you ask for and such. The problem sounds to me more social than technical. I really don't think the programming language is what is standing in the way here 😅

[–] [email protected] 3 points 6 months ago (1 children)

I really don’t think the programming language is what is standing in the way here

Ok; the developers attitudes certainly are.

I mean, didn’t you just say it there?

Yeah. Pay attention to when I said it the first time so I don't have to repeat myself.

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

Sure thing m8, no need to get upset (your tone sounded a bit angry/annoyed) - happy cake day btw, never saw that before! :)

[–] [email protected] 12 points 6 months ago (2 children)

The best language is subjective, but performance-wise most traditional web-oriented languages are dogshit slow and will incur huge costs both in hosting and performance mitigations. Things like rust, go, or C will ensure long term performance.

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

traditional web-oriented languages are dogshit slow and will incur huge costs both in hosting and performance mitigations

Also, for volunteer-run websites like Lemmy sites, costs are very important as hosting costs is essentially the whole cost, since the volunteers aren't paid.

For companies who pay devs a salary, the hosting is negligible compared to the engineer salary so it's more efficient to just scale up and spend less time optimizing.

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

I wouldn't recommend C or C++, even the NSA is asking people to stop using them in favor of memory safe languages. The equivalent in performance, is Rust.

[–] [email protected] 8 points 6 months ago* (last edited 6 months ago) (2 children)

An option is to add a plugin system or API that allows integrating mod/filter tools written in other languages.

Email systems already do something like this. Postfix and others support milters (mail filters) which run as a separate process and communicate via a socket.

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

This would be something to bring up to @[email protected] since it falls outside my area of expertise.

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

So I've been working on a personal project link aggregator/forum that incorporates a lot of 'useful features'. It's not something that is prime time ready yet, but one of the key killer features I want to get operational before showcasing it, is exactly what you say. A method to allow plugins to be created an ran by admins and maybe mods. There is a lot that needs to go into the security of this though, and so it's not just a here run some code type of situation for users.

Mod tools are sorely needed on this platform, but I also don't want to be dictating how users of my software must use it. That is, what I may think are problems certainly may be, but how to solve it won't be the only way I say it should be. To that note, my plugin system (WIP) is a toss up between Lua scripts in a sandbox for mod programs/automodding, or the more basic expr language for Go.

So right now for Lemmy or other alternatives I've aware of, this capability does not exist. For my project in this space, I don't want just another Lemmy. I want a BETTER Beehaw.