This has bell curve meme vibes. I’m just not sure what the middle guy would be saying.
Some middle-aged guy on the Internet; Seen a lot of it and occasionally regurgitate it, trying to be amusing and informative.
Lurked Digg until v4.
Commented on Reddit (same username) until it went full Musk.
Now I’m here.
Other Adjectives: Neurodivergent; Nerd; Broken; British; Ally; Leftish
Applying for mod in places where an occasional mod would better than none at all.
This has bell curve meme vibes. I’m just not sure what the middle guy would be saying.
Ah! So you’re a waffle man! Wanna buy a waffle iron?
Let me guess: I’ll buy a toaster because my old one died but then I’ll get ads for new toasters constantly. You bought one, you must want another. And another. And another. Why aren’t you buying more toasters. You bought one. Buy another! Buy twenty!! People who bought toasters also bought microwaves and kettles. Do you want a toaster? Does anyone want any toast?
No, see, here ounces compare to millimetres. If height and weight fluctuate over centimetres and pounds, and they do, lesser units should be disregarded, right?
Do North Americans really give their weight in lb? You’d think they’d short hand it like to like 15 stone or whatever since weight is one of those things that doesn’t really need to be exact and will change by a lb or so based on the time of day and what you’ve eaten.
“People” are not a learned wizard who really ought to know better.
Surprised they haven’t tried to train a neural network to find a compression algorithm specifically for their sort of data.
There’s a ridiculous irony in the fact they haven’t, and it’s still ironic even if they have and have thrown the idea out as a failure. Or a dystopian nightmare.
But if it is the latter, they might help save time and effort by telling “the public” what avenues have already failed, or that they don’t want purely AI-generated solutions. Someone’s bound to try it otherwise.
C’mon now, the full name of a writing quill is “quill pen” because it’s the shaft (quill part) of a feather, Latin penna. Dumbledingus really ought to be able to connect the dots here.
Somewhere around here I have a 1960s or '70s Star Trek annual with a story where machines like this end up converting an entire planet into one enormous city, and the people that live there can’t stop it.
The story is basically a warning about turning everything over to AI, not that they call it that specifically.
This is pretty big if it has a completely separate browser rendering engine to the two remaining families, even if the feature set is small.
The more current alternatives we have, the better.
Unforchunetly, Ingglish speling duzn’t laiyn up with saowndz wun-tuh-wun.
Spelling things how you say them can lead to people misunderstanding or causing unintended(?) pain.
Comparing audio cassettes to modern high-density tape storage is pretty much the same comparison as an 8-bit computer with a modern 64-bit server, or, say, a hamster with a human.
Basically the same thing, but the differences are somewhat notable.
512KB? At the risk of going all Four Yorkshiremen, that sounds luxurious.
Floppy disks held 170KB if you were lucky to have a drive. The PET line, like many 8-bit computers, used a cassette tape drive (yes, those things that preceded CDs for holding and playing music). Capacity depended on the length of the tape. And it took ages to load.
The PET was fancy because it had a built-in cassette drive. That’s what you can see to the left of the keyboard in the picture.
Wow. I totally forgot that Commodore BASIC ignores spaces in variable names. I do remember that it ignores anything after the first two letters though. That said, there’s a bit more going on here than meets the eye.
PRINT HELLO WORLD
is actually parsed as PRINT
HELLOW
OR
LD
, that is: grab the values of the variables HELLOW
(which is actually just HE
) and LD
, bitwise OR
them together and then print.
Since it’s very likely both HE
and LD
were undefined, they were quietly created then initialised to 0 before their bitwise-OR was calculated for the 0
that appeared.
Back in the day, people generally didn’t put many spaces in their Commodore BASIC programs because those spaces each took up a byte of valuable memory. That PET2001, if unexpanded, only has 8KB in it.
</old man rant>
The gsettings
command can change things on the fly in the dconf, assuming that’s where the setting actually resides. It’s a pain to do, but that means it’s possible to write a script that makes the necessary change(s) and that can then be assigned to a keyboard combo.
For example, I have one that toggles a Cinnamon panel between the top and the bottom of its screen (I won’t get into why) and currently have it bound to Ctrl-Alt-Space.
It’s currently a hack that uses a couple of hardcoded values that I pulled from the dconf by observing what it was set to with the panel in each location. If it finds the first value it changes it to the second, and vice versa.
(In the unlikely event I come to change the layout to something it doesn’t recognise, it bails out, doing nothing.)
Anyway, you could probably do something similar to toggle the dark/light mode.
Most shells will issue $PS2
as the continuation prompt if you quote a filename and try to insert a carriage return.
Ctrl-V Ctrl-J is the explicit keypress pair to insert a carriage return without triggering $PS2
, but beware: If the carriage return is outside of quotes, that’s equivalent to starting a new command in much the same way a semicolon or a new line in a shell script would.
echo "hello^V^Jthere"
[Enter] echoes hello
on one line and then there
on the next, but echo hello^V^Jthere
[Enter] will echo hello
then try to run a command called there
We’d have to assume that whatever fixes spaces in filenames would also have an option to fix this subtlety. And I say to whoever tries: Good luck with that.
This is the sort of thing I was talking about with “Don’t go running commands […] unless you’re sure what they’re going to do […]”
I did a breakdown of this one on the snoosite back in the day. Searching “fork bomb” on YouTube is probably a better way to get that breakdown these days.
Most terminals start a shell as the first program, so you’re not really learning “Terminal” so much as whatever program it starts first. Bash is a pretty common shell, so you might want to search for things like “Bash examples” to get a feel for it.
If that’s too simple, or you blast past that, then reading bash’s manual might give you some more ideas. The man
command is your friend. The manuals are not necessarily quite so friendly, but they’re aimed at someone who’s already somewhat competent.
Anyway, here’s one link from a Bash examples search I did: https://linuxsimply.com/bash-scripting-tutorial/basics/examples/
If Bash isn’t what you have where you are, substitute its name instead. Zsh and Fish are pretty popular. There are others, but I don’t think any mainstream Linux uses them by default.
To check what shell you’re using try an echo $0
or echo $SHELL
.
Finally, a bit of advice: Don’t go running commands you see on the Internet unless you’re sure what they’re going to do is something you have no problem with. And be careful with copy/pasting from web pages you don’t know or trust - I can’t vouch for the examples in the link I gave earlier, for example. It’s possible to make things look like a completely innocent command but when pasted does something else entirely.
Me? I’d be the muggliest of muggles except for certain knowledge a witch implanted in my brain. And it’s since transpired that she was the one who should not be named all along.