this post was submitted on 31 May 2025
357 points (95.9% liked)

Technology

70716 readers
3837 users here now

This is a most excellent place for technology news and articles.


Our Rules


  1. Follow the lemmy.world rules.
  2. Only tech related news or articles.
  3. Be excellent to each other!
  4. Mod approved content bots can post up to 10 articles per day.
  5. Threads asking for personal tech support may be deleted.
  6. Politics threads may be removed.
  7. No memes allowed as posts, OK to post as comments.
  8. Only approved bots from the list below, this includes using AI responses and summaries. To ask if your bot can be added please contact a mod.
  9. Check for duplicates before posting, duplicates may be removed
  10. Accounts 7 days and younger will have their posts automatically removed.

Approved Bots


founded 2 years ago
MODERATORS
you are viewing a single comment's thread
view the rest of the comments
[โ€“] [email protected] 19 points 4 days ago (2 children)

A language I wish would die already, but there are still vendors that program in it, along with freaking Tomcat hosted applications. EduTech is still stuffed to the gills with it.

[โ€“] [email protected] 8 points 4 days ago* (last edited 4 days ago)

fucking tomcat and jboss...๐Ÿคฎ

[โ€“] [email protected] 5 points 4 days ago (4 children)

There's always Kotlin. Of course I never understood the desirability of a VM language in the first place, why not just compile for different architecture?

[โ€“] [email protected] 14 points 4 days ago

"Write once, run anywhere" is a pipe dream but Java came closer than anyone else by far.

[โ€“] [email protected] 12 points 4 days ago

It can help with standardization and some security benefits to run things in the JVM, part of the reason it's so popular in enterprise

[โ€“] [email protected] 1 points 3 days ago

JIT compiling and byte code morphing and instrumentation. For instance data base persistence is usually done by instrumentation tools, that add instructions to keep track about transactions and modified objects, or new objects that need persisting. And endless more things.

[โ€“] [email protected] 1 points 4 days ago

There's also Groovy. A data execution pipeline program I use called NextFlow uses Groovy based scripts.

And compiling for different architectures can be very difficult. I've done a lot of work Power9 computers and it's not as simple as having the right compiler flags. Often the dependencies aren't built for your platform either so you have to go and compile those too. It can be quite a hassle.