๐™ฒ๐š›๐š’๐šœ๐š๐š’๐šŠ๐š— ๐™ฐ๐š๐šŠ๐š–'s Avatar

๐™ฒ๐š›๐š’๐šœ๐š๐š’๐šŠ๐š— ๐™ฐ๐š๐šŠ๐š–

@cristianadam.eu

Software Developer at The Qt Company. Berlin based. Tesla driver. Tango dancer. ๐Ÿ‡ฉ๐Ÿ‡ช ๐Ÿ‡ท๐Ÿ‡ด

263
Followers
382
Following
1,223
Posts
30.12.2023
Joined
Posts Following

Latest posts by ๐™ฒ๐š›๐š’๐šœ๐š๐š’๐šŠ๐š— ๐™ฐ๐š๐šŠ๐š– @cristianadam.eu

Ministerprรคsidenten fordern รœberprรผfung der Ladepreise.... ach doch nicht!
Ministerprรคsidenten fordern รœberprรผfung der Ladepreise.... ach doch nicht! YouTube video by Michael Schmitt B.E.N

๐Œ๐ข๐ง๐ข๐ฌ๐ญ๐ž๐ซ๐ฉ๐ซรค๐ฌ๐ข๐๐ž๐ง๐ญ๐ž๐ง ๐Ÿ๐จ๐ซ๐๐ž๐ซ๐ง ๐”๐ž๐›๐ž๐ซ๐ฉ๐ซ๐ฎ๐ž๐Ÿ๐ฎ๐ง๐  ๐๐ž๐ซ ๐‹๐š๐๐ž๐ฉ๐ซ๐ž๐ข๐ฌ๐ž.... ๐š๐œ๐ก ๐๐จ๐œ๐ก ๐ง๐ข๐œ๐ก๐ญ!

youtu.be/vz50yXrjhOo

@lichtblick.bsky.social ich habe heute von der ๐˜ค๐˜ฉ๐˜ข๐˜ณ๐˜จ๐˜ฆ ๐˜ช๐˜ต ๐˜ฆ๐˜ข๐˜ด๐˜บ App erfahren.

Als Lichtblick Kunde kommt diese ganze Sache nicht richtig gut an.

10.03.2026 08:14 ๐Ÿ‘ 0 ๐Ÿ” 0 ๐Ÿ’ฌ 0 ๐Ÿ“Œ 0
Post image

Selected markets show different stages of EV adoption: leaders (Norway, Iceland), early European adopters, major auto markets (Germany, UK, France), and Chinaโ€™s scale. The US was excluded due to California skewing national data, and Luxembourg due to its very small fleet. #Bettrification

09.03.2026 08:52 ๐Ÿ‘ 26 ๐Ÿ” 7 ๐Ÿ’ฌ 3 ๐Ÿ“Œ 0
Preview
Better support for parsing LLM output ยท Issue #355 ยท github/cmark-gfm cmark-gfm is used by a number of apps that interface with text-generating Large Language Models (LLMs) (this one and this one are the ones I know). These models produce a few characters of Markdown...

integrate it, I quickly found out that it's not working as expected.

Today I stumbled upon:

๐๐ž๐ญ๐ญ๐ž๐ซ ๐ฌ๐ฎ๐ฉ๐ฉ๐จ๐ซ๐ญ ๐Ÿ๐จ๐ซ ๐ฉ๐š๐ซ๐ฌ๐ข๐ง๐  ๐‹๐‹๐Œ ๐จ๐ฎ๐ญ๐ฉ๐ฎ๐ญ github.com/github/cmark... issue.

๐Ÿ˜ญ

Should I push the ๐šŒ๐š–๐šŠ๐š›๐š”-๐š๐š๐š–-๐šš๐š somewhere? It's the result of me guiding ๐š๐š™๐š-๐š˜๐šœ๐šœ-๐Ÿท๐Ÿธ๐Ÿถ๐š‹ in the right direction.

2/2

08.03.2026 22:21 ๐Ÿ‘ 0 ๐Ÿ” 0 ๐Ÿ’ฌ 0 ๐Ÿ“Œ 0
/**
 * ## Parsing
 *
 * Simple interface:
 *
 *     cmark_node *document = cmark_parse_document("Hello *world*", 13,
 *                                                 CMARK_OPT_DEFAULT);
 *
 * Streaming interface:
 *
 *     cmark_parser *parser = cmark_parser_new(CMARK_OPT_DEFAULT);
 *     FILE *fp = fopen("myfile.md", "rb");
 *     while ((bytes = fread(buffer, 1, sizeof(buffer), fp)) > 0) {
 *     	   cmark_parser_feed(parser, buffer, bytes);
 *     	   if (bytes < sizeof(buffer)) {
 *     	       break;
 *     	   }
 *     }
 *     document = cmark_parser_finish(parser);
 *     cmark_parser_free(parser);
 */

