Let them cry, I don't see anything changing unless they can somehow get China to agree. And I doubt China will drink any of that kool aid especially while they're being disadvantaged by export controls, so the ever-improving open weight models will continue to rain. This is something the US Big Tech oligarchs will NOT win.
I don't see why it would be. It's transparent to other clients just like it is to the protocol. It cannot be more complex than alternatives by construction.
Well, now instead of paying the photographers for the stock photos to use as headline pictures, people instead pay the AI firms for the stock pictures to use as headline pictures.
The same could be said of commissioned paintings when photography became a thing. And yet here we are, and I doubt anyone - except maybe artists - would say the world is worse off.
Precisely. There is no need to wait for "the position" to be formulated since a) it won't be; b) it's mostly "AI is bad because, full stop" anyhow, not even a strawman.
> it's mostly "AI is bad because, full stop" anyhow
Ooh, the rare* double straw man. Since you look like you could use the exercise in intellectual honesty, I’ll pose the question directly: can you think of any reason that the ability for anyone to generate fake photographs indistinguishable from reality with no skill, time, or money required might make the world a worse place? Cause harm?
And again, how is "AI or human" relevant to discussing? Given the potential of an indistinguishable discussion (which will eventually be the case). Although also eventually it's AI that will consistently provide the superior discussion experience, then... what? Those against AI actively seek out inferior experiences? Should be interesting.
We all been forced to help train Google's CAPTCHA for years for free, with no benefit. At least here you decide to opt-in or not, and it can potentially help you be more... discerning.
Doesn't really work for me. It's just a site likely checking what the browser tells it any the system. Meanwhile I have a VPN blocking most connections and every Google app is either uninstalled or disabled.
> I need to log in to your app regularly to avoid being declared dead?
Technically, until we get to a point where we still have embedded "life signal" chips, there's no way to automatically detect that someone has died. Other than those who've actually seen a body, the best we have is "not seen - at Y - for a while".
Windows does actually have symlinks but I don't think I've ever seen anything actually use them, and I don't myself because it smells of interop issues with other windows apps.
Even to this day Windows has all kinds of problems around long file paths in its ecosystem.
> Even to this day Windows has all kinds of problems around long file paths in its ecosystem.
To this day I don't know if it's a Windows problem or a Python problem, because I never encountered this - and never realized this problem exists - except for some random Python code whose docs tell me to set some registry value because of "long paths issue".
It’s a Windows problem. There’s still, to this day, a 259-character limit on path length in the Win32 API unless the OS has been configured to support long paths and the application uses the correct subset of Windows APIs. For example if you use ‘CreateFileA’, you’re stuck with the limit no matter what.
There’s no problem with Python in general. The registry value LongPathsEnabled, which is probably the one you were asked to set, affects the entire Windows system.
However, there’s also an older workaround that allows programs to use “extended paths” even if that setting is off, by prefixing path strings with “\\?\”. So applications using that workaround can use long paths no matter how Windows is configured. But Python doesn’t use the workaround, it uses the modern APIs and if you want long paths, you need to configure the underlying Windows system to enable it.
The 260 character limit is just a Windows problem. See my other comment in this subthread for a summary of the eldritch horror in question. The tl;dr is that backwards compatibility is a helluva drug.
reply