Wednesday 20 June 2012

Facebook Acquires Face.com Making Facial Recognition Great


As Face.com has officially posted this news on their blog. As said by the main team member Gil on Face.com that they try to find new ways to take their facial recognition to a new level and tying their knot with the second largest internet company Facebook.com they have committed a safe developing future for their technology.

Face.com
We love building products, and like our friends at Facebook, we think that mobile is a critical part of people’s lives as they both create and consume content, and share content with their social graph. By working with Facebook directly, and joining their team, we’ll have more opportunities to build amazing products that will be employed by consumers – that’s all we’ve ever wanted to do.  :)

Still there is no proper news about the price Facebook paid for the purchasing this online service but rumors from big company’s claim that amount of $100 Million might be the price. So after a big purchase for "Instagram" for $1 Billion Facebook has successfully completed another awesome purchase which might make its mobile photo tagging + more stuff much more fun and easy to use.

[Source - theverge]

Future Technology Bed that Makes Itself in the Morning


A Spanish furniture maker has created a new invention in the world of household giving lazy persons some more comfort. Well he has come up with a concept of a future smart bed that will make out itself when you get up in the morning. It will surely amaze you but yes that’s the thing you do not need person for making your beds out but its done automatically, just check out the below video for brief understanding.


This bed comes with two modes manual and auto, so you can set it too auto and than whenever a person wakes up in the morning the best bed automatically senses about the activity due to its in built device and than starts making your bed within 3 seconds. And in 40-50 seconds your bed is up with a clean view.

This invention is simply innovative and I would surely buy this one when ever its available worldwide. Do comment if you have some plans for getting this for your room too.

[Via - Mashable]

Add Falling Stars Effect on Mouse Movement in Blogger


Now add simple falling stars effect when your mouse moves using a simple JavaScript trick, by just adding some lines of codes in your html section you can easily show stars fallings when ever your mouse makes some motion. This effect is compatible with all the modern browsers so you will not have any problems using this script.

falling-stars


Adding Falling Stars Script in Blogger

  1. Login to blogger.com and navigate to Design > Template > Edit HTML.
  2. Now press Ctrl + F and search for </head> tag and paste the below script right above it and press Save template.
