this post was submitted on 25 Oct 2024
111 points (95.1% liked)

Programming

17326 readers
119 users here now

Welcome to the main community in programming.dev! Feel free to post anything relating to programming here!

Cross posting is strongly encouraged in the instance. If you feel your post or another person's post makes sense in another community cross post into it.

Hope you enjoy the instance!

Rules

Rules

  • Follow the programming.dev instance rules
  • Keep content related to programming in some way
  • If you're posting long videos try to add in some form of tldr for those who don't want to watch videos

Wormhole

Follow the wormhole through a path of communities [email protected]



founded 1 year ago
MODERATORS
you are viewing a single comment's thread
view the rest of the comments
[–] [email protected] 19 points 1 week ago (5 children)

VSCode & VSCodium are also free for commercial use.

Why learn an IDE you won't use anywhere else?

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

Jetbrains licenses are like £100 a year. What commercial project isn't able to cover that cost.

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

I'm just hopping the price won't rise in return.

Yet I'm not going back to eclipse.

[–] [email protected] 1 points 1 week ago (1 children)

They give incremental discounts each time you renew so even if the price increases you'll probably find you're spending less each time.

[–] [email protected] 2 points 1 week ago

I've been on the lower price forever as I had a licence from before the switch.

It's already expensive. And having a comercial option that is affordable for normal people rather than $$$ entreprise would be good. Quitte a few paying of their own because their entreprise won't.

[–] [email protected] 1 points 1 week ago

I would expect it to rise. I still think it's worth it, if it's a good tool for you. IntelliJ is really a good product, even if they do have their downsides. In a commercial environment, it's totally worth it to buy a licence per developer, if it makes them more productive.

[–] [email protected] 9 points 1 week ago

C# Devkit will do in a pinch but it's still second class in VS Code compared to languages like TypeScript.

Since MS killed off MonoDevelop and Visual Studio is Windows only, it'll be good to finally have a free proper C# IDE again on Linux.

[–] [email protected] 7 points 1 week ago

Why would you use a library or framework when you can code everything from scratch? It probably depends on how good the VSCode extension is vs how bad the IDE is.

For the languages I have tried (mostly GoLang plus a bit of Terraform/Terragrunt), VSCode plugins can do code highlighting, can highlight syntax and lint errors, can navigate to a methods implementation, the auto-complete seems to pick random words from the code base, and can find the callers for a method. It is good enough for every day use.

IDEs I have used (Eclipse for Java, PyCharm, InteliJ for Kotlin) offer more. They all have starter templates for common file types. The auto-complete is much more syntax aware and can sometimes guess what variables I intend to pass in as arguments. There is refactoring which can correctly find other usages of a variable and can make trivial code rewrites. There are generators for boilerplate methods. They all have a built in graphical debugger and a test runner.

[–] [email protected] 7 points 1 week ago (1 children)

There's also Zed. It's still pretty new and barebones but I like it a lot more than Code or anything else.

[–] [email protected] 4 points 1 week ago (1 children)

same here, i was using RustRover before that and it was slow on my laptop, i also had to create an account to use it. Zed is pretty much plug n play

[–] [email protected] 1 points 1 week ago

Zed is also lightspeed fast compared to either vscode or JetBrains' stuff.

[–] [email protected] 7 points 1 week ago* (last edited 1 week ago) (2 children)

I am kind of using intellij ideas for everything. They are just so much better.

I don't think I would want to work for an employer that is too cheap for an IDE license

[–] [email protected] 5 points 1 week ago* (last edited 1 week ago) (1 children)

It's not about cheapness, it's about consistency.

You wanna set up different dev environments and process for every single language you or someone from your team might use? Oh we need documentation and a license for IDEA when we're doing Java work, and PyCharm when we're doing Python work, and WebStorm when we're doing JavaScript work, or we just all use VSCode for everything.

I've worked on Java teams, Python Teams, JavaScript Teams, C# teams, and quite frankly, I've seen no major benefit to a dedicated IDE for that language vs just configuring VSCode plugins and CLI scripts.

[–] [email protected] 1 points 1 week ago (1 children)

We just have the ultimate license and can use all of the intellij IDEs, but you also can do everything with IDEA and some plugins. And I'm that car you still have the experience of a real IDE and not just a code editor.

[–] [email protected] -2 points 1 week ago* (last edited 1 week ago) (1 children)

Lol "real IDE". Name the actual day to day feature(s) that makes it "real". Just saying "you use a little bitch IDE, i use a real IDE" is not an argument.

[–] [email protected] 4 points 1 week ago (1 children)

Much better integrated refactoring support. Much better source code integration support. Much better integrated debugging support. Much better integrated assistive (but not ai) support.

Vscode can do many things IntelliJ can, but not all, and many of them require fiddling with plugins.

Usually, JB is also faster (if your dev machine can run it, but in my experience most devs have beefy machines).

[–] [email protected] 2 points 5 days ago

Not my experience. I've had the displeasure of having to use Rider at work, and it's much slower than VSCode, if only for boot times which are a pain in the butt for large projects. You gotta pay for that bloat and feature creep somehow.

And that's on a Xeon machine.

As for refactoring, yes, Rider has lots of options that don't work and do half the job. So much so, that I don't use them at all, because they're unreliable.

The requirement for Copilot to qualify an IDE is a bit funny. First, VSCode has some support for it, and, secondly, this is super recent, so unless IDEs didn't exist since last year, I'd say this is not core to the definition of IDE.