/** * ## Parsing * * Simple interface: * * cmark_node *document = cmark_parse_document("Hello *world*", 13, * CMARK_OPT_DEFAULT); * * Streaming interface: * * cmark_parser *parser = cmark_parser_new(CMARK_OPT_DEFAULT); * FILE *fp = fopen("myfile.md", "rb"); * while ((bytes = fread(buffer, 1, sizeof(buffer), fp)) > 0) { * cmark_parser_feed(parser, buffer, bytes); * if (bytes < sizeof(buffer)) { * break; * } * } * document = cmark_parser_finish(parser); * cmark_parser_free(parser); */

Time to remind myself that LLM stands for ๐™‡๐™–๐™ง๐™œ๐™š ๐™‡๐™ฎ๐™ž๐™ฃ๐™œ ๐™ˆ๐™ค๐™™๐™š๐™ก ๐Ÿซ 

Reading the comment below, one would also assume that ๐šŒ๐š–๐šŠ๐š›๐š”-๐š๐š๐š– can do some markdown parsing and rendering in a streaming fashion, right?

I had some fun with ๐šŒ๐š–๐šŠ๐š›๐š”-๐š๐š๐š–-๐šš๐š.

I have something working, but when I tried to ... 1/2

08.03.2026 22:21 ๐Ÿ‘ 1 ๐Ÿ” 0 ๐Ÿ’ฌ 1 ๐Ÿ“Œ 0
https://cmake.org/cmake/help/latest/manual/cmake-presets.7.html#configure-preset

inherits

An optional array of strings representing the names of presets to inherit from. This field can also be a string, which is equivalent to an array containing one string.

The preset will inherit all of the fields from the inherits presets by default (except name, hidden, inherits, description, and displayName), but can override them as desired. If multiple inherits presets provide conflicting values for the same field, the earlier preset in the inherits array will be preferred.

A preset can only inherit from another preset that is defined in the same file or in one of the files it includes (directly or indirectly). Presets in CMakePresets.json may not inherit from presets in CMakeUserPresets.json.

https://cmake.org/cmake/help/latest/manual/cmake-presets.7.html#configure-preset inherits An optional array of strings representing the names of presets to inherit from. This field can also be a string, which is equivalent to an array containing one string. The preset will inherit all of the fields from the inherits presets by default (except name, hidden, inherits, description, and displayName), but can override them as desired. If multiple inherits presets provide conflicting values for the same field, the earlier preset in the inherits array will be preferred. A preset can only inherit from another preset that is defined in the same file or in one of the files it includes (directly or indirectly). Presets in CMakePresets.json may not inherit from presets in CMakeUserPresets.json.

Yes, the documentation states that. Did I get it right with Qt Creator?

08.03.2026 11:52 ๐Ÿ‘ 1 ๐Ÿ” 0 ๐Ÿ’ฌ 0 ๐Ÿ“Œ 0

Happy International Women's Day!

08.03.2026 09:27 ๐Ÿ‘ 53 ๐Ÿ” 4 ๐Ÿ’ฌ 1 ๐Ÿ“Œ 0

It's being written in C++ / QML with Qt.

I don't know if it's faster, I only use Bluesky on desktop.

07.03.2026 15:34 ๐Ÿ‘ 0 ๐Ÿ” 0 ๐Ÿ’ฌ 1 ๐Ÿ“Œ 0

We have @skywalker.thereforeiam.eu here in the community ๐Ÿ’ช

07.03.2026 15:30 ๐Ÿ‘ 1 ๐Ÿ” 0 ๐Ÿ’ฌ 2 ๐Ÿ“Œ 0

The german chancellor went to the USofA to tell the ๐ŸŠ directly to his face!

Forgot the spine at home though. ๐Ÿคญ

04.03.2026 14:06 ๐Ÿ‘ 1 ๐Ÿ” 0 ๐Ÿ’ฌ 0 ๐Ÿ“Œ 0
A Day in the Life of an Ensh*ttificator
A Day in the Life of an Ensh*ttificator YouTube video by Forbrukerrรฅdet - Norwegian Consumer Council

Just in case you missed it ... Make it ๐Ÿ’ฉ *tty!

youtu.be/T4Upf_B9RLQ

03.03.2026 11:08 ๐Ÿ‘ 3 ๐Ÿ” 1 ๐Ÿ’ฌ 0 ๐Ÿ“Œ 0

One year to the day after Pam Bondi promised the full Epstein files, we got war with Iran instead

28.02.2026 08:30 ๐Ÿ‘ 462 ๐Ÿ” 164 ๐Ÿ’ฌ 18 ๐Ÿ“Œ 4
Qt Creator 19 RC released Qt Creator 19 RC released

