CosmicCleric, (edited )
@CosmicCleric@lemmy.world avatar

Why is there always such a concerted effort to destroy the reputation of Java? It just seems so unnecessarily obsessive, and a lot of times wrong.

Don’t get me wrong, I know that with time comes change, and Humanity improves on everything, including programming languages.

But at this point it seems like people want to hose Java down with holy water. It’s excessive.

steeznson,

Yeah I kinda agree. C# might have some nice new shiny features but Java is improving all the time and has deep roots in the open source community.

Scripting languages don’t really compete with Java because they are a different type of tool. Even when data engineers/scientists use pyspark in data pipelines it’s just a thin wrapper around JVM scala code.

jjjalljs,

The python code we inherited had some performance issues. One of the guys was like “we should rewrite this in Java”.

Luckily the boss was not an insane person and shut that down. The issue was an entirely stupid “…and then we do one query per project” behavior that worked fine when the company was small but unsurprisingly started to suck as users created more projects.

Instead of a months long complete rewrite, we had a two hour “let’s add profiling… Oh wow that’s a lot of queries” session.

Socsa, (edited )

This is super easy, you just fire all the Java devs and hire real engineers.

aluminium,

Java is great, the way its (ab)used is terrible.

kaffiene,

Java is a great language. But programming languages are tools - not every tool is the right tool for every job

nickwitha_k,

Seems reasonable to me. A scripting language, a compiled language, SQL, some CI/CD DSL, and a dealer’s choice.

Java isn’t bad but, I’m not a fan of how verbose and convoluted it is. That said, I’ll take Java over here JS any day of the week.

MyNamesNotRobert, (edited )

How to go from only being able to compile the project on a Windows machine (due to obscure dependencies that every other Java project has for some reason) to not being able to compile on anyone’s machine at all in just 1 simple step.

kaffiene,

I’ve worked with Java since v1. 5 and I’ve never seen a build system that was Windows only

MoonJellyfish,
@MoonJellyfish@lemmy.today avatar

I like typescript:)

KairuByte,
@KairuByte@lemmy.dbzer0.com avatar

Write your business critical process in brainfuck and have job security for life.

onion,

Sprinkle in some whitespace code…

riskable,
@riskable@programming.dev avatar

I’m failing to see the problem. As long as one of the languages isn’t PHP they’re still probably better off 🤷

CanadaPlus,

We’re talking about Java, not JavaScript, right?

KairuByte,
@KairuByte@lemmy.dbzer0.com avatar

Both are fine tbh. Javascript has come a long way from a decade ago, and mixing in a decent framework like jquery does wonders.

CanadaPlus, (edited )

The type system is still really bad, and apparently TypeScript gets mixed with native libraries in common practice, which makes a bad situation worse when something breaks.

Edit: Messed up the name, fixed.

KairuByte, (edited )
@KairuByte@lemmy.dbzer0.com avatar

The typing system is just a “quirk”. As long as you understand the (admittedly annoying) exceptions to the way your brain expects typing to work, everything works quite well.

And tbh, transpiled TypeScript libraries can be called from JavaScript as if it was JavaScript… because it is JavaScript. There’s no need to worry about typing unless you’re doing something like passing a string into a function that expects an int, and you’d run into those same problems if the function was originally JavaScript.

Edit: a word

CanadaPlus,

I mean, sure, but taking that argument to it’s logical extreme we should still be programming in assembly, because you can if you just know enough to do it.

A language is a tool. If it’s harder to use successfully than the next tool it’s a worse tool.

KairuByte,
@KairuByte@lemmy.dbzer0.com avatar

No? How is that the logical conclusion? You need to understand any language, and any quirk of that language, in order to effectively write in it. JavaScript is powerful, and moving farther every iteration. Strong typing is just not something it takes into consideration. In the same way that C# doesn’t take white space into consideration, and python doesn’t terminate its instructions with semicolons.

