pryffwyd
|
6 years ago
|
on: ICE arrests 90 more students at fake university in Michigan
If such fake universities exist, why aren't these resources being spent to identity and shutter them instead? If they don't, why manufacture this elaborate heist instead of deporting the students in the first place when their visa ran out? Wouldn't it be more cost effective to just pore through immigration records and do some on-site checks to find a "real fake university" than to create one?
pryffwyd
|
6 years ago
|
on: Your throat hurts, your brain hurts: the life of the audiobook star
It costs 100s of millions of dollars to animate and market a feature Pixar film. It would be very penny-wise/pound-foolish to try to skimp on voice-acting. Animated films will be the last place to start using TTS. Honestly they might ADR people in low budget live-action with TTS before it reaches the major animation studios.
pryffwyd
|
6 years ago
|
on: Americans lose $50M to phone scams in the last year
Chicago citizens were on average murdered .0002 times in the last year
pryffwyd
|
6 years ago
|
on: Kids Who Get Driven Everywhere Don't Know Where They're Going (2012)
34 months to pass, jesus. No wonder ridesharing is eating taxis' lunch.
pryffwyd
|
6 years ago
|
on: Zuckerberg defends political ads that will be 0.5% of 2020 revenue
Agreed. They would only lose a fraction of the 0.5% anyway, since they would just run other ads in their place. This is all about Facebook controlling the political process.
pryffwyd
|
6 years ago
|
on: US Constitution – A Git repo with history of edits
Definitely. Adding an extra grade I'm sure would require at least a couple hours of technical work and haunt subsystems and stats analysts for decades to come. Not worth it.
pryffwyd
|
6 years ago
|
on: Why Isn't Functional Programming the Norm? [video]
The latest no-OOP imperative language with any kind of market share is C. So everything that's terrible about C: unsafe manual memory, portability issues, tooling, no generics or overloading, horrible ergonomics, 2nd class functions, globals everywhere, etc, are all forever associated with imperative programming. OOP was born at the time of fixing all those problems, so those languages were a big improvement in ways that had nothing to do with OOP. Now that all the top languages are multi-paradigm, only a puritan would avoid OOP, and they'd have a tough time interacting with libraries and frameworks. So every codebase is a little wishy-washy and OOP wins by default. Imperative has no advocates left in industry or academia, so most people don't even think of it as a defensible design decision.
pryffwyd
|
6 years ago
|
on: Beneath the Replication Crisis
I have read that a study is very unlikely to replicate if p is juuust under 0.05, but very likely to replicate if just over 0.05. The first is a good sign of p hacking, while the second is a good sign of a real effect with a sample size that wasn't quite big enough.
pryffwyd
|
6 years ago
|
on: Python is not a great programming language
It appears textually first but the evaluation order is the same as the classic ?: ternary. ```[][0] if False else 'foo'``` will not raise an IndexError.