HackerTrans
TopNewTrendsCommentsPastAskShowJobs

matt2000

3,185 karmajoined vor 15 Jahren
http://www.larvalabs.com/

Submissions

Rating 26 years of Java language changes

neilmadden.blog
4 points·by matt2000·vor 10 Monaten·0 comments

comments

matt2000
·vor 23 Stunden·discuss
I am increasingly wondering if we are in a post-language world in terms of development. Why would I ask an agent to write a server in anything other than the most efficient language, although efficiency can take several forms: runtime, token usage during development, and wall clock dev time (affected by slow compile times for example).

My intuition is that type-safe languages with fast compilers are the best option. Maybe Go? I personally prefer Java just due to my experience running it in production, but am not sure there's many arguments for it over Go in a greenfield application. The other candidate would be Rust, but I worry about token efficiency and tool performance, I suspect it's not worth it for the runtime improvements.

All that being said, in this article switching to Python seems like a wild choice. Relatively poor performance, no compile time checking at all. Python's big selling point was developer ergonomics, which seems largely irrelevant now.

These are all just thoughts at the moment, I should try to find some evidence one way or another.
matt2000
·vor 7 Monaten·discuss
It's the first thing on the linked page:

Realtime database Authentication File storage Admin dashboard
matt2000
·vor 10 Monaten·discuss
I would argue that it helps me when performing maintenance to see and correct where types may have changed. Not always, and sometimes it is busy work I agree, but overall I prefer it.
matt2000
·vor 10 Monaten·discuss
I agree, and I'm not sure how something like 'var accounts = calculateAccounts(something)' can be thought of as better in a code review setting. I suspect using "var" or equivalent will be considered a problem by most companies within the next few years.