๐๐ญ ๐‚๐ซ๐ž๐š๐ญ๐จ๐ซ ๐Ÿ๐Ÿ— ๐‘๐‚ ๐ซ๐ž๐ฅ๐ž๐š๐ฌ๐ž๐ ๐ŸŽ‰

www.qt.io/blog/qt-crea...

26.02.2026 13:25 ๐Ÿ‘ 0 ๐Ÿ” 0 ๐Ÿ’ฌ 0 ๐Ÿ“Œ 0
LLVM Weekly - #634, February 23rd 2026

LLVM Weekly - #634, February 23rd 2026. Chris Lattner on the Claude C Compiler, LLVM Foundation board meeting minutes, LLDB accelerator support, removing bugpoint, TSan adaptive delay scheduling, LLDB tree-sitter Swift+Rust syntax highlighting, and more llvmweekly.org/issue/634

23.02.2026 20:34 ๐Ÿ‘ 3 ๐Ÿ” 2 ๐Ÿ’ฌ 0 ๐Ÿ“Œ 0
Google with AI buttons

Google with AI buttons

Google without AI buttons

Google without AI buttons

I made a filterlist for uBlock Origin to remove Generative AI features on websites. Includes blocks for
* Google AI Summaries
* YouTube Ask button & chat summaries
* GitHub Copilot
* Facebook AI chat
* X's Grok buttons
* Deviantart DreamUp
* Booru AI images
* And more

github.com/Stevoisiak/S...

03.02.2026 00:30 ๐Ÿ‘ 23321 ๐Ÿ” 11635 ๐Ÿ’ฌ 288 ๐Ÿ“Œ 230
Preview
LLVM 22.1.0 Released! We are happy to announce that LLVM 22.1.0 is now released! This includes the main LLVM project, and its subprojects including clang, lld, libc++, and MLIR. Huge thanks to everyone that contributed, r...

LLVM 22.1.0 Released!

discourse.llvm.org/t/llvm-22-1-...

24.02.2026 14:25 ๐Ÿ‘ 1 ๐Ÿ” 0 ๐Ÿ’ฌ 1 ๐Ÿ“Œ 0
Job Hunting and Optimizing Compilers with Jamie Pendergast - CppCast Ep404 - C++ Weekly Ep 521
Job Hunting and Optimizing Compilers with Jamie Pendergast - CppCast Ep404 - C++ Weekly Ep 521 Jason is joined this week by Jamie Pendergast to discuss the current job market, learning to program, and optimizing compilers. Jamie is a 23 year old hobbyist C++ developer who enjoys building fun,โ€ฆ

Job Hunting and Optimizing Compilers with Jamie Pendergast - CppCast Ep404 - C++ Weekly Ep 521
youtu.be/vzar4IDKTys

23.02.2026 16:31 ๐Ÿ‘ 6 ๐Ÿ” 2 ๐Ÿ’ฌ 2 ๐Ÿ“Œ 0
Twitter: Last Week Tonight with John Oliver (HBO)
Twitter: Last Week Tonight with John Oliver (HBO) YouTube video by LastWeekTonight

Hereโ€™s last nightโ€™s story about Twitter, how it went from bad to worse under Elon Musk, and the real reason why John wonโ€™t be tweeting in the future. Hint: it has something to do with his amazing feet. youtu.be/p7ZG_xWYLzI

23.02.2026 15:05 ๐Ÿ‘ 1151 ๐Ÿ” 439 ๐Ÿ’ฌ 25 ๐Ÿ“Œ 58
Video thumbnail

Qt Creator 19 will have a HUGE improvement for Windows users ๐ŸŽ‰

This one line fix is the reason for it: codereview.qt-project.org/c/qt-creator...

See below Qt Creator itself being loaded in Qt Creator 18 and 19. I click left and right to see if the UI thread gets stuck.

23.02.2026 15:25 ๐Ÿ‘ 0 ๐Ÿ” 0 ๐Ÿ’ฌ 0 ๐Ÿ“Œ 0
A Brief History of Bjarne Stroustrup, the Creator of C++
A Brief History of Bjarne Stroustrup, the Creator of C++ YouTube video by CultRepo

๐€ ๐๐ซ๐ข๐ž๐Ÿ ๐‡๐ข๐ฌ๐ญ๐จ๐ซ๐ฒ ๐จ๐Ÿ ๐๐ฃ๐š๐ซ๐ง๐ž ๐’๐ญ๐ซ๐จ๐ฎ๐ฌ๐ญ๐ซ๐ฎ๐ฉ, ๐ญ๐ก๐ž ๐‚๐ซ๐ž๐š๐ญ๐จ๐ซ ๐จ๐Ÿ ๐‚++

