Hello im into crypto for almost half a year and for 2 weeks i been using a faucet that make me good 50-60 dollars… I got my money and was wondering should i keep it a secret or invite people because i see opportunity but dont know for how long the project will be going because they are a small group that have the faucet submitted by /u/Educational-Loan-956 [link] [Kommentare]
i made a multiple linear regression trainer that can be used with custom data in scratch nothing more to say, the impressive part is the scratch part https://scratch.mit.edu/projects/1352102064/ submitted by /u/mehmetflix_ [link] [Kommentare]
Researchers at UC San Diego built a humanoid robot controlled remotely by a surgeon that allows it to perform real laparoscopic surgery using standard surgical instruments by translating the surgeon's hand movements into precise robotic actions inside the body. The system was evaluated through benchtop testing, user studies across surgeons of varying experience levels, and successfully performed live laparoscopic gallbladder removal surgery, marking one of the first demonstrations of a general-purpose humanoid robot completing an actual surgical procedure rather than a dedicated purpose-built surgical system. The study also identifies key technical gaps that remain before humanoid robots can match the precision and reliability of established platforms like the da Vinci Surgical System. Published in Nature, 2026 submitted by /u/Similar_Suit_3709 [link] [Kommentare]
I hate using them and ever since I found out they've been bought by Binance I hate them even more. Which other sites/apps for viewing cryptocurrencies do you like to use the most and why? PS: bonus for other added features on the site submitted by /u/Impossible-Buyer6389 [link] [Kommentare]
Rewrite AI-generated text into natural, human-sounding content for blogs, emails, social posts, and everyday writing. Simple, fast, and reliable.
Everyone has been calling for an Oct low because of similar patterns in previous midterm years. We've all been watching Ben Cowen's videos. If everyone is expecting the bottom to be in October, would that change things? I'm not a smart man so please dont make fun of me submitted by /u/Guy-Lambo [link] [Kommentare]
Paranoid LLMsOne thing I notice with LLM-generated code is that they are paranoid. And that affects code quality. For me, I will do things the naive way, and only when I encounter errors during testing will I add safety nets for edge cases. But LLMs tend to want to catch all possible things that might go wrong from the get-go, even when we know that an error is not possible, or when we actually want the error to propagate and crash the program.Maybe it’s because of how they are trained on coding benchmarks. They are optimised to not make the program crash no matter what. When we humans code, we want the program to crash so that we become aware of a problem fix it, not necessarily by adding error-catching logic but maybe by enforcing some kind of invariant into the system.Another example of paranoia is how LLMs tend towards defensive code. For me, if I know that there is only one place that a function is being called, I will not add any checks on the arguments inside the function or try to coerce types - there is simply no need! On the other hand, LLMs default to trying to handle as many variations of malformed function arguments as possible, doing null checks, converting types, etc. It assumes that this function will eventually be called from 10 other places with messy arguments.What is the common theme here? LLMs try to solve imaginary problems. In doing so, they silently swallow program behavior. I want exceptions to raise, so that I can prevent that exception from ever throwing in the first place. I do not want to catch it. I want malformed function arguments to cause a crash, so that I can reconsider the function scope and how it is being called in different places. I do not want to let the show run on with type coercions that I have never allowed.2026-07-10 · 2 min read../