NVIDIA GTC 2025 Trip Report
This will be a short “trip report” of the talks I watched over the week of the GTC 2025 (March 18 - 21). All talks are freely available online. You can read previous GTC trip reports here:
A blog about programming languages and more
This will be a short “trip report” of the talks I watched over the week of the GTC 2025 (March 18 - 21). All talks are freely available online. You can read previous GTC trip reports here:
This will be a short / light weight “trip report” of the talks I watched over the week of the GTC 2024 (March 18 - 22). All talks are freely available online. You can read previous GTC trip reports here:
This will be a short “trip report” on the talks I watched over the week of the virtual GTC 2023 (March 20 - 24). All talks are freely available online. You can read my GTC trip report from 2022 here.
On the most recent episode of ArrayCast, we interviewed Michael Higginson about his path to the the array languages Q and APL. He was the most recent winner of the Dyalog APL Contest (in the professional category). During the podcast, he mentioned two beautiful solutions to two of the Phase 1 problems in the contest that, although never mentioned, were beautiful examples of using combinators.
On the most recent episode of ArrayCast , we interviewed Troels Henriksen about the Futhark Programming Language . From the website, “Futhark is a statically typed, data-parallel, and purely functional array language in the ML family, and comes with a heavily optimising ahead-of-time compiler that presently generates either GPU code via CUDA and OpenCL, or multi-threaded CPU code.” While talking…
This will be a short “trip report” on the talks I watched over the week of the virtual GTC 2022 (March 21 - 24). All talks are freely available online.
This trip report is a bit delayed, but better late than never. HOPL stands for History of Programming Languages and is a conference that happens roughly once every 14 years. The past HOPL conferences happened in the following years:
One of my favorite tweets is by Ben Deane:
Yesterday, a contributor to one of my open source projects (Robert) pointed out to me that std::find_if(f, l, pred) != l is just std::any_of(f, l, pred). I totally missed this while refactoring even though it is implicitly covered in my STL Algorithm Cheatsheet:
This was my second time attending Meeting C++. The first time I attended was in 2019, when I gave my first Meeting C++ presentation, Better Algorithm Intuition.