September 30, 2011

Real time traffic analysis with Google Analytics

2 comments:
World's most popular and widely used traffic analytics tool 'Google Analytics' has recently introduced real time tracing of visitors coming to your website. Google analytics offers detailed reports on visitor's geographical location, visitor's location on your website and search queries or sites that sent them to your website. With this new feature in place, it would be amazing to monitor user activities in real time and thus plan and alter your online campaigns easily yet effectively. Here's a screenshot of how this feature looks on GA dashboard. Read more.
Read More

September 29, 2011

TRAI puts restriction on number of outgoing SMSes

No comments:
Telecom Regulatory Authority of India (TRAI) has implemented a new restriction on maximum number of outgoing SMSes, in an effort to reduce mass spam SMSes being everyday by various firms and institutions in India. The maximum number of outgoing SMSes is now limited to 100 per day for prepaid users and 3000 per month for postpaid users. So far it sounds good but it's not. The problem is in the way they have implemented this restriction, this new rule is applicable not only to mass spam senders but also applicable to each and every single phone user in India. Many of us have huge friend circle and we can easily cross this limit of 100 SMSes in a day. With this new restriction in place we will have to switch to alternative texting solutions like blackberry's BBM. What do you think, should this restriction be removed ?
Read More

September 28, 2011

Cool signature script

No comments:
 
This is a quick fun script for people wanting to have a cool signature of different forums. This script will let users add new messages and display them on your signature dynamically. Installation is very easy, just create a file with the following code and another file named 'data.txt' in the same folder. Don't forget to chmod data.txt to 0755.

<?php
$sigs = array();
$file = 'data.txt';
$contents = file_get_contents($file);
if(!empty($contents))
    $sigs = json_decode($contents);
if(isset($_GET['add'])){
    if(isset($_GET['clr'])){
        file_put_contents($file,'');
        $sigs = array();
    }
    if(!empty($_POST['submit'])){
        $nom = $_POST['nom'];
        $msg = $_POST['msg'];
        if(!empty($nom) && !empty($msg)){
            $nom = preg_replace('@[^a-z0-9 ><_\-\?\.]@i','',$nom);
            $msg = preg_replace('@[^a-z0-9 ><_\-\?\.]@i','',$msg);
            if(!(strlen($nom)<=12 && strlen($msg)<=70)){
                $nom = substr($nom,0,12);
                $msg = substr($msg,0,12);
            }
            $sigs[] = array('time'=>$_SERVER['REQUEST_TIME'],'nom'=>$nom,'msg'=>$msg);
        }
    }   
        {
        echo'
        <img src="?img" alt="" border="0" />
        <br />
        <form method="POST">
        <input type="hidden" value="" name="add" />
        <input type="text" value="" name="nom" size="12" />
        <input type="text" value="" name="msg" size="70" />
        <input type="submit" name="submit" value="Add" />
        </form>
        ';
        echo"<a href='?img'>view sig</a> | <a href='?add'>add msg</a> | <a href='?add&clr'>clear all</a>";
    }
$sigs = json_encode($sigs);
file_put_contents($file,$sigs);
}
elseif(isset($_GET['img'])){
    if(!empty($sigs)){
        $sigs = array_reverse($sigs);
        $img = imagecreatetruecolor(800,120);
        imagecolorallocate($img,0,0,0);
        $color = imagecolorallocate($img,255,255,255);
        $i = 0;
        foreach($sigs as $sig){
            if($i>=5)
                break;
            imagestring($img,15,4,10+($i*20),'| '.$sig->nom.' : '.$sig->msg,$color);
            imagestring($img,15,720,10+($i*20),date('h:i:s',$sig->time),$color);
            
            $i++;
        }
        header('Content-type: image/png');
        imagepng($img);
        imagedestroy($img);
    }
}else{
    echo"<a href='?img'>view sig</a> | <a href='?add'>add msg</a> | <a href='?add&clr'>clear all</a>";
}
?>

Read More

Firefox 7.0 is finally available for download

No comments:


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.


   
Read More

September 25, 2011

Download torrents on aircel for free

2 comments:
You must have 0 balance for this trick to work. Procedure:
  • Connect to your pc to internet with aircelgprs.po
  • Now open ultrasurf. If you don't have ultrasurf then Click here
  • Ultrasurf will take about 1 or 2 minute to connect to it's proxy server.
  • Now open any proxy supported browser/download manager and use with following settings. Proxy: localhost Port: 9666
  • For downloading torrents, just use bittorrent client without any additional settings.
Read More