HackerTrans
TopNewTrendsCommentsPastAskShowJobs

_eojb

no profile record

Submissions

Hacker News reacts to JSON5 (2012)

news.ycombinator.com
41 points·by _eojb·vor 3 Jahren·29 comments

comments

_eojb
·vor 2 Jahren·discuss
This is a very brave post to write given how incendiary responses to rust criticism can be, but this matches my experience entirely.
_eojb
·vor 2 Jahren·discuss
None of these limitations have anything to do with an imgui frontend api though.
_eojb
·vor 3 Jahren·discuss
I don't know what line of work you're in, but I use a desktop orders of magnitude faster than my first computer also, and image processing, compilation, rendering, and plenty of other tasks aren't suddenly thousands of times faster. Not to mention that memory safety is just one type of failure in a cornucopia of potential logical bugs. In addition, I like core dumps because the failure is immediate, obvious, and fatal. Finally, stacks don't "randomly explode." You can overflow a stack in other languages also, I really just don't see what you're getting at.
_eojb
·vor 3 Jahren·discuss
It's just as "amazing" to read these takes from techno purists. You use software written in C++ daily, and it can be a pragmatic choice regardless of your sensibilities.
_eojb
·vor 3 Jahren·discuss
Used by sqlite, babel, others, and millions of downloads not good enough for you?
_eojb
·vor 3 Jahren·discuss
Ligatures, IMO, make for a bad coding editor experience. No, I do not want >> parsed as a right shift when it's actually used as two adjacent template delimiters. And no, I'm not okay with the inconsistency that results from the usage of different operators from one programming language to another. Want to change a != to a == operator? Enjoy futzing with placing the cursor properly. It's a cute idea, but I found it more annoying to use in practice.
_eojb
·vor 3 Jahren·discuss
Well, `std::regex` is literally orders of magnitude slower than other common regex libraries found in JS, Python, Perl, C, etc. It allocates a ton, is poorly implemented, and can never be fixed due to ABI constraints. The entire <regex> subsystem is a mess and should have never been standardized as is.
_eojb
·vor 3 Jahren·discuss
Contrasting opinion, it's a terrible strategy. Limiting the entire ecoystem of devs on your platform to features that have not only shipped but stabilized over 5 years prior on other platforms is nonsensical. Compare to MSFT, which is frankly ahead of the curve when it comes to compiler feature support, and even has the entire STL open sourced.
_eojb
·vor 4 Jahren·discuss
Speaking as a graphics engineer, Metal is THE most painful API to support bar none (including all the console vendors) because they just had to roll their own shader language as opposed to extending an existing one. The development cycle on Apple just plain sucks, and the tools are not as good as native tools provided by IHVs. I dread needing to support Apple platforms because they choose to be completely unhinged and make zero attempts to making porting easier.