Readit News logoReadit News
Zagitta commented on     · Posted by u/FluGameAce007
duskwuff · 9 days ago
If I'm reading this correctly, the author hasn't actually interacted with any of this "debug logic" (and doesn't even describe what it is), but is inferring that it must be active based on some log messages which mention debugging or which display diagnostic output. None of the log messages implicate a "hardware flaw"; it's not clear that any of them are even abnormal.

The report looks like AI slop. This is a meaningless waste of time.

Zagitta · 9 days ago
Calling it slop is generous, it's straight up hallucinations
Zagitta commented on Apple restricts Pebble from being awesome with iPhones   ericmigi.com/blog/apple-r... · Posted by u/griffinli
jjtheblunt · 6 months ago
I think you’re overlooking Garmin who has a healthy business in smart watches and they’re compatible with Apple devices.

Edit : more up to date and useful comments thankfully below

Zagitta · 6 months ago
As someone who has a garmin watch and switched from android to iOS I can tell you it's exactly as crippled as the article spells out. So if anything garmin has a healthy smartwatch business in spite of apple trying their hardest to choke competition.
Zagitta commented on Rust’s worst feature   mina86.com/2025/rusts-wor... · Posted by u/aw1621107
Zagitta · 7 months ago
Maybe Rust needs another type of reference that's exclusive write only? Right now there's RO (&T) and exclusive RW (&mut T) but WO is missing.

Having a WO reference would allow these read_buf APIs to express they only write and never read so the uninitialized memory is safe to pass directly.

Zagitta commented on Rewriting Rust   josephg.com/blog/rewritin... · Posted by u/yett
skywal_l · a year ago
The dependency hell issue is not directly related to Rust. The Rust language can be used without using any dependency. Have you banned javascript and python too?
Zagitta · a year ago
And in a similar vein have they audited the runtimes of all the languages they use? Because those a dependencies too and in many ways even more critical than libraries.
Zagitta commented on Pico 2 and RP2350 launch with choice of ARM or RISC-V   raspberrypi.com/products/... · Posted by u/jaustin
Zagitta · a year ago
It seems like a really strange choice to me that they made the arm and riscv cores mutually exclusive in each core complex since this just wastes die space on the core you're not using which in turn drives up the cost.

I feel like it would've been preferable if they either went all in on riscv or at least made it so all 4 cores could be used at the same time.

But if I were to guess the performance of the riscv cores probably doesn't match the ARM cores so they weren't confident enough in shipping a pure riscv SoC like espressif does.

Any other guesses as to why they might've gone this route?

Zagitta commented on Banish OEM self-signed certs forever and roll your own private LetsEncrypt   arstechnica.com/informati... · Posted by u/thunderbong
Zagitta · a year ago
Orrr just buy a domain and get a wildcard LE cert? All of the benefits, none of the hassle, and no subdomain leaking.
Zagitta commented on Apple confirms it's breaking iPhone web apps in the EU on purpose   techcrunch.com/2024/02/15... · Posted by u/M2Ys4U
addicted · 2 years ago
I don’t think Apple’s pettiness is gonna work in their favor.

I am not in the EU but my next iPhone is almost certainly not gonna be an iPhone despite me having used a non iPhone for about 6 months in the last 15 years.

Their throwing their customers under the bus just to throw a tantrum in the EU does not bode well for how they would treat their customers in other situations.

Zagitta · 2 years ago
I hope EU comes down HARD on them for trying to pull this shit
Zagitta commented on YouTube's ban leads to a record number of users uninstalling their ad-blockers   zdnet.com/article/youtube... · Posted by u/goplayoutside
matthewfelgate · 2 years ago
Netflix killed Torrents. Spotify killed Napster.
Zagitta · 2 years ago
Torrenting is on the rise again since the golden era of streaming where Netflix gave you access to everything has ended.

https://www.cnet.com/tech/services-and-software/digital-cont...

Zagitta commented on U.S. military members' personal data being sold by online brokers   axios.com/2023/11/06/mili... · Posted by u/23B1
jjkeddo199 · 2 years ago
As other commenters have mentioned, US American's ease of access to firearms does not extend to their usage. If you buy a weapon and wrongly shoot someone, there is a system in place to make sure you are found and punished. There is no such system in place for catching people flying drones.
Zagitta · 2 years ago
Have you not heard of remote-id?

It's a legal requirement for drones above 250g to broadcast not only their position but also the position of the operator and their identification number.

Zagitta commented on Why Golang instead of Rust to develop the Krater desktop app   blog.moonguard.dev/why-go... · Posted by u/rbanffy
zoogeny · 2 years ago
I have been watching a Twitch streamer Tsoding for a while now. Recently he ported a very simple chat client (like a hello, world! chat app) from Go to Rust [1]. Some impressions I have:

* I was surprised how naturally and easily porting the Go code to Rust was. I have been writing Go and I have been happy with it (to my surprise actually). And I have a stereotype in my head that Rust is more cumbersome. But in some cases, the Rust code was much more ergonomic than the Go code.

* Rust appears to be a quagmire of TIMTOWTDI (There Is More Than One Way To Do It). Just looking at the Rust docs for the standard library is a bit stress inducing. In some way Rust reminds me of the old Perl hacker culture which many love but I did not. When I first read the zen of Python stuff, and the idea that there should be one obvious way to do things I knew where my own heart lay.

* Rust is like the Dark Souls of programming. In the linked video there is a moment where the creator is audibly relieved. He did some mutable borrowing stuff across threads and he was deep in a rabbit hole of making the compiler happy. Finally he got it all to compile but he admits he wondered if he was going to find a dead-end. But there is something addictive about that kind of stress - I know it myself. You feel like you accomplished something when you come out the other side. It is some kind of dopamine inducing validation of your ability as a programmer. I think this is a very negative trait in the context of tools used to complete work.

* After implementing large blocks of functionality and getting the code to compile, it "just worked" as Rust programmers like to brag about.

My impression is still that Rust is over engineered. I have a lot of reasons to feel that way, but a recent one is a video from the CopenhagenRustCommunity where Jon Gjengset did a presentation on using `impl` traits in place of generics. It really feels to me that the ergonomics that I praised in my first point are a deal with the devil. I get the impression that maintaining this facade of "easy" is creating some demons under the covers. And things like `impl` trait and some of the decisions around it are layering on top to try to hide those demons. I don't want to call out this feature too hard since I'm just a tourist here and real Rust guys will probably have more useful opinions on it. But whenever I dig deep into Rust you end up with things like "Pin" or whatever and the guys behind it are almost apologetic. They recognize these are weird annoying things but in some sense earlier decisions are forcing them to do the best they can.

All that being said, I'm probably going to finally give Rust a decent try. I've been writing a small personal project in C and I think porting it to Rust is worth the time.

1. https://www.youtube.com/watch?v=BbIEuNscn_E&ab_channel=Tsodi...

2. https://www.youtube.com/watch?v=CWiz_RtA1Hw&t=2234s&ab_chann...

Zagitta · 2 years ago
I think you missed the point of Jon's talk, it was in large to highlight some deficiencies that currently exist in the language but are actively being worked on.

As he mentioned the current situation with return position impl trait + 'a was surprising even to some of the core rustc developers so it's not like they intended for it to be like that.

u/Zagitta

KarmaCake day338May 25, 2015View Original