this post was submitted on 07 Oct 2025
1019 points (95.9% liked)

Programmer Humor

27065 readers
785 users here now

Welcome to Programmer Humor!

This is a place where you can post jokes, memes, humor, etc. related to programming!

For sharing awful code theres also Programming Horror.

Rules

founded 2 years ago
MODERATORS
 
top 50 comments
sorted by: hot top controversial new old
[–] BlameTheAntifa@lemmy.world 201 points 2 weeks ago* (last edited 2 weeks ago) (17 children)

Doesn’t anyone else use things like OpenSnitch to audit all outgoing connections? I block all phone homes until something breaks, then investigate.

If you are trapped on Windows for some corporate reason, there is SimpleWall.

We’re all friends here, and friends don’t let friends let apps phone home.

[–] scrubbles@poptalk.scrubbles.tech 94 points 2 weeks ago (1 children)

TIL. Don't assume people know about this like that, for many we have never even heard of it, but I'll be using it constantly now

[–] BlameTheAntifa@lemmy.world 17 points 2 weeks ago

I’m happy I could help!

[–] littlewonder@lemmy.world 34 points 2 weeks ago* (last edited 2 weeks ago)

Can I subscribe to your newsletter? I want to hear all your other recommendations.

[–] itsjess@lemmy.blahaj.zone 15 points 2 weeks ago

I second OpenSnitch. It's the most annoying program i run, but the control it gives you over your outbound connections is so worth it from a security and privacy standpoint.

Once you start and run this you get to truly see how many different URLs are loaded when visiting just one website

[–] Ephera@lemmy.ml 14 points 2 weeks ago (2 children)

I feel like lots of people here use Linux, where you don't need to be constantly vigilant of your applications working against you...

[–] hodgepodgin@lemmy.zip 28 points 2 weeks ago (11 children)

A lot of proprietary tools like VScode and Jetbrains are needed on Linux if you’re a novice or not yet proficient with tools like EMacs/Vi yet. For example I couldn’t get Vscodium to load an extension I needed so I had to use VScode. But tbh I’m just making excuses cuz I don’t know how to set up a good dev environment :-(

[–] AnyOldName3@lemmy.world 8 points 2 weeks ago

Technically it's even a ToS violation to install extensions from the VS Code marketplace (or whatever it's called) if you're using VS Codium. Many are also available somewhere else like the code forge where they're developed and are under open source or free software licenses, but quite a few important ones are only available through the one distribution channel you're not allowed to use, and contain proprietary components that can't be forked to lift this restriction.

load more comments (10 replies)
[–] BlameTheAntifa@lemmy.world 14 points 2 weeks ago* (last edited 2 weeks ago)

Anyone new to these tools will be horrified at how aggressively Windows tries to violate your privacy with unnecessary data collection, phone-homes, remote calls, etc.

Linux is galaxies better in that regard. I still don't want anything making any connections without my explicit knowledge and consent though, and there are lots of packages and applications that try to unnecessarily exfiltrate data without asking. If you aren't using an active firewall, you are leaking.

[–] Carighan@piefed.world 11 points 2 weeks ago

Can't, all corporate hardware and their software, too. Not my problem, but also not my intellectual property being stolen to be used in AI, so eh, NotMyProblemException.

load more comments (12 replies)
[–] e8d79@discuss.tchncs.de 157 points 2 weeks ago* (last edited 2 weeks ago) (12 children)

This is misleading. For people paying for the IDE nothing changed, data sharing remains an opt-in option. For users of their free licenses data sharing was enabled by default. Still a shitty thing to do especially as it hits a lot of OSS developers but lets criticize that instead of creating memes that are misinformation.

[–] TeddE@lemmy.world 79 points 2 weeks ago (1 children)

You do add important detail, but I'd make the counterpoint that if the corporation is bullying their least privileged users today, stealing their ~~lunch money~~ privacy, they're not going to stop with only them. This is testing the waters for them.

Plus - it's also messed up that they can fundamentally change the nature of the 501(c)(3) donated version and will likely try to claim a tax benefit as though it's equivalent to a paid copy.

[–] Rolder@reddthat.com 9 points 2 weeks ago (1 children)

As the saying goes, if a product is free then that means you are the product

[–] AnyOldName3@lemmy.world 20 points 2 weeks ago

In this case, the product was free to OSS developers not because they were the product, but because they're influencers likely to end up encouraging their users and/or employers to buy the paid version, so it was the marketing that those people could do that was the product.

This change with the data harvesting makes those developers the product, though.

load more comments (11 replies)
[–] Korhaka@sopuli.xyz 156 points 2 weeks ago (5 children)

AI scraping public code tempts me to dump all my projects into github to poison the training data

[–] mectag@lemmy.world 44 points 2 weeks ago

