And just like that Problem 10 is done and correct whoohoo 🥳 It was easy because in Problem 7 I’d already written an iterator to produce infinite primes. So the solution for finding the sum of primes under 2,000,000 is basically (shortened):
primes := iter.take_while(iter.filter(prime_candidates(), is_prime), fn(p) { p < n })
print(iter.sum(primes))
And of course the answer is: 142913828922 which took ~21.ss for the Go Vm to compuete.
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()
It is such a nice feeling that Mu is such a capable little language 😅 And I decided to write code code in Mu by hand 🤚 haha 🤣 and start solving Project Euler problems, like Problem 8 which works out to be a nice elegant solution in Mu:
#!/usr/bin/env mu
// Largest Product in a Series
import "fp"
import "sys"
fn usage() {
print("Usage: cat |", args()[0], "<n>")
}
fn products(xs) {
return fp.reduce(xs, 1, fn(x, y) {
if y == nil {
return x
}
return x * y
})
}
fn main() {
if len(args()) < 2 {
usage()
exit(1)
}
s := must(sys.read_all(0))
if len(s) == 0 {
usage()
exit(1)
}
n := must(int(args()[1]))
r := fp.max(fp.map(fp.sliding(fp.map(s, int), n), products))
print(r)
}
main()
@david@daiwei.me Thanks, mate! I just finished my two full version marking gauges. And I’m rather pleased with them, I think they turned out great if I say so myself.
https://lyse.isobeef.org/tmp/streichmass-mit-messerrad/
The beech fences (80 and 100mm long) were part of a former table frame that I cut down. I plugged the dowel holes with, well, dowels. The horrific looking one was the stuck original one, though. Luckily, it’s a hell lot worse on camera than in person. If you take a close look, you’ll also be able to see the large but slight chamfers one one side each that I just left alone.
I really like beech wood. It looks beautiful, is rather heavy (at least in comparison to spruce which I typically use) and thus rock solid, is also a blast to plane and the list goes on. I sanded it with 180 grit and it’s smooth as a baby’s bottom.
The 25mm beech round stocks that house the brass knurled nuts are now roughly 4cm long. That’s one thing I wanted to change right after my first experience. If they were rounded or chamfered more, it would probably be even nicer for the fingers when using the marking gauge. They’re sunken in roughly 3mm in the fences. A forstner bit made quick work. This simplified alignment during glue-up a lot. Will definitely do that again if I happen to build more. I could fully concentrate on the grain orientation and it didn’t shift around.
Just like in the prototype, I used 8mm aluminium solid round bar again for one of the marking gauges. It’s also about 15cm in length. I figure that’s enough. The bought marking gauge has a twenty-something and some change steel rod. So far, all my markings didn’t even exceed probably 50mm.
I found the 8mm brass pipe laying around on the workshop. Didn’t know anymore I had it for ages. Unfortunately, the wall thickness is below a millimeter, so my 6mm wooden dowels are sliding in there. Thus, I put 8mm dowels in my drill chuck and reduced the diameter with a rasp. I went a tiny bit too far, the press fit is on the loose side. When drilling with a 2mm drill (I did that on purpose to hopefully cause the dowel to expand a bit more in the pipe, typically the tap hole for M3 is 2.5mm) and tapping M3, the downsized and glued in dowel slipped down the pipe. Should have used construction adhesive or something along those lines. Anyway, I might replace it with a solid one. I consider this a half-successful experiment. I fear that an unfavorable grain direction might pull out the cutting wheel during use. Let’s see.
The finish of all three is boiled linseed oil. It looks nice, but oh by, this smell. I really dislike it. My hands stink even after washing them several times. I still got several liters left, so I have the dubious joy to use it on many, many other projects to come.
Oh, one last thing. Didn’t manage to drill the tiny holes for my M3x16 bolts perfectly in center like for the prototype. They’re a tiny bit off. Also, on the longer fenced marking gauge, the hole for the knurled nut is a little to the side and at an angle. No idea how I messed this up. Luckily, it’s just a look thing but doesn’t impair use.
Aber Auslöffeln werden es trotzdem wieder ganze andere Leute müssen. Wie immer. Das ist das bittere an der Sache. Trifft immer die Falschen.
Prinzessin Müllabfuhr. Den Namen mache ich mir jetzt zueigen. Mich dagegen wehren kann ich eh nicht. 😐
Kollege meinte mal halb sarkastisch, irgendwann werden Firmen dann wieder Menschen einstellen, weil die billiger sind.
Wir gehen teilweise von Cloud-IaaS-Hostern wieder zurück zu Hardware, weil das billiger, flexibler, schneller ist … Derzeit zumindest. Die Cloud-Hostern kommen mit dem Nachkaufen von RAM nicht hinterher, sodass ständig „die Cloud voll“ ist. (Und, ja, natürlich wird sich darüber heftigst aufgeregt, aber dass das genau am eigenen Verhalten, nämlich der religiösen Liebe zur AI, liegt, merken sie nicht.)
Es ist auch jedes Augenmaß weg. Die „fette“ Kiste mit 64 CPUs, 256 GB RAM und 2 TB Platte wird nach allen Regeln der Kunst vollgekleistert. Irgendein Furz-Workload braucht 24 GB RAM, aber das ist jetzt normal und wird akzeptiert. So ist das jetzt halt.
@lyse@lyse.isobeef.org Bingo!
Oh, yeah, newsboat is good. For this particular use case, I explicitly needed a graphical feed reader, though. 😅 I ended up using Thunderbird, which has its own interesting way of configuring/adding feeds:
https://movq.de/v/a3557e3dc9/vid-1784952576.mp4
Why are feeds categorized as “Mail”? What’s going on with that “Add” button on the left of the dialog? Why does the dialog indicate that there’s a folder called “list-files Recent Commits” which doesn’t really exist in the end? (Why does it take about 1-2 seconds to load 25 feed items?) And so on.
@GabesArcade@gabesarcade.com this sort of tells me two things 1) that enterprises aren’t really engaging with OpenAI and establishing lucrative enough contractual agreements and 2) users aren’t willing to pay for ChatGPT or if they are aren’t willing to pay much more than $20 a month
I finally built a prototype of a marking gauge with a cutter wheel out of some scraps.
https://lyse.isobeef.org/tmp/streichmassprototyp-mit-messerrad/
It had been a long time in coming, I bought some replacement cutting wheels three years ago for exactly that purpose. I also found out that I need more M3 countersink bolts for future marking gauges that I want to make (maybe two or three more). Luckily, I had exactly one. I thought I got way more than that, but M3 is very, very scarce in my collection. My M3 bolt was barely long enough to attach the cutting wheel to the bar. But it’s okay for the prototype.
I was pleasantly surprised that I managed to drill the 2.5mm diameter hole almost perfectly in center in the 8mm diameter aluminium round bar. Center finder, drill press and vise with a vertical prism for the win!
I knew upfront that the M5 steel bolt to lock the bar in place definitely needs to be replaced with a brass or aluminium one (maybe with a knurled head). Otherwise, it cuts into the aluminium bar and leaves ugly marks. These burrs might even scratch the workpiece. But, of course, I don’t have any brass on hand either. Alternatively, I swap out the aluminium bar for a steel or even stainless steel one. Stainless might be tricky to precisely drill and tap, though.
I already learned a few things by making this prototype. The final wooden fence can be even a bit bigger. This round thing behind is also too short, I’d like it to be a tad longer and thicker. The final one will be made from hardwood, not spruce. Other than that, it’s great and already more practical than my store-bought marking gauge with its round fence. This only causes the tool to roll around on the workbench. Or even roll off. Stupid design.
Efeitos do cruzamento cultural entre 2 crianças cá em casa (8 e 3 anos):
“Vamos agora construir uma casinha para o Venom. Venomzinho, ficas aqui enquanto faço a tua casa.”
The only place where this would be an issue is the Twtxt Search Engine – But as the GDPR also points out:
Art. 17
The one place the “it propagated and I can’t recall it” problem is legally acknowledged is Art. 17(2), and it explicitly scales to what’s technically feasible:
“…the controller, taking account of available technology and the cost of implementation, shall take reasonable steps, including technical measures, to inform controllers which are processing the personal data that the data subject has requested the erasure…”
Best-effort, given the technology. A decentralised, append-only, content-addressed feed is the available technology, and its limits are baked into the standard the law applies. Nobody — not the user, not you — is obliged to guarantee every cached copy vanishes.
@itsericwoodward@itsericwoodward.com Well I clearly suck 🤣 putt.day #62 ⛳ 22/12 +10
🟡🟢🟡🟡🔴🔴🟡🟢🟢🟢🟡🔴🔴🟢🟢🟢🟡🟢🟢🟢 +2
https://putt.day/s/b4UKsjw0olkS
@balloonfu-sen@yarn.girlonthemoon.xyz Thank you for doing this 🙏 – Just a thought… It might be possible for this to be fully automated from the Twtxt Search engine / crawler? Right? 🤔 It has all of the data… I also think it might be possible to distinguish between 1-way feedsa and “real folks” (ya know, 2-ways feeds) 🤣
@prologic@twtxt.net Well, 15 shows the site. On the left, I had a roll mat on a tarp. I borrowed some “NVA tarps” from the scouts for this trip. The scouts got them from the National People’s Army, the German Democratic Republic’s armed forces after Germany was reunited. They’re 1.75m x 1.75m in size and weigh 1.3kg, quite heavy, but super awesome. One tarp on the bottom, another one to cover up the clothes, shoes and sleeping bag in order to protect against the thaw. Finally, a mosquito net over all that, hung from a rope between two trees.
My mate just used a hammock with a mozzie net on the right hand side. The third tarp served as the luxurious bedside carpet. :-)
We sat on my second tarp to chill and enjoy the sunset and surroundings. It was nice to notice birds etc. die down. It took a really long time for the last light to fade away. Since we have a very high risk of forest fires, we of course couldn’t have a camp fire. But after all the exhaustion, I didn’t even miss it for one second.
Since we had dinner at home before leaving, all we brought were two lye rolls, two grain rolls, two brezels, some sausage and chocolate biscuits for breakfast. From the 2.5l of water, I ended up using 2l. It’s always good to have a little extra, despite the unnecessary weight. We had brekkie a few kilometers further on a bench in the shade. The first bench was already in direct sun.
Our camp site was maybe 30m to the side and a few meters down of a summit path hidden behind some trees and bushes. We were quite lucky, the other side of the hill got quite a bit of a breeze at night. We could hear the leaved treetops making much more noise behind us.
@movq@www.uninformativ.de Yes, these kind of dogs should really be strictly forbidden!
It’s not illegal if you own the forest or ask the owner. :-)
@david@daiwei.me Yeah, no clue. But my mate said the dog is disqualified from such adventures in the future. :-)
The temps were supposed to hit 14°C just before sunrise. Since we didn’t bring a thermometer, I can’t tell for sure. I was rather hot in my sleeping bag, so I had to pull out my arms every now and then. My mate’s sleeping bag was a little lighter and, unfortunately, the zipper jammed up. Since it didn’t close all the way, it felt quite a bit cold I was told in the morning. When we got up at 6ish (we said, we don’t care about time at all), it was probably already 16°C if not more. I brought a jumper, but a t-shirt was already nice enough to wear. The jumper just served as my pillow. The mercury raised by the minute then.
Yeah, I circled the spot with a biro to keep an eye on it. Until now, there’s absolutely nothing to see. Looks like I got lucky.
Test 2
multiline
@GabesArcade@gabesarcade.com The no-JS part is one thing, but you also have to disable the (nowadays common) forced-HTTP-to-HTTPS-redirect, because those old browsers can’t do modern crypto. And make sure that your webserver serves the correct page even if no Host header is sent by the client. And don’t even think about serving UTF-8 or even just putting utf-8 in the content type. 😅 And for the JPEG thumbnails I pass a special flag to ImageMagick so that IBM Web Explorer from OS/2 won’t trip. 🤣 And always use link rel="stylesheet" for CSS, because some browsers render inlined CSS as literal text. And … probably more that I forgot by now. 😂
@david@daiwei.me Not sure, actually. Let’s see. Those are the ones where I still have the original disks (or have bought them on eBay again):
- SuSE Linux 6.4 (it’s a massive 7 CD distro with a huge manual, best thing ever)
- OS/2 2.1
- OS/2 Warp 3 (red and blue spine because
$reasons)
- OS/2 Warp 4
- PC DOS 7
- MS-DOS 6.22
- Windows 3.1
- Windows for Workgroups 3.11
- Windows 95 C
- Windows 98
- Windows NT 4 Workstation (still in the mail, though 😅)
- Windows 2000
- Windows XP Professional (last Windows I ever used on my private PCs)
(Plus a few “classic” office products as can be seen here: https://movq.de/blog/postings/2024-05-23/0/POSTING-en.html )
Okay, wow. Windows NT 4 wasn’t part of my timeline back then, so this is the first time I’m seeing it in action. And this thing came with IE 2, which I’ve also never seen before. (That’s interesting, because I remember using IE even on Win 3.x, but apparently that was already IE 3?)
It also makes me really happy to see my website work in these old browsers. Fullscreen images are “broken” because those are PNG or WebP, but the rest works just fine. 🥳
Interesting, HTTPS is almost twice as slow as plain HTTP on my server (~72 ms vs. ~135 ms):
$ hyperfine -r 50 "curl -so /dev/null 'http://movq.de/blog/postings/2024-05-23/0/t/word11a.jpg.jpg'"
Benchmark 1: curl -so /dev/null 'http://movq.de/blog/postings/2024-05-23/0/t/word11a.jpg.jpg'
Time (mean ± σ): 72.7 ms ± 17.2 ms [User: 6.2 ms, System: 4.8 ms]
Range (min … max): 49.5 ms … 99.7 ms 50 runs
$ hyperfine -r 50 "curl -so /dev/null 'https://movq.de/blog/postings/2024-05-23/0/t/word11a.jpg.jpg'"
Benchmark 1: curl -so /dev/null 'https://movq.de/blog/postings/2024-05-23/0/t/word11a.jpg.jpg'
Time (mean ± σ): 135.5 ms ± 28.9 ms [User: 17.8 ms, System: 5.6 ms]
Range (min … max): 93.2 ms … 198.5 ms 50 runs
But it’s Windows, it doesn’t have a place in my heart.
The older I get, the more I’m glorifying anything pre XP. 😅 But that’s only because everything today is so horrible.
Well, not anything pre XP. 3.0 or newer would be nice, because Windows 2.x was still pretty bare bones:
(OS/2 was great, though, except for the lack of a good file manager.)
I indexed 669 GB of my GoPro videos using my M1 Max computer and local ML models
TLDR: I had 2,207 GoPro videos, and I need to rewatch them to find interesting moments from my cycling journey. I built a project to index them locally on my M1 Max using open-source ML models, search for those moments, and send the best clips straight to my DaVinci Resolve timeline. I indexed 628 videos (668.68 GB, 15h 13m 18s of footage duration), more details in the metrics table in the last section of this article.
Full article: https:// … ⌘ Read more
FarOutCompany
Article URL: https://faroutcompany.com/
Comments URL: https://news.ycombinator.com/item?id=48527360
Points: 6
# Comments: 2 ⌘ Read more
KPMG pulls report on AI usage due to apparent hallucinations
Article URL: https://techcrunch.com/2026/06/13/kpmg-pulls-report-on-ai-usage-due-to-apparent-hallucinations/
Comments URL: https://news.ycombinator.com/item?id=48527297
Points: 7
# Comments: 2 ⌘ Read more
The Birth and Death of JavaScript (2014)
Article URL: https://www.destroyallsoftware.com/talks/the-birth-and-death-of-javascript
Comments URL: https://news.ycombinator.com/item?id=48526661
Points: 8
# Comments: 2 ⌘ Read more
@movq@www.uninformativ.de You may want to include another antipattern to avoid in your article:
- bump $same_dependency from 1.0.0 to 1.0.1
- bump $same_dependency from 1.0.1 to 1.0.2
- bump $same_dependency from 1.0.2 to 1.1.0
- bump $same_dependency from 1.1.0 to 1.2.0
Socceroos stun the world with epic win
After weeks of criticism, the Socceroos produce an unbelievable 2-0 win over Turkiye. ⌘ Read more
Aussie fans celebrate back home
Australian football fans erupt across the country as they watch the Socceroos’ 2-0 win from afar. ⌘ Read more
Socceroos stun Turkey with famous World Cup win
The loftiest dreams of the Socceroos were realised with a stunning 2-0 victory in Vancouver. ⌘ Read more
Don’t trust large context windows
Article URL: https://garrit.xyz/posts/2026-05-06-dont-trust-large-context-windows
Comments URL: https://news.ycombinator.com/item?id=48524620
Points: 9
# Comments: 2 ⌘ Read more
Show HN: I built 80 mini-games using Fable before it was shut down
Dear Hacker News,
I’m kindly asking for your participation in the open beta for my AI-managed mini-games website. Thank you in advance!
For a limited time window, I’m setting the all-free feature flag to true. I hope you have a lot of fun exploring the AI’s sense for games! Here and there, I tweaked it to help with visual consistency.
I would be deeply grateful if you opted into analytics.
$2,300 in API tokens…
Cheers!
Comments URL: [https://news.ycombinator.c … ⌘ Read more
Every now and then, I think that I have carefully proof-read my message enough times and hit the “Add message” button in tt. But then, in the message tree, I spot another missed typo. My process is then to go to my twtxt.txt and fix it by hand. However, I still have to clean up tt’s cache. This is rather tidious:
- Recall the
sqlitebrowser ~/.local/share/twtxt/tt2.sqlitefrom my shell history.
- Switch to the “Browse data” tab.
- Go to the
messagestable and wait a second or two until it’s loaded.
- Sort by the
created_atcolumn twice, so that I get descending order.
- Select the first message, which is typically the one in question.
- Find the “Remove currently selected row” button in the tool bar.
- Commit the changes.
- Close sqlitebrowser.
So, I finally implemented the removal of messages from the cache in tt. I can now hit d and confirm the removal. Bam! Should have done that ages ago!
Next up is the search, I think.
Show HN: 2 Weeks of Hallucinate – The Photo Gallery
Article URL: https://hallucinate.site/gallery
Comments URL: https://news.ycombinator.com/item?id=48516510
Points: 5
# Comments: 1 ⌘ Read more
testing 1 2 3
Open Source AI Must Win
Article URL: https://opensourceaimustwin.com/?share=v2
Comments URL: https://news.ycombinator.com/item?id=48511908
Points: 15
# Comments: 2 ⌘ Read more
The Unsung Hero of the Lord of the Rings
Article URL: https://www.theculturist.io/p/the-unsung-hero-of-the-lord-of-the
Comments URL: https://news.ycombinator.com/item?id=48503796
Points: 5
# Comments: 2 ⌘ Read more
Hazel (YC W24) Is Hiring a Full Stack Engineer
Article URL: https://www.ycombinator.com/companies/hazel-2/jobs/3epPWgu-full-stack-engineer-ts-sci
Comments URL: https://news.ycombinator.com/item?id=48503717
Points: 0
# Comments: 0 ⌘ Read more
Digital Sovereignty Becomes an Imperative as the US Reads Dutch Emails
Article URL: https://www.korte.co/2026/06/11/digital-sovereignty-becomes-an-imparative-as-the-us-reads-dutch-emails/
Comments URL: https://news.ycombinator.com/item?id=48500404
Points: 9
# Comments: 2 ⌘ Read more
Amazon Says Its Data Centers Use 2.5B Gallons of Water
Article URL: https://www.bloomberg.com/news/articles/2026-06-11/amazon-says-its-data-centers-use-2-5-billion-gallons-of-water
Comments URL: https://news.ycombinator.com/item?id=48491253
Points: 14
# Comments: 5 ⌘ Read more
Lines of Code Got a Better Publicist
Article URL: https://curlewis.co.nz/posts/lines-of-code-got-a-better-publicist/
Comments URL: https://news.ycombinator.com/item?id=48489402
Points: 11
# Comments: 2 ⌘ Read more
Human migration has surged since 2000 – these maps reveal where people are going
Article URL: https://www.nature.com/articles/d41586-026-01796-y
Comments URL: https://news.ycombinator.com/item?id=48488901
Points: 7
# Comments: 2 ⌘ Read more
NSW universities took $3.2 billion from domestic students but are still running at a loss
Full-time domestic students cost an average of $12,000 each even though they are paying for expensive degrees, a parliamentary report has found. ⌘ Read more
Hong Kong Charges 7 People and 2 Companies Over Deadly Apartment Fire
The 25 charges include manslaughter and conspiracy. They are the first to emerge from a monthslong investigation into a blaze that killed 168 people. ⌘ Read more
Hong Kong Charges 7 People and 2 Companies Over Deadly Apartment Fire
The 25 charges include manslaughter and conspiracy. They are the first to emerge from a monthslong investigation into a blaze that killed 168 people. ⌘ Read more
Hong Kong Charges 7 People and 2 Companies Over Deadly Apartment Fire
The 25 charges include manslaughter and conspiracy. They are the first to emerge from a monthslong investigation into a blaze that killed 168 people. ⌘ Read more
Hong Kong Charges 7 People and 2 Companies Over Deadly Apartment Fire
The 25 charges include manslaughter and conspiracy. They are the first to emerge from a monthslong investigation into a blaze that killed 168 people. ⌘ Read more
Best Buy Discount Codes: Up to 60% Off
Find the latest Best Buy promo codes and offers, including 10% back in rewards for new cardmembers and free 2-day shipping with My Best Buy Plus, here at WIRED. ⌘ Read more
Biff.core: system composition for Clojure web apps
Article URL: https://biffweb.com/p/core/
Comments URL: https://news.ycombinator.com/item?id=48463018
Points: 10
# Comments: 2 ⌘ Read more
WWDC 2026: Apple is Folding
Article URL: https://cupertinolens.com/2026/06/09/wwdc-2026-apple-is-folding/
Comments URL: https://news.ycombinator.com/item?id=48461226
Points: 5
# Comments: 2 ⌘ Read more
50% Off Blue Apron Promo Codes | June 2026
Browse chef-curated meal plans, plus get $25 off with an exclusive Blue Apron coupon code, plus 50% off your first 2 orders, and more top coupons on WIRED. ⌘ Read more
I’m building a parallel internet, and it’s called The Thinnernet
Article URL: https://inavoyage.blogspot.com/2026/06/im-building-parallel-internet-and-its.html
Comments URL: https://news.ycombinator.com/item?id=48450694
Points: 6
# Comments: 2 ⌘ Read more
Switzerland wil have a referendum to cap population at 10M
Article URL: https://www.admin.ch/en/sustainability-initiative
Comments URL: https://news.ycombinator.com/item?id=48450059
Points: 11
# Comments: 2 ⌘ Read more
Proton is funding the French far right on YouTube
Article URL: https://old.reddit.com/r/degoogle/comments/1tzbizh/proton_is_funding_the_french_far_right_on_youtube
Comments URL: https://news.ycombinator.com/item?id=48446899
Points: 16
# Comments: 2 ⌘ Read more
When my 10-line PR gets 40 comments and the 2,000-line one sails right through ⌘ 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.
Is This the Dawn of the Tokenpocalypse?
Article URL: https://techcrunch.com/2026/06/07/is-this-the-dawn-of-the-tokenpocalypse/
Comments URL: https://news.ycombinator.com/item?id=48442136
Points: 8
# Comments: 2 ⌘ Read more
Richard Scolyer Has Died
Article URL: https://www.bbc.com/news/articles/c14yz5jg476o
Comments URL: https://news.ycombinator.com/item?id=48441242
Points: 4
# Comments: 2 ⌘ Read more
Teenage Engineering: Introducing APC-2
Article URL: https://teenage.engineering/products/apc-2
Comments URL: https://news.ycombinator.com/item?id=48440383
Points: 13
# Comments: 0 ⌘ Read more
Anthropic, please ship an official Claude Desktop for Linux
Article URL: https://github.com/anthropics/claude-code/issues/65697
Comments URL: https://news.ycombinator.com/item?id=48434436
Points: 3
# Comments: 2 ⌘ Read more
The circus freaks of open source
Article URL: https://drewdevault.com/blog/Circus-freaks-of-FOSS/
Comments URL: https://news.ycombinator.com/item?id=48431952
Points: 19
# Comments: 2 ⌘ Read more
Valve P2P networking broken for more than 2 months
Article URL: https://github.com/ValveSoftware/GameNetworkingSockets/issues/398
Comments URL: https://news.ycombinator.com/item?id=48431461
Points: 23
# Comments: 4 ⌘ Read more
2 Best Bluetooth Trackers of 2026, Plus Honorable Mentions
These are the best Bluetooth, Wi-Fi, GPS, and cellular gadgets to ensure you never lose anything ever again. ⌘ Read more
Velotric Nomad 2 Fat Tire Ebike, Tested and Reviewed (2026)
This wide-tired bike rolls comfortably over dirt, gravel, and whatever curbs you happen to bounce down. ⌘ Read more
Zig Zen Update
Article URL: https://codeberg.org/ziglang/zig/commit/621844bde551ee1a9b8142d7d146d1fa804247a2
Comments URL: https://news.ycombinator.com/item?id=48422769
Points: 10
# Comments: 2 ⌘ Read more
The perils of UUID primary keys in SQLite
Article URL: https://andersmurphy.com/2026/06/05/the-perils-of-uuid-primary-keys-in-sqlite.html
Comments URL: https://news.ycombinator.com/item?id=48419571
Points: 6
# Comments: 2 ⌘ Read more
Astronauts on ISS told to shelter as repairs under way to fix air leaks
Article URL: https://www.bbc.com/news/live/c4g44ew3g1kt
Comments URL: https://news.ycombinator.com/item?id=48413464
Points: 13
# Comments: 2 ⌘ Read more
India’s surprise baby bust is a warning to the world
Article URL: https://www.economist.com/leaders/2026/06/04/indias-surprise-baby-bust-is-a-warning-to-the-world
Comments URL: https://news.ycombinator.com/item?id=48413254
Points: 4
# Comments: 2 ⌘ Read more
Programmers will document for Claude, but not for each other
Article URL: https://blog.plover.com/2026/03/09/#documentation-wins-2
Comments URL: https://news.ycombinator.com/item?id=48411510
Points: 21
# Comments: 13 ⌘ Read more
Plan ‘abandoning’ nearly built motorway in Sydney’s south secretly explored
Confidential documents reveal abandoning the $3.2 billion underground motorway project has been canvassed in a secret scoping study and other reports. ⌘ Read more
Bricks and Minifigs Parts Ways with Franchise Owners
Article URL: https://bricksandminifigs.com/blog/blog/2026/06/04/bricks-and-minifigs-salem-joshua-johnson-brandon-best-resignation/
Comments URL: https://news.ycombinator.com/item?id=48406328
Points: 6
# Comments: 2 ⌘ Read more
KVarN: Native vLLM KV-cache quantization back end by Huawei
Article URL: https://github.com/huawei-csl/KVarN
Comments URL: https://news.ycombinator.com/item?id=48399974
Points: 10
# Comments: 2 ⌘ Read more
Jeff Bezos Is Funding a Wild Hunt for the Brain’s ‘Core Algorithm’
With $500 million in funding and a reported $2.5 billion valuation, Flourish wants to reinvent AI by putting real neurons under the microscope. ⌘ Read more
When I promised a feature would be done in 2 days and I’m still stuck on setup three days in ⌘ Read more
NordVPN Coupons and Deals: 77% Off in June 2026
Save up to 77% on 2-year plans and get 3 free months with our NordVPN discount codes. ⌘ Read more
Loop Earplugs Discount Codes: 40% Off
Save on Loop Earplugs, including Quiet 2 and popular gift sets for improved sleep, focus, and comfort. ⌘ Read more
Cocaine, heroin, meth: Two charged over 80kg drug haul in WA’s South West
WA Police have seized 57 kilograms of methamphetamine, 23 kilograms of cocaine and 2.5 kilograms of heroin in a series of raids kicked off by a traffic stop in the South West. ⌘ Read more
I got tired of proprietary supplement blends, so I open-sourced my formulas
Article URL: https://nuc.luyml.com
Comments URL: https://news.ycombinator.com/item?id=48377014
Points: 11
# Comments: 2 ⌘ Read more
Uber caps employee AI spending after blowing through budget in four months
Article URL: https://techcrunch.com/2026/06/02/uber-caps-employee-ai-spending-after-blowing-through-budget-in-four-months/
Comments URL: https://news.ycombinator.com/item?id=48375544
Points: 16
# Comments: 2 ⌘ Read more
Intelligent Terminal 0.1
Article URL: https://devblogs.microsoft.com/commandline/announcing-intelligent-terminal-version-0-1/
Comments URL: https://news.ycombinator.com/item?id=48373231
Points: 9
# Comments: 2 ⌘ Read more
Skullcandy Discount Code: 30% Off | June 2026
Save on today’s top Skullcandy Promo Codes for Crusher Evo headphones, 36% off Crusher ANC 2 noise-canceling headphones, and more with amazing deals. ⌘ Read more
Can the stockmarket swallow Anthropic, SpaceX and OpenAI?
Article URL: https://www.economist.com/finance-and-economics/2026/06/01/can-the-stockmarket-swallow-anthropic-spacex-and-openai
Comments URL: https://news.ycombinator.com/item?id=48364055
Points: 5
# Comments: 2 ⌘ Read more
We’re at close to 20k hits now, but it has slowed down considerably. Nobody cares about page 2. 😅
No Raise, No Promotion: 1 in 4 White-Collar Workers Are Stalling Out
Article URL: https://www.wsj.com/lifestyle/careers/white-collar-workers-career-nyu-study-a81a7d9c
Comments URL: https://news.ycombinator.com/item?id=48357063
Points: 22
# Comments: 2 ⌘ Read more
Superquiz, Tuesday, June 2, 2026
Trivia buffs, test your knowledge with today’s interactive superquiz. ⌘ Read more
Nvidia announces new AI chip for personal computers
Article URL: https://www.bbc.com/news/articles/crmp9mppvzro
Comments URL: https://news.ycombinator.com/item?id=48354967
Points: 4
# Comments: 2 ⌘ Read more
Shift from a Leader-Follower to a Leader-Leader Approach
Article URL: https://www.practicalengineering.management/p/shift-from-a-leader-follower-to-a
Comments URL: https://news.ycombinator.com/item?id=48351858
Points: 7
# Comments: 2 ⌘ Read more
Sergey Brin told Google staff that working 60 hours a week is the ‘sweet spot’
Article URL: https://fortune.com/article/sergey-brin-60-hour-work-week-ai-rto/
Comments URL: https://news.ycombinator.com/item?id=48347531
Points: 8
# Comments: 2 ⌘ Read more
Cheese Paper: a text editor specifically designed for writing
Article URL: https://brie.gay/cheese-paper/
Comments URL: https://news.ycombinator.com/item?id=48341407
Points: 12
# Comments: 2 ⌘ Read more
Jef Raskin, the Visionary Behind the Mac
Article URL: https://lowendmac.com/2013/jef-raskin-the-visionary-behind-the-mac/
Comments URL: https://news.ycombinator.com/item?id=48339894
Points: 7
# Comments: 2 ⌘ Read more
MCP Is Dead
Article URL: https://www.quandri.io/engineering-blog/mcp-is-dead
Comments URL: https://news.ycombinator.com/item?id=48330436
Points: 15
# Comments: 2 ⌘ Read more
Why builders can’t stack up affordable housing despite being needed more than ever
The average entry-level price was more than $2 million for off-the-plan developments in Brisbane on sale during May. ⌘ Read more
The most spectacular rocket explosion since N1 just happened in Florida
Article URL: https://arstechnica.com/space/2026/05/blue-origins-new-glenn-rocket-just-exploded-during-a-static-fire-test/
Comments URL: https://news.ycombinator.com/item?id=48318678
Points: 11
# Comments: 2 ⌘ Read more
Hold on for Dear Life
Article URL: https://pluralistic.net/2026/05/28/we-live-in-a-society/
Comments URL: https://news.ycombinator.com/item?id=48312734
Points: 11
# Comments: 2 ⌘ Read more
How to Quickly Warm Up Your MacBook
Article URL: https://z3ugma.github.io/2019/11/18/warm-up-your-macbook/
Comments URL: https://news.ycombinator.com/item?id=48300342
Points: 8
# Comments: 2 ⌘ 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
@bender@twtxt.net Oh, no. That’s my baby. 😅 It was built in 1989 and I probably had it since the early 1990ies (it came with an IBM PS/2 Model 30 that they handed out to employees, IIRC).
Last.fm is now independent
Article URL: https://support.last.fm/t/last-fm-is-now-independent/118591
Comments URL: https://news.ycombinator.com/item?id=48295892
Points: 39
# Comments: 2 ⌘ Read more
Stripe is friendly to “friendly fraud”
Article URL: https://www.gingerlime.com/2026/stripe-seem-friendly-to-friendly-fraud/
Comments URL: https://news.ycombinator.com/item?id=48287982
Points: 15
# Comments: 2 ⌘ Read more
Cloudflare Flagship
Article URL: https://developers.cloudflare.com/flagship/
Comments URL: https://news.ycombinator.com/item?id=48287468
Points: 9
# Comments: 2 ⌘ Read more
Stop Advertising in Your Commits
Article URL: https://akselmo.dev/posts/stop-advertising-in-your-commits/
Comments URL: https://news.ycombinator.com/item?id=48283914
Points: 27
# Comments: 2 ⌘ Read more
Launch HN: Minicor (YC P26) – Windows desktop automations at scale
Hey we’re Faiz and Saheed and we built Minicor so AI companies who need to integrate to desktop systems with no API can quickly build scalable desktop RPAs. Demo: https://www.youtube.com/watch?v=MD0GHZIJ1cw
We were working on non-RPA integrations when a customer promised to sign a deal in 2 days if we could unblock a sale of theirs that involved integrating with a clinic’s Windows based medical record system. We didn’t know it at … ⌘ Read more
Nearly half (44%) of every T-shirt goes to waste before you even buy it
Article URL: https://norwegianscitechnews.com/2026/05/nearly-half-of-every-t-shirt-goes-to-waste-before-you-even-buy-it/
Comments URL: https://news.ycombinator.com/item?id=48278832
Points: 7
# Comments: 2 ⌘ Read more