Skip to main content

17 Must Have Watched Cartoons


Tom & Jerry


Everyone must have watched these two cartoon characters in their childhood.Moreover, these characters would have been favourites of 60% children.We still dnt wanna miss a chance to watch this cartoon show.Love you Tom & Jerry..




Naruto

A very thrilling and funny cartoon show with lot of actions and stupidity.



Noddy

Everyone must be familiar with this show.Its one of the most popular shows on POGO.This little main character noddy owns a plane, a car, a house and does a parcel delivery job and its age is only 12.Sounds Good..

Pokemon

This a wonderful show.Those little creatures and their powers are amazing.Every child must have wished to have one pikachu at least.:-P

Popeye

This sailor cartoon encouraged a huge number of children to eat spinach including me but not as raw as he used to eat.Its whistle is enough to recall that funny cartoon character popeye.



Donald Duck

I love this duck.Its the most popular cartoon character after mickey mouse.What a great character it is which only wears the shirt regardless of caring for its pants.In many episodes he even tries to protect his shirt from being torn instead of wearing pants.Its language is note even clearly understood by many of us.Still we love this duck.

Oswald

This funny octopus is totally against the natural octopus.It has mouth in front of its face.It walks on its legs and it has a poodle dog.


Bob the Builder

Do you remember this show.I am sure you do.How can we forget the show who encourages us to overcome the problems and build something interesting.A builder which has talking machines must be very lucky.



Johny Bravo

What to say about this stupid character.It always thinks itself as the most attractive man of the world and always wander in search of girls.Really stupid character.



Scooby Doo

I dont understand why this show is named after a dog's name when all the investigation is done by its team.May be just because In the world of this show, it is the only dog who speaks human language.Well anyways, it had been a very popular show with many movies made over its story.


Dexter's Laboratory

This little genius is one of my favorite characters.It build so many technical machines but always get pissed-off because of its sister.


Powerpuff girls

Three sisters which are the results of some stupid experiment have some great powers.I loved this show very much because of its funny villian:-a monkey which can speak and has a huge brain which pops out of its head.


Ed, Edd n Eddy

Three brothers who always think of money.The middle one Edd is somewhat sincere and intelligent than the rest of two.The elder brother Eddy can do anything for money.And the younger brother Ed is a mad fellow who never understands his brothers schemes and plans.


Spongebob Squarepants

I can't even imagine such characters now.A sponge who speaks, a squirrel who lives under water with the help of a helmet whose oxygen never emptied, a starfish which is awfully stupid and a squid.


Dragon Ball Z

A show which involves species from many planets of this universe.Super powers and a little bit funny.But overall this show is full of anxiety and adventures.



Mickey Mouse

This character is most popular between kids.A special gift by walt disney which changes the picture of cartoon shows.This character is so popular that there are plenty of shows made over this character.



Comments

Popular posts from this blog

Image Search Engine Using Python

Images provide a lot more information than audio or text. Image processing is the prime field of research for robotics as well as search engines. In this article we will explore the concept of finding similarity between digital images using python. Then we will use our program to find top 10 search results inside a dataset of images for a given picture. It won't be as good as google's search engine because of the technique we will be using to find similarity between images. But what we are going to make will be pretty cool. So lets start. Setting up the Environment Our Algorithm How the code looks Lets build the GUI Additional Techniques Setting up the Environment The code we are going to write requires a few tools which we need to install first. I will try to be as precise as i can and if you get stuck into installing some tool then you can drop a comment below and i will help you sort out the problem. So here are the tools and the steps to install

Understanding Python Decorators

If you have ever wondered what those @something mean above a python function or method then you are going to have your answers now. This @something line of code is actually called a decorator. I have red from various articles about them but some of them were not able to clarify the concept of a decorator and what we can achieve with them. So in this post we'll learn a lot about python decorators. Here is a list of topics we'll be covering. What is python decorator Understanding the concept Multiple decorators on same function class method decorator Where can we use decorators What is python decorator A python decorator is nothing but a function which accepts your given function as a parameter and returns a replacement function. So its like something this def decorator(your_func): def replacement(your_func_args): #do some other work return replacement @decorator your_func(your_func_args): #your_func code Now when your_func gets called then

Cordova viewport problem solved

Include the viewport settings in Cordova If you are facing the auto zooming problem of cordova then go read on the full article. Cordova actually ignores the viewport meta tag which causes the pixel density problem. So we need to tell cordova that viewport tag is equally important as other tags. To do this, we need to add some code to a file which is specify in the article. Corodva messes with pixels If you are using the latest cordova version or creating the cordova app for latest android versions then you may have faced the zoom malfunctioning.I also faced it when creating an app. Many of you may have already searched the web and found the answer of changing the meta tag attributes to get it working. But adding target-densitydpi=medium-dpi does not solve the problem for latest android versions. It may work for gingerbread but not for kitkat and others. So the final solution which i found was one of the stackexchange answer but rarely found. So i am gonna two things here, i