Wednesday, April 11, 2012

Tsunami warning!! Magnitude of 8.9 2012/04/11


Jakarta: A tsunami watch was issued for countries across the Indian Ocean after a large earthquake hit waters off Indonesia on Wednesday, triggering widespread panic as residents along coastlines fled to high ground in cars and on the backs of motorcycles.

Some were crying. Others screamed "God as great" as they poured from their homes.

The US Geological Survey said the 8.7-magnitude quake was centered 20 miles (33 kilometers) beneath the ocean floor around 269 miles (434 kilometers) from Aceh's provincial capital.

The Pacific Tsunami Warning Center in Hawaii said a tsunami watch was in effect for Indonesia, India, Sri Lanka, Australia, Myanmar, Thailand, the Maldives and other Indian Ocean islands, Malaysia, Pakistan, Somalia, Oman, Iran, Bangladesh, Kenya, South Africa and Singapore.

Earthquake and tsunami experts say that the waves are likely to be more than 6 metres high. A tsunami watch means there is the potential for a tsunami, not that one is imminent.

Said, an official at Indonesia's Meteorology and Geophysics Agency who goes by only one name, said a tsunami warning has been issued for cities all along the coast of Sumatra island. Residents in Banda Aceh are already moving to higher ground.

There was chaos in the streets, with fierce shaking continuing for nearly four minutes.

"I was in the shower on the fifth floor of my hotel," Timbang Pangaribuan told El Shinta radio from the city of Medan. "We all ran out. ... We're all standing outside now."

He said one guest was injured when he jumped from the window of his room.

The tremor was felt in Singapore, Thailand, Bangladesh, Malaysia and India. High-rise apartments and offices on Malaysia's west coast shook for at least a minute.

Thailand's National Disaster Warning Center issued an evacuation order to residents in six provinces along the country's west coast, including the popular tourist destinations of Phuket, Krabi and Phang-Nga.

Tremors were also felt in Kolkata, Chennai, Bangalore, Patna, Kochi, Thiruvananthapuram, Cuttack, Bhubaneshwar and several other cities on the eastern coast of India. India has also issued tsunami warning for coastal regions of Tamil Nadu, Andhra Pradesh, Andaman and Nicobar Islands following the earthquake.

Indonesia straddles a series of fault lines that makes the vast island nation prone to volcanic and seismic activity.

A giant 9.1-magnitude quake off the country on Dec. 26, 2004, triggered a tsunami in the Indian Ocean that killed 230,000 people, nearly three quarter of them in Aceh.

source : ibnlive.in.com
Read More »

Friday, March 2, 2012

Hide My MAC Address | Free Download

Hide My MAC Address v2.2 Full Version


This Utility allows you to Hide your MAC Address your ISP, WiFi networks, from hackers, government agencies, online games, and more! Hackers, ISP, can track your Internet activity if they know your MAC Address. Public Wireless Access Points are all over, some of them less secure. Every time you open your laptop, it automatically attempts to contact to wireless networks, regardless if you use WEP/WPA Encryption. Fool MAC-based ACLs (Access Control Lists) by cloning the MAC address of a computer that is already authorized to use a WiFi network. Don't let your MAC Address to get out in the open, Use this utility to hide your mac address.
Read More »

Thursday, February 16, 2012

Add Snow Falling Effect In Mouse Cursor for Blogg

Snow Falling In Mouse Cursor




Hello friends!, here we are again  with another great trick. Snow falling in mouse cursor. You can decorate with this script. You can Spice up your blog in Winter, Christmas , It'll bring more joy to your visitors. ok lets have the code



  1. Copy the code below
  2. Page element --> Add a Gadget --> HTML/JavaScript Add  --> Paste the code and Save

<script type='text/javascript'>
// <![CDATA[
var colour="White";
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>


Enjoy it.......!
if you are using New blogger interface and having trouble with adding widget code, try Switching back to Old blogger interface


Tags:
how to add Snow falling effect in mouse cursor, Snow falling effect to blogger, amazing snow falling effect, snow falling widget for blogger,

Previous Posts:

How To Add Floating Social Media Sharing Buttons For Blogger
How to Fix MediaFire Infinite Page Refresh
How To Switch Back To Old Blogger Interface




Read More »

Sunday, February 12, 2012

