What’s the one that’s not the wat??
- 1 Post
- 76 Comments
naonintendois@programming.devto Technology@lemmy.world•Waymo reports 250,000 paid robotaxi rides per week in U.S.English5·3 months agoMy best experience was in SF on a day it was raining VERY heavily. Waymo blew me away compared to Tesla"a FSD, which would just tell you to take over in rain.
naonintendois@programming.devto Ask Lemmy@lemmy.world•In how many languages can you count to 10?2·3 months agoThe assembly doesn’t print 1-10, it prints 1-9 then
:
.
naonintendois@programming.devto World News@lemmy.world•U.S. companies say Canadian retailers are turning away products - National | Globalnews.caEnglish4·3 months agoI’ve seen some waking up but not most.
naonintendois@programming.devto Technology@lemmy.world•World's smallest microcontroller looks like I could easily accidentally inhale it but packs a genuine 32-bit Arm CPUEnglish1·4 months agoYou forgot to edit the second silicone at the end of your sentence.
naonintendois@programming.devto You Should Know@lemmy.world•YSK Going to a Tesla dealership and spending a day with a salesperson when you have no intent on buying is a great way to protest without waiting for a scheduled event.4·4 months agoUnfortunately they don’t have traditional salespeople. They don’t make commission and probably wouldn’t mind talking to someone.
naonintendois@programming.devto Technology@lemmy.world•Amazon customer receives fake Ryzen 7 9800X3D, turns out to be decade-old AMD CPUEnglish13·4 months agoIn those cases I just do a charge back on my credit card.
naonintendois@programming.devto Technology@lemmy.world•Framework’s first desktop is a strange—but unique—mini ITX gaming PCEnglish2·5 months agoYou can order those directly from chip suppliers (mouser, digikey, arrow, etc.) for a lower cost than you could get them from framework. Also those are going to be very difficult to solder/desolder. You’re going to need a hot air station, and you need to pre-warm the board to manage the heat sink from the ground planes.
naonintendois@programming.devto World News@lemmy.world•Trump ‘surrendering to the Russians’ on Ukraine, top Democrat saysEnglish41·5 months agoWhat’s the context here?
naonintendois@programming.devto World News@lemmy.world•White House says Canada has 'misunderstood' tariff order as a trade war, Mexico is 'serious'English1·5 months agodeleted by creator
naonintendois@programming.devto 3DPrinting@lemmy.world•Reviewers without Conflict of Interest?English6·6 months agoBest ones I know of are maker’s muse and teaching tech
naonintendois@programming.devto Ask Lemmy@lemmy.world•Those who live outside Europe. What are things Europeans are not ready to hear.8·6 months agoThere is still a lot of racism in America. I would not be surprised if I saw that from an American politician.
naonintendois@programming.devto Ask Lemmy@lemmy.world•Are there any words that you pronounce in a way that seems weird to most people?2·7 months agoNot me, but a friend of mine pronounces rhinoceros as if it rhymes with dinosaur-us.
naonintendois@programming.devto Technology@lemmy.world•Netflix struggles to understand its cloud costsEnglish732·7 months agoThe author has no clue how spending works in cloud environments nor why it’s so complicated to calculate. This is a pretty uniformed article.
naonintendois@programming.devto Showerthoughts@lemmy.world•I just got back from Atlanta. It has the worst drivers I've ever been around and the most Teslas I've ever been around. Make of that what you will.121·7 months agoI-4 was much easier to drive for me than I-95 in Miami. I have never seen worse drivers.
naonintendois@programming.devto Linux@lemmy.ml•COSMIC Alpha 4 Released For System76's Rust-Based Desktop4·7 months agoYou can have a memory leak when items are still in scope in some loop or when you have a reference count cycle. The latter happens with the Rc/Arc types in rust.
An example for the former can be a web server that keeps track of every request it’s ever received in memory. You will eventually run out of memory. But you did not violate any memory rules (dangling pointer, etc.). Memory leaks can be caused by design issues.
naonintendois@programming.devto Linux@lemmy.ml•COSMIC Alpha 4 Released For System76's Rust-Based Desktop8·7 months agoYou don’t need unsafe. Just keep pushing to a vec and never remove anything. Memory leaks are more than lost memory allocations. You can even have them with rc/arc cycles
naonintendois@programming.devto Linux@lemmy.ml•COSMIC Alpha 4 Released For System76's Rust-Based Desktop40·7 months agoRust doesn’t prevent memory leaks. You can do that in every language
Thanks!