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

covoeus

no profile record

投稿

Keynote: The Problem of C++ – Klaus Iglberger [video]

youtube.com
2 ポイント·投稿者 covoeus·昨年·1 コメント

コメント

covoeus
·2 か月前·議論
llama.cpp is general purpose in the sense that it supports many different model architectures. ds4 is laser focused on deepseek v4 flash, thus having a leaner codebase
covoeus
·昨年·議論
Use `cb!` instead of `cb`:

    rg --vimgrep restore_tool | vim -c cb! -
You might also wanna open the quickfix list by default:

    rg --vimgrep restore_tool | vim -c cb! -c copen -
You can learn more about how to navigate it using `:h quickfix`.
covoeus
·昨年·議論
Summary:

Klaus argues that while it is very easy to write unsafe C++ due to language defaults, modern tools and language features, such as

- ranges over loops,

- strong types with concepts over primitives, and

- value semantics over references

provide a safe abstraction over a fast core. He also urges people to use constexpr wherever possible and write consteval tests to catch undefined behaviour at compile-time.

In his opinion, the "People problem" of C++ is that developers are not disciplined enough, or simply don't know any better, as even most books about C++ don't keep up with recent developments and cultural shifts.
covoeus
·2 年前·議論
Sounds similar to the GA144 chip from the inventor of Forth