Each language is different, each language has its own quirks that you need to understand and get used to. If that wasn’t the case, we would have one objectively “perfect” programming language to use in all situations, on all machines, for every use case.

CanadaPlus, (edited )

You need to understand any language, and any quirk of that language, in order to effectively write in it.

That seems to imply they all have the same amount of quirks, which I think most people here would agree is untrue

Something like Haskell has far, far fewer quirks than x86 assembly code. It really only has quirks to do with interactivity; everything else is very predictable and visible in the code. Meanwhile, assembly code is but a maximally useful set of quirks in a specific electronic circuit.

Ditto if you look at older languages. FORTRAN is unpleasantly quirky, which is why it’s almost obsolete.

If that wasn’t the case, we would have one objectively “perfect” programming language to use in all situations, on all machines, for every use case.

I mean, I hold out hope that that will eventually happen, at least for the vast majority of use cases and machines. Obviously we’re not there yet.

There have been languages that basically dominate their own niche. C/C++ was almost the only game in town for performance coding until someone discovered a way to compile mid-level code while also guaranteeing memory safety. Memory errors were a terrible quirk, so now Rust might steal its crown.

sacredfire,

I personally don’t think that’s the issue with the typing system. With vanilla js if I’m looking at a function that has say four parameters that are not trivial objects like strings but are actually complex (think dependency injection) it’s very difficult for me to know what these objects are other than reading through the code of the function.

Actually, even if the parameters are simple, I’m not sure of that until I look into the function and see what it’s doing. This is a huge pain in the ass most the time, because I just wanna look at the function name its parameters and move on. However, that being said, most of this can be remedied with jsdocs and a good linter/lsp.

brian,

decent framework

jquery

It’s current year, you have to choose one. there really isn’t any reason to use jquery other than legacy code

KairuByte,
@KairuByte@lemmy.dbzer0.com avatar

Jquery is still extremely relevant. React exists as well, and is also a good framework. I just happened to think of jquery first.

brian,

what does jquery give you that vanilla js doesn’t? it was good before browser inconsistencies got ironed out and js didn’t have as many features built in, but nowadays I have no idea why someone would need it

dezvous,

What’s wrong with PHP?

Restaldt,

PHP5 was basically the Adolf Hitler of programming languages

You know how something can be so terrible it ruins something forever? Like the hitler stache

dezvous,

Lol okay maybe that’s true :) but PHP is great nowadays and with frameworks like Symfony and Larvel it’s easier than ever to build applications

msage,

5.3 was a big leap for PHP. It became actually very good at that point.

I learned it when it was on 4 and boy oh boy was that something.

But nowadays, with 8, it works great, tooling is fantastic. I just kinda wish the documentation, which is absolutely top notch for 90% of the language, was this good for the rest 10%.

I want to play around with Fibers, but I just don’t get the info I want to.

pthreads were so out of date in docs it was shameful.

But the language is good, typing is coming along nicely, and basically the only thing I want PHP to do is to call Postgres and encode the output to json. Works like a charm.

Restaldt, (edited )

Yeah i’ve heard good things about it recently. I’ve always liked how easy curl can be in php.

Adding typing seems like it would fix most of the problems i did run into but

Has PHP raised its standards on function naming? Or do you still have batshit situations like realEscapeString2() because the first 30 other functions for escaping strings are deprecated?

isVeryLoud,

I’m actually sad about the Hitler stache, it was also the Chaplin stache.

MyNamesNotRobert, (edited )

If you get even 1 thing wrong, the entire program stops working and you don’t get any information about it. Turns out those cryptic errors like “error: object reference not set to instance of an object at address 0x007e00” are kind of important information to have. Unless you specifically know where it’s crashing, finding the source of the problem is like finding a needle in a haystack. If it’s your own code it’s borderline manageable but you’ll regret every decision that led you up to that point. If it’s someone else’s code such as an old project from 9 years ago that doesn’t work anymore, absolutely forget about it.

