Earlier quoted context omitted.
> some of the most highly paid workers on the planet won't pay for tools Aren't we in the middle of literally the entire industry adopting 200/mo AI subscriptions? It seems to me like engineers will absolutely pay for tools if they justify their value.
It's less a binary pay/no pay, and more the value of accessing the dev tools. If you consider the fact that AI companies are most likely losing money running the models, then AI tools are incredibly cheap - they're in some ways paying you to use it. No model maker is going to try to generate a profit off users using their models, they're gonna try to generate it some other way - much like dev tools.
Skip is now free and open source
231–235 of 235 posts
Re: Skip is now free and open source
#232Earlier quoted context omitted.
I think they mean cost of incremental units. 0->1 is much more expensive than 1->100 in software, unlike with things like lattes or houses
Yeah, "manufacturing" is a different step than "R&D"
Re: Skip is now free and open source
#233Earlier quoted context omitted.
Employees don't pay for tools and usually have no say in which tools are bought. Car mechanics don't pay for spanners, their employers do.
The mechanics I’ve know all had to buy their own tools. That may be different if you’re at a specialist shop, like a place that only fixes specific parts expensive makes of cars. The guy at the local auto shop fixing whatever drives in that day almost certainly had to buy all of his.
Re: Skip is now free and open source
#234Earlier quoted context omitted.
I think they mean cost of incremental units. 0->1 is much more expensive than 1->100 in software, unlike with things like lattes or houses
I assumed that they meant "cost of production", since that's what you give to keep your money, so that includes 0->1. But if what they meant is what you said then I'd say that the cost of 0->1 is not somehow less important. Software does make 1->100 much more accessible though, so, in that way, you have an opportunity to help out very small businesses in a way that you can't in other industries, which is even more of…
On the other hand, you wouldn't download a car...
Re: Skip is now free and open source
#235Earlier quoted context omitted.
Flutter re-generates the entire layout every tick and diffs it (immediate-mode), like a game engine. If your device isn't quite fast enough it'll lag, yep. RN is retained mode (but written in immediate-mode style and the diffing only happens when it has to).
That is absolutely not true. Elements with dirty layouts are tracked and layout is only recomputed up to the neearest layout boundary.