HackerLangs
TopNewTrendsCommentsPastAskShowJobs

rsalus

76 karmajoined 4 माह पहले
just a fella tryna make his way

comments

rsalus
·7 दिन पहले·discuss
surely the supply of unified memory will rise to meet demand before this is needed
rsalus
·10 दिन पहले·discuss
> now consumption is becoming dominated by asset owners

absolutely true. I am not convinced that consumption can be wholly fueled by asset owners though.
rsalus
·10 दिन पहले·discuss
the argument is productivity gains are increasingly driven by technological advances, which are spurred by capital investment. for example, if a company purchases software that increases their accountants productivity by 5x, should those accountants immediately be paid 4-5x more?

I would contend that the accountant should not - it should flow to who bore the cost of the input (capital owners). however, if you starve labor of those gains, it destroys the consumer base that capital relies on to buy its goods and services. therefore, society requires broad wealth distribution to function, which implies some level of redistribution by the state is needed.
rsalus
·11 दिन पहले·discuss
yes, but wage growth has not tracked productivity: https://fred.stlouisfed.org/graph/?g=1X020

household expenses have been increasing without commensurate wage growth, resulting in lower savings: https://fred.stlouisfed.org/series/PSAVERT
rsalus
·11 दिन पहले·discuss
2% is average. 1-1.5% is considered a slump, while anything over 2.5% is considered a boom. for instance, the post-ww2 boom (1947-1972) averaged 2.9%. at that rate of growth, a country's total output per worker doubles in roughly ~25 years.
rsalus
·11 दिन पहले·discuss
> amount of labor being generated per person has not really changed

not true, labor productivity has been steadily increasing: https://fred.stlouisfed.org/series/OPHNFB

workers are simply capturing less of the economic value generated by their labor.
rsalus
·11 दिन पहले·discuss
no, he's almost certainly referring to labor productivity. https://fred.stlouisfed.org/series/OPHNFB
rsalus
·11 दिन पहले·discuss
he's referring to labor productivity, e.g., the economic value produced per unit of labor input. it also _has_ changed significantly, as seen here: https://fred.stlouisfed.org/series/OPHNFB

however, unit labor costs has also been increasing (although they remain variable): https://www.bls.gov/opub/ted/2026/productivity-up-0-3-percen...
rsalus
·14 दिन पहले·discuss
agree, from my POV the constraints are still there but we've optimized now. still haven't solved the core problems.
rsalus
·22 दिन पहले·discuss
eh, they're a publishing business. choicescript is part of their business model - there's nothing inherently wrong with that.
rsalus
·23 दिन पहले·discuss
so cool! how does this compare to ChoiceScript?

https://www.choiceofgames.com/make-your-own-games/choicescri...
rsalus
·24 दिन पहले·discuss
they are forecasting $25-30B this year, so if anything they look to be neutral or even profitable.
rsalus
·24 दिन पहले·discuss
> The TAM for robots is much, much larger than for coding or services

how do you figure?
rsalus
·पिछला माह·discuss
AI usage will directly impact said margins. Moreover, for the scenario you describe, companies need to have the capability to precisely estimate the cost of a given deliverable - not something possible with current tooling + models. You're also underestimating the market trend towards vertical integration: companies are not going to be constrained by a sector or niche. They will expand to capture as much value as they can, because now their capacity to do so is partially decoupled from labor.

It will certainly be a cutthroat landscape for engineers, but companies will be building _more_ capacity, not less. In other words, the demand won't disappear for skilled technical labor, it will just move higher up the value chain.
rsalus
·पिछला माह·discuss
I don't know, even if AI allows two engineers to do the work of six, companies will likely just use that efficiency to expand their scope. I think we'll see short-term layoffs and a more stratified engineering field during the transition, but the fundamental need for deep technical expertise isn't going away.
rsalus
·पिछला माह·discuss
tests are an important signal of course, but the use case you describe doesn't necessarily mean you need to follow TDD. the data suggests that creating the tests after the code is just as or even more effective, and at significantly cheaper input cost.

I've been finding enforcing integrations and behavior structurally (e.g., through codegen/schemagen, e2e tests, etc) more reliable than simply instructing the models to write tests. oftentimes these tests are pretty low quality anyway, and results in its own form of tech debt.
rsalus
·पिछला माह·discuss
this is not really backed by any empirical evidence. there are simply more efficient means of verifying outputs than TDD.
rsalus
·पिछला माह·discuss
for LLMs, TDD amounts to little more than ceremony. there is a study on this exact topic: https://arxiv.org/pdf/2602.07900
rsalus
·पिछला माह·discuss
not necessarily, TDD has little bearing on output quality
rsalus
·पिछला माह·discuss
I was a big proponent of encoding TDD red-green-refactor methodology into my agent workflows until recently when I made the same realization after reading this study: https://arxiv.org/pdf/2602.07900

TLDR; it found test-writing volume only weakly correlates with success and that encoding test-writing principles did not move resolution rates but _did_ materially change cost. Encouraging tests cost +19.8% output tokens for 0% gain; discouraging them saved 33–49% input tokens for ≤2.6pp accuracy loss. Separately, imposing the TDD procedure specifically seems like it can backfire: it actually _increased_ regressions from 6.08% to 9.94%.

IMO, where tests clearly help is primarily as an "oracle" applied after generation. It gives the models a signal that enables them to verify and self-correct if necessary.