The only advantage of php is that it’s incredibly lightweight. I was running an Athlon XP home server on Gentoo as late as 2022 and still had php running despite only having the SSE1 instruction set and a cpu less powerful than whats probably on a modern led lightbulb.

But ACKTCHUALLY I think django and python bottles can be run on even shittier computers than php can since they’re both python programs and python has been demonstrated to be runnable on a pentium 1. So there is no reason to use php.

Aceticon,

I would say that over a decade of my career was coming in as a freelancer to fix codebases where a couple of people tought they knew better than the previous ones and proceeded to add yet another very different block to a codebase already spaghetiffied by a couple such people.

Sometimes it was coding style, sometimes it was software design, sometimes it was even a different language.

I reckon thinking that just deploying one’s EliteZ skills on top of an existing code base without actually refactoring the whole thing will make it better is a phase we all go through when we’re still puppy-coders.

ChickenLadyLovesLife,

The majority of puppy-coders I’ve encountered (including myself) actually want to refactor rather than just add onto. They are fundamentally correct in this, but they don’t grasp that 1) few companies want to acknowledge that the code base which is their greatest tangible “asset” is actually complete shit, and 2) that due to their inexperience, their refactored replacement is probably going to end up as bad as or worse than the original.

redempt,

we should use only the best language for everything.

Maalus,

Codebase is now 30 languages

redempt, (edited )

there aren’t 30 best languages, that’s not how “best” works. we use only the best language. for everything.

Maalus,

That’s exactly how “best” works. Everyone thinks their language is the greatest and shits on everything else. If they all chose “the best” there would be 50 of them. Opinions are like assholes. Everyone has one.

redempt,

too bad everyone else is wrong

ieatpillowtags,

Nah it’s you.

Empricorn,

Lol Principal Skinner meme

KairuByte,
@KairuByte@lemmy.dbzer0.com avatar

If only it was intentional…

redempt,

yeah if only I was joking. wouldn’t that be funny

Iapar, (edited )

Your joke is like my asshole. No one gets it.

ieatpillowtags,

Oh really? There’s one language that’s “best” in all contexts and for every single use case? Care to enlighten the rest of us oh wise one?

KindaABigDyl,
@KindaABigDyl@programming.dev avatar

C

ieatpillowtags,

I love building websites in C!

nickwitha_k,

People used to do it.

ieatpillowtags,

Not saying you can’t, but is it the “best”?

nickwitha_k,

There is no objective answer to that. But, in my opinion, no, no it is not.

KairuByte,
@KairuByte@lemmy.dbzer0.com avatar

Hey now, CSS is just C with some extra S’s. Just rip off those S’s and you’re styling in C.

nickwitha_k,

HolyC

redempt,

scratch

KindaABigDyl,
@KindaABigDyl@programming.dev avatar

And?

pulaskiwasright,

My favorite is “Java is slow” said by someone advocating for a language that’s at least 10 times slower.

humbletightband,

Those who say such things are straight ignorant

pulaskiwasright,

They’re basically fashion victims.

humbletightband,

I wouldn’t say so. They are inexperienced. They don’t know where the bottleneck of most of the modern software is (it’s io in 80-90% of cases) and how to optimize software without rewriting it to C++

SorryQuick, (edited )

How are they ignorant? It’s a known fact that java is slow, at least slower than some others. Sure, it’s still fast enough for 95% of use cases, but most code will run faster if written in, say, C. Will have 10x the amount of code and twice as many bugs though.

humbletightband, (edited )

Java is indeed slower than C, Rust, in some cases than Go.

But that doesn’t mean that

code will run faster if written in, say, C

Again, like 80-90% of production code are bounded by disk/network io operations. You will gain performance from using C in embedded systems and in heavy calculations (games, trading, simulations) only.

SorryQuick,

Which is exaxtly what I said, that it’s fast enough for most use cases.

