HN user

clumsysmurf

8,316 karma
Posts489
Comments810
View on HN
www.gadgetreview.com 3d ago

Nema Nodes: They Turn Streetlights into a Surveillance Network

clumsysmurf
3pts0
www.businessinsider.com 28d ago

Software engineers are facing an 'identity crisis bordering on depression'

clumsysmurf
9pts2
physicsworld.com 1mo ago

Soot from rocket launches is polluting Earth's upper atmosphere

clumsysmurf
8pts0
www.earlywarning.com 1mo ago

Zelle Heads to India, Unveils ZelleUSD Stablecoin for Other Markets

clumsysmurf
5pts1
www.cnbc.com 3mo ago

U.S. banks may soon collect citizenship data from customers

clumsysmurf
116pts179
stories.tamu.edu 3mo ago

Texas A&M research links high-dose antioxidants to offspring birth defects

clumsysmurf
5pts1
www.statnews.com 3mo ago

The more evidence behind a therapy, the less the public trusts it

clumsysmurf
33pts21
www.frontiersin.org 5mo ago

ADHD as a circadian rhythm disorder: evidence and implications for chronotherapy

clumsysmurf
4pts0
www.reuters.com 6mo ago

AI company Eightfold sued for helping companies score job seekers

clumsysmurf
3pts0
medicalxpress.com 8mo ago

Anxiety disorders tied to low levels of choline in the brain

clumsysmurf
98pts122
www.nbcnews.com 9mo ago

American e-waste is causing a 'hidden tsunami' in Southeast Asia, report says

clumsysmurf
4pts1
www.infoworld.com 11mo ago

PyApp: An easy way to package Python apps as executables

clumsysmurf
3pts0
www.project-syndicate.org 11mo ago

The Crypto Crises Are Coming

clumsysmurf
10pts4
www.reuters.com 11mo ago

Google loses US appeal over app store reforms in Epic Games case

clumsysmurf
63pts8
www.cnbc.com 11mo ago

Trump ends de minimis exemption for global low-cost goods

clumsysmurf
15pts0
www.motherjones.com 1y ago

Fossil fuel firms compete for clean energy funding by reclassifying gas as green

clumsysmurf
6pts1
truthout.org 1y ago

The Trump Administration Is Planning to Use AI to Deny Medicare Authorizations

clumsysmurf
17pts3
medicalxpress.com 1y ago

Nerve pain drug gabapentin linked to increased dementia, cognitive impairment

clumsysmurf
80pts59
newatlas.com 1y ago

1k-pound wheels and robots now farming Dyson strawberries

clumsysmurf
14pts2
apnews.com 1y ago

Investors buy growing share of US homes as traditional buyers struggle

clumsysmurf
3pts0
www.propublica.org 1y ago

FDA Layoffs Could Compromise Safety of Medications Made at Foreign Factories

clumsysmurf
6pts0
medicalxpress.com 1y ago

Mimicking the Benefits of Exercise with Betaine

clumsysmurf
1pts0
www.nytimes.com 1y ago

EPA Plans to Reconsider a Ban on Cancer-Causing Asbestos

clumsysmurf
13pts3
fortune.com 1y ago

On Bluesky, Cuban says 'lack of diversity of thought' pushing users back to X

clumsysmurf
20pts6
newatlas.com 1y ago

Too much oleic acid tells the body to make more fat cells, study finds

clumsysmurf
5pts1
www.npr.org 1y ago

Trump administration cancels plans to develop a bird flu vaccine

clumsysmurf
11pts2
www.eff.org 1y ago

Stopping States from Passing AI Laws for the Next Decade Is a Terrible Idea

clumsysmurf
5pts0
www.npr.org 1y ago

Air pollution still plagues nearly half of Americans

clumsysmurf
5pts0
newatlas.com 1y ago

Faraday-caged drone triggers and directs lightning strikes

clumsysmurf
10pts1
www.whitehouse.gov 1y ago

White House: China now faces up to 245% tariff

clumsysmurf
31pts20

theoretically, it would be possible to run the main process separated from the renderer process on a different machine, with an appropriate IPC transport.

Is this really possible? If Electron apps could do this, and we could run them on a Linux SBC like RPI with the renderer on the user's laptop, that would be interesting ...

Deno Desktop 1 month ago

Compose and AOT compiled binaries would be amazing (GraalVM Native Image kinda thing) but it doesn't look very easy at the moment. Leyden with a regular JVM might be the best we get.

2.4GHz 802.11 b/g/n wireless LAN

