banner
andreasbuhr.bsky.social
@andreasbuhr.bsky.social
C++ developer at Dassault Systèmes
Mein Opa hat einen Brief an @jaroslavrudis.bsky.social geschrieben. Nun finden wir keine Adresse. Weiß jemand, wo mein Opa seinen Fanpost hinschicken kann?
July 18, 2025 at 6:17 PM
Reposted
There’s so much happening right now, I thought I’d put together a running thread on the dismantling of #climate and research and knowledge infrastructure in the United States 🧵
May 7, 2025 at 12:11 PM
Reposted
Me every time reading about European initiatives trying to attract American researchers.
May 5, 2025 at 12:29 PM
Hi, this puzzles me: When using "::delete" in C++ on a base pointer, virtual destructors are called correctly, but the delete function is passed a wrong size. Can someone explain? Is this a compiler bug?
Compiler Explorer - C++
class Base { double x; // base class size: 16 public: virtual ~Base() { fprintf(stderr, "~Base\n"); } }; class Derived : public Base { double a; // derived class size: 24 public: virtual ...
godbolt.org
April 14, 2025 at 11:31 AM
Reposted
If you listen carefully to a Unix Shell

Sometimes you can still hear the C

🥁

#programming
April 11, 2025 at 1:27 AM
Reposted
What is some piece of Computer Science or programming knowledge that *you* think is "core" but not enough people seem to know?
January 12, 2025 at 6:22 PM
Today's advent of code was first semester linear algebra. The two given vectors define a new basis for the space. All there was to do is a change of basis.

My solution:
github.com/andreasbuhr/...

I just completed "Claw Contraption" - Day 13 - Advent of Code 2024 #AdventOfCode
github.com
December 13, 2024 at 1:15 PM
Hey @jetbrains.com I just updated to CLion 2024.2.1. Now "Loading CMake project" takes forever. It's unusable.
December 11, 2024 at 10:12 AM
I've completed "Plutonian Pebbles" - Day 11 - Advent of Code 2024 #AdventOfCode adventofcode.com/2024/day/11

Pretty happy with the runtime of 58ms for the second part.
Solution:
github.com/andreasbuhr/...
Day 11 - Advent of Code 2024
adventofcode.com
December 11, 2024 at 9:25 AM
github.com
December 7, 2024 at 11:10 AM
Day 5 of Advent of Code 2024 #AdventOfCode was easy, my solution:
github.com/andreasbuhr/...
github.com
December 5, 2024 at 2:40 PM
Fourth day of #AdventOfCode: I did a simple solution: github.com/andreasbuhr/...
github.com
December 4, 2024 at 9:20 AM
Today some basic regexing in #AdventOfCode github.com/andreasbuhr/...
github.com
December 3, 2024 at 8:45 AM
Second day of #AdventOfCode I only created a quadratic solution. A linear solution should be possible. github.com/andreasbuhr/...
github.com
December 2, 2024 at 9:35 AM
I just tried Advent of Code for the first time. Advent of Code statistics say more than 19.000 people already solved today's puzzle. #AdventOfCode adventofcode.com/2024/day/1
Since today's leaderboard is already full, I can share my solution here: github.com/andreasbuhr/...
Day 1 - Advent of Code 2024
adventofcode.com
December 1, 2024 at 8:53 AM
Wo kann ich den Habeck-Pullover kaufen?
November 25, 2024 at 7:20 PM
Hallo
November 15, 2024 at 10:57 PM
I just watched and really enjoyed the last C++ on Sea talk by @jfbastien.com : "*(char*)0 = 0;". youtu.be/dFIqNZ8VbRY These were short 54 minutes! I can only recommend this!
*(char*)0 = 0; - What Does the C++ Programmer Intend With This Code? - JF Bastien - C++ on Sea 2023
https://cpponsea.uk/---*(char*)0 = 0; - What Does the C++ Programmer Intend With This Code? - JF Bastien - C++ on Sea 2023int main() { *(char*)0 = 0;}This i...
youtu.be
November 17, 2023 at 7:26 AM
Reposted