HackerLangs
TopNewTrendsCommentsPastAskShowJobs

alserio

604 karmajoined 6 jaar geleden

comments

alserio
·eergisteren·discuss
I was surprised, that was not my impression at all. But thank you for your answer!
alserio
·eergisteren·discuss
Spaces over tabs? Since when?
alserio
·4 dagen geleden·discuss
Actually, yes
alserio
·4 dagen geleden·discuss
Never trust anything that can think for itself, if you can’t see where it keeps its brain
alserio
·7 dagen geleden·discuss
React expects to own the DOM and that state is managed by pure functions. There are good reasons for this, but the consequences are that it's restricting how the web platform works and when something does not agree with it weird things can happen. Is it bad? Sometimes. Is it the rest of the Web fault? I don't believe so. If you are using React you are largely constraining yourself to work in the React model, not in the Web model. That might be fine, but it might also not be.
alserio
·8 dagen geleden·discuss
That's due to the React constraints, though
alserio
·17 dagen geleden·discuss
For what i see, these us vs europe thigs have spiked recently, who'll benefit from it?
alserio
·20 dagen geleden·discuss
AOT what you can, JIT what can benefit from more information.
alserio
·vorige maand·discuss
Not a startup, but real estate investors have a good chunk of shares of the company where I work and they can influence the decision makers just fine
alserio
·vorige maand·discuss
Nice Easter egg
alserio
·2 maanden geleden·discuss
"Learned a lot today, love Galactus"
alserio
·5 maanden geleden·discuss
Maybe, but some groups are banking on you having "news fatigue". So maybe they don't feel that way. And doing it in spite of them is something that balances out my anxiety for me.
alserio
·7 maanden geleden·discuss
I'm not sure I'm understanding your solution
alserio
·8 maanden geleden·discuss
thanks
alserio
·8 maanden geleden·discuss
Can I ask what that domain is?
alserio
·9 maanden geleden·discuss
does it? seems like that these times the tides are rising only the bigger yachts and sinking the smaller boats
alserio
·9 maanden geleden·discuss
I explicitly said svelte 3 and 4, while runes have they pro and I appreciate them, svelte was terser before.
alserio
·9 maanden geleden·discuss
have you tried svelte 3/4?
alserio
·9 maanden geleden·discuss
I can understand the point, and the fact that in virtual dom implementations you in general specify the state -> view mapping and don't need to distinguish between first render and updates. However, practically and personally I find working with signals way simpler, and that is even without considering the debugging experience.
alserio
·9 maanden geleden·discuss
The biggest downside of knockout is that it parses the template from the dom, and the template is rendered as dom until first execution. Then that it eval it's bindings. I suppose tko should help with those issues but seems kinda dead. Knockout reactivity primitives are also a lot more naive then modern signals implementations.