Bluetooth 4.2, Bluetooth Low Energy (BLE), onboard antenna

Oof ... BLE 5 has some huge improvements over 4.2. BLE 5 stuff has been on sale for almost 10 years now ...

Hopefully this gets a refresh soon.

I had an appliance delivered from Home Depot, and after it was installed, the person mentioned he had Meta glasses on. I didn't realize the whole time he was wearing them in my home, because I didn't know what they looked like. I felt uneasy.

the bluetooth libraries across different devices (particularly in Android land) has me concerned

At Google IO 2026 there little discussion of core improvements to Android as a platform. It was mostly AI related, nothing about Gabeldorsche etc, which I find more interesting.

Another part of the problem is our lax regulatory "anything goes" environment which puts no guardrails on how AI can be used / abused. For example, eventually nearly everyone needs healthcare, and the idea you might be denied by AI or fighting AI to get a claim accepted is unpopular.

It is a naive and suboptimal implementation, they even describe it in the link you posted

"We have now approached the problem again by refining our low-memory detection and tab selection algorithm and narrowing the action to the case where we are sure we’re providing a user benefit: if the browser is about to crash."

I would prefer FF to be more proactive in unloading tabs way before "its about to crash" to keep system level memory pressure lower. Firefox is the main memory hog on my M1 mac.

Chrome can do this, there is no reason we should be stuck with "manual tab unload" and "unload when the browser is about to crash".

I am using an extension, but that just reinforces the argument: they could be doing much more here.

I disagree, there is low-hanging fruit Firefox is leaving on the table. The main thing that comes to mind is tab unloading. They don't unload tabs automatically like chrome can.

I was pleasantly surprised at the tab unloading settings under "memory saver" in ungoogled-chromium.

"High Performance Browser Networking"

I wish there was an update to this book, reading it a while back I think it covered some proposed HTTP/2 features but definitely not HTTP/3.

Many of the issues discussed had to do with TCP itself.

Just Fucking Use Go 3 months ago

After a few years of Kotlin, I recently ran into what I consider to be some shortcomings here as well, with respect to returning errors. As we know, Kotlin does not have checked exceptions. Ok, but ...

The KEEP for Result<T> goes into details, but basically there are a few ways of handling return values + errors:

1) throw exception if something goes wrong

2) return null if something goes wrong (stdlib XXXorNull)

3) Use Result<T> in some cases, its error type is not paramerized and catches CancellationException

4) Use Arrow if Result<T> doesn't meet your needs

5) Return Sealed Classes / Interfaces with all the possibilities.

Right now, I am going the Sealed Class interface route, but its such a verbose pain in the ass, so I only use it at certain levels of abstraction (like from a Repository, or library API, etc).

The code I needed to write was calling into okio, and it was not straightforward to figure out what kinds of exceptions would be thrown by the JVM layer underneath (docs just say IOException, but sublasses can be thrown).

Its sad to see they still haven't figured this out. Rich Errors was mentioned a year ago but its not even in preview yet. Its also not clear how it will work with Java interop.

Mozilla Thunderbolt 3 months ago

And regarding (memory) performance, chromium has the "memory saver" settings for unloading tabs. I don't understand why mozilla thinks its acceptable to require users unload tabs manually. Who even does that?

Try oat groats, this will have the lowest GI. You can cook them like rice, even in a rice cooker, using the same technique ... for a firmer result use less water and cook for less time. You can start off with roughly 1:1 ratio of oat groats to water. I do .75 cups oat groats to 1.25 cups water.

[dead] 5 months ago

Citrini Research on Sunday published a report on Substack laying out hypothetical scenarios for how developments in AI could disrupt certain parts of the economy. Stocks that were mentioned in the report tumbled on Monday.

That report is here https://www.citriniresearch.com/p/2028gic

Note the paradox here: one of the principles of training is to stimulate the body, to “wear it out” at a given moment in time in order to trigger the physiological processes that will lead to improved capabilities, the fight against fatigue… and, ultimately, increased resistance to physical stress.

A somewhat recent paper:

Systematic review and meta-analysis of antioxidants with or without exercise training improving muscle condition in older adults

https://pmc.ncbi.nlm.nih.gov/articles/PMC12491480/

Seems to imply that as we get older, antioxidants might help the body recover from exercise. More specifically, antioxidants may help resolve exercise induced inflammation in adults aged over 55 years.

So it seems that, yes, as you get older, its easier for the body to wear down, but this can be mitigated somewhat.