It still surprises me that people can complain about LLMs making things up (i.e. hallucinating), and simultaneously complain that they never produce anything original.
Creativity can be thought of as a combination of two things: A random idea generator, and a nonsense filter. Generate new random results ideas, filter out the nonsense ones, and you’ve generated good ideas.
Creativity also requires information. And Information is discovered. We can only generate random ideas from what we know. We can't imagine something we've never sensed, or know. You can't imagine a color you've never seen without recalling known colors. You can freely mix ideas due to your imagination.
But when we discover new information, we must decide whether the information is useful. Otherwise the information is considered noise.
We give weight to decisions: time spent pondering, considering, and the more weight we give, the better the decision. Almost always the idea is measured in usefulness.
IMV creativity that matters contains a third ingredient: intent, purpose, the will to make an artistic statement of some kind about how the world is or should be.
One could argue from a religious standpoint that creativity requires a spark of divinity.
One could argue from a naturalist standpoint that natural selection has been a creative process in which nature tries random things until they stick for no purpose that we can directly observe.
One could argue from a platonic standpoint that creativity in this realm of existence is merely the process of approximating ideal forms.
I'd wager that creativity is a human construct and therefore up to interpretation. Kinda like how the ancient greeks didn't have as many colors words as we did. Was it because they couldn't see all the colors we could see? No, it was because in their opinion only certain color words were necessary to discuss what was important.
Yeah you should really familiarize yourself with the history of scientific achievements, it will quickly disabuse you of this notion. What separates is often a thin line and dogged persistence, hardly the chasm you make it seem.
> The "locals don't want to do those jobs" comptemptuous rethoric of the left has always been false, locals don't want to clean the sewers for the minimal wage, but will do it for a proper salary.
apologies, but those of us in the Left agree more with the second part of your sentence than the Left. Are you mixing Leftists and Liberals, perchance?
Yet leftists will always agree to import migrants to undercut locals, in harmony with the capitalist bourgeois class. Besides, I have heard this argument said to me irl a countless times by people with leftist ideas.
> This article tries to build upon a lot of half-truths or incorrect facts, like this:
yeah i was wondering why my bullshit detector was going off. This feels as if someone who cooks for Ramsey's kitchen is trying to predict the end of the market hike.
These lens "blockers" are working less-and-less well (as tech gets better if they ever worked well at all), and seem to increase targeting from law enforcement.
In Tennessee, after the first two citations for "improper display of registration" it becomes an actual crime (an actual misdemeanor); if I ever get to this point (four months now multiple cops behind me haven't given a single F), I have an increasingly-insane series of "protests" that have semi-interesting legalities [0].
[0] e.g. transfer registration to brother ($10 gift fee every few months, which results in no tag requirement); small 3ft trailer (possibly with guillotine erected atop, blocking view), as TN does not issue license plates to trailers less than 15ft length
----
This isn't about "disappearing" (impossible in any modern civilization) — it's about sending a message and adding one small additional layer of protection from simple broad ALPR searches.
Honest question, why is ProxyCommand `fun`? What do I get out of ProxyCommand that i do not get out of setting the correct order for ProxyJump and doing an ssh finalhost -- domy --bidding?
ProxyJump is a newer functionality. There used to be only ProxyCommand. ProxyJump is a shortcut for the usual way to use ProxyCommand to connect through a bastion host but ProxyCommand is more flexible. For example with ProxyCommand you can run any command to connect to the remote host. ProxyJump only connects over ssh. I think I replaced all my ProxyCommand with ProxyJump because I don't need much else than the normal use case.
You can get a lot more out of ProxyCommand. For example, you can run SSH over non-IP protocols, such as serial, Bluetooth RFCOMM for embedded boards, or vsock for virtual machines without networking set up at all. The latter is built into and setup up automatically by systemd:
ProxyCommand allows you to use any command to setup a connection. Not necessarily an ssh command, like ProxyJump. It can be any command, as long as it receives on stdin and produces on stdout, it can act like a TCP connection.
ProxyJump is a special case of `ProxyCommand ssh -p <port> <user>@<host>`. Can't replace the `ssh` in there when using ProxyJump.
I came across ProxyCommand earlier this week, funnily enough. I have Cloudflare Zero Trust set up with an SSH service[0], and have the server firewall drop all incoming traffic. That helps reduce my attack surface, since I don't have any incoming ports open.
I use ProxyCommand in edge-case devices where key auth is not an option and the password is not controlled by me. ProxyCommand points to a script the retrieves the password from the vault, puts it on the clipboard for pasting, reminds me via stderr it's done so, and then proxies the connection.
Interesting. I might have such a use case. Do you have anything about best practices on how to automate grabbing passwords from vaults? Cuz it seems to me that the vault needs to be kept open or keep the vault password somewhere on disk.