youtu.be/uDtvEsv730Y

22.02.2026 14:31 ๐Ÿ‘ 3 ๐Ÿ” 1 ๐Ÿ’ฌ 0 ๐Ÿ“Œ 0

President toddler.

20.02.2026 20:03 ๐Ÿ‘ 211 ๐Ÿ” 26 ๐Ÿ’ฌ 10 ๐Ÿ“Œ 0
Preview
GGML and llama.cpp join HF to ensure the long-term progress of Local AI Weโ€™re on a journey to advance and democratize artificial intelligence through open source and open science.

GGML and llama.cpp join HF to ensure the long-term progress of Local AI

huggingface.co/blog/ggml-jo...

20.02.2026 14:40 ๐Ÿ‘ 1 ๐Ÿ” 0 ๐Ÿ’ฌ 0 ๐Ÿ“Œ 0
Preview
I hacked ChatGPT and Google's AI โ€“ and it only took 20 minutes I found a way to make AI tell you lies โ€“ and I'm not the only one.

I got a tip that all over the world, people are using a dead-simple hack to manipulate AI behavior. It turns out changing what AI tells other people can be as easy as writing a blog post *on your own website*

I didnโ€™t believe it, so I decided to test it myself www.bbc.com/future/artic...

18.02.2026 16:37 ๐Ÿ‘ 1975 ๐Ÿ” 677 ๐Ÿ’ฌ 31 ๐Ÿ“Œ 122
Tell HN: Ralph Giles has died (Xiph.org| Rust@Mozilla | Ghostscript) | Hacker News

RIP ๐Ÿ–ค Ralph Giles!

news.ycombinator.com/item?id=4699...

18.02.2026 14:45 ๐Ÿ‘ 0 ๐Ÿ” 0 ๐Ÿ’ฌ 0 ๐Ÿ“Œ 0
Image that shows a photo of Berlin with a caption Linux App Summit, May 16-17, 2026 in Berlin, Germany

Image that shows a photo of Berlin with a caption Linux App Summit, May 16-17, 2026 in Berlin, Germany

Weโ€™re excited to announce that Linux App Summit 2026 will take place May 16โ€“17 in Berlin, Germany. Join developers, designers, and open source contributors for two days focused on Linux apps.
linuxappsummit.org/local/

#Linux #opensource #Apps #KDE #GNOME #LinuxAppSummit #LAS2026

18.02.2026 10:25 ๐Ÿ‘ 19 ๐Ÿ” 4 ๐Ÿ’ฌ 0 ๐Ÿ“Œ 0
Post image Post image Post image Post image

Meanwhile, in Germany, the public weighs in on what they think of the Epstein Administration.

#BrutalButAccurate

17.02.2026 20:55 ๐Ÿ‘ 30025 ๐Ÿ” 8724 ๐Ÿ’ฌ 835 ๐Ÿ“Œ 455
ICE & DHS: Last Week Tonight with John Oliver (HBO)
ICE & DHS: Last Week Tonight with John Oliver (HBO) YouTube video by LastWeekTonight

I learned a few things from this episode. @lastweektonight.com ๐Ÿ‘

youtu.be/5-KDUOHEZFk

16.02.2026 16:57 ๐Ÿ‘ 0 ๐Ÿ” 0 ๐Ÿ’ฌ 0 ๐Ÿ“Œ 0
Qt Creator 19 Beta2 released Qt Creator 19 Beta2 released

Qt Creator 19 Beta2 released ๐ŸŽ‰

www.qt.io/blog/qt-crea...

12.02.2026 13:52 ๐Ÿ‘ 0 ๐Ÿ” 0 ๐Ÿ’ฌ 0 ๐Ÿ“Œ 0
Bruce Springsteen - Streets Of Minneapolis (Official Audio)
Bruce Springsteen - Streets Of Minneapolis (Official Audio) YouTube video by Bruce Springsteen

I wrote this song on Saturday, recorded it yesterday and released it to you today in response to the state terror being visited on the city of Minneapolis. Itโ€™s dedicated to the people of Minneapolis, our innocent immigrant neighbors and in memory of Alex Pretti and Renee Good.

Stay free

28.01.2026 17:02 ๐Ÿ‘ 97505 ๐Ÿ” 40888 ๐Ÿ’ฌ 4302 ๐Ÿ“Œ 5362
Qt Creator 19 Beta released Qt Creator 19 Beta released

Qt Creator 19 Beta released ๐ŸŽ‰

www.qt.io/blog/qt-crea...

#qtcreator
#qt
#cpp
#cmake

29.01.2026 10:40 ๐Ÿ‘ 0 ๐Ÿ” 0 ๐Ÿ’ฌ 0 ๐Ÿ“Œ 0