February 21, 2026
Did you know that, in 2008, Steve Jobs noticed that the Google logo displayed as an icon on the original iPhone did not match Google's official brand colors, spesifically the yellow in the second "o." He contacted Google to point out the issue. After reviewing the logo, Google changed the color to match the official brand colors. The change was only visible on the iPhone, and not on other devices.
February 12, 2026
Did you know that you can almost fit all the planets in the solar system between the Earth and the Moon by putting them next to each other without any space between them?
Wait, how?
It is actually pretty simple elemantary school mathematics.
Average Lunar Distance:
Therefore, all the planets in solar system can almost fit in the space between Earth and the Moon.
A nice note: If you line the planets up top-to-bottom (pole-to-pole), they fit with plenty of room to spare!
February 11, 2026
Did you know that in 2014, a radar data processing system used by the regional air traffic control facility serving Southern California failed after running continuously for an extended period? The failure caused hundreds of flights to be delayed by 1 to 3 hours, and some were even canceled. Later, it was revealed that the failure happened because of a very small software bug involving a signed integer overflow.
But what is a signed integer overflow?
Computers store numbers in binary. Most older computers were/are still using 32-bit systems. That means that the biggest number a 32-bit unsigned integer can store is a binary value with 32 1's next to each other. That number is:
However, computers need to store negative numbers as well. So, computer scientists in the 1960s came up with a solution. Using the most significant bit to store the sign. If it is 0, that is a positive number; if it is 1, that is a negative number. This is called a 32-bit signed integer. To be able to read a negative number, you have to invert all the bits and add 1.
Example:
Therefore, we can now represent negative numbers, with a small caveat. The biggest positive number we can go up to now is 31 1's next to each other. So, our range became:
An integer overflow happens when a number exceeds the maximum value the data type can store. Which basically means that a 32-bit signed integer cannot exceed .
After the investigation, authorities found that the system was keeping track of time using a 32-bit signed integer, counting milliseconds. Which means the system was going to crash after:
They knew about this, but their solution was basically restarting the system. However, this time they forgot. This was a good lesson for those programmers not to keep track of time using a 32-bit signed integer.
A nice note: A 64-bit signed integer can run for million years (counting milliseconds) without crashing.
I first read about this story in the book Humble Pi by Matt Parker. I strongly recommend it to everyone interested in math.
February 10, 2026
Did you know that all possible arangements of a 52 deck cards is greater than the number of atoms in the solar system?
Explanation:
We first need to calculate the total number of permutations of a 52 deck cards. This can be done with calculating how many ways we can arrange 52 distinct cards:
By the product principle, the total number of permutations is:
The number of atoms in the solar system is estimated to be around .
Therefore, the number of permutations of a 52 deck cards is greater than the number of atoms in the solar system.