HackerLangs
TopNewTrendsCommentsPastAskShowJobs

mattclarkdotnet

427 karmajoined 12 yıl önce

comments

mattclarkdotnet
·3 gün önce·discuss
The problem is the assumption that in most debates there are sides to be taken, and that there are 2 of them. It leads to shoddy journalism where "balance" means finding someone to debate another, regardless of the bizarreness of their position.

In the real world there are many perspectives on a given issue, and a lot to be learned by everyone through open discussion. "Both sides" mentality discourages this, and also tends to give too much airtime to extreme views.
mattclarkdotnet
·geçen ay·discuss
It's almost certainly meant to be 27%, not a factor of 27.
mattclarkdotnet
·2 ay önce·discuss
So you’re wanting to bet that we’ll get humanoid robots capable of driving a dumb car at L4 before we get cars capable of L5? When we have no humanoid robots driving cars, and many L4 cars driving around? I’ll take that!
mattclarkdotnet
·2 ay önce·discuss
Only by embracing solipsism, in which case why are you here debating things, since your entire truth is derivable from your existence alone with no other observations or interactions required?
mattclarkdotnet
·2 ay önce·discuss
Philosophy can be perfectly effective as a tool of thought while still being unable to resolve self evidently unsolvable “ultimate questions”
mattclarkdotnet
·2 ay önce·discuss
The theistic schism? I had to look it up, and was not cleverer after. Nobody can ever know an ultimate why, for obvious and well established philosophical reasons. At least the scientists are trying to squeeze the knowledge gap down as small as possible instead of making up stories.
mattclarkdotnet
·2 ay önce·discuss
Oh it's worse than that, for distribution and playback sampling at more than 48kHz is likely worse in many ways due to unwanted ultrasonic noise and increased intermodulation distortion. 96/24 makes sense for production, and 96/float56 is common in DSP chains.
mattclarkdotnet
·2 ay önce·discuss
The analog input will use separate ADC modules, just as the analog output uses separate DACs. DSPi itself is purely digital (OK, excepting the PWM based sub out). These modules are just a few dollars on AliExpress for ~96dB SINAD
mattclarkdotnet
·2 ay önce·discuss
I2S input is on the roadmap, and hardware modules from AliExpress are being tested by Troy, so yes you will get plenty of analog inputs!
mattclarkdotnet
·2 ay önce·discuss
It's for the pico. RP2040 works fine, but RP2350 has a hardware FPU and much more processing capability, so supports more channels and filters
mattclarkdotnet
·3 ay önce·discuss
We throw away food because we are so good at making it cheaply that the problem has shifted to distribution costs and fair wages. Also high productivity economies need to deal effectively with the Baumol effect (https://en.wikipedia.org/wiki/Baumol_effect). If they don't then even people in the USA can be food poor despite huge GDP per capita.
mattclarkdotnet
·3 ay önce·discuss
You might enjoy the book "Red Plenty" by Francis Spufford, which traces the consequences of this thesis ("Capitalism already is a poor allocator") through the Khrushchev years of the USSR, seen through the eyes of the economists, mathematicians and planners who tried to do better than capitalism.

Of course there are in-between approaches like industrial policy in mixed economies, for example the South Korean shipbuilding industry. But those tend to work with the grain of capitalism, not against it.
mattclarkdotnet
·4 ay önce·discuss
At best it’s checking available credit. All the other stuff is done after the fact. The idea that any banking transaction involves “subtracting one number from another” is so wrong it’s barely worth engaging with.
mattclarkdotnet
·4 ay önce·discuss
Since when were payment networks latency sensitive? It’s usually 2 or more seconds to even get a payment up on the card terminal from the merchant POST system, then 2-5 seconds more from card presentation to getting approval back.
mattclarkdotnet
·4 ay önce·discuss
Thank you! Spy looks brilliant, especially the comptime-like freezing after import.
mattclarkdotnet
·4 ay önce·discuss
What's nuts is that the language doesn't guarantee that successive references to the same member value within the same function body are stable. You can look it up once, go off and do something else, and look it up again and it's changed. It's dynamism taken to an unnecessary extreme. Nobody in the real world expects this behaviour. Making it just a bit less dynamic wouldn't change the fundamentals of the language but it would make it a lot more tractable.
mattclarkdotnet
·4 ay önce·discuss
Let's not get started on the cached shared object refs for small integers....
mattclarkdotnet
·4 ay önce·discuss
It's still ridiculous. A hypothetical Python4 would treat function declarations as declarations not executable statements, with no impact on real world code except to remove all the boilerplate checks.
mattclarkdotnet
·4 ay önce·discuss
Allowing metaprogramming at module import (or another defined phase) would cover most monkey patching use cases. From __future__ import python4 would allow developers to declare their code optimisable.
mattclarkdotnet
·4 ay önce·discuss
Performance is one part of the discussion, but cleanliness is another. A Python4 that actually used typing in the interpreter, had value types, had a comptime phase to allow most metaprogramming to work (like monkey patching for tests) would be great! It would be faster, cleaner, easier to reason about, and still retain the great syntax and flexibility of the language.