Skip to main content

Latin1 vs UTF8

Latin1 was the early default character set for encoding documents delivered via HTTP for MIME types beginning with /text . Today, only around only 1.1% of websites on the internet use the encoding, along with some older applications. However, it is still the most popular single-byte character encoding scheme in use today. A funny thing about Latin1 encoding is that it maps every byte from 0 to 255 to a valid character. This means that literally any sequence of bytes can be interpreted as a valid string. The main drawback is that it only supports characters from Western European languages. The same is not true for UTF8. Unlike Latin1, UTF8 supports a vastly broader range of characters from different languages and scripts. But as a consequence, not every byte sequence is valid. This fact is due to UTF8's added complexity, using multi-byte sequences for characters beyond the general ASCII range. This is also why you can't just throw any sequence of bytes at it and ex...

Absence as Category Error

When you switch on a lightbulb, your eyes perceive photons, and some neurons in your brain activate. If you switch off the light, then so-called ‘off’ neurons activate.

Photoreceptors include rods, which are responsible for the detection of dim light, and cones, which function in bright light and are responsible for the ability to distinguish colours based on their unique spectral sensitivities. These cells each have a ciliary process, known as an outer segment, that consists of stacks of membranous discs where the proteins involved in light sensing and signalling are located. The rods and cones connect to bipolar cells. There are also neurons responsible for modifying visual signals, such as amacrine cells, which connect rod bipolar cells to cone bipolar cells, and horizontal cells, which mediate feedback inhibition to the photoreceptors. The cone bipolar cells connect to ganglion cells, which integrate the signals from the upstream neurons. The ganglion cell axons assemble to form the optic nerve for transmission of visual signals to the brain.[1]

You don’t actually “stop seeing” when you’re in the dark. No; the mind physically represents nothingness in a pattern of neurons. In the case of literal darkness (as opposed to cognitive dimness), photoreceptors include a special adaptation that allows us to see, even when there appears to be very little light.

Similarly, in physics, there is darkness—the void of space. But it is incorrect to claim that it is empty. Vacuum energy—a background energy throughout the universe, as modeled by the uncertainty principle—permeates space. You could visualize it as a field where virtual particles are constantly popping in and out of existence, imperceptible to the eyes but verifiable by deduction and lab experiments. The implication is that the universe is, in a sense, 'charged.' This is a tenet of quantum field theory.

In fact, this theory predicts a significant amount of hypothetical energy throughout the universe. But it seems to bear little cosmological consequence, as the energy density that we actually observe is much smaller than the data model. If we assume the standard model is correct, this knowledge gap is known as the cosmological constant problem. It is one of several ideas put forth to account for hidden (dark) states of matter and energy implied by the universe's accelerating expansion.

The point I’m trying to draw, however, is that when we attempt to observe or discuss "nothing," we inevitably encounter "something"—or we find that "nothing" itself is a direct or indirect reference to "something." I argue that it’s impossible to truly discuss "nothing." In a genuine vacuum, a place where absolutely nothing exists, there wouldn't be any fields to measure. There would be no spacetime to speculate about.

In that vein, asking "Why is there something rather than nothing?" is a category error. If we were to ask, "Why is it snowing?" one could at least try to formulate an answer: "Due to cold temperatures, water in the atmosphere froze and fell to the ground as ice crystals." In this scenario, we are asking about a specific feature of the map. Alternatively, we could claim it was because a giant snowman god in the sky caused it to snow. On the other hand, the question "Why is there something rather than nothing?" is unknowable, because we are no longer asking about a specific abstraction of the map—instead, you're asking what created the map itself.

Similarly, the phrase “nothing exists” is a kind of inverse category error—a claim that nothing is real. However, labels like "absence" or "nothing" often function as references or pointers to other things. 

If we must say it, the phrase "nothing exists" is not a self-contradicting statement but a humorous or horrifying statement of fact. Nothing exists.

"Nothing could ruin this moment." "Nothing can dim this light." "Nothing is too great a challenge." "Nothing lasts forever."


Comments

Popular posts from this blog

yt-dlp Archiving, Improved

One annoying thing about YouTube is that, by default, some videos are now served in .webm format or use VP9 encoding. However, I prefer storing media in more widely supported codecs and formats, like .mp4, which has broader support and runs on more devices than .webm files. And sometimes I prefer AVC1 MP4 encoding because it just works out of the box on OSX with QuickTime, as QuickTime doesn't natively support VP9/VPO9. AVC1-encoded MP4s are still the most portable video format. AVC1 ... is by far the most commonly used format for the recording, compression, and distribution of video content, used by 91% of video industry developers as of September 2019. [ 1 ] yt-dlp , the command-line audio/video downloader for YouTube videos, is a great project. But between YouTube supporting various codecs and compatibility issues with various video players, this can make getting what you want out of yt-dlp a bit more challenging: $ yt-dlp -f "bestvideo[ext=mp4]+bestaudio[ext=m4a]/best...