this post was submitted on 24 May 2025
1200 points (98.9% liked)

Lemmy Shitpost

31798 readers
3781 users here now

Welcome to Lemmy Shitpost. Here you can shitpost to your hearts content.

Anything and everything goes. Memes, Jokes, Vents and Banter. Though we still have to comply with lemmy.world instance rules. So behave!


Rules:

1. Be Respectful


Refrain from using harmful language pertaining to a protected characteristic: e.g. race, gender, sexuality, disability or religion.

Refrain from being argumentative when responding or commenting to posts/replies. Personal attacks are not welcome here.

...


2. No Illegal Content


Content that violates the law. Any post/comment found to be in breach of common law will be removed and given to the authorities if required.

That means:

-No promoting violence/threats against any individuals

-No CSA content or Revenge Porn

-No sharing private/personal information (Doxxing)

...


3. No Spam


Posting the same post, no matter the intent is against the rules.

-If you have posted content, please refrain from re-posting said content within this community.

-Do not spam posts with intent to harass, annoy, bully, advertise, scam or harm this community.

-No posting Scams/Advertisements/Phishing Links/IP Grabbers

-No Bots, Bots will be banned from the community.

...


4. No Porn/ExplicitContent


-Do not post explicit content. Lemmy.World is not the instance for NSFW content.

-Do not post Gore or Shock Content.

...


5. No Enciting Harassment,Brigading, Doxxing or Witch Hunts


-Do not Brigade other Communities

-No calls to action against other communities/users within Lemmy or outside of Lemmy.

-No Witch Hunts against users/communities.

-No content that harasses members within or outside of the community.

...


6. NSFW should be behind NSFW tags.


-Content that is NSFW should be behind NSFW tags.

-Content that might be distressing should be kept behind NSFW tags.

...

If you see content that is a breach of the rules, please flag and report the comment and a moderator will take action where they can.


Also check out:

Partnered Communities:

1.Memes

2.Lemmy Review

3.Mildly Infuriating

4.Lemmy Be Wholesome

5.No Stupid Questions

6.You Should Know

7.Comedy Heaven

8.Credible Defense

9.Ten Forward

10.LinuxMemes (Linux themed memes)


Reach out to

All communities included on the sidebar are to be made in compliance with the instance rules. Striker

founded 2 years ago
MODERATORS
 
you are viewing a single comment's thread
view the rest of the comments
[–] Aux@feddit.uk 3 points 5 days ago (2 children)

They are extremely useful for software development. My personal choice is locally running qwen3 used through AI assistant in JetBrains IDEs (in offline mode). Here is what qwen3 is really good at:

  • Writing unit tests. The result is not necessarily perfect, but it handles test setup and descriptions really well, and these two take the most time. Fixing some broken asserts takes a minute or two.
  • Writing good commit messages based on actual code changes. It is a good practice to make atomic commits while working on a task and coming up with commit messages every 10-30 minutes is just depressing after a while.
  • Generating boilerplate code. You should definitely use templates and code generators, but it's not always possible. Well, Qwen is always there to help!
  • Inline documentation. It usually generates decent XDoc comments based on your function/method code. It's a really helpful starting point for library developers.
  • It provides auto-complete on steroids and can complete not only the next "word", but the whole line or even multiple lines of code based on your existing code base. It gets especially helpful when doing data transformations.

What it is not good at:

  • Doing programming for you. If you ask LLM to create code from scratch for you, it's no different than copy pasting random bullshit from Stack Overflow.
  • Working on slow machines - a good LLM requires at least a high end desktop GPU like RTX5080/5090. If you don't have such a GPU, you'll have to rely on a cloud based solution, which can cost a lot and raises a lot of questions about privacy, security and compliance.

LLM is a tool in your arsenal, just like other tools like IDEs, CI/CD, test runners, etc. And you need to learn how to use all these tools effectively. LLMs are really great at detecting patterns, so if you feed them some code and ask them to do something new with it based on patterns inside, you'll get great results. But if you ask for random shit, you'll get random shit.

[–] MintyAnt@lemmy.world 8 points 5 days ago* (last edited 5 days ago) (2 children)

Ah yes, comments and commits written by LLMs, who wouldn't want that.

[–] skisnow@lemmy.ca 3 points 5 days ago* (last edited 5 days ago) (1 children)

Having spent some small time in the information theory and signal processing world, it infuriates me how often people champion LLMs for writing things like data dictionaries and documentation.

Information is measured in information theory as "the difference between what you expected and what you got", ergo, any documentation generated automatically by an LLM is by definition free of Information. If you want something explained to you in English then it can be generated just as easily as and when you want it, rather than stored as the authoritative record.

[–] Aux@feddit.uk -3 points 5 days ago

You're not looking at a bigger picture. That also raises the question of your alleged qualifications.

[–] Aux@feddit.uk -1 points 5 days ago

It's much better than commit messages like "WIP", "Quick fix", "Refactoring" and other mental diarrhea every developer is guilty of.

[–] Evotech@lemmy.world 3 points 5 days ago

It's also pretty good at explaining what a function does or why something is where it is. Good for navigating large codebases or working on something you don't normally work on