this made me laugh way too much

[–] Blackmist@feddit.uk 24 points 2 weeks ago (2 children)

It's love to see what it does with a several thousand line function from my production code.

load more comments (2 replies)
load more comments (3 replies)
[–] Seefern@piefed.social 35 points 2 weeks ago* (last edited 2 weeks ago) (5 children)

I keep seeing EMacs,Vim, and Neovim recommendations, but I’m out here recommending people use Geany. It’s honestly the best code editor I’ve ever used since its 2.0 version was released. I have it setup with a debugger, an lsp, tree browser, a nice theme, etc. and it’s basically perfect. Free, open source, perfectly customizable, what more can I ask for <3

Edit: just want to say for those ppl already using Vim, it does have Vim mode. So, I think most of the hotkeys should work but I’ve only used Vim a couple times in my life, so I can’t vouch for how well Vim mode works.

[–] addie@feddit.uk 11 points 2 weeks ago

Vim is my preferred 'IDE' for C++, Python, Bash, and general configuration file editing. It's got some big pluses:

  • its text editing is superb once you've mastered it, but that's a small part of its benefits when used as an IDE, and 'Vim mode' in other environments kind of undersells what else it can do

  • Vim has some great plugins for development. YouCompleteMe is awesome for predictive completion and showing docs, but NerdTree for file management and TagBar for showing structure are amazing as well. They're all very configurable and they get out of your way.

  • Vim lives in your terminal window, so you can do splits and tabs using whichever terminal you like. Kitty is very fast and configurable and keeps out your way. Being able to have multiple tabs of Vim open, a tab for compilation, a tab for debugging, a tab for version control, a tab for man pages, and being able to flip between them without taking your fingers off the keyboard makes for a very fast workflow

  • Vim makes it very easy to edit binary files and be precise about whitespace changes, so it's easy to make a minimal change for raising a PR.

If you assign a hotkey to run a macro in Vim, then that can be made very flexible - saving and formatting all open windows, then invoking CMake to do a build and CTest to run all your unit tests can be put on a function key if you like. Trying to tell Eclipse to "just run CMake to do the build" seems to be an exercise in frustration; so many IDEs are terrible at "just getting out of the way".

Work pays for an IntelliJ licence for using Java. Java is so unwieldy without a proper IDE that it's hard to code in it without it. I certainly don't love it, though, and they seem determined to make every new version worse with bizarre new features. Flexible minimalist editing with configurable plugins is all that you really need, and on that basis Geany looks pretty good - will give it a try.

[–] BonkTheAnnoyed@lemmy.blahaj.zone 11 points 2 weeks ago

Second that. Mu daily driver now. It doesn't have every bell and whistle but by that same token it is refreshingly lightweight.

load more comments (3 replies)
[–] picklejar@lemmy.sdf.org 33 points 2 weeks ago (3 children)

OOTL here. What did they do? Can't find anything obvious on their News or Releases tabs.

[–] SchwertImStein@lemmy.dbzer0.com 35 points 2 weeks ago* (last edited 2 weeks ago) (11 children)

if you pay you can opt-in to share your code

if you use free version you can opt-in to share your code.

if you are entitled to using a paid version for free (e. g. students, educators) you can opt-out of sharing your code.

EDIT: I was wrong, you CAN out out in the last case, which makes the meme even more stupid

[–] sudo@programming.dev 31 points 2 weeks ago (1 children)

Basically guaranteeing themselves the worst code source.

load more comments (1 replies)
[–] hikaru755@lemmy.world 11 points 2 weeks ago* (last edited 2 weeks ago) (1 children)

if you are entitled to using a paid version for free (e. g. students, educators) you cannot opt-out of sharing your code.

That is incorrect. According to the page you linked elsewhere:

For individuals on non-commercial licenses: Data sharing is enabled by default, but you can turn it off anytime in the settings.

(Emphasis mine)

And for all other cases it's opt-in. No idea how you got from that that you cannot opt-out. It literally says the opposite.

load more comments (1 replies)
load more comments (9 replies)
[–] 30p87@feddit.org 31 points 2 weeks ago (2 children)

Yeah... I slowly stopped using it and am just using vim, and getting docs from sources.

[–] balsoft@lemmy.ml 20 points 2 weeks ago (3 children)

You can set up your LSP to work with nvim to get docs that way.

load more comments (3 replies)
load more comments (1 replies)
[–] limerod@reddthat.com 28 points 2 weeks ago (3 children)

Fuck sending data to companies. Emacs for the win!

[–] j5906@feddit.org 32 points 2 weeks ago (2 children)
[–] limerod@reddthat.com 10 points 2 weeks ago

I would watch my back if I were you:#