<script type='text/javascript'>
// <![CDATA[
var colour="black";
var sparkles=100;
var x=ox=400;
var y=oy=300;
var swide=800;
var shigh=600;
var sleft=sdown=0;
var tiny=new Array();
var star=new Array();
var starv=new Array();
var starx=new Array();
var stary=new Array();
var tinyx=new Array();
var tinyy=new Array();
var tinyv=new Array();
window.onload=function() { if (document.getElementById) {
var i, rats, rlef, rdow;
for (var i=0; i<sparkles; i++) {
var rats=createDiv(3, 3);
rats.style.visibility="hidden";
document.body.appendChild(tiny[i]=rats);
starv[i]=0;
tinyv[i]=0;
var rats=createDiv(5, 5);
rats.style.backgroundColor="transparent";
rats.style.visibility="hidden";
var rlef=createDiv(1, 5);
var rdow=createDiv(5, 1);
rats.appendChild(rlef);
rats.appendChild(rdow);
rlef.style.top="3px";
rlef.style.left="0px";
rdow.style.top="0px";
rdow.style.left="3px";
document.body.appendChild(star[i]=rats);
}
set_width();
sparkle();
}}
function sparkle() {
var c;
if (x!=ox || y!=oy) {
ox=x;
oy=y;
for (c=0; c<sparkles; c++) if (!starv[c]) {
star[c].style.left=(starx[c]=x)+"px";
star[c].style.top=(stary[c]=y)+"px";
star[c].style.clip="rect(0px, 5px, 5px, 0px)";
star[c].style.visibility="visible";
starv[c]=50;
break;
}
}
for (c=0; c<sparkles; c++) {
if (starv[c]) update_star(c);
if (tinyv[c]) update_tiny(c);
}
setTimeout("sparkle()", 40);
}
function update_star(i) {
if (--starv[i]==25) star[i].style.clip="rect(1px, 4px, 4px, 1px)";
if (starv[i]) {
stary[i]+=1+Math.random()*3;
if (stary[i]<shigh+sdown) {
star[i].style.top=stary[i]+"px";
starx[i]+=(i%5-2)/5;
star[i].style.left=starx[i]+"px";
}
else {
star[i].style.visibility="hidden";
starv[i]=0;
return;
}
}
else {
tinyv[i]=50;
tiny[i].style.top=(tinyy[i]=stary[i])+"px";
tiny[i].style.left=(tinyx[i]=starx[i])+"px";
tiny[i].style.width="2px";
tiny[i].style.height="2px";
star[i].style.visibility="hidden";
tiny[i].style.visibility="visible"
}
}
function update_tiny(i) {
if (--tinyv[i]==25) {
tiny[i].style.width="1px";
tiny[i].style.height="1px";
}
if (tinyv[i]) {
tinyy[i]+=1+Math.random()*3;
if (tinyy[i]<shigh+sdown) {
tiny[i].style.top=tinyy[i]+"px";
tinyx[i]+=(i%5-2)/5;
tiny[i].style.left=tinyx[i]+"px";
}
else {

tiny[i].style.visibility="hidden";
tinyv[i]=0;
return;
}
}
else tiny[i].style.visibility="hidden";
}
document.onmousemove=mouse;
function mouse(e) {
set_scroll();
y=(e)?e.pageY:event.y+sdown;
x=(e)?e.pageX:event.x+sleft;
}
function set_scroll() {
if (typeof(self.pageYOffset)=="number") {
sdown=self.pageYOffset;
sleft=self.pageXOffset;
}
else if (document.body.scrollTop || document.body.scrollLeft) {
sdown=document.body.scrollTop;
sleft=document.body.scrollLeft;
}
else if (document.documentElement && (document.documentElement.scrollTop || document.documentElement.scrollLeft)) {
sleft=document.documentElement.scrollLeft;
sdown=document.documentElement.scrollTop;
}
else {
sdown=0;
sleft=0;
}
}
window.onresize=set_width;
function set_width() {
if (typeof(self.innerWidth)=="number") {
swide=self.innerWidth;
shigh=self.innerHeight;
}
else if (document.documentElement && document.documentElement.clientWidth) {
swide=document.documentElement.clientWidth;
shigh=document.documentElement.clientHeight;
}
else if (document.body.clientWidth) {
swide=document.body.clientWidth;
shigh=document.body.clientHeight;
}
}
function createDiv(height, width) {
var div=document.createElement("div");
div.style.position="absolute";
div.style.height=height+"px";
div.style.width=width+"px";
div.style.overflow="hidden";
div.style.backgroundColor=colour;
return (div);
}
// ]]>
</script>


Editing the above JavaScript :


If you wanna make some changes to the above script you can easily do that by changing the values in red color, well there are more ways of editing the above script but that depends on your creativity level so try it out what ever works perfect for you fir it up and enjoy.

Apple MacBook Pro with Retina Display 2012 Review


Apple has always been the awesome product manufacturing brand featuring its most energetic product that might have taken its name from land to the limitless sky the iPhone, but well before the iPhone was launched the MacBook from apple was ruling the creative computer users mind who really wanted some more interactive thing than just windows. MacBook Pro 2012 with Retina display is recycling that interactivity with more energy and technology embed into one small thin package.

apple macbook pro 2012

Apple has brought some new improvements and features to their new MacBook featuring a high resolution 15 inch retina display which is the main key feature of this new edition. The older MacBook Pro were having a resolution of 1440 x 900 pixels but this new kid in the block has a whooping 2880 x 1800 pixels resolution which might make your desktop a place for whole time using. Older MacBook's featured a 2.4 GHz Sandy Bridge Quad Processor while the new retina edition comes with a 2.7 GHz Quad Core Ivy Bridge Processor.

apple macbook pro 2012 hardware

Continues working on your laptop may also take you sometimes to the place where there is no power output source, well surfing internet and doing other minimal task can leave you upto 5 hours of battery life as tested by the professionals. The design is also thin from the older MacBook and has some serious improvements which might let you consider of purchasing this awesome laptop.

How to Get YouTube’s New Experimental Redesigned Page


YouTube has always been the best place for viewing your online videos, sharing with your family’s and friends is lot easier with their easy and fast uploading options. Google has started giving redesigns to their all online services and hence YouTube was redesigned earlier and still its designing process is going on. Now google has posted on their blog about this thing so we found out that by just using some cookie trick you can currently use the new experimental YouTube design.

YouTube's Experimental Redesign
The new design gives you access to your subscription on the left sidebar and recent videos are also visible under your subscriptions. They have also added a search box for finding out your specific subscription out of many, so you can easily filter them up. In this redesign popular youtube categories are also removed so that only what you really want is surely visible.


Getting New YouTube Experimental Redesign :


Now if you are using Chrome, Firefox, Internet Explorer or Safari you can easily get this new redesign by using the Console panels available in your browser options. So now open YouTube.com in your new tab and than open the console panel using below keys for different browsers.
  • Chrome’s JavaScript Console ( Ctrl + Shift + J )
  • Firefox’s Web Console ( Ctrl + Shift + K )
  • Internet Developers Tool ( F12 ) and than select the console tab.
  • Safari’s Web Inspector check here
Now after your have the console opened you have to paste the below code in it and than press enter and you have to close the console.
document.cookie="VISITOR_INFO1_LIVE=nH7tBenIlCs; path=/; domain=.youtube.com";window.location.reload();
If you want to go back to your original and the current YouTube Homepage than you have to copy the below code and than paste it the same way you did to get it in your console panel.
document.cookie="VISITOR_INFO1_LIVE=; path=/; domain=.youtube.com";window.location.reload();
So now I think so you would be enjoying the new YouTube Homepage if you have completed the whole steps correctly, so enjoy this post and have fun bye.

How to Tether Jailbreak iOS 5.1 with Sn0wbreeze 2.9.2


iOS 5.1 was released with the release of the New iPad and as soon as it was released the tether jailbreak was also released for it in form of Redsn0w so its working absolutely good but for some reason you want to refer Sn0wbreeze instead of Redsn0w than now you can do that as new version for Sn0wbreeze is released today and it will help you in creating custom firmware for your device which when restored will already have Cydia in it hence your device will be jailbroken.

Now this is obviously the tethered jailbreak that means if your device is rebooted than you have to connect it to your pc to restart it again, else it will be hanged @ the apple logo. So when you will create your custom firmware it will create one .ipsw file and iBooty folder right on your desktop which will help you in booting your device when its restarted.

Sn0wbreeze-2.9.2


How to download Sn0wbreeze 2.9.2 :


Now if you want to download Sn0wbreeze 2.9.2 you can download it directly from this link, its for free provided by iH8sn0w.

How to use Sn0wbreeze 2.9.2 :


Now if you are new to Sn0wbreeze and Jailbreak than this guide will help you in creating your custom firmware with Sn0wbreeze 2.9.2
1. Make sure you have downloaded Sn0wbreeze 2.9.2
2. Now just run it and you will see screen like above displayed.
3. Click on that blue arrow and than you will be promoted to Browse for the .ipsw file officially downloaded so if you have not downloaded firmware you can download it from here.
4. Now it will show you screen like this when you have successfully browsed your firmware file.

Sn0wbreeze-2.9.2-iphone-3GS

5. Now just click on that Blue arrow and you will see screen asking you to choose a mode I will recommend you to go with the Simple Mode as it automatically installs the Cydia and every other essential utility.

Sn0wbreeze-2.9.2-modes

6. Sow now it will ask do you want to Hacktivate your iPhone just click on Yes and than you custom firmware creation will start.

Sn0wbreeze-2.9.2-custom-firmware

7. That’s it now let it do its job and after few minutes you will have your custom firmware and iBooty folder right on your desktop.

8. Now just open your iTunes and than Hold Shift and click on Restore, now browse your custom firmware which will be on your desktop and than let your phone be updated.


Booting Tethered with iBooty :


Now your update process is complete you will need to use iBooty for booting your device in tethered state. So double click on your iBooty folder and than click on iBooty.exe file now it will open iBooty just choose your iPhone and than click on start now follow all the steps as stated and you will be in your device.

So now I hope you all are cleared on how to tethered jailbreak your device using Sn0wbreeze 2.9.2, if you still have any problems than please make sure to use the below comment form so that I can fix that as soon as possible

Apple iOS 6 List of New Features + Video Reviewed


Recently WWDC 2012 event took place where iOS 6 was revealed to the audience displaying its new features which will bring more interactivity to the iDevice. Well so we have combined a whole bunch of list of new features included in the iOS 6 and briefly described them below, plus we have also found a useful video which displays features visually.
iOS 6 Review
Phone App : The entire phone application has been redesigned giving it a more unique style. More over new phone declining features has been added with which you can send a message or you can also setup a callback reminder for that call.
Facebook Features : iOS 6 has also been graceful to the Facebook by adding many features in support to the it.
  • Photo Upload - Now you can easily upload any photo from your iPhone to Facebook or other social network with just a click.
  • Tap to Post - Now updating your status or posting tweet is lot easier with the ability to post right from the notification center.
  • Like Content - Now Facebook Like is also embed into the app store, iBook's and iTunes store, so you can easily like and share with friends.
Facetime : also has been updated with two good features from which one of them was earlier accessible only through a cydia mod.
  • Facebook Over Cellular - Now you can easily call through Facetime with your 3G or 4G network and you do not need to have Wi-Fi.
  • Number/ID Unification - Now you can make calls though your Apple ID’s or by just using your personal phone number.
Siri : has also gone through a major upgrade on iPhone and iPad by adding new features and improving its overall stability and performance.
  • Available for iPad 3 - Siri is now available for iPad 3 but condition is that it must be running iOS 6.
  • Enhanced Searching - Now with Siri on iOS 6 searching is much more improved by adding support to search for restaurants, movie and cinema tickets.
  • Launching Apps - Now you can launch apps though Siri. So now you just have to say open notes and that’s it your notes app will be launched.
Maps : Now as apple has removed Google Maps and have added their own maps tying up with Tom Tom or maybe acquiring it fully. The new maps are entirely redesigned to the suiting's of providing more options to the people using iPhone and iPad.
  • 3D Feature - It’s the top most feature getting viral on the internet as people are using it and reviewing it on their websites. The new 3D feature will obviously not have all the countries supported but still the maps looks fantastic and you will love the other countries and watching their whole living lifestyle.
  • Turn by Turn Navigation - New maps support turn by turn navigation with a loud speaking assistant for more precise navigation.
  • Traffic - Real time traffic estimation is also a new added features, alternate routing can simply decrease your travel time.
Clock : has just got one new feature and its added to the new iPad 3 also.
  • Using Mp3 Alarm Tones - The new updated alarm clock is modified to use Mp3 tones for creative alarming.
  • Available for iPad 3 - As mentioned above its now available for the iPad 3 as a stock app.
App Store : App Store has also been redesigned with a new UI and some awesome features described below.
  • App Store doesn't close - Now hen downloading any application from the App Store it will not close like the Installous use to be.
  • Redesigned - App Store is entirely redesigned with new graphics and much more improved section searching.
Settings : Setting app has also been updated with many new features and improvements, changing some app destinations and adding some more privacy settings.
  • Do not Disturb - is a new feature which helps you in turning off all the push notifications with juts a single toggle options.
  • Bluetooth Moved Outside - Bluetooth option has been moved right onto the settings tab for easier Bluetooth switching on.
  • Privacy Settings - Every app data consumption and accessing is now visible for more privacy option. Now you can see which things are accessed by which app.


iOS 6 Features Review Video :




[Source : ijailbreaknow - Image Source : appolicious - Video : ty’s ihelp]

Wednesday 13 June 2012

Colorful Alphabets Emoticons for Facebook Chat


Today we have another cool and sweet looking chat tweak which you can use to attract the receiver and force him to reply to you so this is known as Colorful Alphabets Emoticons in my language you can call it anything which fits you well the preview is below I just wrote HackingUniversity in my friends chat window and you can write anything combining codes below.

Now as you can see how beautiful it looks when you will this kind of message to your friends. So now if you like this thing and you wanna start a colorful alphabets emoticon chatting than you wanna use below code for different alphabets mentioned. SO whenever you paste code for any alphabet and you hit enter you will get colorful alphabets like above. So copy codes from below and start chatting.

[[107015582669715]] = A
[[116067591741123]] = B
[[115602405121532]] = C
[[112542438763744]] = D
[[115430438474268]] = E
[[109225112442557]] = F
[[111532845537326]] = G
[[111356865552629]] = H
[[109294689102123]] = I
[[126362660720793]] = J
[[116651741681944]] = K
[[115807951764667]] = L
[[106596672714242]] = M
[[108634132504932]] = N
[[116564658357124]] = O
[[111669128857397]] = P
[[107061805996548]] = Q
[[106699962703083]] = R
[[115927268419031]] = S
[[112669162092780]] = T
[[108983579135532]] = U
[[107023745999320]] = V
[[106678406038354]] = W
[[116740548336581]] = X
[[112416755444217]] = Y
[[165724910215]]   = Z

So now if you wanna give it a try you can start with entering whole below code and it will type HackingUniversity like above image or you can create your own and share it with everyone.
[[111356865552629]] [[107015582669715]] [[115602405121532]] [[116651741681944]] [[109294689102123]] [[108634132504932]] [[111532845537326]]

[[108983579135532]] [[108634132504932]] [[109294689102123]] [[107023745999320]] [[115430438474268]] [[106699962703083]] [[115927268419031]] [[109294689102123]] [[112669162092780]] [[112416755444217]]
Now its your time to be creative have fun :) and if you really loved what you just learnt maybe you should click the like and the +1 button above or below

Windows 8 Release Preview Direct Download Links


Microsoft has finally released the final release preview for Windows 8, earlier posted developer preview is now no longer available for the direct download from Microsoft officially. Well as you all know after this one Microsoft is going to release the final version of Windows 8 which is going to be the paid one.

Windows 8 release preview

So now release preview is currently the latest one and is provided for free with a genuine product key which you can use to install it as a full version. You can download the full file setup from right hand side according to your system, so if it is 32 Bit you can download the above one or for another one you can download the below one.

Windows 8 Release Preview Product Activation Key : 


Well after you have downloaded the ISO File from above you can use the below product key to install it and make it full version.

TK8TP-9JN6P-7X7WW-RFFTV-B7QPF

So here you go with the Windows 8 release preview full version have fun kudos :)

25 Smart and Clever Ideas for Making your Life Easier


Our daily life brings new opportunities, challenges and struggles. Overcoming them using some nice clever ideas can obviously give a boost in your work hence making it more fun and loving. Well we have just gathered 25 clever and smart ideas for making your household life easier and fantastic, we guarantee that you will surely love the stuff provided below so lets get started.

1. Hull Strawberries using Straw

hulling strawberries
Hulling strawberries with a straw can be as easier as eating them out, so now easily you can remove the inner stem of the strawberries by just using straw, well make sure the straw is hard enough that it does not get bend when you insert it from below.

2. Remove Dings & Scrapes from Furniture using Walnut

removing scrapes from furniture
Walnut a unique dry fruit rich in many proteins and a warmth can also be useful in removing dings and scrapes from wooden vintage furniture's. By just taking a scraped furniture and a piece of walnut and rubbing it up all together to its surface your can see some real positive changes.

3. Remove Crayons Art from TV or Walls

remove crayons from walls
If your house is full of small evil kids who like to be creative right on your worthy assets than you should be ready for their major common attack , the crayon art attack. Well children love to draw masterpieces on your TV screens Walls and other solid stuff, so now if there is one too on your wall than you can remove it easily by using WD-40 and applying it to yoru TV or walls. Just using it with a towel can work like a charm.

4. Stop Apple’s Color Browsing using Rubber Band

protect apple iron using rubber band
Apples remain unused after their cut time can simply turn their color from white to brown as iron in them mix with air and it adds rust to it, so a very easy way to stop that oxidization process is too cut the apple and join pieces together and bind them using a "Rubber Band" pretty easy to find and to apply.

5. Keep Matching Sheets Together in Closet

keep mathching sheets together
So your mom has ended up maintaining her closet, but now you need a nice a  sheet for your bed you go, find and hassle up everything or you can simply ask her to put a pillow in all the sheets which will be more easier for finding purpose.

6. Use Bowl as your iPhone speaker

amplify your iphones music
Music is the key soul of many persons and they invest a whole lot of money in purchasing a nice speaker set for a groovy music experience, well what if you are not at home or you do not have money for purchasing a speaker set, well obviously we cannot create a speaker right sitting at home but using this small tweak you can create your own ready made speaker for your iPhone, use bowl and place your iPhone in it when music is places the sound is amplified and thus you can hear an awesome music.

7. Use Cloth Container for Storing Plastic Bags

use cloth container as platics bags storage
If you have a old cloth container which is now of no use do not bin it up, well you can recycle it and use it as a old plastic bag container which can be useful if you store more plastic bags and use them on daily basis.

8. Remove Beach Sand Easily using Johnson's Powder

removing beach sand with johnsons baby powder
A very easy workaround for removing beach sand easily from your feats or body is too apply Johnson's Powder all over your body. Simply at the end of the day when you are done playing and enjoying with your pals just rub some powder on your powder and things are done simply perfect.

9. Use Velcro Strip to Store Soft Toys

use velcro strips for glueing soft toys
Velcro Strips if you are not aware are those trips which you might have seen on some shoes or commonly on the sandals for locking it up, well if you know its one side can be used to stick soft toys to it so you can just add that strip to the wall and than when your kids has stopped playing with their toys you can just stick those toys to the wall. So it will look cool and will remain maintained.

10. Use Wire to Store Gift Wrap Rolls

use wires for gift wraps storage
Do not just scatter away those rolls on your floor and make a mess, well you easily store them up against walls using two small wires and attaching them side by side. Pretty easy and clean installation.

11. Use Vacuum Cleaner & Stocking for finding Tiny Lost Items

vacuum cleaner with stockings
You might have lost something really tiny which might have troubled you a lot in finding it up, it can be like your mothers earrings, a small stud if you’re really fashionable or anything like a important screw, well a simply trick is to find it using a stocking in front or vacuum hose and it will snatch anything that comes in his range. So its pretty helpful and maybe it will help you someday in future.

12. Using Gift Box as Cupcake Tray

gift box cup cakes container
If you keen of creating cup cakes for your family or guest than you might have a special serving tray for it which has some holes in it for grabbing the base of the cakes well if you do not have anything by just using a t-shirt box and doing some X cutting in it can create a nice looking cup cakes holder for you which can really look attractive.

13. How to Fold a Fitted Sheet

