@Sumomo@sumomo.neocities.org if youāre looking for a great static site generator/publishing tool by the way have a look at my project ZS
@movq@www.uninformativ.de I actually didnāt know that and just listened to it. There are a few nice songs, but in general, itās too boring to me. Iām missing the rock and metal elements for sure. Some of the calm songs might work to relax in a sauna or so. But I find the āwind noiseā rather annoying.
For me, the two most āmagicalā things about np.arrays are:
- Vectorized/broadcast operations, like multiplying a matrix and a scalar value & adding or subtracting two vectors or two matrices - but also any vectorized function;
- Masking & array indexing, being able to use arrays to select positions on other arrays;
- Bonus-third-thing: multi-dimensional arrays in general are quite magical too, if you add slicing to it, good lord, it can be quite daunting.
Oh man wow š® Problem 9 was quite hard š± I had to build two new functions in the Mu stdlib for computing combinations and permutations, but then the combinations of range(1000) for triples such as a + b == c is enormous! So i had to write iterator versions of these to do lazy evaluation. Anyway solution follows:
#!/usr/bin/env mu
// Special Pythagorean Triplet
import "iter"
fn usage() {
print("Usage:", args()[0], "<n>")
}
fn sqr(x) { x * x }
fn main() {
if len(args()) < 2 {
usage()
exit(1)
}
n := must(int(args()[1]))
print("n:", n)
// For a < b < c and a + b + c == n, both a and b are strictly less
// than n/2. Generate only (a,b) combinations and derive c directly. This
// keeps the search lazy and reduces n=1000 from C(999,3) = 165,668,499
// candidate triples to C(499,2) = 124,251 candidate pairs.
pairs := iter.combinations(iter.range(1, n / 2), 2)
triples := iter.map(pairs, fn(xs) {
a := xs[0]
b := xs[1]
return [a, b, n - a - b]
})
// Enforce b < c; a < b is already guaranteed by combinations over an
// increasing range, and a + b + c == n holds by construction.
triples = iter.filter(triples, fn(xs) {
return xs[1] < xs[2]
})
// Euler 9 has one answer for n=1000. find() stops the entire upstream
// iterator chain as soon as the first Pythagorean triple is found.
answer := iter.find(triples, fn(xs) {
return sqr(xs[0]) + sqr(xs[1]) == sqr(xs[2])
})
print(answer)
if answer != nil {
print(answer[0] * answer[1] * answer[2])
}
}
main()
but yes, however you cannot currently add it or delete post via the app as I havenāt really built that feature at the moment you technically can do it, but you do run into some challenges with breaking threads if youāve already published something and then go back and edit it so we generally advise not to do that too much if you can help it
Most of this insane power consumption happens during the models training, so the additional cost of prompting, is minimal. Facebook invented cool ways to exted the environmental damage far beyond the training stage, by dumping the dirty data center water into nearby water sources, but thatās more so a Facebook problem, than a fault of AI.
I would still never waste my own money, paying for any AI subscriptions that my employer doesnāt already pay for, no matter if we use them, or not.
I am also against aggressive scraping and taking everything as training data, disregarding the authors wishes and license. I allow it on my website, mostly as proof that no matter how much they scrape my stuff, the real me remains both a superior webdev and artist.
I am well aware this makes me come across really egotistical, especially after developers far better than me, embraced vibe coding, arguably way too much. To give an example, all attempts to get Microsoft Copilot, thatās embedded into SharePoint, to generate an extension/uBlock filter to make SharePoint revert to the old superior UI failed, but I was able to do that in three lines of code ( https://thecanine.smol.pub/ublock-filters ), in half an hour, despite me never seeing the code of that page before. After a few of these comparisons, it is increasingly hard to see most of these tools, as my replacement.
I am not even going to talk about the people trying to imitate my art style with AI, until they can show me a result where all the squares are the same size, in a grid and actually square.
I am a bit split on this, donāt think thereās any real use for AI in things like art, at absolute most getting a reference to compare with multiple non-AI ones, or possibly some animation in between frames, if it ever gets better at making those. Would not rely on it for any of my personal projects, more than maybe a quick search that would have previously been done on Stack Overflow, but if I work somewhere and they demand it be used similarly to how it is described on this site, considering the current IT job market, Iād probably take the slop bullet, over being unemployed.
Obviously even in that case, Iād only do this to generate code I can understand, improve and review. Iām definitely not advacating people just put their feet up on the table and let some random combination of āAI agentsā, vibecode their entire codebase.
@movq@www.uninformativ.de Good question. Tarballs are probably not needed, but might be convenient for people who donāt want to or can use a version control system. Not sure if there are non-techies who use your software. Tarballs for branches are overkill, though, I agree.
Looking at this more closely: As for the feeds, how about filenames ātags.atomā and ācommits.atomā? Unless, of course, they were already named like that before.
For the tags feed it would be cool to include the actual changelog entries to be more useful if somebody takes this approach to get notified of new versions. But that would mean you have to duplicate the changelog entry into the annotated tag. And then you canāt fix changelog typos in the feed anymore. Alternatively, the feed generation would need to extract the section from the the CHANGES file. That has the benefit of automatically providing changelogs for past versions in the feed.
twtd instnace or via Github/Gitea or any other publishing backend (doesn't amtter). Please read.
and @david@daiwei.me your rename shipped š itās āGenerate recovery codeā now (you were right ā mints a fresh one each press), + it asks before replacing an existing code so you donāt nuke the one you saved š
@david@daiwei.me Not sure if you only mean the code segments or in general. In theory, a general darker text color for read messages would probably work. The thing is that regular white on black is quite standard. In Newsboat, new articles are red (I opted for yellow here) and read ones white. I found that useful and kinda copied it for tt.
š This pod, twtxt.net is now open to the general public again to join. However it is invite-only with admin review and approval/rejection. Welcome ! š
@prologic@twtxt.net The only image viewer I like in general is this one:
https://codeberg.org/nsxiv/nsxiv
Itās for X11, though.
Allegedly, this Wayland image viewer is somewhat similar to nsxiv, maybe youāll like that? š¤
Whatās your motivation for running this, btw? š¤
Basically, two things a) feeling generous for folks that either canāt afford or find it hard to have a little place to call home (webpage, feed, whatever) and b) a real opportunity to test some of the components that make it possible sshbox, which I know works well as it fronts my Gitea instanceās Git+SSH service and box, a container runtime I wrote a while ago, recently improved, hardened and polished.
Oh god, finally: The thumbnail generator for my blog now renders a typical āplayā icon for videos.
Saves me the need to write āthis is a videoā every time. š¬
Bored of brekkie? Try the lemongrass sausage muffin at this cafe-bar unlike anywhere else
A co-founder of ACME and a fourth generation Vietnamese restaurateur have partnered to open an intimate all-day diner with a fresh take on the familiar. ā Read more
Checking 46 kilos in economy class? Why some airlines are generous on luggage limits
The amount of check-in and carry-on luggage on a plane varies wildly depending on the airline and the route youāre flying. ā Read more
@lyse@lyse.isobeef.org Thanks!
On the AI changelog part, though, Iād rather recommend to just not have a changelog at all.
Iām afraid that ship has sailed. You can rest assured that someone who uses AI/LLMs for their code (which is almost everybody at this point) will most certainly also use it for changelogs.
I actually considered not mentioning AI output at all, because this just opens a huge can of worms ⦠š
While going through these terrible GitHub release pages, I also found these āNew Project Contributorsā sections
Yeah, they play on a nerdās pride.
Now, itās just the same auto shitshow with MR titles in a rolling date-versioned release scheme. Itās just our team who has to deal with that, though. I think Iām the only one who is not a fan of it.
Iāve found that this whole situation is much worse at work than it is in the Free Software world. At work, itās literally work and hardly anybody actually cares. We still donāt have all people convinced that writing good commit messages or using good branch names is worth the time. Itās ⦠oh god, no, Iām going to stop here, this is bad for my mental health. š
Suffice it to say, all release notes at work are now AI-generated. Nobody gives a fuck.
@movq@www.uninformativ.de Hahaha, great timing! :-D I love your article and agree with almost all your points.
On the AI changelog part, though, Iād rather recommend to just not have a changelog at all.
Another important thing for me is the deprecation notice section. What do I need to look out for in the future? Should I start to migrate to another API soon? Even right now? Or does it have time?
While going through these terrible GitHub release pages, I also found these āNew Project Contributorsā sections (yeah, for that, they found the time to make a section) annoying. Donāt get me wrong, sure, credit where credit is due. But come on. Soooooo much space for an inefficiently formatted (and also unsorted) list. At least it was easy enough to skip over it.
And then, there are also these changelogs or rather notice documents in general that are infested with multicolored emojis all over the place. My brainās spam filter kicks in and shoves everything to /dev/null immediately. Itās especially a thing at work.
In my previous work project, we also used the Keep A Changelog Format. That was great. You wouldnāt believe how often I resorted back to that document. At least twice a week, often several times a day. I was very glad that we put in this effort. Of course, writing the changelog took its time, but it was worth every minute and more. Reading a many months old item, it was immediately clear. I was our best customer in that regard.
Now, itās just the same auto shitshow with MR titles in a rolling date-versioned release scheme. Itās just our team who has to deal with that, though. I think Iām the only one who is not a fan of it.
A German Court Has Ruled That Google Is Liable for False Statements Generated by AI Overviews
The ruling holds that a company that designs, trains, operates, and manages an AI system must assume legal liability for any damages caused by the responses it generates. ā Read more
Test your general knowledge with the Good Weekend quiz
Trivia buffs: can you get a perfect score in the interactive superquiz? ā Read more
The US Is Requiring Foreign Influencers to Get Work Visas for the 2026 World Cup
FIFA announced agreements with platforms such as TikTok and YouTube that include the participation of dozens of international influencers to generate content in the three host countries. ā Read more
A man kept asking his flatmate on dates. Talikaās idea might fix the problem
Years of soaring property prices have meant the age of renters extend well beyond young adults and into new generations. But for women, it can come with additional hurdles. ā Read more
Device Clock Generation
Article URL: https://zipcpu.com/blog/2025/12/17/devclk.html
Comments URL: https://news.ycombinator.com/item?id=48499890
Points: 5
# Comments: 0 ā Read more
Appleās Camera Chief Thinks AI Can Give You Superpowers
The generative features in iOS 27ās new Photos app will add fake pixels to some of your shots, but Appleās Jon McCormack says the company isnāt using AI āfor the sake of AI.ā ā Read more
More AI-generated code doesnāt make your team faster. It might slow you
Article URL: https://twitter.com/awscloud/status/2064449711155589396
Comments URL: https://news.ycombinator.com/item?id=48489835
Points: 19
# Comments: 4 ā Read more
Australiaās Social Media Ban Is Floundering. Can It Still Help Younger Kids?
Six months in, many teens are already back on platforms they were supposed to be blocked from. The banās benefits may fall to the next generation. ā Read more
Australiaās Social Media Ban Is Floundering. Can It Still Help Younger Kids?
Six months in, many teens are already back on platforms they were supposed to be blocked from. The banās benefits may fall to the next generation. ā Read more
Trump Threatens More Strikes Against Iran, Citing Stalled Peace Talks
With no end to the turmoil in the Middle East, the U.N. secretary general lamented that a cease-fire had become āmore like a lesser-fire.ā ā Read more
Trump Threatens More Strikes Against Iran, Citing Stalled Peace Talks
With no end to the turmoil in the Middle East, the U.N. secretary general lamented that a cease-fire had become āmore like a lesser-fire.ā ā Read more
Trump Threatens More Strikes Against Iran, Citing Stalled Peace Talks
With no end to the turmoil in the Middle East, the U.N. secretary general lamented that a cease-fire had become āmore like a lesser-fire.ā ā Read more
Show HN: We post-trained a model that pen tests instead of refusing your code
Iām Dimitrios at Cosine. Quick orientation first: the read-only scan is free and you can run it right now: thatās the part to try. The pen-test mode is gated behind written authorisation, because itās live offensive testing against real systems; Iāll explain that below, itās not a paywall thing.
The reason `cos` exists: most āAI securityā tools wrap a general model, so they inherit its refusals ā point one at a real offensive task and it hedges or declines, b ⦠ā Read more
Actually, Iām stupid: Iām using the normal rsync on OpenBSD as well.
And regarding OpenRsyncās general usability:
https://marc.info/?l=openbsd-misc&m=178090751524547&w=2
Right now openrsync is limited in functionality and is primarily present
for rpki-client. The limited functionality makes it unusable for generic
use and so any diff or change like the above will not be considered since it
is simply not ready.First problem to solve is to remove the mmap usage in openrsync. After
that modern protocol versions need to be added. Once that is in place one
can start a discussion about using openrsync as a default on OpenBSD.
Launch HN: General Instinct (YC P26) ā Frontier models on edge devices
Hey HN, Guanming and Bill here from General Instinct ( https://general-instinct.com/).
After years of working in robotics, we kept running into the same problem: the best models never fit the hardware we actually had available.
The models that performed best were usually designed around datacenter assumptions: large GPUs, lots of memory bandwidth, and reliable network access. But most physical systems have the opposit ⦠ā Read more
So Long, āFerrynoia.ā Green Maritime Technology Is Here
From San Francisco to Stockholm, a new generation of electric ferries is entering passenger service, marking a tipping point for green maritime technology. ā Read more
Test your general knowledge with the Good Weekend quiz
Trivia buffs: can you get a perfect score in the interactive superquiz? ā Read more
@lyse@lyse.isobeef.org Ah, I almost thought so (that you wrote it by hand), but then I looked at the source code and saw the TOC and I was like: āNaah, probably not. I would be way too lazy to do that manually.ā š And indeed ⦠ha.
Oh god, yeah, thatās a lot of <span>. š¤ Canāt really avoid that, I guess, especially if you want to do syntax highlighting of code blocks.
You wrote your own site generator, didnāt you?
In parts. I write everything in Markdown (itās online, even: https://movq.de/blog/postings/2026-05-29/0/POSTING-en.md), plus a few Vim shortcuts (to generate thumbnails, for example), and then python-markdown renders it: https://pypi.org/project/Markdown/ This process is wrapped in a shell script, like āre-render every page if the .md file is newer than the .html fileā and thatās mostly it. And the Atom feed generator is completely custom. š¤
In a first, wind and solar generated more power than gas globally in April 2026
Article URL: https://electrek.co/2026/05/20/in-a-first-wind-solar-generated-more-power-than-gas-globally-april-2026/
Comments URL: https://news.ycombinator.com/item?id=48399332
Points: 7
# Comments: 0 ā Read more
āOdd choices of wordsā: How an academicās AI use was exposed by her peers
Western Sydney University has acknowledged that the opinion piece, published by this masthead, was AI-generated using the authorās previous work. ā Read more
Uni academic admits she used AI to write opinion piece in defence of AI
Western Sydney University has acknowledged that the opinion piece, published by this masthead, was AI-generated using the authorās previous work. ā Read more
Uni academic admits she used AI to write opinion piece in defence of AI
Western Sydney University has acknowledged that the opinion piece, published by this masthead, was AI-generated using the authorās previous work. ā Read more
Uni academic admits she used AI to write opinion piece in defence of AI
Western Sydney University has acknowledged that the opinion piece, published by this masthead, was AI-generated using the authorās previous work. ā Read more
@movq@www.uninformativ.de Itās the āLyse types the entire HTML by handā generator. Yes, no kidding. I write articles so rarely, that I can do that once in a while. Itās fun to some degree, but also not.
After some time, I finally recorded some Vim macros to insert <b>ā¦</b>, <var>ā¦</var>, <span class=s>ā¦</span> etc. around the tokens. This helped a little bit. But I was still questioning my mental state doing it like that. I also had to fix a bunch of the end tags by hand, because the word movement wasnāt enough or the end movement went too far. Quite the annoying process for sure.
But I think the HTML looks a wee bit nicer and is maybe even semantically a little bit better than having only <span>s everywhere. I find the <span class="whatever"> just soo awfully long. Of course, I never look at the code again, but knowing, that e.g. there is a <b> and it saves so many bytes in comparison, makes me happy. It is a more elegant solution in my opinion. Not by much, but better nonetheless. Itās a matter of simplicity. Admittedly, even I canāt avoid the <span>s alltogether. Oh well. On the other hand, Iām sure that this does not make any difference whatsoever. I bet, nobody and nothing, like a screenreader, analyzes the HTML for that, where this would be truly useful.
Oh! Maybe text browsers, though. It just occurred to me while composing this reply. :-) Haha, I lost my bet quickly. w3m picks up at least the <b> for keywords and builtin types, <u> for filenames and <i> for comments. Yey. No different styles for <var> and <mark>, unfortunately. elinks only renders the bold. Itās cool that I had the right intuition right from the beginning, despite being unable to pinpoint it. :-)
All the <span> hell with common syntax highlighters is a downer for me that keeps me from looking more into them. If I wrote more articles, I might rig something up with Pygments. At least thatās somehow positively connotated in my brain. Not sure if it actually deserves it, but I dealt with that in some loose form (canāt even remember) years and years ago. Apparently, it wasnāt too terrible.
To prepare the table of contents, I used grep and sed with some manual intervention in the end. The entire process can be improved. Absolutely.
You wrote your own site generator, didnāt you?
<updated> of the feed, too. But for some reason, some articles were suddenly marked as new.
@lyse@lyse.isobeef.org By the way, which site generator are you using? I kind of miss having code blocks with syntax highlighting and that generic yellow highlighting thing is pretty cool, too.
WAās once-in-a-generation storm causes lasting damage
Lasting damage has been done by WAās once-in-a-generation storm, turning stretches of Perth beaches into cliff edges. ā Read more
1-Bit Bonsai Image 4B Image Generation for Local Devices
Article URL: https://prismml.com/news/bonsai-image-4b
Comments URL: https://news.ycombinator.com/item?id=48346257
Points: 7
# Comments: 0 ā Read more
White House finally reveals purpose of mysterious aliens.gov domain
The domain name, which was registered in the run-up to the release of Trumpās UFO files, had generated much speculation. Back in March, the US governm⦠ā Read more
Itās one of the reasons in fact Iāve been working on bob so I have a very concrete and strong foundation for how these things work, how they behave and how bad or good they can be. I am on-purpose building bob to be not only a decent coding tool and general task completion tool, but with serious security boundaries, sanitation, auditing and compliance. If Iām going to succeed at building autoonmous agents that can cope with a wider array of varying inputs (mostly natural language, some structural language) then it needs to be both a) Safe and b) Robust
So going back to the understanding of how it generated this, is quite simply the most statistically relevant search space of itās weights it has been trianed on and it has basically just produced a series of tokens, one after another that are relevant to the input, the next token and so on. Itās a trivial example I know, but it basically pattern matches itās way through itās vast search space just producing outputs based on context.
@movq@www.uninformativ.de I think your points are pretty clear to me, thatās fine. Iām just seeing if you can perhaps see things a different way maybe?š¤ I would challenge the assertion that you cannot understand how Claude Code generated an output; which I can demonstrate easily with a fairly trivial example by the input:
Write a program in Go that sums a list of numbers from stdin and prints the result.
@prologic@twtxt.net Yeah, itās hard to get my point across here. I tried to address that a few paragraphs down.
Yes, I can tinker with AI techniques on a general level. Thatās cool but not really my area of interest.
What I certainly canāt do is learn how specific AI products work. I canāt possibly find out why Claude Code produced that particular line of code. Claude is just a magic box that does something and I have to trust it.
Former governor-general a man of compassion who paid heavy price for error in judgment
Peter Hollingworth had an unwavering concern for those on the margins, writes Labor legend Barry Jones. But a serious mistake while he was Archbishop of Brisbane led to his resignation as governor-general. ā Read more
āWeāre Just Getting the Crumbs Hereā: Striking Contractors Protest Layoffs at Metaās European Headquarters
Soon-to-be-laid-off Meta contractors say theyāre being treated differently than Mark Zuckerbergās full-time employees, who stand to receive more generous severance packages. ā Read more
We Asked the āFuture of Truthā Author to Explain How He Used AI. It Didnāt Go Well
A book about how AI shapes perceptions of reality came under fire for using AI-generated quotes. Its problems go beyond that. ā Read more
Test your general knowledge with the Good Weekend quiz
Trivia buffs: can you get a perfect score in the interactive superquiz? ā Read more
Show HN: AISlop, a CLI for catching AI generated code smells
Hi, Iām Kenny, Iāve been building aislop. I starting working on this after using Claude Code, codex and opencode several times and noticing some slops. They arenāt syntax and passes most tests, they are patterns like empty catch blocks, useless comments, duplicated helpers, dead code and many more. So I built a tool to scan and check for these patterns and wired it into hooks so after each tool call, the agent checks for the slops.
You can try it out with npx aislop sca ⦠ā Read more
This MacBook Privacy Screen Totally Changed How I Work in Public
Iām one of those people who enjoy on planes and in public spaces in general. But the issue of privacy was always a hurdle. ā Read more
Physical Media Is Making a Comeback. The Next Console Generation Might Kill It
Consoles with disc drives are the easiest way to enjoy all kinds of physical media, but that could end with the next-gen PlayStation 6 and Microsoftās Project Helix. ā Read more
New clue revealed in search for missing US Air Force general
William Neil McCasland may have met up with some members of US Space Force the night before he disappeared. Itās a mystery that has endured now for se⦠ā Read more
noai.html page. Apart from the global updated field in my feeds (that one got changed), everything else should be stable, though.
@movq@www.uninformativ.de Thanks. I noticed the <updated> of the feed, too. But for some reason, some articles were suddenly marked as new.
On some YouTube feed <entry>s, I noticed updated <updated> fields showing todayās timestamps. But unless there is no <published>, the <updated> is not even considered. I verified that in the source code. Yet, all the affected articles in Newsboat show todayās timestamp, not the years old publication timestamp. I generate the YouTube feeds from the original feeds myself once a day, so I doubt that this is cause by some YouTube shenanigans.
Very weird, it doesnāt make any sense at all. What is going on here? O_o It doesnāt appear that I have duplicates in the database either.
Of course, @movq@www.uninformativ.de! Most of my points are also included in your list.
First of all, programming is what I really do enjoy the most. So, it doesnāt make any sense at all to not do this anymore. āBut you could use your now free time to do something much cooler and more valuable!ā, others might reply. Fuck no, I donāt want to waste my time with other shit that doesnāt fulfill me, why on earth would I want to do that?
All this hallucination reduces quality badly. In my experience, itās also happening much more rapidly than I expected. Even though developers are still supposed to own and understand whatever has been generated under their name and even be responsible for that, the sad reality is that teammates often blindly trust the AI output. āBut I asked the AI and it told me that $this was impossibleā, āIāve no idea either, but the AI just generated itā are responses I get more often. What really makes my angry is when I point out a flaw and suggest an alternative and this is the reaction. It happened several times that just trying it out and seeing it clearly work to proof my point only took me half a minute, but people still did something handwavy else instead.
The learning effect is drastically reduced. The more time I spend on a topic, the better the odds that whatever I learned actually makes it over into long-term memory. Itās like if a collegue just says ādo it like thatā or āthis solves your problemā, but neither explains the why or how. Somehow, people are still convinced that itās a completely different story when you replace the human counterpart with a computer program in this equation.
Skills are unlearned. Itās like with automation in general, just much worse. You end up in a state where youāve no clue how anything works under the hood or how to actually find out important information that are needed to solve your problem. Youāre screwed when a process breaks out of the blue. Even though it can become also rather terrible, with classical automation youāre typically still be able to decipher how exactly the thing was supposed to do something.
The energy consumption is sooo high, I absolutely do not want to be a part in burning down our planet. Iām sure I find (and probably have long found without knowing) other ways to contribute to worsen our climate crisis.
The scraper part is already covered in detail in your list. :-)
Iām convinced that license and copyright violations are only played down or even refused entirely because companies want to make big money quickly. With the work of others of course. Their double standards are obvious, they still try to actively keep their own stuff secret and out of any training sets. At most for internal use only. Virtually noone in charge is interested in good long-term solutions. Short-term for the win, when disaster eventually strikes, the causers are long gone, the responsibilities in other hands.
Vendor lock-in is something that lots of folks are only realizing very slowly. Itās completely crazy to me. This drug dealer routine should be well-known by now. Itās fucking everywhere. Yet, people are always surprised when they found themselves caught in it.
Adding new AI stuff only increases complexity. But complexity is the enemy that everybody should fear and reduce as much as possible. Of course, this is not limited to AI at all. And everywhere I look around, people in charge looooove to make things way more complicated than they ever need to be. Yet, simplicity is the real art and much harder to achieve.
I donāt understand why we have to go back full force to the ambiguity of natural languages. This alone should be more than enough to realize what a stupid idea all that is. Linked to that is that the āinstruction setā is interpreted differently with newer model versions. I mean, is has to be. Why else would somebody want to upgrade in the first place than to get more Powerful⢠Featuresā¢?
Some people argue that with AI the democratization is empowered. However, in my view, the exact opposite is the case. Models are getting so large that you can basically not run them locally or even train them. So, you have to rely on whatever the vendor offers you and runs for you. In the end, this only gives the owners more power, the multi billionaires. Not exactly what I understand by democratization.
Finally, technology assessments are missing completely. Or they are faked such that mostly only the (questionable) benefits are listed. But all the negative impact is just ignored.
Letās keep some popcorn around for when this all explodes. :-)
1boy 1girl ai_generated blue_eyes blushing_at_viewer compile_heart cowgirl_position cum_in_pussy female_on_top hair_ornament ideafactory neptunia(series) reedio uncensored vaginal_penetration white_hair white_stockings
1boy 1girl ai_generated blue_eyes blushing_at_viewer compile_heart cowgirl_position cum_in_pussy female_on_top hair_ornament idea_factory neptunia_(series) reedio uncensored vaginal_penetration white_hair white_stockings ā Read more
1boy 1girl ai_generated anal_penetration at_night blue_eyes blush cherry_blossoms compile_heart cum_in_ass female_on_top hair_ornament ideafactory neptunia(series) night_sky partially_clothed reedio showing_pussy uncensored white_hair
1boy 1girl ai_generated anal_penetration at_night blue_eyes blush cherry_blossoms compile_heart cum_in_ass female_on_top hair_ornament idea_factory neptunia_(series) night_sky partially_clothed reedio showing_pussy uncensored white_hair ā Read more
1girl ai_generated blanket blue_eyes blushing_at_viewer breasts compile_heart hair_ornament ideafactory neptunia(series) nude_female reedio spread_legs uncensored white_hair
1girl ai_generated blanket blue_eyes blushing_at_viewer breasts compile_heart hair_ornament idea_factory neptunia_(series) nude_female reedio spread_legs uncensored white_hair ā Read more
1boy 1girl ai_generated black_shoes blue_eyes compile_heart cum_in_pussy hair_ornament ideafactory neptunia(series) on_bed partially_clothed reedio sex uncensored vaginal_penetration white_hair white_stockings worried_expression
1boy 1girl ai_generated black_shoes blue_eyes compile_heart cum_in_pussy hair_ornament idea_factory neptunia_(series) on_bed partially_clothed reedio sex uncensored vaginal_penetration white_hair white_stockings worried_expression ā Read more
1girl ai_generated ass avatar:_the_last_airbender big_ass big_breasts breasts fundoshi gigantic_ass huge_ass huge_breasts marshalperv nickelodeon pervmarshal toph_bei_fong topless
1girl ai_generated ass avatar:_the_last_airbender big_ass big_breasts breasts fundoshi gigantic_ass huge_ass huge_breasts marshalperv nickelodeon pervmarshal toph_bei_fong topless ā Read more
1girl ai_generated ass big_ass breasts fundoshi huge_ass original original_character pixel_art tabi_socks
1girl ai_generated ass big_ass breasts fundoshi huge_ass original original_character pixel_art tabi_socks ā Read more
1girl ai_generated ass avatar:_the_last_airbender big_ass big_breasts breasts fundoshi gigantic_ass huge_ass huge_breasts marshalperv nickelodeon pervmarshal toph_bei_fong topless
1girl ai_generated ass avatar:_the_last_airbender big_ass big_breasts breasts fundoshi gigantic_ass huge_ass huge_breasts marshalperv nickelodeon pervmarshal toph_bei_fong topless ā Read more
1girl ai_generated ass bigass breasts chel chel(the_road_to_el_dorado) dreamworks fundoshi huge_ass pixel_art the_road_to_el_dorado
1girl ai_generated ass big_ass breasts chel chel_(the_road_to_el_dorado) dreamworks fundoshi huge_ass pixel_art the_road_to_el_dorado ā Read more
1girl ai_generated ass avatar:_the_last_airbender big_ass big_breasts breasts fundoshi huge_ass huge_breasts marshalperv nickelodeon pervmarshal sarashi toph_bei_fong
1girl ai_generated ass avatar:_the_last_airbender big_ass big_breasts breasts fundoshi huge_ass huge_breasts marshalperv nickelodeon pervmarshal sarashi toph_bei_fong ā Read more
1girl ai_generated ass bigass breasts chel chel(the_road_to_el_dorado) dreamworks huge_ass loincloth pixel_art the_road_to_el_dorado
1girl ai_generated ass big_ass breasts chel chel_(the_road_to_el_dorado) dreamworks huge_ass loincloth pixel_art the_road_to_el_dorado ā Read more
1girl ai_generated ass avatar:_the_last_airbender big_ass big_breasts breasts fundoshi gigantic_ass huge_ass huge_breasts marshalperv nickelodeon pervmarshal toph_bei_fong topless
1girl ai_generated ass avatar:_the_last_airbender big_ass big_breasts breasts fundoshi gigantic_ass huge_ass huge_breasts marshalperv nickelodeon pervmarshal toph_bei_fong topless ā Read more
1girl ai_generated ass big_ass breasts fundoshi huge_ass loincloth original original_character pixel_art
1girl ai_generated ass big_ass breasts fundoshi huge_ass loincloth original original_character pixel_art ā Read more
1girl ai_generated ass avatar:_the_last_airbender big_ass big_breasts breasts fundoshi huge_ass huge_breasts marshalperv nickelodeon pervmarshal sarashi toph_bei_fong
1girl ai_generated ass avatar:_the_last_airbender big_ass big_breasts breasts fundoshi huge_ass huge_breasts marshalperv nickelodeon pervmarshal sarashi toph_bei_fong ā Read more
1girl ai_generated ass bigass breasts chel chel(the_road_to_el_dorado) dreamworks fundoshi huge_ass loincloth pixel_art the_road_to_el_dorado
1girl ai_generated ass big_ass breasts chel chel_(the_road_to_el_dorado) dreamworks fundoshi huge_ass loincloth pixel_art the_road_to_el_dorado ā Read more
1girl ai_generated ass avatar:_the_last_airbender big_ass big_breasts breasts fundoshi huge_ass huge_breasts marshalperv nickelodeon pervmarshal sarashi toph_bei_fong
1girl ai_generated ass avatar:_the_last_airbender big_ass big_breasts breasts fundoshi huge_ass huge_breasts marshalperv nickelodeon pervmarshal sarashi toph_bei_fong ā Read more
1girl ai_generated ass avatar:_the_last_airbender big_ass big_breasts breasts fundoshi gigantic_ass huge_ass huge_breasts marshalperv nickelodeon pervmarshal toph_bei_fong topless
1girl ai_generated ass avatar:_the_last_airbender big_ass big_breasts breasts fundoshi gigantic_ass huge_ass huge_breasts marshalperv nickelodeon pervmarshal toph_bei_fong topless ā Read more
1girl ai_generated ass bigass breasts chel chel(the_road_to_el_dorado) dreamworks fundoshi huge_ass loincloth pixel_art the_road_to_el_dorado
1girl ai_generated ass big_ass breasts chel chel_(the_road_to_el_dorado) dreamworks fundoshi huge_ass loincloth pixel_art the_road_to_el_dorado ā Read more
1girl ai_generated ass bigass breasts chel chel(the_road_to_el_dorado) dreamworks fundoshi huge_ass loincloth pixel_art the_road_to_el_dorado
1girl ai_generated ass big_ass breasts chel chel_(the_road_to_el_dorado) dreamworks fundoshi huge_ass loincloth pixel_art the_road_to_el_dorado ā Read more
1girl ai_generated ass avatar:_the_last_airbender big_ass big_breasts breasts fundoshi huge_ass huge_breasts marshalperv nickelodeon pervmarshal sarashi toph_bei_fong
1girl ai_generated ass avatar:_the_last_airbender big_ass big_breasts breasts fundoshi huge_ass huge_breasts marshalperv nickelodeon pervmarshal sarashi toph_bei_fong ā Read more
YouTube to automatically label AI-generated videos
Article URL: https://variety.com/2026/digital/news/youtube-ai-video-labels-automatic-detection-1236758865/
Comments URL: https://news.ycombinator.com/item?id=48299753
Points: 11
# Comments: 2 ā Read more
Iām Tired of Talking to AI
Article URL: https://orchidfiles.com/im-tired-of-ai-generated-answers/
Comments URL: https://news.ycombinator.com/item?id=48292224
Points: 18
# Comments: 3 ā Read more
Constraint Decay: The Fragility of LLM Agents in Back End Code Generation
Article URL: https://arxiv.org/abs/2605.06445
Comments URL: https://news.ycombinator.com/item?id=48256912
Points: 5
# Comments: 0 ā Read more
Tell HN: Iām tired of AI-generated answers
I found GitHub repositories that were spreading malware. I asked AI what I should do about it, but it gave me nothing useful. So I opened a discussion on GitHub. Someone replied. It was literally the exact same text the AI had given me. I called it out and the comment was deleted. Then another person replied. Same exact AI response again.
I worked as a developer in a company. I asked the business owner a question about a business task. He sent me a ChatGPT screenshot with the an ⦠ā Read more
Ah, thereās even a term for it:
https://en.wikipedia.org/wiki/Generation_effect
The generation effect is a psychological phenomenon whereby information is better remembered if it is generated from oneās own mind rather than simply read.
hfgl with your coding agents
I Cloned Myself With Geminiās AI Avatar Tool. The Result Was Unnervingly Me
I used the Gemini app to generate lifelike videos featuring a digital clone of myself. Google sees this as the future of creation. Iām still creeped out. ā Read more
Google Makes It Easy to Deepfake Yourself
Googleās overhaul of its AI creation software, Flow, includes a new video model and a tool for generating selfie videos called avatars. ā Read more
Old Oil and Gas Wells Could Find Second Life Producing Clean Energy
States across the US are looking to take major sources of pollution and use them to generate much-needed power. ā Read more
Gen Z Is Pioneering a New Understanding of Truth
The first generation to truly grow up online, Generation Z and their cohort live in a social media ecosystem that blends facts and feelings. Itās significantly shifting how they understand whatās true. ā Read more
I just wanted to look up 9V block battery prices online and these automatically generated descriptions are getting dumber by the minute:
Datum der Erzeugung: Verfallsdatum minus 7 Jahre
(Date of manufacturing: expiration date minus 7 years)
Or look at this one:
Die leistungsstarke 9 V-Block E Batterie, auch 6LR61 genannt, eignet sich besonders gut für Taschenlampen, Radio oder Kinderspielzeug, die einen gleichbleibenden Strombedarf haben. Ihre max. Spannung beträgt 1,5 V.
(The high performance 9 V block E battery, also known as 6LR61, is particularly suitable for torches, radio or childās toys, which have a steady power demand. Its max. voltage is 1.5 V.)
The battery is best suited for⦠devices where it fits. No shit, Sherlock! Has anyboy ever come across 9V block torches? O_o I havenāt.
The Audemars Piguet x Swatch Collaboration Is Here for Real
With Instagram awash with inaccurate AI-generated concepts for its Royal Pop collab, Swatch was forced to reveal the genuine article. ā Read more
The Top New Features in Googleās Android 17āand Gemini IntelligenceāComing This Summer
Youāll soon be able to generate your own widgets or ask Gemini to finish a booking in Chrome on Android. ā Read more
Iām not always on the same page as Rob Pike, but this hit close to home:
Although trained in physics, I worked in the computing industry with pride and purpose for over 40 years. And now I can do nothing but sit back and watch it destroy itself for no valid reason beyond hubris (if Iām being charitable).
Ineffable sadness watching something I once loved deliberately lose its soul.
I spent my time trying to make it better. Not just write code, but find better or at least different ways to do so. Simpler, cleaner, more general, more comprehensible.
Whatās happening today is a complete repudiation of everything I was trying to achieve.
āSimpler, cleaner, more general, more comprehensibleā, thatās what Iāve been trying to establish in our teams as well. Obviously not to the same degree, but you get the idea.
And it all goes out the window now. Weāre doing the complete opposite ā and with full force.
The iPhone That Never Was
In 1990, three former Apple employees launched a company that epitomized the Silicon Valley dream. What they invented looked like an iPhoneāmore than a decade earlier. The device never came to be. ā Read more
@itsericwoodward@itsericwoodward.com is there a Gamer Master, or Dungeon Master in Magic? My kid plays DnD, and such person is decisive for many outcomes, and for the quality of the game in general.
Congratulations! :-)
Welcome to the Great American Satellite Age
A new generation of satellite startups in San Francisco is racing to capitalize on recent technological breakthroughs in space-based data collection and communications. ā Read more
The mindset of nerds (or people in general, but nerds especially) appears to be: āThereās a problem ā I know how to build a solution around that! (Because Iām good at building things!)ā
Rarely does anyone ask: āWhy does this problem exist? Can we find a way so that this doesnāt happen in the first place?ā
As an enjoyer of delightfully bad graphic design, found on most Czech village center cork boards, Iām sad to see the stolen clipart and badly cropped watermarked stock images, gradually replaced with AI slop.
This is far from a serious rant, but generating images of my kind being telepathically hit with sharp rocks, surely gives me a right to complain.

So far these seem the most prominent slop categories, seem to beā¦
Architecture slop:
- find a sketch of what an old building looked like

- generate an AI version, without correcting any of the perspective errors - this one is diagonally levitating

- generate a recreation of the buildings demise - after going through the AI, for the second time, it is now a completely different building

Moralizing slop:


History slop:

When the boss tells me they were generous with their estimate for a batch of features ā Read more
When I come across code that uses Math.random() to generate unique IDs ā Read more
Everything changes, right? I know we sound like curmudgeons, and perhaps AI is the next step. We are living its early infancy, the struggles and dislikes, the errors and flaws, and generations after us will simply benefit from it, and see it as natural as my children see the Internet today (it isnāt natural to me, I was born way before it).
Or maybe AI isnāt the next step. Either way, whether we like it or not, there is truly absolutely nothing (or close to) we can do. Well, complain we can, of course. :-P