Archival Log: DELTA-005. Our design philosophy centers on phenomena that resist categorization. Entities like the Tsukikago Servitors provide enough cues to recognize a pattern but never enough to deduce motive. By aiming for "fragmented understanding," we force the mind to seek logic in inscrutable systems. This shifts focus from explanation to the horror of implication—an existential dread born of systems operating by their own alien rules. #HorrorDesign #Incomprehensible #TTRPG #InTheField

I normally like Kohler’s column when he unpacks economic news, but when he digresses into tech topics, I’m less likely to read him. I did this time (because things may change after all) but all I got from it is GenAI KoolAid and vaguely hinted at problems that #TechBros are keen on glossing over.

It is a pity that the author is not turning his analytical mind to take a closer look at what the frenetic pace of #GenAI development and the #GenAISlop it splashes about the place as it inexorably pushes forward with not only #TechnicalDebt but also #CognitiveDebt laden implementations. Sooner than we think, we’ll be faced with problems we do not know how to solve for want of the ability to #FaultFind in a sea of #sloppy and #incomprehensible machine produced code mashups.

Where to an economy held hostage to runaway coding machines? The ‘wagering system’ that is the stock market will start to look like ‘doctored’ one-arm bandits of yore. Where the wealth will flow is very obvious.

#EatTheRich #Antifa #Resistance #RedistributeWealth #UBI
#TaxReform

https://www.abc.net.au/news/2026-02-16/ai-jobs-fake-breakthrough-resignation-chat-gpt-claude/106346440

AI got personal last week, and it's more complicated than we think

A fake news story about me, a series of AI breakthroughs and a resignation in the tech world show that 2026 could be pivotal for AI.

#InherentVice is one of those #forgettable #movies.
Those two hours and half that it lasts could be better if it was a 15 minutes #ShortFilm.

No one is dead as the #movie try to make us believe and the conflict gets solved in the last 30 minutes.

The ending: well #cryptic and #Incomprehensible.
Please avoid is a waste of time with no #comedy (as it advertises)

#streaming #HBO #HBOMAX #crime #WorstMovieOfTheYear #cinema

🚀🚀 Breaking news from the year 2025: #C++ #developers continue their quest to make #code as #incomprehensible as possible! 🤯🌪️ Now with "range #support for std::optional," you too can spend hours deciphering code that makes even seasoned programmers question their life choices. 🙃🎉
https://www.sandordargo.com/blog/2025/10/08/cpp26-range-support-for-std-optional #Range #Optional #Programming #Humor #HackerNews #ngated
C++26: range support for std::optional

I learned about the new range API of std::optional from Steve Downey at CppCon 2025 during his talk about std::optional<T&>. To be honest, I found the idea quite strange at first. I wanted to dig deeper to understand the motivation and the implications. The first example I encountered was this: 1 2 3 4 5 6 7 void doSomething(std::string const& data, std::optional<Logger&> logger = {}) { for (auto l : logger) { l.log(data); } return; } This shows that you can iterate over an optional. In fact, iterating over an optional means the loop will execute either zero or one time. That’s neat — but at first glance, you might ask: why on Earth would anyone want to do that? After all, you could just write: 1 2 3 4 5 6 7 void doSomething(std::string const& data, std::optional<Logger&> logger = {}) { if (logger.has_value()) { l->log(data); } return; } Sure, you need pointer semantics, but if you dislike the arrow operator, you can write logger.value().log(data). It’s slightly longer, but arguably more expressive. So what’s the real value of the range-based approach? Well, the people writing the standard are not exactly known for adding features “just because” - they are smart and considerate. I figured there had to be more compelling examples that didn’t fit into a presentation slide. And indeed, there are. When optional Meets Ranges A great use case appears when chaining ranges involving optional values. The range API allows us to avoid explicit null checks in pipelines where missing values are simply skipped. Here’s an example from P3168R2: 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 // Example from P3168R2: start from a set of values, apply multiple range operations involving optional values. std::unordered_set<int> s{1, 3, 7, 9}; const auto flt = [&](int i) -> std::optional<int> { if (s.contains(i)) { return i; } else { return {}; } }; for (auto i : std::views::iota(1, 10) | std::views::transform(flt)) { for (auto j : i) { // no need to transform for (auto k : std::views::iota(0, j)) { // std::cout << '\a'; // do not actually log in tests std::ignore = k; } // std::cout << '\n'; // do not actually log in tests } } This is where std::optional as a range truly shines — it integrates seamlessly into the range pipeline and eliminates manual if checks. You can find a broader set of examples in the Beman project unit tests . Competing Proposals Interestingly, there were competing proposals for this functionality. P1255R12 suggested two new views: views::maybe and views::nullable. The former would have represented a view holding zero or one value, while the latter would have adapted types that may or may not contain a value. However, the authors of P3168R2 argued for a simpler, more unified approach. Since std::optional and the proposed maybe_view used identical wording: “may or may not store a value of type T”, introducing another type with the same semantics seemed redundant. In the end, genericity and simplicity won — we didn’t need a new view when optional could just become one. You can read the arguments pro and contra in the referenced papers. std::optional as a View By adopting this range interface, std::optional effectively becomes a view containing at most one element. The question was how to make it so. Two options were considered: Inheriting from std::ranges::view_interface<std::optional<T>> Specializing std::ranges::enable_view<std::optional<T>> to true The first approach would have introduced unnecessary member functions, contradicting the simplicity goal. So the second option won — std::optional<T> now simply specializes ranges::enable_view in the same spirit as std::string_view and std::span. Iterator Types The authors really believe in simplicity. They kept trimming unnecessary parts between revisions. Initially, they considered defining a full suite of iterator algorithms, but realized that the existing ranges::begin(), ranges::cbegin(), et al. already do a big part of the job. As a result, std::optional only defines iterator and const_iterator, both of which are implementation-defined. They were originally meant to be raw pointers, but that could have led to misuse — such as applying placement new — so implementers will need to ensure safer behavior. Conclusion std::optional’s new range interface might look unusual at first, but it’s a subtle, useful enhancement. It integrates optional into the range ecosystem, letting it compose cleanly with other views and transformations without explicit branching. Rather than introducing yet another view type, the committee went with keeping things simple and making existing abstractions more composable. It might take a while to feel natural, but once you start thinking of optional as “a range of at most one”, it all clicks. Connect deeper If you liked this article, please hit on the like button, subscribe to my newsletter and let’s connect on Twitter!

Sandor Dargo’s Blog
🔥 Behold, the latest attempt to make #programming incomprehensible: #Uxntal, the language that combines the elegance of #Brainf*ck with the usability of hieroglyphics. Who needs syntax or logic when you can have a zine that requires a decoder ring and a séance to interpret? 🤡📜
https://wiki.xxiivv.com/site/uxntal.html #Languages #Incomprehensible #Tech #Humor #HackerNews #ngated
uxntal

By Devine Lu Linvega

XXIIVV
🎉 Introducing FOKS: Because obviously, what the world really needed was yet another way to make #Git even more #incomprehensible. 🚀 Rest easy, though—your #secrets are now double-locked away in a fortress of acronyms and jargon, protected from everyone except those who might actually want to use them. 🔐✨
https://foks.pub/ #FOKS #Security #HackerNews #ngated
Federated Open Key Service (FOKS)

It's a super comprehensible tragedy, #JDVance. Just comprehend how gutting the #NOAA destroys weather forecasting and prevents proper flood warnings. In fact, it's the most comprehensible weather tragedy we've had in months.

#CampMystic
#incomprehensible