Thanks Hank Green.
Half of them.
The people who built the stone towns of Gobekli Tepe and Carahan Tepe in Anatolia in Turkey, built and lived their villages so long ago, that the very first historical civilization recognized as such, with cities and writing - the ancient Sumerians - are closer to us in time than to those hunter/gatherer people, who lived near the
AtlasTaurus Mountains foothills and the rivers and tributaries that eventually merge into the Eufrates further downstream.The natural logarithm number e is the most efficient base, Benford’s law shows that a collection of numbers where their logarithms are uniformly and randomly distributed, the probability of the first digit being 1 of any of the numbers is around 30%, and most humans can learn echolocation with some training.
African Wild Dogs decide on when to go hunting by voting. If there is a supermajority of votes in favor of hunting, they will go out and hunt. If that quorum is not reached, they will stay home.
How do they indicate yay or nah
They sneeze!
Amazing they can just like do that on demand like that! Sneezes are almost better than orgasms!
I think it’s quiet or sneeze
That’s awesome! Maybe they should teach us some of their tricks…
Dingo Suffrage is my new punk band name
We have a Lemmy instance for this kind of stuff: https://lemmy.world/c/fakebandnames
Count me in.
And a one 🎶 and a two 🎶 and a one, two - one two three four!
Somebody once told me…
deleted by creator
The time between the last living stegosaurus and the last living tyrannosaurus is greater that the time between the last tyrannosaurus and today.
That giraffes exist. I’m a simple man, and giraffes are awesome.
I like Girafarig, the Pokamon
Its name is Girafarig, which is most of “giraffe” forward and backward
The mitochondria is the powerhouse of the cell.
*are
Emia means presence in blood.
Magnemia is a nice state
Two, wasn’t it?
If you have two arms, you have a higher than average number of arms.
I’ve always thought the drummer from Leppard was below average
And if you have one skeleton in your body, you’re below average.
Ha that’s a good one
Well now wait, if pregnant people have four (or more) arms, we’ve got to have more than half as many pregnant people as people missing one or more arms, right?
That is of you count them to be the same body. Genetically that isn’t so.
There is a giant hexagon on the north pole of Saturn.
It’s more evidence that hexagons are the bestagons.
Two from me:
People took the London tube to the last public hanging - https://londonist.com/london/undergroundtoapublichanging
The University of Oxford (1096) is older than the Aztec empire (1345)
deleted by creator
Almost all web traffic now uses the utf-8 encoding, a clever hack which works because ascii is a seven-bit code but web traffic uses 8-bit bytes.
- If the first bit is 0, treat the byte as ascii.
- if the first bit is 1, treat the byte as part of a multi-byte unicode character.
multi-byte characters in utf-8 can officially be up to four bytes long, with 11 of those 32 bits used for tracking the size of the multi-byte block. That leaves 2^21 code points available, about two million in total, easily enough for every alphabet you could need to write on a website, and all without breaking ascii.
Very neat!
Oh, I wondered about why there weren’t more characters in the ASCII code set.
yep! the ascii standard was originally invented for teletypewriters, and includes four ‘blocks’ of 32 codes each, for 128 in total, so it only uses seven bits per code.
the first block, hex 00 - 1F, contains control codes for the typewriter. stuff like “newline”, “backspace”, and “ring bell” all go in here.
The second block has the digits are in order, from hex 30 = ‘0’ all the way to hex 39 = ‘9’,
The uppercase alphabet starts at hex 41 = ‘A’, and exactly one block later, the lowercase alphabet starts at hex 61 = ‘a’. This means their binary codes are 100 0001 and 110 0001, differering only in a single bit! So you can easily convert between upper and lowercase ascii by flipping that bit.
The remaining space in the last three blocks is filled with various punctuation marks. I’m not sure if these are in any particular order.
The final ascii code, 7F, is reserved for “delete”, because its binary representation is 111 1111, perfect for “deleting” data on a punch card by punching over it.