HackerTrans
TopNewTrendsCommentsPastAskShowJobs

clumsysmurf

8,315 karmajoined vor 15 Jahren

Submissions

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

businessinsider.com
9 points·by clumsysmurf·vor 17 Tagen·2 comments

Soot from rocket launches is polluting Earth's upper atmosphere

physicsworld.com
8 points·by clumsysmurf·vor 25 Tagen·0 comments

Zelle Heads to India, Unveils ZelleUSD Stablecoin for Other Markets

earlywarning.com
5 points·by clumsysmurf·vor 30 Tagen·1 comments

[untitled]

1 points·by clumsysmurf·vor 2 Monaten·0 comments

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

cnbc.com
116 points·by clumsysmurf·vor 3 Monaten·179 comments

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

stories.tamu.edu
5 points·by clumsysmurf·vor 3 Monaten·1 comments

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

statnews.com
33 points·by clumsysmurf·vor 3 Monaten·21 comments

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

frontiersin.org
4 points·by clumsysmurf·vor 5 Monaten·0 comments

AI company Eightfold sued for helping companies score job seekers

reuters.com
3 points·by clumsysmurf·vor 6 Monaten·0 comments

Anxiety disorders tied to low levels of choline in the brain

medicalxpress.com
98 points·by clumsysmurf·vor 8 Monaten·122 comments

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

nbcnews.com
4 points·by clumsysmurf·vor 9 Monaten·1 comments

comments

clumsysmurf
·vor 17 Stunden·discuss
I'm in a heavily light polluted city (Phoenix) and even with all the air and light pollution, can still see satellites every moment past 2AM to the east. At least this time of year.
clumsysmurf
·vor 12 Tagen·discuss
> 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 ...
clumsysmurf
·vor 20 Tagen·discuss
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.
clumsysmurf
·letzten Monat·discuss
> 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.
clumsysmurf
·letzten Monat·discuss
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.
clumsysmurf
·letzten Monat·discuss
> 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.
clumsysmurf
·vor 2 Monaten·discuss
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.
clumsysmurf
·vor 2 Monaten·discuss
Not much, it seems

https://www.axios.com/2026/05/17/ai-backlash-polling-sentime...
clumsysmurf
·vor 2 Monaten·discuss
Secure Connection Failed

An error occurred during a connection to dylan.gr. SSL received a record that exceeded the maximum permissible length.

Error code: SSL_ERROR_RX_RECORD_TOO_LONG
clumsysmurf
·vor 2 Monaten·discuss
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.
clumsysmurf
·vor 2 Monaten·discuss
Indeed, I am using something similar "auto tab discard".
clumsysmurf
·vor 2 Monaten·discuss
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.
clumsysmurf
·vor 2 Monaten·discuss
"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.
clumsysmurf
·vor 2 Monaten·discuss
Perhaps the reasons are not technical. Perhaps it has more to do with jurisdiction, not being physically dependent (or susceptible) to any physical state.
clumsysmurf
·vor 2 Monaten·discuss
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.
clumsysmurf
·vor 2 Monaten·discuss
Another data point

"New AI data center in Utah will generate and consume more than twice the amount of power the entire state uses"

https://www.tomshardware.com/tech-industry/kevin-o-learys-9-...

I wouldn't be surprised if they use this as an excuse to open up public lands for extraction.
clumsysmurf
·vor 3 Monaten·discuss
Its probably best to talk to your doctor about a CAC score. I don't know if its possible to tell stable vs unstable plaque yet, but a higher CAC score may benefit from aspirin.
clumsysmurf
·vor 3 Monaten·discuss
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?
clumsysmurf
·vor 3 Monaten·discuss
The amount of NAC used in male mice was 400 mg/kg/day. The human equivalent dosage using FDA body surface area scaling method (for 60 kg adult) would be a total daily dose of ~1,946 mg.
clumsysmurf
·vor 4 Monaten·discuss
> now i have free credit monitoring

Might not even matter ...

"TransUnion and Experian, two of the three major credit bureaus, have started dismissing a larger share of consumer complaints without help since the Trump administration began dismantling the CFPB."

https://www.propublica.org/article/credit-report-mistakes-cf...