Hacker News new | past | comments | ask | show | jobs | submit | nchi3's comments login

My workplace is all MacBooks, and a lot of employees have gone over to M1s, and I have not heard of a single case of this happening.


Diminishing returns usually applies if you assume there are no major breakthroughs. Can we assume that there won't be any major breakthroughs in this field?


Diminishing returns describes a trend. A breakthrough describes a single data point that bucks the trend. I'm not sure these are mutually exclusive, as after any breakthrough the diminishing returns trend is reestablished.

I wouldn't bet on no breakthroughs happening in laser efficiency, but more efficient lasers doesn't look like it will be enough to get to net energy given other inefficiencies in the system.


It's quite obvious that it means "running in the browser engine" rather than "has the technology implemented in a native language". But sure, you're technically correct.


>by using algorithms to automate the most trivial parts of copying someone's work

That's basically what copilot is...?


Ethical or not, Copilot is sophisticated software, which doesn't qualify as "trivial" by my definition.


How is it good for the small local businesses who don't have a choice but shutting down?


What's the reasoning for this?


Because the US Fed will cause a recession to resist wage inflation.


It indicates an overheated economy


What didn't work for you? I remember thinking events were surprisingly easy to use with GDScript when I tried the Godot 4 alpha earlier this year.


Compared to Get component with Unity, sending messages isn't all that great.

I'm looking at some other OSS engines now


What? This is not at all what the author is describing (or even what you're insinuating is bad in Godot).


Storming the Capitol makes you a criminal though, whether you're carrying a gun or not.


Not sure how it works exactly (I'm sure someone else in this thread can fill in!), but that hasn't ever been possible on consoles. Not even the very first Playstation which used CDs would accept copies out of the box.


I think PS1 CDs had data written in an area (early?) consumer CDR writers couldn’t reach. I don’t know about PS4/5 games.


Because there are scenarios where pattern matching (or instanceof) is the better and more ergonomic thing to use. One obvious example I can think of is event handling.

If anything, this is _not_ something JS devs are asking for, but rather devs using functional languages.


I also think of API ergonomics. Unspecified input with the same single endpoint, while under the hood will be absolute spaghetti, from a developer adoption standpoint can be make or break.

And if you're strongly typing your system rather than relying on strings, extra so.


[flagged]


Exactly, this is what OP was trying to point out. With the record matching feature, you don't need the extra abstract base class anymore.

This is not to say that abstract base classes are never a good idea, but sometimes in Java they were only there for the convenience of one handler method, to prevent the use of instanceof. This didn't improve readability. That's when the record matching can be a good improvement.


Sometimes it isn't desirable to scatter the logic across many classes, or conflate the data and the handling. The Java world has the "visitor pattern" to help deal with that, but its double-dispatch is clunky, complex and verbose. Pattern matching just generalises switch and makes it more useful. Java is genuinely a better language with this change.


Guidelines | FAQ | Lists | API | Security | Legal | Apply to YC | Contact

Search: