Skip to main content

.. things I learnt this year

Random things I learn't this year.

1. Flamingos arn't born pink
They are born white and turn pink after eating lots of shrimp.

2. When lightning hits sand it creates glass sculptures.

3. In 1957 the BBC did April fools joke convincing the world that spaghetti trees were real

4. The Sydney opera house opened 10 years later than scheduled.
5. The biggest ferris wheel is 550 feet tall and is in Las Vegas

6. Dark patterns are a thing and we should know about them.

7. A swede is made from a turnip and a cabbage.

8. Computer mice were first made of wood.

9. There is a bird called elephant bird and it was huge.

10. There are major reasons why humans sleep with some form of a blanket and its because we cannot regulate body temperature well during rem sleep. Article about it. 

11. The difference between a mountain and a hill is only how hard it is to climb. No natural difference.

12. Oxford uni has a glass floor sports hall that changes lines with l.e.d.s pretty cool.

13. Php 7 is cool and everyone should use it, phan is also very cool.

14. When a bee is tired (usally lay on the floor) you can feed it with 2 table spoons of granulated white sugar and 1 table spoon of water mixed together then leave it on a spoon near a bee so it can eat it and get energy.

15. Octal numbers what they are and how they work with binary.

16. A flock of crows is called a murder.

17. Runner beans are purple.

18. Bread is actually really bad for ducks.

20.Strawberries contain around 200 seeds each and are a member of the rose family.

21. Wisdom teeth - Anthropologists believe wisdom teeth, or the third set of molars, were the evolutionary answer to our ancestor’s early diet of coarse, rough food – like leaves, roots, nuts and meats – which required more chewing power and resulted in excessive wear of the teeth. 

22. In chess Check mate means the king is dead.

And Thats it! I thought there would be more and these are pretty random so hope you enjoyed!

Comments

Popular posts from this blog

Poker chip CSS only checkbox

For this Sunday Funday project, I decided to make a poker chip checkbox out of pure CSS. DEMO The idea is that it will flip on its right edge like when people flip chips between their fingers. This can be improved by using images to get a correct dashed edge or make it more lifelike but this is CSS only. Tutorial 1. The markup We need a container to set the background and the size and width, we need the label to be clickable anywhere, input for the checkbox, top and bottom of the chip. <div class="container"> <label for="chip-checkbox"></label> <input type="checkbox" name="chip" value="1" id="chip-checkbox"> <div class="bottom-side"></div> <div class="top-side"></div> </div> 2. Hide the input input { visibility: hidden; } 3. Set the width and height of the background/container .container { width: 80px; height: 40px; bord

8bit Mario with css grids

The point of this task was to get more familiar with css grids. I aimed to use as little divs as possible but I wanted it to be to scale.  You can view it below or on Codepen. See the Pen mario with grids by Mel ( @Mellydevs ) on CodePen . Making Mario As I was making a 8bit character I made a 64 by 64 grid and made each grid size 8px by 8px. This allowed me to make Mario to scale.  NB: I do not own anything to do with Mario I am just a fan :). So after using reference images I managed to make divs turn into Mario by changing their position in the grid and background colour. If you want to learn more about grids I recommend css tricks article on it  or Grid garden which is a game that helps you learn grids. It turned out quite good and I was happy with it. I thought I was done but then.... I thought why not make him do a idle animation, So I looked at some sprite sheets ( whats a sprite sheet? ) Kirby's idle seemed to be the easiest so I chose to t

Ionic RSS feed using Feednami

Tutorial of how to make a RSS feed using Feednami which is an alternative to google api which no longer works. This is a basic example and can be improved. First go ahead and make a new ionic project $ npm install -g cordova ionic $ ionic start exampleProject blank Now find index.html and insert... <script src="https://storage.googleapis.com/feednami-static /js/feednami-client-v1.0.1.js"></script> Into the header, then in <ion-content> below Ionic Blank Starter insert a new div <div id ="feed" ng-controller="feedCtrl"> </div> Open app.js, now we are going to make the controller from Feednami that will get our rss feed. .controller('feedCntl', function(){ var url = 'http://daringfireball.net/feeds/articles' feednami.load(url,function(result){ if(result.error){ console.log(result.error) } else{ var entries = result.feed.entries for(var i = 0; i < entri