Randomness
Nov. 14th, 2025 11:55 pmON this Friday,I’m feeling a little scattered, with a few random thoughts flitting about in my gray matter without much rhyme or reason to them. That may be because of the intense rush I was going through in all my spare time for the last several days trying to get a research paper ready for publication, only to get stuck on a couple of fine points that just didn’t feel ready yet. So, rather than publish something I’d feel was half-done, I’m taking a step back to catch my breath, look at it fresh again after the weekend,1 and look on Monday for a new journal or conference to submit it to instead.
C’est la vie.
I was listening to YouTube videos of a PhD physicist (Dr. Blitz) debating against people who hold views contrary to demonstrable reality. Most of these are proponents of the idea that the Earth is flat, but there are others he’s engaged on other topics such as evolution, and the age of the Earth.
It’s somewhat frustrating to listen to some of the people arguing with him and their lack of ability to pose anything resembling a coherent point of view or to provide any evidence in support of their position that makes any sense. (I’m not necessarily even assuming here whether or not their position is correct or not,2 just that the contingent of people who show up on his debate channel seem to be so woefully misinformed and lack any sense of how to make a logical argument or even have a modicum of rational, critical thinking about them.3
In the comment section I noticed someone had made a comment that summarized what it feels like to listen to many of these, in a way I hadn’t thought of but now that I’ve seen it, it makes perfect sense. “It’s like listening to a conversation where only one of the people is high.”
It occurred to me that I posted some of the questions that came up in my quiz show but never gave the answers. In case you’re curious, here they are.
- (The Good AI for 100) To destroy The Good Place AI assistant, named Siri due to product placement, you hold her nose while inserting a paperclip into her left ear, reducing her to a marble which can be disposed of.
The AI assistant in the show is named Janet, not Siri.
- (CS for 800)
A toddler staring at cookies baking in an oven, constantly asking “Are they done yet?” is a real-world example of the Dining Philosophers Problem in Computer Science.
This is an example of one process blocked waiting for another to complete. However, while I might be tempted to name this “The Starving Toddler Problem,” it’s not an example of The Dining Philosophers Problem. That one is an illustration of a problem in Computer Science where multiple processes are mutually deadlocked, since they are waiting for each other before proceeding, so the whole operation is hopelessly stuck. By contrast, the toddler is just blocked waiting for the cookies but nothing’s preventing the cookies from eventually being done, at which point the toddler gets access to the resource they’re waiting for.4
- (Potpourri for 100) Known for its ease of
implementation and efficient run-time performance, Bubble Sort is taught to first-year CS students as a go-to sorting method due to its O(n) growth characteristic.
Bubble Sort is notoriously awful in terms of performance. It is taught to first-year students because it’s insanely easy to understand how it works and to run through the algorithm in your head. But it has a growth characteristic of O(n2), not O(n).5
- (Conspiracies and Pseudoscience for 400)
According to a 2020 survey conducted in Britain, one-third of those polled “could not rule out a link” between GPS satellites and the origin of the COVID-19 pandemic, with some believing they were both part of a deliberate plot against the populace.
The people surveyed thought 5G cell towers and signals were to blame, not GPS.
- (Hardware for 400)
The first commercially-available personal computer, the Altair 8800, consisted only of a front panel of lights & switches, a 6502 CPU board, and a small RAM board.
The Altair 8800 was based on the Intel 8080A CPU, not the 6502.
- (Mascots for 300)
The public face of the OpenBSD operating system has been a spiky pufferfish named Buttercup, since version 2.7 of that OS.
The name of the pufferfish mascot is Puffy, not Buttercup.
- (CTF for 200)
Capture the Flag games have a long history in literature and film as a training exercise, as seen in the Percy Jackson, Harry Potter, and Divergent stories.
(14981, 45294220909404522163130995)5
Harry Potter did not have a Capture the Flag game.
- (CS for 600)
After writing the first modern programming language compiler, Lady Ada Lovelace went on to help create the COBOL language which still powers much of the world’s business architecture today.
Lady Ada Lovelace made her contributions to Computer Science long before COBOL. That was invented by Grace Hopper.
- (Fun & Games for 400)
The Chinese game of Mahjong is similar to the card game of Rummy but is played with small tiles representing winds, dragons, flowers, and seasons, plus four suits (cups, wands, pentacles, and swords).
Mahjong’s tiles come in three suits: bamboo, characters, and dots (or coins). The four suits in the question are actually from Tarot cards.
- (– for 200)
In Python, if x=42, then after executing y = --x, both x and y have the value 41 since x is decremented first then the resulting value assigned to y.
The values of x and y will both be 42. Unlike C, the Python programming language does not have a “--” math operator, so “--x” is just two minus signs, making the value –(–(x)), which is just x.
That’s probably enough randomness from my brain for today.
… Nature almost surely operates by combining chance with necessity, randomness with determinism…
—Eric Chaisson
Epic of Evolution: Seven Ages of the Cosmos
1I say “after the weekend” knowing full well I can’t leave it alone and will at least be re-running and analyzing my experimental data during the weekend anyway.
2Although in the case of the flat earthers… c’mon.
3I’m not criticizing anyone for not being an expert or well-grounded in logic. I’m talking about basic-level common sense here.
4The Dining Philosophers Problem illustrates this by saying there are four philosophers sitting around a table, each with a bowl of noodles in front of them. There are four chopsticks total, sitting between each of the philosophers. In order to eat, a philosopher must grab the chopstick on their left and then grab the one on their right, take a bite, and then put down both chopsticks. However, if through an unfortunate bit of timing, all four pick up the chopstick to their left, they are all stuck waiting for the one on their right to be set down. But that can never happen because they’re all being held by someone who’s waiting for yet another chopstick to be released before they let go of their own.
5This means that as the number of items to be sorted increases, the time needed to sort them increases proportional to the square of the number of items, so with any sizeable number of things to sort, Bubble Sort gets very quickly out of hand with how inefficient it is.