How To Switch Back To Old Blogger Interface

Sorry to hear guys
THIS METHOD IS NO LONGER WORKING

How to get back old blogger interface

get-back-old-blogger-interface

Do you have trouble working with new blogger interface? Oh yes you do :) that's why you came here.If you are a new to blogger, you are not much used to new blogger interface, don't worry a bit, I'm here to save you. Here the way to how to switch back to old blogger interface.



  • Click on "Settings" Button under your name

get-back-old-blogger-interface

  • Then you will see the menu collapse
  • Click on "Old Blogger Interface"

get-back-old-blogger-interface 

  • Here we are again to Old Blogger Interface
    Old is Gold !

get-back-old-blogger-interface




Read More »

Wednesday, February 8, 2012

Floating Twitter, Facebook, Digg, Plus One, Stumbleupon, Share buttons for blogger


Floating social share buttons widget


        Social bookmarking is great way to get more traffic.But how can you make your visitor Share your content with their social bookmarking profiles like Digg, Stumbleupon, and Social Communities like Google +, Facebook.That's the difficult part,most people feel lazy about sharing them with their Social bookmarking profiles.

But don't worry about it now.This widget make it easy for you.This floating widget helps you to get more attention from visitors...This widget will increase traffic to your blog. That's why this widget is effective and this is a very needed one for any web site.

In most sites i saw this widget on "Left" side. but i suggest "Right", because when the reader scrolling the page, mouse pointer is always in the "Right" side. So i think clicking Effectiveness
is high in "Right" side.     ok then let's see how to add it to your blog




  1. Copy the code below
  2. Page element --> Add a Gadget --> HTML/JavaScript Add  --> Paste the code and Save

<style>

#floatdiv {
  position:fixed;
bottom:2%;
margin-left:870px;
z-index:10;
float:left;
padding-bottom:2px;

}

#ETiOne-Sbar {
        background:#444;
        border-top:1px solid #ddd;
        border-left:1px solid #ddd;
        border-bottom:1px solid #ddd;
        border-radius:5px;
       -moz-border-radius:5px;
       -webkit-border-radius:5px;
        padding-left:5px;
        width:60px;
        margin:0 0 0 5px;
}

.fb_share_count_top {width:52px !important;}

.fb_share_count_top, .fb_share_count_inner {-moz-border-radius:3px;-webkit-border-radius:3px;}

.FBConnectButton_Small, .FBConnectButton_RTL_Small {width:52px !important; -moz-border-radius:3px;/*bs-fsmsb*/-webkit-border-radius:3px;}

.FBConnectButton_Small .FBConnectButton_Text {padding:2px 2px 3px !important;-moz-border-radius:3px;-webkit-border-radius:3px;font-size:8px;}
</style>

<div id="floatdiv">
<div id="ETiOne-Sbar">
    <table cellpadding="1px" cellspacing="0">

    <tr>
    <td style="padding:5px 0px 0px 0;">
<a href="http://twitter.com/share" class="twitter-share-button" data-count="vertical" data-via="SnOW_BiRDx">Tweet</a><script type="text/javascript" src="http://platform.twitter.com/widgets.js"></script>
    </td>
    </tr>

    <tr>
    <td style="padding:5px 0 2px 0;">
    <a name="fb_share" type="box_count" href="http://www.facebook.com/sharer.php">Share</a><script src="http://static.ak.fbcdn.net/connect.php/js/FB.Share" type="text/javascript"></script>
    </td>
    </tr>


<tr>
<td style=" padding:5px 0px 2px 0px;">
<script type="text/javascript">
(function() {
var s = document.createElement('SCRIPT'), s1 = document.getElementsByTagName('SCRIPT')[0];
s.type = 'text/javascript';
s.async = true;
s.src = 'http://widgets.digg.com/buttons.js';
s1.parentNode.insertBefore(s, s1);
})();
</script>
<a class="DiggThisButton DiggMedium"></a>
</td>
</tr>
    <tr>
    <td style=" padding:5px 0px 0px 0px;">

<g:plusone size="Tall" expr:href="data:post.url">
    </g:plusone></td>
    </tr>
<tr>
<td style=" padding:5px 0px 2px 0px;">
<script src="http://www.stumbleupon.com/hostedbadge.php?s=5"></script>
</td>
</tr>
<tr>
    <td>
