

No, not on porpoise.
🅸 🅰🅼 🆃🅷🅴 🅻🅰🆆.
𝕽𝖚𝖆𝖎𝖉𝖍𝖗𝖎𝖌𝖍 𝖋𝖊𝖆𝖙𝖍𝖊𝖗𝖘𝖙𝖔𝖓𝖊𝖍𝖆𝖚𝖌𝖍
No, not on porpoise.
I have no idea! It seems to be the human material. Have you ever heard of a solution? I can be aware of it and resist it, but what I hate is that instinctive, negative impulse, and I don’t think wishing it away is going to help.
Not that kind of “use!”
That’s… a big gap. I think I’d just be confused all the time if I had to switch between them.
Also, biological monsters would overheat very fast.
That’s why they tend to breath fire n stuff.
Old Godzilla movies got it right. He did look like he was walking on the moon. Not bouncing, but he probably had atrophied muscles from being in the water all the time.
Poor guy. Overheated and tired, no wonder he was grumpy!
That’s brilliant. The thumbnail spoils it… at least, it shows me the punchline.
I don’t know why; it just popped into my head. Maybe because the float would just make snacking easier for the sharks?
Edit: because my home server insists on rewriting all image URLs to proxy requests through that server, and it often breaks things. I gotta re-home.
Ok, so preface: this isn’t about you. Your comment just coalesced something I’ve been ruminating about recently.
I wish we, as humans, didn’t have this knee-jerk tenancy to make everything a zero-sum competition. Vi vs EMACS. x86 vs ARM. Windows vs Mac vs Linux vs FreeBSD. C vs Go vs Rust vs Clojure vs JavaScript. Arch vs the world.
It really is a zero-sum game, with real consequences. If your favorite distro becomes unpopular enough, it might die, and then you have to give up something you love. Windows winning the OS market for decades meant countless people had to suffer using Windows because the company they worked for mandated it. If I crusade for V(lang) enough, it might become popular enough for jobs to open for it.
The downside is that we’re constantly fighting against diversity, and that’s bad.
I suffer from this as much as anyone, and I hate that my first impulse is to either tear down “the opposition”, which at some point is nearly everyone, or schadenfreude.
“It is not enough that I succeed, but that others should fail.” It can’t be healthy.
I miss the days when every package came with a man page.
Every respectable package; don’t come at me, pendants.
groan
What almost impresses me most is the architecture of the Parthenon in Athens. Nothing in it is perpendicular. There’s a rise in the middle of the floor of about 6.5cm over a span of 30 meters that makes the floor bowed and prevents it from looking like it’s sagging in the middle. All of the columns are just slightly tilted inwards. They’re not straight-sided, either, they’re bowed. The whole danged thing is an optical illusion to make it appear perpendicular, because it’s so big that if they didn’t, it wouldn’t.
https://www.thearchaeologist.org/blog/6e7osxbhye9libjdlmb8std5b77rs9
C-beams glitter in the dark near the Tannhauser gate.
I can think if plenty of situations where system time is
In fact, if you don’t set up your containers right, the system time is almost always wrong.
This is really good to hear. As someone who hasn’t used Windows since 2004, it’s easy to lose perspective of how daunting a self-switch can feel.
I’m glad to hear your experience is going well. I know you’re experiencing many little annoyances and things which seem harder than they should be, but are not focusing on those. It’s always good to hear the perspective from a new user!
If that’s the only error mechanism, sure. Exceptions in most languages tend to be relatively expensive, though, and most have a cheaper idiomatic way of returning error codes; you’d want to use those if they’re available, right?
Does Rust use exceptions a lot? I don’t know. V has panic and catch, but you almost never see them. Idiomatic is Option (?) and Return (!) values, which I thought V borrowed from Rust. Go does the (val, error) tuple-ish return thing, and while it too has catchable panics, they’re discouraged in favor of (error) return values.
Depends on the language. “Higher level” is a pretty broad field!
OnlyOffice is a Russian company. Some people might care about the latter part.
The connection between OnlyOffice and Russia has caused some controversy. The company has moved headquarters and attempted to hide its Russian ties through shell companies. The company develops its product in Russia and presents itself in the Russian market as a Russian company. For this reason some Ukrainian businesses have moved away from OnlyOffice.
Wikipedia has more info (with references) for the curious.
I want my own all knowing god.
I don’t want to be all knowing; Watchmen demonstrated how much that would suck. But having an omniscient floating ball that I can ask questions and get straightforward answers; I could abuse that capability endlessly.
I think my wife and I are both wise enough to avoid using it for spousal discovery: if she wants to tell me her body count, she will. So It’d quickly escalate from the trivial to the existential, and then we’d make a lot of money and maybe solve some world problems on the side.
i definitely want a personal, floating, omniscient, question-answering god.
That’s a lot of bloom for a little guy!
Huh.
tar tf
andunzip -l
. I’m not sure I’d even bother to write a shell function to combine them, much less install software.Zips just exploding to files is so common, if you just
mkdir unzpd ; unzip -d unzpd file.zip
it’s going to be right nearly all of the time. Same with tarballs always containing a directory; it’s just so common it’s barely worth checking.You write the tools you need, don’t get me wrong. This seems like, at most, a 10-line bash function, and even that seems excessive.
function pear() { case $1 in *.zip) unzip -l "$1" ;; *.tar.*) tar tf "$1" ;; esac }