Viewing profile — moretti
moretti
HN member- Joined
- Fri, Feb 07, 2014, 10:16 AM UTC
- HN karma
- 85
- Public activity
- 46 items
- HN profile
- View on Hacker News ↗
About moretti
No profile information was provided.
Recent public activity
-
comment
Comment #47362201
Thanks to the Vite team for building a faster, modern bundling solution on a fully open source stack that isn't tied to a specific framework...cough cough, Turbopack
- story
-
comment
Comment #30518571
It looked okay until I scrolled down to the browser compatibility table and had to tilt my head to read the vertical text
- comment
-
comment
Comment #28995619
Can anyone confirm if the final build number is the same as 12.0.1 RC2 (21A559)? You can run `$ sw_vers` from the CLI to check it.
-
comment
Comment #28402824
I use Copilot mostly as replacement for intellisense and macros. It helps me automating repetitive tasks. I would never trust Copilot for an algorithm or a snippet, I mean I would …
-
comment
Comment #28011337
yarn 2 solved real problems with zero install and advanced PnP. Maybe the only problem was that it was released too early, wasn't mature enough when it came out. Now it's just bett…
-
comment
Comment #27847862
it has a microSD card slot: https://www.steamdeck.com/en/tech
-
comment
Comment #22272357
They slow down the phone after an unexpected shutdown, when the battery is unable to deliver the necessary peak power.
-
comment
Comment #17618510
By declaratively I mean that in React you typically declare how an element should be render given the current (props, [state]). For example, in vanilla JS, you might have something…
-
comment
Comment #17615939
It’s interesting that you find this “simpler”. One of the great advantages of React is that is declarative, it’s easy to understand how a component will render given a set of (prop…
-
comment
Comment #14710092
Redux is not an implementation of Flux. These two blog posts explain the main differences: https://code-cartoons.com/a-cartoon-guide-to-flux-6157355ab2... https://code-cartoons.com…
-
comment
Comment #12000058
This is also a really good resource: https://github.com/thejameskyle/the-super-tiny-compiler
-
comment
Comment #11705245
https://twitter.com/domenic/status/721796970197684224
-
comment
Comment #11414466
I'm not a number, I'm a free man!
- story
-
comment
Comment #10901106
Yeah https://twitter.com/sindresorhus/status/669958889941639168
-
comment
Comment #10614092
In npmcdn the author of the package has to manually include the UMD build of the library.
-
comment
Comment #10478733
You still have to simulate named arguments with an object: const foo = ({ a = 2, b = 2, c = 3 } = {}) => a * b * c; const dict = {b: 4, c: 6}; foo(); // 12 foo(dict); // 48
-
comment
Comment #10463696
Reminds me of this tweet: https://twitter.com/capotej/status/647213485294616576
- story
- story
-
comment
Comment #10412871
You're probably not familiar with Atwood's Law[0]: > Any application that can be written in JavaScript, will eventually be written in JavaScript [0]: http://blog.codinghorror.com/t…
- story
- comment