

I thought it was just “Slashdotted.”
I thought it was just “Slashdotted.”
What’s the alternative? Strong arm a democratically elected — even if stupid at times — government to change policy? That’s a terrifying precedent.
The other alternative is to backdoor or otherwise compromise users in other jurisdictions. Glad they didn’t do that.
I think mplayer
has an ASCII output mode (VLC, too?), and I believe youtube-dl
can output to stdout.
The rest is, as they say, left as an exercise to the reader.
Sounds like he was a mantis and was posting while copulating.
Sounds like it was a 2 petawatt pulsed laser, with picosecond pulses, so 2kJ/pulse. Staggering amount of power and energy for a pulsed laser!
Note that it’s not CW, so the average power will be much, much, much less than the pulsed power. Too lazy to find the rep rate to see average power.
I recently started using voice (SSB) on the HF ham bands, and have made contacts on 15, 17, 20, and 40m. No real DX, but made one foreign contact ~1000mi away and another domestic ~2000mi away.
I live in a city and it’s challenging to get a good antenna setup, so it’s always a compromise where I am.
Nothing very impressive by ham standards, but it’s fun.
Oh I wasn’t complaining, I was making a bad joke (the cartoon is a stalemate).
Ugh, Lemmy is full of stale content.
(Edit: it’s a joke. Stalemate/stale content…I chuckled at, and upvoted, the post.)
Remind me again, what color was Obama’s scandalous suit?
You can turn it off, at least for ext4: https://lwn.net/Articles/784041/
Although you can use case insensitive filesystems with Linux, and case sensitive filesystems with macOS. I believe the case sensitivity is a function of the specific filesystem — but yeah, practically, the root for Linux is always case sensitive, and APFS ain’t is only if you ask it to be ( https://support.apple.com/lv-lv/guide/disk-utility/dsku19ed921c/mac ).
Sounds like one use-case of for same-sex couples to have biological children together. Which is pretty neat IMHO!
Not to say that the more macabre use cases don’t exist, of course.
…could pave the way for same-sex couples to have biological children together.
As usual, it sounds like the technology could be used for genuinely good things.
It could be used for horrible things too, yes, but that’s often how it goes.
No, that’s not really a useful way of modeling it for the case of light traveling through a linear medium.
The absorption/re-emission model implicitly localizes the photons, which is problematic — think about it in an uncertainty principle (or diffraction limit) picture: it implies that the momentum is highly uncertain, which means that the light would get absorbed but re-emitted in every direction, which doesn’t happen. So instead you can make arguments about it being a delocalized photon and being absorbed and re-emitted coherently across the material, but this isn’t really the same thing as the “ping pong balls stopping and starting again” model.
Another problem is to ask why the light doesn’t change color in a (linear) medium — because if it’s getting absorbed and re-emitted, and is not hitting a nice absorption line, why wouldn’t it change energy by exchanging with the environment/other degrees of freedom? (The answer is it does do this — it’s called Raman scattering, but that is generally a very weak effect.)
The absorption/emission picture does work for things like fluorescence. But Maxwell’s equations, the Schrödinger equation, QED — these are wave equations.
I kinda assumed any Mars mission would include some simple centrifugal pod. Seems like even if it’s just for sleeping it would be useful.
Dispersion and nonlinearities would like to have a word ;)
IIRC chvt
is a privileged command, which makes sense (if an unprivileged user could execute this command they could effectively brick the computer for a local user).
That said, my understanding is that modern DE’s are given a lot of access, so presumably chvt
is allowed (and in this case, is required because as others mentioned, password is required). So the only other option is to fail unlocked, which is all kinds of Bad.
If you exclude blocked instances, you’re a lot higher than #5…
I can only remember this because I initially didn’t learn about
xargs
— so any time I need to loop over something I tend to usefor var in $(cmd)
instead ofcmd | xargs
. It’s more verbose but somewhat more flexible IMHO.So I run loops a lot on the command line, not just in shell scripts.