this post was submitted on 24 Aug 2025
343 points (96.2% liked)

Ask Lemmy

34229 readers
1276 users here now

A Fediverse community for open-ended, thought provoking questions


Rules: (interactive)


1) Be nice and; have funDoxxing, trolling, sealioning, racism, and toxicity are not welcomed in AskLemmy. Remember what your mother said: if you can't say something nice, don't say anything at all. In addition, the site-wide Lemmy.world terms of service also apply here. Please familiarize yourself with them


2) All posts must end with a '?'This is sort of like Jeopardy. Please phrase all post titles in the form of a proper question ending with ?


3) No spamPlease do not flood the community with nonsense. Actual suspected spammers will be banned on site. No astroturfing.


4) NSFW is okay, within reasonJust remember to tag posts with either a content warning or a [NSFW] tag. Overtly sexual posts are not allowed, please direct them to either !asklemmyafterdark@lemmy.world or !asklemmynsfw@lemmynsfw.com. NSFW comments should be restricted to posts tagged [NSFW].


5) This is not a support community.
It is not a place for 'how do I?', type questions. If you have any questions regarding the site itself or would like to report a community, please direct them to Lemmy.world Support or email info@lemmy.world. For other questions check our partnered communities list, or use the search function.


6) No US Politics.
Please don't post about current US Politics. If you need to do this, try !politicaldiscussion@lemmy.world or !askusa@discuss.online


Reminder: The terms of service apply here too.

Partnered Communities:

Tech Support

No Stupid Questions

You Should Know

Reddit

Jokes

Ask Ouija


Logo design credit goes to: tubbadu


founded 2 years ago
MODERATORS
 

In recent weeks, I have posted an absolutely staggering amount of content on Lemmy.

My goal is simply to support the platform. I hate huge corporations.

Now I'm taking a break. I won't post anything or I'll post very little (I still feel a little guilty!! Who will post new content 😒?)

But I need to focus on improving my own life and relax.

However... I'm just curious.

Is the number of Lemmy users actually increasing, decreasing, or staying the same? Is that data even available?

Edit: I will still post stuff. I'll just post a lot less!

you are viewing a single comment's thread
view the rest of the comments
[–] lena@gregtech.eu 4 points 1 day ago (3 children)

Damn! How inefficient πŸ€ͺ but that explains a lot

Although I'm not a big fan of python, or dynamically typed languages in general, I think its DX is a lot better than stuff like C. Unless you really enjoy leaking 40GB of ram per second.

Python dev tend to vibe code

What? Maybe the percentage of vibe coders among python users is higher, but that's irrelevant. Just hire the real developers...

Yeah, I think vibe coders being more common in Python is more a product of Python being pushed to more people, particularly new developers

[–] Petter1@discuss.tchncs.de 1 points 19 hours ago (1 children)

The difference is, that C and similar can be compiled, python and similar needs an interpreter to be run.

This is the reason that languages that need to be compiled are why more efficient, meaning way less power is needed to execute, meaning less CO2 and cheaper server as less powerful hardware is needed.

[–] lena@gregtech.eu 1 points 18 hours ago (1 children)

But it takes more time to develop it. This is why I like Go, which has a quite nice DX and is fast.

[–] Petter1@discuss.tchncs.de 1 points 16 hours ago

If you have a build server that builds every commit you push, you can work on other bugs or features in the meantime without needing more time.

And as soon as you have to search bugs in a big python project, you will use up all the "saved time" pretty fast.

[–] Petter1@discuss.tchncs.de 0 points 19 hours ago (1 children)

And depending on vibe coding, python just isn’t complaining about wrong syntax, but just do its job, which generally results in nasty code.

If you need a script language (run using interpreter instead of precompiling) use ruby, this one enforces good syntax.

[–] lena@gregtech.eu 1 points 18 hours ago (1 children)

Wdym "doesnt complain about wroh syntax"?

[–] Petter1@discuss.tchncs.de 1 points 16 hours ago

Well syntax error may be not the right wording, I am talking about stuff like unused variables, multiple semicolons, multiple declarations of variables, changing type of variables mid-code, dead code after return, return type mismatch etc.