

What’s the one that’s not the wat??


What’s the one that’s not the wat??


My 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.


The assembly doesn’t print 1-10, it prints 1-9 then :.


I’ve seen some waking up but not most.


You forgot to edit the second silicone at the end of your sentence.


Unfortunately they don’t have traditional salespeople. They don’t make commission and probably wouldn’t mind talking to someone.


In those cases I just do a charge back on my credit card.


You 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.


What’s the context here?


deleted by creator


Best ones I know of are maker’s muse and teaching tech


There is still a lot of racism in America. I would not be surprised if I saw that from an American politician.


Not me, but a friend of mine pronounces rhinoceros as if it rhymes with dinosaur-us.


The author has no clue how spending works in cloud environments nor why it’s so complicated to calculate. This is a pretty uniformed article.


I-4 was much easier to drive for me than I-95 in Miami. I have never seen worse drivers.


You 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.


You 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


Rust doesn’t prevent memory leaks. You can do that in every language
Thanks!