In theory though, you will “gain performance” by rewriting it (well) in C for literally anything. Even if it’s disk/io, the actual time spent in your code will be lower, while the time spent in kernel mode will be just as long.

For example, you are running a server which reads files and returns data based on said files. The act of reading the file won’t be much faster, but if written in C, your parsers and actual logic behind what to do with the file will be.

But it’s as you said, this actual tiny performance gain isn’t worth it over development/resource cost most of the time.

xor,

the jvm brings enough bugs to outweigh any benefits there…
it is relatively fast, but it’s slow in that it takes up a bunch of resources that could be doing other things…

humbletightband,

the jvm brings enough bugs to outweigh any benefits there…

Please name a few

xor,

i decline your invite to debate the merits of java and jvm… i will instead walk my dog through this beautiful park here…

but, it’s all been said on top level comments on this post.
it’s trash, and honestly, even if it was perfect, sun microsystems has ruined any potential benefits.

humbletightband,

Have a good walk at least

humbletightband,

takes up a bunch of resources that could be doing other things…

You cannot get rid of garbage collectors, but you can always compile your java into binary to reduce the memory footprint.

xor,

sea lion

kaffiene,

Bullshit.

kaffiene,

My favourite is “all the boilerplate” then they come up with go’s error checking where you repeat the same three lines after every function call so that 60% of your code is the same lines orlf error checking over and over

xtapa,

When you handle all your errs the same way, I’d say you’re doing something wrong. You can build some pretty strong err trace wrapping errs. I also think it’s more readable than the average try catch block.

kaffiene,

You still need to add error handling to every call to every function that might raise an error

steeznson,

Things like lombok make the boilerplate less of an issue in modern Java too

pulaskiwasright,

And god help you if you forget those 3 lines somewhere and you silently have database failures or something else.

kaffiene,

Yeah, that’s the other thing - it does become easier to accidentally fail to deal with errors and the go adherents say they do all of that verbose BS to make error handling more robust. I actually like go, but there’s so much BS with ignoring the pain points in the language.

affiliate,

back in my day we only had one language. it was called ASSEMBLY. wanted to make the computer do something? you had to ask it yourself. and that worked JUST FINE

SaltyIceteaMaker,
@SaltyIceteaMaker@iusearchlinux.fyi avatar

Back in my dsy we only had non programmable computers. Wanted to make the computer do something? You had to specifically build in the function. And that worked JUST FINE

Plopp,

Back in my day we had an abacus and if you wanted it to do something you had to do it your damn self. And that worked JUST FINE.

letsgo,

Oh hello mister fancy pants with your abacus. We carved notches in rocks and we were happy with that.

SorryQuick,

Back in my day people worked 16h days everyday and had no time for math or computers. And that was JUST FINE.

humbletightband,

Ok Boomer

jaybone,

Well la-tee-da, fuck my AND gates and inverters.

Look at moneybags over here with his instruction sets.

trashgirlfriend,

Back in my day when you wanted a computer to do something, you just asked her to do it and then underpaid her because women can’t hold real jobs.

Aceticon,

Gates and inverters!!?

Luxury!

In my day we had to use transitors and resistors and, if we were lucky, maybe capacitors.

anton,

Look at me, I have a friend at bell labs.
We had to use vacuum tubes, and we liked it.

FuryMaker,

Obligatory XKCD:

xkcd.com/927/

  • All
  • Subscribed
  • Moderated
  • Favorites
  • programmer_humor@programming.dev
  • magazineikmin
  • rosin
  • Youngstown
  • mdbf
  • ngwrru68w68
  • slotface
  • khanakhh
  • ethstaker
  • everett
  • kavyap
  • thenastyranch
  • DreamBathrooms
  • tacticalgear
  • osvaldo12
  • JUstTest
  • InstantRegret
  • Durango
  • cisconetworking
  • modclub
  • cubers
  • GTA5RPClips
  • tester
  • normalnudes
  • Leos
  • provamag3
  • megavids
  • anitta
  • lostlight
  • All magazines