Fairy Land: Most Incredible Kid Bedroom Design

We have featured many inspiring kid room designs, but there is nothing like the one in today’s post. This amazing fairy bedroom takes captivating fairytale themes and brings them to reality. An indoor tree with life-size leaves, birdhouses, flower shaped lamps, mushrooms, a bean stock, they are all here creating a fantastic environment. Everything in this kids’ room is eye-catching and original: the shelves, the bed-stairs, the lockers. This room took about 4 months of prep work and a 5 day (14 hours per day) to install. I wish I can live in room like that when I was little… Click here for more detail of the project. [source]

Fairy Land: Most Incredible Kid Bedroom Design
More

Showcase Your Products or Feature a Content Using Flash Banner Rotators

Flash banner rotators can extensively enhance your website appearance by adding an image rotator which features a set of transitions. This nice and flexible banner rotator is an excellent way to feature an image, text, article or anything that needs that special attention. Effortlessly showcase your products or images using this creative tool and add appealing captions to grab your audience’s interest. Apply plenty of animations and other effects to your images and have fun experimenting on these special effects that will surely create truly unique slideshow. There’s no need for you to master any coding skills or learn any programming language because this tool is very easy to use and customize. All you need is to have that creative skill and an excellent advertising expertise to make a spanking slideshow that will boost your website’s audience impact and mass appeal.

RotoBox – 3D slideshow with HTML fallback [Download Source]

More

Super Funny – Animation about Chinese Dumpling

An amazing Chinese Animator “sun haipeng” just made two animations about the Baozi ( a kind of Chinese dumpling), telling us how can Baozi hold concern and the fight between Baozi and sushi. The animations are super funny. Hope you enjoy it…

As author said

Super Baozi, being tired of being in Catering,is longing for developing in Recreation. With intense enthusiasm and strong perseverance, he has learned to sing songs and to play nunchakus.

1. Super Baozi vs Sushi man


More

AS3: When and Why use “final” attribute

To prevent a class from being extended or a method from being overridden, we precede that class or method definition with the final attribute.

How it works?
To Final a class:
final public class A{

}

To Final a method:
public class A{
final public function A{

}

}

The final attribute is used for two reasons in ActionScript:

  • In some situations, final method execute faster than non-final methods. If you are looking to improve your application’s performance in every possible way, try making its method final.
  • Methods that are final help hide a class’s internal detail. Making a class or a method final prevents other programmers from extending the class or overriding the method for the purpose of examining the class’s internal structure. Such prevention is considered one of the ways to safeguard an application from being maliciously exploited.
  • Page 1 of 4123»...Last »