Isn't "creativity" the result of a combination of patterns (usually from different contexts) that casually works? I bet LLMs/agents can do that (we can't know how far that can goes).
I had a similar experience. My son had pneumonia and was still filling pain after 10 days of antibiotics. Took an X-Ray to three different doctors, and only one got the right diagnosis (pleural effusion). It's really something we should have a central place with top notch professionals looking at it, instead having each doctor to find by themselves.
> As well as being unlikely to be beneficial, full body general health checks in asymptomatic people can potentially be harmful. The main harms are overdiagnosis, detrimental psychological effects, negative effects on health behaviours (for example, failure to quit smoking due to reassurance of good health), complications related to follow-up tests, and unnecessary treatments.
Yes, it went commercial. But Conda is still free. And the community had built conda-forge to maintain packages. Conda + conda-forge can completly replace Anaconda for most people.
So even though they went commercial, they left pretty good things behind for the Open source community.
I use Miniforge in a commercial environment and never found a package downloading from the main channel. I'm pretty sure a recipe that does that would be blocked by conda-forge reviewers.
How much of these 9% uses Apple Pay? My bet it's just a small part. People still use Pix and physical Credit/Debit Cards. Google Pay/Apple Pay are far behind.
> many scenarios where the only option was to pay with PIX
I guess you want to say "only option _beyond cash_ was Pix". Most places should accept Passport ID to replace CPF. But if you found hard to pay using credit cards, that has nothing to do with Pix...
I followed with this rationale in a small project and opted for PostgreSQL pub/sub instead Redis. But I went through so much trouble correctly handling PostgreSQL disconnections that I wonder if Redis wouldn't be the better choice.
IMHO one of the biggest advantages of using HTMX is not having to maintain three layers of test suites (backend, frontend, end-to-end). You just need to test that your endpoints return the right HTML piece. You don't need unit testing the frontend since you don't have that much logic there. Just rely on end-to-end tests as a complementary tool to check small pieces of logic on the HTMX code.
I second that. I used Dash for a while. Although it's nice to have everything wired up for free, the code quickly becomes a mess as soon as you try some more complex things (or you put everything in one function and got a big super nested structure, or you build a lot of small components and quickly get lost in a sea of small functions).
I'm using a managed Postgres instance in a well known provider and holy shit, I couldn't believe how slow it is. For small datasets I couldn't notice, but when one of the tables reached 100K rows, queries started to take 5-10 seconds (the same query takes 0.5-0.6 in my standard i5 Dell laptop).
I wasn't expecting blasting speed on the lowest tear, but 10x slower is bonkers.
Exactly. Seems just a bait article from someone who doesn't know shit about what happened (similar to Dave Farley video blaming the Cyberpunk launch fiasco on the lack of CI/CD).
I agree that "still just demos" is an overstate. But I'd say that in 2015 a lot of people predict that in 2020 we'd have driverless Ubers everywhere. And that just didn't happen.
The challenges that are still open in getting driverless vehicles to operate in more chaotic scenarios like India or Latin America seem pretty much in line with what he's talking about: new improvements need exponentially more data.
Holy... It still amuses me how much HN comments brings the reality to these kind of articles.
> the plan is never followed.
Sometimes it's even worst. As we add more tasks during execution, at the end, these tasks get twisted with the ones you created while planning. Then we end up with a messy list of undone tasks that aren't really required anymore (because they were created without having the full context, that only happens during the execution).