If I say companies should at least consider the 3 line CC license before scraping my sites, Iâm seen as the unreasonable one.
But when I use an alternative forontend, to read feeds on their sites, without having to make yet another free account, now the same companies and their users scream about some unspecified part of their license being violated, threaten legal action and expect me to care about it.

GitHub thread: https://github.com/zedeus/nitter/issues/1442#issuecomment-5413651441
Similar here đ„ł 9 days then iâm off for 3 weeks. but really 20 working days!
Had no clue @prologic@twtxt.net has his own computer mouse brand now, straight up giving them away, for under $3 a piece.
I got one and well pleasantly surprised, especially for the price. It fits perfectly in the hand, decent rubber, weighs nothing, clicks very silently. The scroll wheel is where you can feel some of the cost cutting, itâs pretty wonky, but good enough.
Classic cheap thin long cable, you better like 1600 DPI, cause thereâs no button to change that. Sensor is the usual red light, but works on all surfaces, bedsheets included. Gliders are small and not around the sensor, but at this weight, that makes next to no difference.
Decent 8/10 option

Had no clue @prologic@twtxt.net has his own computer mouse brand now, straight up giving them away, for under $3 a piece.
I got one and well pleasantly surprised, especially for the price. It fits perfectly in my hand, decent rubber, weighs nothing, clicks very silently. The scroll wheel is where you can feel some of the cost cutting, itâs pretty wonky, but good enough.
Classic cheap thin long cable, you better like 1600 DPI, cause thereâs no button to change that. Sensor is the usual red light, but works on all surfaces, bedsheets included. Gliders are small and not around the sensor, but at this weight, that makes next to no difference.
Decent 8/10 option

