HackerTrans
トップ新着トレンドコメント過去質問紹介求人

symaxian

no profile record

コメント

symaxian
·2 か月前·議論
That is an interesting read, seems some were having a hard time grasping the benefit of having compiler checks for potential null dereferences. Having worked with null safety in TypeScript and Kotlin the extra bit of strictness is nice.
symaxian
·3 か月前·議論
You can enable null safety in TypeScript, seems like a pretty good fix to me.
symaxian
·5 か月前·議論
Sand-boxing such as in Snap and Flatpak?
symaxian
·7 か月前·議論
I'll second that Angular provides a great experience these days, but they have definitely had substantial API changes within the last few years: standalone components, swapping WebPack for esbuild, the new control-flow syntax, the new unit-test runner, etc...
symaxian
·10 か月前·議論
Valhalla should be able to address this to some extent with immutable value classes.
symaxian
·10 か月前·議論
I'd like to ask these CEOs, for people which are taking advantage of the system, why are they not let go? Could it be that management often have no clue how much value each employee brings to the team? Is RTO being mandated to avoid facing that uncomfortable truth?
symaxian
·11 か月前·議論
Are the techniques described in the article still in use today or have they been superseded?
symaxian
·2 年前·議論
Shadow maps are a good example, if the final rendered image is 4k you don't want to be rendering shadow maps for each light source which are only 1080p else your shadows will be chunkier.
symaxian
·2 年前·議論
I understand where he's coming from, but on the other hand it sounds like he's trying to avoid saying "maybe that OOP thing isn't all it was cracked up to be".
symaxian
·2 年前·議論
Yeah, I cannot count how many times I've seen it claimed that the virtual DOM is the secret to why React(or another framework) is fast, completely missing the point of the virtual DOM.

The virtual DOM is not faster than performing direct mutations of the actual DOM, the virtual DOM is a tool that allows the normally slow approach of "blow away and rebuild the world" to be fast enough to put into use.