HackerTrans
TopNewTrendsCommentsPastAskShowJobs

alserio

604 karmajoined 6 ปีที่แล้ว

comments

alserio
·3 วันที่ผ่านมา·discuss
I was surprised, that was not my impression at all. But thank you for your answer!
alserio
·3 วันที่ผ่านมา·discuss
Spaces over tabs? Since when?
alserio
·4 วันที่ผ่านมา·discuss
Actually, yes
alserio
·4 วันที่ผ่านมา·discuss
Never trust anything that can think for itself, if you can’t see where it keeps its brain
alserio
·8 วันที่ผ่านมา·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 วันที่ผ่านมา·discuss
That's due to the React constraints, though
alserio
·17 วันที่ผ่านมา·discuss
For what i see, these us vs europe thigs have spiked recently, who'll benefit from it?
alserio
·20 วันที่ผ่านมา·discuss
AOT what you can, JIT what can benefit from more information.
alserio
·เดือนที่แล้ว·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
·เดือนที่แล้ว·discuss
Nice Easter egg
alserio
·2 เดือนที่ผ่านมา·discuss
"Learned a lot today, love Galactus"
alserio
·5 เดือนที่ผ่านมา·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 เดือนที่ผ่านมา·discuss
I'm not sure I'm understanding your solution
alserio
·8 เดือนที่ผ่านมา·discuss
thanks
alserio
·8 เดือนที่ผ่านมา·discuss
Can I ask what that domain is?
alserio
·9 เดือนที่ผ่านมา·discuss
does it? seems like that these times the tides are rising only the bigger yachts and sinking the smaller boats
alserio
·9 เดือนที่ผ่านมา·discuss
I explicitly said svelte 3 and 4, while runes have they pro and I appreciate them, svelte was terser before.
alserio
·9 เดือนที่ผ่านมา·discuss
have you tried svelte 3/4?
alserio
·9 เดือนที่ผ่านมา·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 เดือนที่ผ่านมา·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.