So far, I totally approve of Nifelvind. Currently listening to Under Bergets Rot. What an absolute banger! <3
But now, my bed is calling.
âArguably the highest-profile contract cancellation for Flock came when the Los Angeles Police Department decided to non-renew its years-long contract with the company, a decision motivated by a searing internal audit of the companyâs technology. The internal report found that, in just two months, Flockâs ALPRs contributed to 161 false stolen-vehicle alerts, resulting in a false-positive rate of 32.3 percent.â
https://futurism.com/future-society/lapd-abandons-flock-contract-false-alarm
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()
@arne@uplegger.eu Also von da oben sieht das meiner Auffassung nach wirklich hĂŒbsch aus, da kann man echt nichts sagen. Mir gefĂ€lltâs prĂ€chtig. Gut, wenn man dieser BrĂŒhe dann auf Meereshöhe begegnet, ist das sicherlich âne andere Sache.
Yum, yum, yum. @david@daiwei.me, Iâd absolutely love to taste your exploded kebab! It looks fantastic, my mouth is watering.
@movq@www.uninformativ.de Hell yeah, this is awesome! Great shots!
When I checked at the beginning, the sun was already way behind the trees. I then decided to wait until the end before leaving the house and melting in direct sunlight at 31°C. At the hill, there were around 15 people in camping chairs and on picnic rugs. Some dragged out their camera gear as well.
My first two photos were through the eclipse glasses. In contrast to others, I didnât bring my tripod and just used a tree as a crappy makeshift one. With the large zoom itâs impossible to keep it still for one second (what my cam decided to be the exposure time). Leaning the camera against the side of the tree is just not good enough.
Richtig geniale Vorstellung von mittelalterlichen Instrumenten mit Hörproben: https://youtu.be/mrAq5WLU91I Klingt groĂartig. <3
@movq@www.uninformativ.de I understand. Take a break and bear up! Still looking forward to any of your stuff. :-) Thank you very much for all the great things I learned from you and wonderful conversations we had. In a while, crocodile. :-)
@david@daiwei.me if you have some weekend home type place, with no Internet, getting TV through an antenna and a DVBT box, my recommendation is to just buy some old Dell monitor with HDMI to 3.5mm audio output built in, so you can connect speakers to it.
Doesnât have to be Dell, but you can often just buy one of those from your employer, for under $25 here.
Were this sadly makes much less sense, in with Internet TV services. Those usually need a dedicated TV app to function and while that can be replaced with a $200 TV box, that some providers force you to rent, thus making you pay more for your Internet TV forever - this also means giving up the âarchive appâ, that gives you access to all the on demand content, included in the price of your mandatory TV license. None of these overpriced boxes come with it, as theyâd mauch rather make you pay, for yet another subscription service instead.
So yes, you can kinda do it with an Internet TV too, assuming you trust the expensive box to not spy on you, but in that case youâre mostly just paying a whole lot more, for a lot less, than you would be, with the LG TV.
Fuck me dead, how cool does this knive handle made from honeycomb and epoxy look!? :-) https://www.youtube.com/watch?v=4ZDLkqVoK5w
Does this seem right to you so far @david@daiwei.me ? đ€
2026/07/18 02:55:52 sync-reaper: observe-only pass â 1145 namespaces, 3 anchored, 1089 undatable, 0 idle candidate(s), 0 reaped
So far only 3 users of the Twtxt App have achieved their device settings with a recovery key? đ
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.â
I trip over this in our code at work all the time.
Python has this concept of âpropertiesâ:
class Oink:
def __init__(self):
self._foo = 3
@property
def my_property(self):
return self._foo
a = Oink()
print(a.my_property)
my_property() is a method but it can be used as if it were a field.
This can also be used to define a setter:
class Oink:
def __init__(self):
self._foo = 3
@property
def my_property(self):
return self._foo
@my_property.setter
def my_property(self, value):
self._foo = 123 * value
Because, for some reason, Python people donât like getters and setters. Instead, they hide it behind a property.
The result is, when you read this:
a.my_property = 5
print(a.my_property)
You have no idea that this actually calls a method.
@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. đ„ł
Java 1.3 on Windows 95 with Proton as the editor could be another option for next Advent of Code.
Win95 runs pretty smoothly on my old box (no surprise, that box came with Win95) and I like Java, so ⊠why not âŠ
Not sure about the speed, though. đ„Ž
@lyse@lyse.isobeef.org This apparently depends on the program now ⊠Some Qt6 programs still allow that, others donât. I canât remember if GTK ever had that feature. đ€ But yeah, this whole âmove stuff around as you pleaseâ-mentality is mostly gone.
I know I keep referring to StarOffice 3.1 a lot, but itâs just such a good example for all these things. All the toolbars and panels could be rearranged:
(This is running in Wine, btw.)
LibreOffice is the descendant of StarOffice and it doesnât support anything like that anymore.
Maybe it was deemed too confusing for users? âOh no, I mis-clicked something and now that bar is gone! How do I get it back? I donât even know what itâs called!â đ€
Fedimigues, por favor dĂȘem-me indicaçÔes de recursos sobre pixel art em portuguĂȘs (pt ou br), estou a aproveitar o sĂșbito interesse do meu kid de 8 anos e a instalar-lhe o LibreSprite. Abordagens direcionadas a um pĂșblico jovem sĂŁo por isso preciosas tb.
Obrigado <3
@movq@www.uninformativ.de It is horribly hot and humid here, and is not even 08:00. AC ran overnight for 3+ hours. It is going to be hellish, not going to lie.
Your birthday, or someone elseâs? Either way, happy birthday! đ„łđ May many more years come, with good health⊠and less heat! âșïž
How truly wonderful! I went out tonight and the first thing I noticed was the temperature drop. It felt actually quite pleasing. What a welcome surprise, I didnât expect that at all. It was warmer in the forst than between the fields. The tiniest breeze helped to cool off the surroundings I think. Right now, the temperature shows 23°C. Itâs supposed to reach 18°C at 5 in the morning before it rapidly shoots through the sky again.
When I left the house I even saw the very end of a nice sunset. A bat was around, too. The several thousand fireflies delivered a fantastic show. Itâs such a pity that I cannot show this to you. :-(
There were many frogs or toads around. Luckily, the light tan gravel road made for a good constrast to the darker hopping amphibians. So, I spotted them just in time. No animals were harmed.
The moon was out and lit up the scenery. I was perfectly chasing my own shadow for several hundred meters on a forest road. I had the moon right in my back. That moon light shadow felt magical. <3
It must have set a new record on picking up spider webs along the way. The threads around arms and legs always feel quite yucky. People were blasting music somewhere in town. You could here that noise in the entire forest. I found that rather annoying. All street lamps are operational again, so I got already blinded right at the entrance to the town. But other than that, this was a very nice evening stroll. Totally recommended. Already looking forward to tomorrow. :-)
@lyse@lyse.isobeef.org It was before my time as well. 3.0 was my first. đ
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.)
@lyse@lyse.isobeef.org In what way was KDE 3âs menu organized? KDE 1 is the only KDE version I ever used. đ Weâre talking about this one, right?
Isnât Notepad++ and Python cheating!? :-D
Well, Python was certainly already a thing back then, but Notepad++ is from 2003, right. I think I used https://www.wintotal.de/download/proton/ at the time? Maybe? I donât know. đ
@movq@www.uninformativ.de Regarding https://movq.de/blog/postings/2026-06-16/0/POSTING-en.html:
In my opinion, the KDE 3.5 menu was organized way better than the Windows Start menu. Granted, a typical KDE installation had much more applications to offer, too. So, there was more need to get it right. And it probably was also later in time.
Isnât Notepad++ and Python cheating!? :-D
Crazy story on the clockâs seconds. I never heard of that before. Neat.
Yeah, UI these days is horrible. (Thatâs why my own TUIs suck, too!)
Chaosnet
Article URL: https://tumbleweed.nu/r/lm-3/uv/amber.html
Comments URL: https://news.ycombinator.com/item?id=48531449
Points: 3
# Comments: 0 â Read more
SpaceXâs $3 trillion debut expected to kick off wave of AI mega IPOs
The spectacular debut of SpaceX paves the way for an unprecedented series of floats this year as AI giants like Anthropic and OpenAI plan to go public. â Read more
Bentleys, brawls and bad loans: Jailed ex-lawyer battles failed property tycoon
The two, each with criminal convictions, are fighting in the Supreme Court over an alleged $3 million loan. â Read more
Bentleys, brawls and bad loans: Jailed ex-lawyer battles failed property tycoon
The two, each with criminal convictions, are fighting in the Supreme Court over an alleged $3 million loan. â Read more
Wind farm plan tipped to risk billions in energy investment and 26,000 jobs
An analysis estimates the Coalitionâs proposed policy would put $3.9 billion in local wages and more than $200 million in landholder and community payments at risk. â Read more
Pac-Man, but Youâre the Ghost
Article URL: https://garrit.xyz/posts/2026-06-13-pac-man-but-you-re-the-ghost
Comments URL: https://news.ycombinator.com/item?id=48524135
Points: 3
# Comments: 1 â Read more
Building a serial and VGA âeverything consoleâ
Article URL: http://oldvcr.blogspot.com/2026/06/building-serial-and-vga-everything.html
Comments URL: https://news.ycombinator.com/item?id=48523615
Points: 3
# Comments: 0 â Read more
AI Coding at Home Without Going Broke
Article URL: https://stephen.bochinski.dev/blog/2026/06/13/ai-coding-at-home-without-going-broke/
Comments URL: https://news.ycombinator.com/item?id=48518969
Points: 3
# Comments: 0 â 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.
The Fable 5 Jailbreak Shows Why AI Guardrails Alone Are Not Enough
Article URL: https://www.agilehunt.com/blog/fable-5-jailbreak-ai-guardrails
Comments URL: https://news.ycombinator.com/item?id=48515344
Points: 3
# Comments: 0 â Read more
testing 1 2 3
On CPU Physics and CPU Cycles
Article URL: https://6it.dev/blog/on-cpu-physics-and-cpu-cycles-80730
Comments URL: https://news.ycombinator.com/item?id=48513222
Points: 3
# Comments: 0 â Read more
Reddit RSS feeds recent rate limiting and solution
Article URL: https://lapcatsoftware.com/articles/2026/6/3.html
Comments URL: https://news.ycombinator.com/item?id=48511663
Points: 3
# Comments: 0 â Read more
Why is there some sort of a scam website being advertised on HN?
https://news.ycombinator.com/item?id=48506575
Clearly seems like something dodgy and most like a scam, why would it be on the first page?
Comments URL: https://news.ycombinator.com/item?id=48506850
Points: 3
# Comments: 0 â Read more
A Call to Action: Stop the FCCâs KYC Regime
Article URL: https://blog.lopp.net/call-to-action-stop-the-fcc-kyc-regime/
Comments URL: https://news.ycombinator.com/item?id=48504697
Points: 3
# Comments: 0 â Read more
WASI 0.3.0 Released
Article URL: https://github.com/WebAssembly/WASI/releases/tag/v0.3.0
Comments URL: https://news.ycombinator.com/item?id=48504063
Points: 15
# Comments: 0 â Read more
Report on an Unidentified Space Station
Article URL: https://sseh.uchicago.edu/doc/roauss.htm
Comments URL: https://news.ycombinator.com/item?id=48501012
Points: 3
# Comments: 0 â Read more
Claude Fable is relentlessly proactive
Article URL: https://simonwillison.net/2026/Jun/11/fable-is-relentlessly-proactive/
Comments URL: https://news.ycombinator.com/item?id=48498573
Points: 15
# Comments: 3 â Read more
Nobody ever gets credit for fixing problems that never happened (2002) [pdf]
Article URL: https://web.mit.edu/nelsonr/www/Repenning=Sterman_CMR_su01_.pdf
Comments URL: https://news.ycombinator.com/item?id=48498385
Points: 3
# Comments: 0 â Read more
Biological Evolution and Information Acquisition
Article URL: https://www.construction-physics.com/p/biological-evolution-and-information
Comments URL: https://news.ycombinator.com/item?id=48497873
Points: 3
# Comments: 0 â Read more
The unreasonable effectiveness of simple HTML
Article URL: https://shkspr.mobi/blog/2021/01/the-unreasonable-effectiveness-of-simple-html/
Comments URL: https://news.ycombinator.com/item?id=48497168
Points: 3
# Comments: 0 â Read more
HTML is a native image format, hear me out
Article URL: https://hmml.eddocu.com
Comments URL: https://news.ycombinator.com/item?id=48488553
Points: 7
# Comments: 3 â 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
Australia left reeling at 3-0
Australia were left reeling at 3-0 against a rampant Bangladesh in Mirpur. â Read more
Australia left reeling at 3-0
Australia were left reeling at 3-0 against a rampant Bangladesh in Mirpur. â Read more
Validation, Docs, tests, and database schemas from one source of truth
Article URL: https://github.com/justhamade/triadjs
Comments URL: https://news.ycombinator.com/item?id=48486577
Points: 3
# Comments: 1 â Read more
Deficient executive control in transformer attention
Article URL: https://academic.oup.com/pnasnexus/article/5/6/pgag149/8698838
Comments URL: https://news.ycombinator.com/item?id=48484282
Points: 3
# Comments: 0 â Read more
Organic foods are not healthier or pesticide free
Article URL: https://news.immunologic.org/p/organic-foods-are-not-healthieror
Comments URL: https://news.ycombinator.com/item?id=48482955
Points: 3
# Comments: 0 â Read more
CISA Tells US Agencies to Fix Security Bugs in as Little as 3 Days Thanks to AI Threats
âDefenders cannot afford to take weeks to patch,â one Cybersecurity and Infrastructure Security Agency official warned on Wednesday. â Read more
Policy on the AI Exponential
Article URL: https://darioamodei.com/post/policy-on-the-ai-exponential
Comments URL: https://news.ycombinator.com/item?id=48480719
Points: 3
# Comments: 1 â Read more
The Last Evolution, by John W Campbell Jr. (1932)
Article URL: https://www.gutenberg.org/files/27462/27462-h/27462-h.htm
Comments URL: https://news.ycombinator.com/item?id=48478285
Points: 3
# Comments: 0 â Read more
Surfshark Promo Codes: 87% Off | June 2026
Save up to 87% with a Surfshark coupon code, 3 months of VPN free today, and more from WIRED. â Read more
Alpine Linux 3.24.0 Released
Article URL: https://alpinelinux.org/posts/Alpine-3.24.0-released.html
Comments URL: https://news.ycombinator.com/item?id=48467570
Points: 19
# Comments: 1 â Read more
The LD_DEBUG environment variable (2012)
Article URL: https://bnikolic.co.uk/blog/linux-ld-debug.html
Comments URL: https://news.ycombinator.com/item?id=48464330
Points: 3
# Comments: 0 â Read more
Making Graphics Like itâs 1993
Article URL: https://staniks.github.io/articles/catlantean-3d-blog-1/
Comments URL: https://news.ycombinator.com/item?id=48459294
Points: 3
# Comments: 0 â Read more
I replaced Spotify with a homemade FM radio station
Article URL: https://old.reddit.com/r/digitalminimalism/comments/1tes8yu/i_replaced_spotify_with_a_homemade_fm_radio/
Comments URL: https://news.ycombinator.com/item?id=48446611
Points: 3
# Comments: 1 â Read more
Amazon Cognito now supports multi-Region replication
Article URL: https://aws.amazon.com/about-aws/whats-new/2026/06/amazon-cognito-multi-region/
Comments URL: https://news.ycombinator.com/item?id=48446521
Points: 3
# Comments: 1 â Read more
Show HN: Performative-UI â a react component library of design tropes
hope you enjoy
Comments URL: https://news.ycombinator.com/item?id=48445554
Points: 25
# Comments: 3 â 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
We Need VAT and UBI
Article URL: https://wilsoniumite.com/2026/06/07/we-need-vat-and-ubi/
Comments URL: https://news.ycombinator.com/item?id=48434114
Points: 6
# Comments: 3 â Read more
Field of clones: How horse replicas came to dominate polo
Article URL: https://knowablemagazine.org/content/article/technology/2026/cloned-polo-horses
Comments URL: https://news.ycombinator.com/item?id=48431286
Points: 3
# Comments: 0 â Read more
The Best 3-in-1 Apple Charging Stations After Testing Top Models
I tried all the top models to find the best 3-in-1 Apple charging stations, pads, and more. Keep your iPhone, Apple Watch, and AirPods topped up with these WIRED-tested docking systems. â Read more
Nvidia is proposing a beast of a CPU system for Windows PCs
Article URL: https://twitter.com/lemire/status/2062880075117113739
Comments URL: https://news.ycombinator.com/item?id=48424605
Points: 6
# Comments: 3 â Read more
The Best 3-in-1 Apple Charging Stations After Testing Top Models
I tried all the top models to find the best 3-in-1 Apple charging stations, pads, and more. Keep your iPhone, Apple Watch, and AirPods topped up with these WIRED-tested docking systems. â Read more
Do Womenâs Mate Preferences Change Across the Ovulatory Cycle? A Meta-Analysis [pdf]
Article URL: https://www.martiehaselton.com/_files/ugd/3ae410_aeb76edab75f457aae0c14c4c68d93c0.pdf
Comments URL: https://news.ycombinator.com/item?id=48423541
Points: 8
# Comments: 3 â Read more
OpenAI Help: Lockdown Mode
Article URL: https://help.openai.com/en/articles/20001061-lockdown-mode
Comments URL: https://news.ycombinator.com/item?id=48421145
Points: 7
# Comments: 3 â Read more
Transformers Are Inherently Succinct
This paper is being published at ICLR 2026 (top AI conference), and was selected as one of three outstanding papers.
Comments URL: https://news.ycombinator.com/item?id=48416635
Points: 12
# Comments: 3 â Read more
Entanglement Builds Space-Time. Now âMagicâ Gives It Gravity
Article URL: https://www.quantamagazine.org/entanglement-builds-space-time-now-magic-gives-it-gravity-20260603/
Comments URL: https://news.ycombinator.com/item?id=48409675
Points: 3
# Comments: 0 â Read more
ESP32 Bit Pirate, a Hardware Hacking Tool with WebCLI That Speaks Every Protocol
Article URL: https://github.com/geo-tp/ESP32-Bit-Pirate
Comments URL: https://news.ycombinator.com/item?id=48409306
Points: 3
# Comments: 1 â Read more
Thereâs no escaping it: an exploration of ANSI codes
Article URL: https://blog.safia.rocks/2025/12/22/ansi-codes/
Comments URL: https://news.ycombinator.com/item?id=48408995
Points: 3
# Comments: 0 â Read more
The Causes of Long Covid
Article URL: https://www.science.org/content/blog-post/causes-long-covid
Comments URL: https://news.ycombinator.com/item?id=48407451
Points: 3
# Comments: 0 â 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
Meta enables adb on deprecated Portal devices
Article URL: https://fb.watch/HxPu0fSyeH/
Comments URL: https://news.ycombinator.com/item?id=48406640
Points: 11
# Comments: 3 â Read more
Show HN: Mercek â A Desktop IDE for AWS ECS
Hey HN
Iâve been using ECS for a while now and found it annoying having to log into the console everytime
I use Lens for Kubernetes but couldnt find an equivalent for ECS so i built one!
The project is open source as well
https://github.com/utibeabasi6/mercek
Comments URL: https://news.ycombinator.com/item?id=48404732
Points: 3
# Comments: 0 â Read more
Ask HN: So what happened to Facebook âlocalhostâ tracking?
It was discussed a year ago.
https://news.ycombinator.com/item?id=44235467
Comments URL: https://news.ycombinator.com/item?id=48397731
Points: 3
# Comments: 1 â Read more
Gaussian Point Splatting
Article URL: https://momentsingraphics.de/Siggraph2026.html
Comments URL: https://news.ycombinator.com/item?id=48396792
Points: 3
# Comments: 0 â 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
The Ă Programming Language
Article URL: https://github.com/Panzerschrek/U-00DC-Sprache/
Comments URL: https://news.ycombinator.com/item?id=48391838
Points: 3
# Comments: 0 â Read more
ESP32-S31
Article URL: https://www.espressif.com/en/products/socs/esp32-s31
Comments URL: https://news.ycombinator.com/item?id=48385965
Points: 23
# Comments: 3 â Read more
Best Apple 3-in-1 Travel Chargers (2026): Anker, ESR, Satechi
Keep your trio of Apple gadgets powered up wherever you go with these compact folding chargers. â Read more
AI Engineers arenât safe from being replaced by AI
Article URL: https://dmanco.dev/2025/08/17/fear-not-even-ai-engineers-will-be-replaced-by-ai.html
Comments URL: https://news.ycombinator.com/item?id=48380987
Points: 3
# Comments: 1 â Read more
Microsoft Doubles Down on Controversial Quantum Computing Claims
Article URL: https://www.science.org/content/article/doubling-down-controversial-claims-microsoft-accelerates-quantum-computing-plans
Comments URL: https://news.ycombinator.com/item?id=48380516
Points: 3
# Comm ⊠â Read more
The advertising cartel coming to your web browser
Article URL: https://blog.zgp.org/the-advertising-cartel-coming-to-your-web-browser/
Comments URL: https://news.ycombinator.com/item?id=48375175
Points: 20
# Comments: 3 â Read more
Morningstar values SpaceX at $780B, half its IPO target
Article URL: https://www.reuters.com/business/media-telecom/morningstar-values-spacex-780-billion-half-its-ipo-target-2026-06-02/
Comments URL: https://news.ycombinator.com/item?id=48373909
Points: 11
# Comments: 3 â Read more
Coreutils for Windows
Article URL: https://github.com/microsoft/coreutils
Comments URL: https://news.ycombinator.com/item?id=48372853
Points: 15
# Comments: 3 â Read more
Gente amiga, se nĂŁo estĂŁo a acompanhar a #CopaDoMundoDePalavrasFeias, sintonizem jĂĄ num dos hits do fediverso pt-br. Obrigado @usuario@usuario <3
Superquiz, Wednesday, June 3
Trivia buffs, test your knowledge with todayâs interactive superquiz. â Read more
CSS-Native Parallax Effect
Article URL: https://dan-webnotes.com/posts/2026-06-02-css-native-parallax-effect/
Comments URL: https://news.ycombinator.com/item?id=48368291
Points: 3
# Comments: 0 â Read more
Michael Burry says neither SpaceX nor Anthropic is worth $1T
Article URL: https://www.businessinsider.com/big-short-michael-burry-spacex-anthropic-ipo-ai-bubble-claude-2026-6
Comments URL: https://news.ycombinator.com/item?id=48368187
Points: 13
# Comments: 3 â Read more
Not Every Byte Gets a Vote
Article URL: https://mitander.xyz/posts/not-every-byte-gets-a-vote/
Comments URL: https://news.ycombinator.com/item?id=48367009
Points: 3
# Comments: 0 â Read more