load more comments (1 replies)
[–] Thedogdrinkscoffee@lemmy.ca 10 points 2 weeks ago (2 children)
load more comments (2 replies)
load more comments (1 replies)
[–] sirico@feddit.uk 25 points 2 weeks ago (1 children)

I think I'd be liable if my code made it through to a LLM

[–] SaharaMaleikuhm@feddit.org 15 points 2 weeks ago

The thought of that is so funny. Not the company that stole the code gets held accountable, but instead the poor schmuck they stole it from to make their AI. Actually this would not even surprise me all that much.

[–] state_electrician@discuss.tchncs.de 21 points 2 weeks ago (3 children)

The mail I got makes it quite clear that you have to opt-in if you're using a paid version:

Dear JetBrains AI user,

We are notifying you that on October 7, 2025, we will roll out an updated version of the JetBrains AI Terms of Service. The main change is in the data sharing clause. Previously we said we wouldn’t use your inputs, data, outputs, or suggestions to train AI models. This is still the case, unless you explicitly allow us to do so.

  • For individuals using JetBrains IDEs with commercial licenses, free trials, free community licenses, or EAP builds who do not explicitly consent to the new data collection model – nothing changes.
  • For companies that are unwilling or, for legal reasons, unable to opt in to the program – nothing changes either, and their admins remain in full control.

Important to note that the data sharing is OFF by default on all types of JetBrains IDEs licenses except for non-commercial tier until you change the settings explicitly.

For more details about the change, please read this blog post.

Other updates to the JetBrains AI Terms of Service reflect some recent changes to the JetBrains AI service. For example, JetBrains AI can now be used not only with JetBrains products, but also with selected third-party products. The service also includes a new feature that allows you to upload various content for indexing.

For the existing users, the updates will take effect on October 7, 2025. By using JetBrains AI after this date, you agree to the updated JetBrains AI Terms of Service.

Highlight by me. Personally, I don't see a reason to be outraged. I've even used their AI products and they're OK. They can take over dumb tasks or help me not having to look up documentation.

load more comments (3 replies)
[–] cupcakezealot@piefed.blahaj.zone 19 points 2 weeks ago (3 children)

sublime text is $99 for life and you don't even have to pay it and they have zero ai slop :)

[–] kadu@scribe.disroot.org 27 points 2 weeks ago (1 children)

Kate is $0 for life and you don't even have to pay it and they have zero ai slop :)

load more comments (1 replies)
[–] fruitcantfly@programming.dev 10 points 2 weeks ago

That's not quite true: Yes, your $99 license is a life-time license, but that license only includes 3 years worth of updates. After that you have to pay $80, if you want another 3 years worth of updates. Of course, the alternative is just putting up with the occasional nag, which is why I still haven't gotten around to renewing my license

load more comments (1 replies)
[–] 33550336@lemmy.world 15 points 2 weeks ago (6 children)

I liked PyCharm, but its time to refresh my friendship with VIM.

load more comments (6 replies)
[–] BreakStopReturn@programming.dev 12 points 2 weeks ago

JB is cooked

[–] Crylos@lemmy.world 10 points 2 weeks ago (10 children)

Is it time to go back to the plugin-hell called Eclipse?

[–] NuXCOM_90Percent@lemmy.zip 18 points 2 weeks ago* (last edited 2 weeks ago) (5 children)

It is NEVER time to go back to the hell that is Eclipse.

Go to frigging notepad or kedit before Eclipse.

load more comments (5 replies)
[–] carrylex@lemmy.world 17 points 2 weeks ago* (last edited 2 weeks ago)

Well if you want a real world comparison:

We migrated a project a few years ago from Eclipse to IntelliJ. Outcome:

  • Complains about the IDE dropped from around 10 per day to nearly 0
  • Onboarding people now takes 1h instead of a day, because IntelliJ knows how to store configuration in a project
  • IntelliJ has a built in updater and nearly everything works after an update
  • IDE Fuckups: 1 per week (Eclipse) -> 1 per year (IntelliJ)
    • Somehow still happend? Just click "Delete caches and restart" in IntelliJ
  • No sources and javadoc for a library available? Eclipse: Have fun reading bytecode; IntelliJ: Yeah I just decompiled it for you within 10s

So yeah I wouldn't recommend going back into hell. Even VSCode and it's forks are likely better at this point.

[–] Cevilia@lemmy.blahaj.zone 14 points 2 weeks ago

Not just no, but hell no.

load more comments (7 replies)
[–] moonleay@feddit.org 8 points 2 weeks ago

This is what finally pushed me to move all coding I can away from Jetbrains products. I wanted to to that for a while, because I didn't want to depend on a closed system and wait until it enshitified. Now it happened. Sad to see, but it was inevitable.

load more comments
view more: next ›