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

Davidbrcz

no profile record

投稿

Dear researchers: help me deal with incidents [pdf]

surfingcomplexity.blog
5 ポイント·投稿者 Davidbrcz·18 日前·0 コメント

ACM Code of Ethics and Professional Conduct

acm.org
2 ポイント·投稿者 Davidbrcz·2 か月前·0 コメント

Forcing dark mode in PDFs for Firefox

drgrizz.xyz
3 ポイント·投稿者 Davidbrcz·2 か月前·1 コメント

P: Formal Modeling and Analysis of Distributed (Event-Driven) Systems

github.com
37 ポイント·投稿者 Davidbrcz·7 か月前·5 コメント

Ask HN: What predictions for 2025 did come true?

1 ポイント·投稿者 Davidbrcz·7 か月前·0 コメント

Visions: Simulate the View of Visually-Impaireds

play.google.com
1 ポイント·投稿者 Davidbrcz·9 か月前·0 コメント

Swiss voters back e-ID legislation

admin.ch
40 ポイント·投稿者 Davidbrcz·10 か月前·59 コメント

コメント

Davidbrcz
·一昨日·議論
https://lobste.rs/ feel more like old-HN
Davidbrcz
·16 日前·議論
This is the 2020s re-enactement of the early 2000 WYSIWYG editors.
Davidbrcz
·先月·議論
The best way to learn a new language is to follow a proper structured resource which would cover syntax, semantic, tooling & ecosystem and best practices.
Davidbrcz
·先月·議論
And that's the usual fallacy (just ignore the bad stuff).

But if you work with C++ in professional context, you will encounter it somewhere (library, teamate's PR, legacy code, LLM output, book / blog / conference ...). |

You actually need to know the bad stuff to be able to judge it and discard it.
Davidbrcz
·先月·議論
Python, Java, Lua, Ruby are ~30 years old, Ada being as old as C++.

Sure, none is perfect and they have cruft and warts, but they are not such a mess as C++ is.
Davidbrcz
·先月·議論
No it's not.

The language keeps growing, with

- new features overlapping old features from previous standards without replacing them or deprecating them (function::copyable_function vs std::function, std::less<> key for transparent lookup in maps)

- new features not usable by the layman (coroutines ...)

- Cryptic syntax (reflection...)

- Stuff you are told not to use because of performance reason and that cant be fixed because of ABI (regex)

- Compile errors that are 1km long (no, concepts are not helping here, the 'nicer' message is still buried into a hot pile of template instantiation callstack).
Davidbrcz
·先月·議論
Except the language keeps growing, with

- new features overlapping old features previous standards without replacing them or deprecating them. - new features not usable by the layman - ...

See function::copyable_function vs std::function, modules, coroutines, Reflection syntax is cryptic at best, ...
Davidbrcz
·先月·議論
I was an intern at CERN in mid 2010s and worked on this !
Davidbrcz
·2 か月前·議論
Concepts have been disappointing for me: what they tell you is still buried in 1000 lines of errors.
Davidbrcz
·2 か月前·議論
We are more likely to have water and food shortages because of resource exhaustion and climate change. Maybe goods shortages because of war or economic depression.
Davidbrcz
·2 か月前·議論
More climate disasters, more wars (water's war), more refugees.
Davidbrcz
·3 か月前·議論
> Dissimilar redundancy eliminates that risk. A completely different OS, different codebase, different development team.

Not entirely true. I've heard during my uni years of a case were two independent teams used the same textbook for implementing a feature, which had an error, and thus resulting in the same failure mode.
Davidbrcz
·3 か月前·議論
They are all the regular software, but with new bugs in it !
Davidbrcz
·4 か月前·議論
I use asio at work for coroutine. It's one of the most opaque library I've ever used. The doc is awful and impenetrable.

The most helpful resource about it is a guy on stackoverflow (sehe). No idea how to get help once SO will have closed
Davidbrcz
·5 か月前·議論
Just need to check if it's plain Ada or one specific profile or SPARK
Davidbrcz
·5 か月前·議論
Refreshing stories between all the AI ones (and crypto/web3 before that)
Davidbrcz
·5 か月前·議論
People manually doing resource cleanup by using goto.

I'm assuming that using defer would have prevented the gotos in the first case, and the bug.
Davidbrcz
·5 か月前·議論
https://www.crypto101.io/Crypto101.pdf
Davidbrcz
·5 か月前·議論
You do a cross analysis.

- Compile it with the maximum number of warnings enabled

- Run linters/analyzers/fuzzers on it

- Ask another LLM to review it
Davidbrcz
·5 か月前·議論
For main it's explicitly allowed by the standard, and no return is equal to return 0