folding fitted sheets
The rounded fitted sheets might be difficult to fold up as they do not have a perfect corner for matching them up well but stephmodo has a great tutorial on how you can do that without making any mess and presenting a nice folder sheet.

14. Using Magnetic Strips to hold Bobby Pins

magnetic strip for bobby pins
These assets are regularly used by women's and they complains that many times their things just get lost or get messed up well by just using a small magnetic strip which you might not get easily but you can search it and get it somewhere and applying it to the wall you can attach any small items really easily as shown in the image above.

15. Using Shower Cap for Storing Shoes while Travellingshower caps store shoes

Many times visiting some hotels and resort you can normally see shower caps available in bathrooms which you should not waste as they can surely come into some awesome work for storing your shoes while travelling and keeping them in the bags.

16. Using Muffin-Pan as Handy Craft Tray

muffin pans handy craft tray
A large Muffin Pan which is waste can be used as a nice handy craft tray entirely portable for keeping stuff which might be useful for your kids in keeping their creative needs fulfilled. This does not need any kind of creation or activity just grab it and place some plastic glasses in it for making it a perfect stuff holder.

17. Use Bread Tags for Wire Labeling

bread tags wire labeling
If you own a big whole of nightmare wire house, having cables for everything going one to another or passing out from one system and like that than you seriously need this awesome trick or hack whatever you call it but remember this will seriously resolve your every small problems and will surely make your workplace a nice clean work-ground.

18. Bake Cup Cakes Directly in Ice Cream Cones

cup cakes in ice cream
So you are making cup cakes for kids, so why don’t you bake them right into the ice cream cones so that they can be easily filled up with some cream and can be served easily to kids and they can eat them with nice happy face. So just fill up the material right inside the ice cream cone and then bake them up.

19. Microwave Popcorn in Brown Paper Bag

pop corn in brown paper bag
Usually you purchase popcorns like Act Two which is world wide famous popcorns, but well what about the costs they do costs high for these low fat meal well why should we pay for those bags for popcorns when you can actually create some of your own in just a brown paper bag check squawkfox amazing tutorial on this one.

20. Managing your Under Sink using these Tweaks

manage your under sink easily
A very awesome work by jengrantmorris shows that how you can make up your sink below level a space entirely organized for daily use but still cleaner than ever. This one is must for your moms so just check the tutorial and surely help her out.

21. Create Heart Shaped Egg Easily

heart shaped egg
So impress your girlfriend by presenting her something like this, so annathered has a full perfect tutorial on how you can create this one by just using a stick, rubber band, a card board sheet and a boiled egg.

22. Turn Over Muffin Pan and Create Cookie Bowlscookie cups

So now you can create some nice cookie bowls and that too wihout investing any penny on other utensil than muffin pan, so just tilt it over and start creating some cookie bowls check full recipe here.

23. Use Aloe Vera Ice Cubes for Sun Burn Relief

aloe vera ice cubes
Freezing Aloe Vera can be really useful in cases when you forget to take the SPF creams, just freeze some of them and take them with you, they are really helpful in soothing your sun burns.

24. Produce Stuff with Guttering without Taking Space

guttering garden
Save some space gardening and producing some stuff by using the guttering method provided @ lifehacker now this will surely bring more productivity to your garden.

25. Use Egg Cartons for Storing your Christmas Decorations

egg carton holding stuff

This is one of the best eco friendly way for storing out your Christmas decorations this year, so do nor waste any other stuff this egg carton box can be used as the best best stuff storing option. You can also use tissue papers for rapping them up so protection basis. check some other methods here
  • 4 Easy Steps for Shrinking your Jeans Perfectly

  • Some Interesting Facts and Uses of Vodka Drink

  • 16 Most Expensive High Priced Things in the World

So these were 25 Smart and Clever Ideas for Making your life much easier in using your regular stuff day 2 day, have fun and do share if you found this one really useful.

[Via - thedailybuzz]