<p style=" line-height:0px; font-size:10px; font-weight:bold; text-align:center;"><a style="color:#D3D3D3;" href="http://everythinginoneplaze.blogspot.com/2012/02/floating-social-share-buttons-widget.html">Get Widget</a></p>
    </td>
    </tr>
    </table>
</div>
</div>


After Done with copying code let's see how to customize the widget


  • bottom:2%;
    - Change position Top to bottom -


  • margin-left:870px;
    - Change position left to right -


  • background:#444;
    border-top:1px solid #ddd;
    border-left:1px solid #ddd;
    border-bottom:1px solid #ddd;
    - Change background and boader color -
     Our hex color code generator will help you to find color codes
  • data-via="SnOW_BiRDx"
    - Change this to your Twitter username -


ok friends !.. let's meet again with another great post


Tags:
How To Add Floating Social Media Sharing Buttons For Blogger, add Floating social share buttons widget, for blogger, wordpress, Free blogger tools, what are widgets, widgets for blogger, social share buttons widget facebook, facebook share button, Twitter share button, Stumbleupon share button, Digg share button, google plus one + one button, How to Increase uTorrent, BitTorrent Download Speed, How to Increase p2p Download Speed - Tcpip Patch, How To Increase 3G Signal - USB Dongle, How to Fix Mediafire Continuous Page Refresh,




    Read More »

    Saturday, February 4, 2012

    FireFox New Free Download




    The Firefox browser is created by Mozilla, a non-profit organization whose mission is to promote openness, innovation and opportunity on the Web..The Web is all about innovation, and Firefox sets the pace with dozens of new features to deliver a faster, more secure and customizable Web browsing experience for all.


    User Experience -
    The enhancements to Firefox provide the best possible browsing experience on the Web. The new Firefox smart location bar, affectionately known as the "Awesome Bar," learns as people use it, adapting to user preferences and offering better fitting matches over time.

    Performance -
    Firefox is built on top of the powerful new Gecko platform, resulting in a safer, easier to use and more personal product.

    Security -
    Firefox raises the bar for security. The new malware and phishing protection helps protect from viruses, worms, trojans and spyware to keep people safe on the Web.

    Customization -
    Everyone uses the Web differently, and Firefox lets users customize their browser with more than 5,000 add-ons.



    Firefox-free-download


    Tags:
    Firefox new update free download, download firefox,free fast web browser, firefox stable version
    Read More »

    Friday, February 3, 2012

    DAEMON Tools Pro Advanced | Full v | Free Download

    DAEMON Tools Pro Advanced 4.41 Full Version


    This is a great virtual CD / DVD-ROM emulator with the ability to emulate protected disks. The Pro version supports a variety of formats. In addition to ISO, B5T, B6T, BWT, CCD, CDI, CUE, MDS, NRG, PDI, and ISZ supported by about 32 types of images. With DAEMON Tools Pro you can create virtual CD / DVD drives and play CDs without the need for physical presence, thanks to CD / DVD images. The program works with all types of CD / DVD-ROM drives (IDE / SCSI) and any type of disk data. Daemon Tools Pro - the best choice for drives, emulation and create images for both advanced users and beginners.

    The program works through the system tray menu with which you have access to all commands. You can select the number of added virtual drives, mount images for each of them. To identify each drive, you can choose any letter English alphabet, which is available. Also, for each virtual device can be set to your region code. It should be noted that the connection and disconnection of virtual drives occurs almost instantaneously and without having to reboot.

    Features:

    - Emulation of 16 DT and 16 SCSI drives
    - Use up to 4 virtual IDE drives for enhanced emulation
    - Mounting an image on the physical IDE / SATA drives with advanced functionality, the binding
    - Mounting an image in the local NTFS folders
    - Get detailed information about the parameters of the physical and virtual drives
    - Set up virtual drives: the drive letter change, DVD region, etc.
    - Mount  mdx, mds / mdf,  iso,  b5t, b6t, bwt, ccd, cdi, bin / cue, ape / cue, nrg, pdi, isz images on virtual drives
    - Create or modify images using the Image Editor
    - Record created images to disc
    - Converting images from all supported formats to mdf / mds, mdx
    - Creating your own images of a certain type (CD / DVD) with a choice of file system (ISO9660, ISO9660 + Joliet, UDF)
    - Mastering boot disk or image
    - Control Catalog
    - Creating a. Iso, mds / mdf and mdx images for CD, DVD, Blu-ray Disc
    - Protecting images password
    - Compress the image or partition into multiple files


    Fixed:
    - Rare hangs explorer.exe (shell extension included DAEMON Tools);
    - Errors interface in some languages ??(writing from right to left Arabic, Hebrew, etc.);
    - Slow performance when working with images stored in the network, through the catalog of images;
    - Failed to create images of some CD drives.






    DAEMON-Tools-Pro_free_download




    Tags:
    DAEMON Tools Pro Advanced free download,demon tools, demon tools free download, daemon tools free download, deamon tools lite, deamon tools pro, daemon tools windows 7, download daemon tools free, download demon tools free, virtual disk drive,
    How to Increase uTorrent, BitTorrent Download Speed, How to Increase p2p Download Speed - Tcpip Patch, How To Boost 3G Signal speedd up USB Dongle, Solution for Mediafire Continuous Page Refresh,



    Read More »

    Auto Hide IP | Full.v | Free Download

    Auto Hide IP v5.1.9.6 | Full Version


    When you go to a website, your IP address is exposed every time when you go to any website.did you know that ?.Your IP address is like your online identity and some times hackers use to break into your computer, steal your personal information, credit card info, passwords, or commit other crimes against you. Auto Hide IP allows you to surf anonymously, change your IP address, prevent identity being stolen, and guard against hacker intrusions, all with ith single click.

           You can select fake IP from different countries via “Choose IP Country” option and can Check IP directly. Using it, you are able to conceal your identity online by showing them a fake IP, blocking hackers and prying eyes from knowing your true location or identity. You can also choose “Launch on Startup” and then it will run and load a fake IP automatically when you log on to Windows. Besides, you can easily switch between fake IP and real IP by simply clicking a button of Hide IP or Stop Hide.



    Read More »

    Tuesday, January 31, 2012

    Malwarebytes | Full.v | Free Download

    Malwarebytes v.1.60.0.1800

    Malwarebytes_free_download
    Malwarebytes is the one of best Malware detection and removal software. Malwarebytes has new technologies that are designed to quickly detect, destroy, and prevent malware. Malwarebytes can detect and remove malware that even the most well known anti-virus and anti-malware applications fail to detect, and this utility monitors every process and stops malicious processes before they even start. This utility gives realtime protection with advanced heuristic scanning technology which monitors your system to keep it safe and secure. Additionally, users will be able to access the threats center where they can keep up to date with the latest discovered malware threats.

    Features:

    -Super speed scanning.
    -Ability to perform full scans for all drives.
    -Quarantine to hold threats and restore them at your convenience.
    -Ignore list for both the scanner and Protection Module.
    -Settings to enhance your Malwarebytes Anti-Malware performance.
    -Multi-lingual support.
    -Works together with other anti-malware utilities.
    -Command line support for quick scanning.
    -Context menu integration to scan files on demand.
     


    Malwarebytes_free_download


     

    Malwarebytes_free_download

    Malwarebytes_free_download


    Tags:
    free download Malwarebytes free download, malware remove free, free antivirus, antivirus antivirus, free anti virus, malwarebytes malwarebytes, what is a malware, malware bytes, anti malware,
    How to Increase uTorrent, BitTorrent Download Speed, How to Increase p2p Download Speed - Tcpip Patch, How To Boost 3G Signal speedd up USB Dongle, Solution for Mediafire Continuous Page Refresh,



    Read More »

    Saturday, January 28, 2012

    Advanced System Care Pro v.4.0.0.163 | Full.v | Free Download

    Advanced System Care Pro

    Advance-System-Care-Pro
    This is a AIO (all in one) system care Utility.It speeds up your PC performance and internet access speed.Tunes up Windows by releasing the built-in power of your system. It improves both system and Internet performance by up to 400%.Advanced System Care has another special feature, it has PC defence security with extra protection. Detects and analyzes Windows security environment. Scans and removes spyware and adware using up-to-date definition files. Detect spyware, prevent hackers and hijackers from installing malicious programs on your computer. Erases and updates your PC's activity histories.

                 "Advanced System Care" is inherits the easy-of-use from previous versions, with more powerful capabilities. With one click, it scans and repairs ten PC problems and protects your PC from hidden security threats. The newly added "Disk Scan" and "Vulnerability Fix" helps scan and fix disk errors and Windows vulnerabilities.





    Advance-System-Care-Pro


    Version: V4.0.0.163
    File Size: 29.03 MB


    Tags:
    Free download Advanced System Care Pro, full version, AIO system tool, registry cleaner, PC tweak, system boost, PC speed up tune up free, system speed up, speed up computer, how to speed computer, how speed up pc, How to Increase uTorrent, BitTorrent Download Speed, How to Increase p2p Download Speed - Tcpip Patch, How To Boost 3G Signal - USB Dongle, How to Fix Mediafire Continuous Page Refresh,



    Read More »

    Friday, January 27, 2012

    Dream Aquarium v1.234 | Full.v | Free Download

    Dream Aquarium 3D Screensaver

    Dream-Aquarium-screensaver
    This is a Mind blowing and fantastic screensaver that brings the beauty of a lush freshwater aquarium to your computer with unsurpassed realism.and this the best 3D aquarium i ever seen. Dream Aquarium.You can't imagine it's reality without installing it ..... feel the freshness...





    • To change options, "Right Click" and "ESC" to close.


    Dream-Aquarium-screensaver


    Features:
    - The most realistic fish motion and behavior of any virtual aquarium.
    - A fiddler crab that cleans the bottom of the aquarium and chases fish.
    - Fish have articulated fins, moving eyes, gills and mouth.
    - Beautiful shifting light rays, ground ripples, gently waving plants that fish can swim into, soft shadows cast by fish, configurable bubble streams, auto-feeding.
    - Add well over a hundred fish (from 18 species), and change settings without having to exit the aquarium.
    - Free demo aquarium screensaver contains NO adware or spyware.


    Read More »

    Thursday, January 26, 2012

    Google Maps Downloader v6.67 (Full.v) - Free Download

    Google Maps Downloader



    You can  get small tile map images from Google Maps with Google Maps Downloader. All downloaded small images are saved on the hard drive. You can view downloaded maps by Map Viewer Or you can combine them into a one map (bmp image).



    Google Maps Downloader




    Tags:
    Free Download Google maps downloader, full version, Free hide ip full, Driver Genius Pro Free Download, Photo Stamp Remover 4.2 full Free Download



    Read More »

    Monday, January 23, 2012

    How to Fix MediaFire Download Problem - Continuous Page Refresh

    Fix MediaFire Page Refresh

    How to Fix MediaFire Page Refresh Problem

    Mediafire is one of the best and free hosting service.It gives Free Unlimited Hosting Space and when you download something it gives Unlimited Download speed.That's why MediaFire is most Loved one than other hosting services.anyway, some users face trouble with Downloading with MediaFire links sometimes.

    The problem is, page automatically and Continuously refreshed when we click on the download button.
    And the good news is, i found some solutions for that problem.


    There are few reasons cause this problem
    • Blocked by browser cookies
    • Blocked by Antivirus
    • Blocked by DNS server
    lets see how to get rid of these problems....

    • Blocked by browser cookies

      If download problem cause by browser cookie,you have to delete the cookie file.

      If you are using FireFox Follow these steps....
      • Tools --» Options --» Privacy "Tab" --» Click on "Remove individual cookies"
      • Delete "Mediafire.com"
      • DoNE... Now restart the firefox and try Download again
      Fix MediaFire Page Refresh


      If you are using Google chrome
      • Press Alt + Ctrl + Del
      • Choose " the beginning of the time "
      • Select only " Delete cookies and other site data "
      • Click on " Clear browser data "
      • DoNE.... Now restart the Chrome and try Download again

      Fix MediaFire Page Refresh


      Or you can use CCleaner for Better browser data clean up. Click here to Download CCleaner latest version


      • Blocked by Antivirus

        Some times downloads blocked by web control in Antivirus.In this case you have to disable the AntiVir, then try download again....☺

        I think theses methods will help you... Happy Downloading....!!
        If non of these above didn't work for you .. You should Upgrade your Browser and it will solve your problem %100



        Tags:
        Read More »