Skip to main content

7 Websites With Unusual Facts That Make for Great Conversation Starters


And that, 95% of us report washing our hands after using a public toilet....but a study of 8,000 people in big US cities found that the figure was actually closer to 67%? (Gross!)
Cats happily climb up trees, but do you know why they can't find their way down? Turns out a cat can't climb down headfirst because every claw on its paw points the same way. To get down from a tree, a cat must back down.
Filling your head with random facts like these will not make you the next Einstein, but they're great ice-breakers. Check out one of these fun sites and attend your next networking event, party, or even a family dinner with a tidbit or two to entertain the group.
This site has many categories to choose from. You can grab a few facts about the latest gaming craze, Pokémon Go, or learn some crazy facts about the justice system.
Random Fact: October is both American Cheese Month and Toilet Tank Repair Month. I don't think Hallmark has caught wind of that yet.
This one is a blog for interesting and funny facts. They post about health, celebs/people, places, animals, history information, and much more.
Random Fact #6532: In some countries it is not illegal to escape prison as long as no laws are broken, as it's human nature to want to escape. Not sure about you, but I wouldn't want to live next door.
This site even offers a few fun quizzes to check your facts knowledge. I scored pretty high on dog facts.
Random Fact: Drinking too much water can be fatal. Water intoxication is a potentially fatal disturbance that is caused by consuming too much water during a short time. The normal balance of electrolytes in the body is pushed outside safe limits when too much water floods the system. Infants are prone to water intoxication, as are athletes, and even competitive eaters. Symptoms of this condition include changes in behavior, confusion, irritability and drowsiness. Occasionally there is difficulty breathing, muscle weakness and pain or twitching. The brain may swell which can interfere with the central nervous system, resulting in seizure, brain damage, coma or even death.
This site offers quite a few topics, ranging from food to sexuality.
Random Fact: When a foot suddenly begins to kick, it is usually a good indicator of discomfort. This is seen in people being interviewed as soon as a question is asked that they don't like. Watch for this telling body language response when you interview job candidates.
At Space facts you'll learn scientific, historical, and cultural facts about space, galaxies, the planets, and other objects in the solar system.
Random Fact: One day, our days will be twenty-five hours long instead of twenty-four. Though not for another one-hundred-forty years, as the earth imperceptibly slows approximately 17 milliseconds per hundred years.
Here you'll find interesting facts in these categories: entertainment, funny, language and words, love and attraction, just weird.
Random Fact #1796: While children of identical twins are legally first cousins, genetically, they are actually half siblings. I found this one particularly interesting because I have twin daughters.
With longer stories and explanations on things you never thought you'd want to know, Today I Found Out will certainly feed your brain.
Random Fact #986: While Neil Armstrong got to be the first to take a step on the moon, Buzz Aldrin managed his own historic first, becoming the first person to urinate on the moon. (Take that, Mr. One Small Step!)

Comments

Popular posts from this blog

Build chatbot with node js and react js

User Experience is given a lot of attention while building any application these days. More and more brands are leveraging chatbots to service their customers, market their brand, and even sell their products. There are a lot of awesome tools out there which helps in building an intelligent bot very easily like Google’s DialogFlow, Amazon Lex, etc, most of which implement their own Natural Language Processing (NLP) logic. However, in some cases, we don’t really need an intelligent bot. Whenever we have a small application having a limited set of options to choose from, it’s not really necessary to use NLP based tools like Google’s DialogFlow. You need to integrate with them (which is pretty easy though), and you need to make a network call to get the results. Instead, you would want to define your rules locally in those cases. Here we will build a simple chatbot using React Simple Chatbot library and add it to our pizza-builder app using which we can build ou...

PHP Image Upload with Size Type Dimension Validation

File upload feature requires basic validations to  make clean and hygienic  the user input. There is a huge chance of exploiting a file upload option with malicious intent. Improper implementation of a file upload input increases security vulnerability. We need to validate the uploaded files before saving them on the server to reduce the vulnerability. I have created a HTML form and provided an option to upload files. When the form is submitted, the file binaries are sent to the PHP and validated in the server side. I have checked if the uploaded file is an image and I have specified the allowed image extension, size and dimension based on which the validation is taking place. After all these validations have passed, the image file is saved in the target location as specified. The server-side image file validation takes place in the following aspects. If the file is not empty. If the file extension is one of .jpg, .png, .jpeg. If the file size is le...

PHP in Website Development Era

If you guys are watching this page its sure you want to check more about PHP.PHP language has a unique place in website development. It was introduced at a right time when web-based business was in new trend. Over a period it became one of the popular languages for creating web applications. The reasons are, simple language structure unique features  free license. PHP’s  unique features  lead to more popularity. Since 1994 when PHP development was started, we have seen the following version releases. PHP Versions Versions Key Features Description PHP/FI (1995) Form handling Perl/CGI script (PHP 1.0) introduced by  Rasmus Lerdorf . The Expansion is  Personal Home Page / Form Interpreter . PHP/FI2 (1997) Data conversion Form data export With slight modifications in Form Interpreter(PHP 2.0) to handle form entries. PHP  3 – (1998) PHP core is rewritten PHP parser is rewritten. Zend Engine is incorporated. Language core wa...