FREE!!! 10$ Discount Coupon For Hostgator: GETDISCTEN

AutoBlog Samurai Pro v2.2 (Full Version) - Free Download

This Brand New Breakthrough Software Technology Integrates Seamlessly With Blogger and Wordpress To Generate Multiple Automated and Reliable Income Streams.

SENukeX v2.2.22 - Best SEO Tool 2011 (Full Version)

SEnukeX is one of the most advanced link building tools ever developed in the internet marketing field. It is the version 2 of the hugely popular senuke tool.

ESET NOD32 Antivirus and Smart Security 5.0.93.0 Final

ESET NOD32 Antivirus provides reliable, advanced protection against threats endangering your PC. Viruses, worms, Trojans and other trouble now can not do any harm to information valuable to you.

Free Web Hosting with Control Panel (cPanel)

The one and only free web hosting company that has proof for "99% uptime guarantee is offering a unique feature that no one else can give - free web hosting account with cPanel control panel.

Opera Mini Mod 4.21 Beta 13 (20453) English + Handler Versions

Opera Mini 4 delivers a fast, impressively advanced user-friendly experience with this upgrade to its mobile phone browser.

Showing posts with label Tips and Tricks. Show all posts
Showing posts with label Tips and Tricks. Show all posts

27 November, 2011

[Tutorial] How to add Label Cloud to Blogger


Here is the code and setup information to use the Label Cloud in New Blogger.

First you obviously have to have a blog on New Blogger, and you MUST be using the layouts templates, (this isn't available for classic templates, or FTP published blogs ) and you must have some posts labeled already. (There needs to be at least ONE label with more than ONE entry or the scripts hit a bug - so have at least one label with more than one entry before starting).

Make sure you backup your template before making any changes!
Log into Blogger and go to your layouts section. On the 'Page Elements' setup page
make sure you have a label widget already installed where you want it (it can be moved around
later).

Then go to the Edit HTML settings and leave the widgets NOT exapanded.
It will make things easier to deal with.
Now the code comes in 3 parts. A section for the stylesheet, a configurations section, and then the actual widget itself.

The first part to put in is the stylesheet section. The following code needs to be copied
and inserted into your stylesheet, which in the layouts is marked out by the <b:skin> tags.
Easiest thing to do is find the closing skin tag


]]></b:skin>


and place the code right BEFORE that.
Here it is, copy and paste without modification right now. I'll explain what can be tweaked
later.

/* Label Cloud Styles*/
#labelCloud {text-align:center;font-family:arial,sans-serif;}
#labelCloud .label-cloud li{display:inline;background-image:none !important;padding:0 5px;margin:0;vertical-align:baseline !important;border:0 !important;}
#labelCloud ul{list-style-type:none;margin:0 auto;padding:0;}
#labelCloud a img{border:0;display:inline;margin:0 0 0 3px;padding:0}
#labelCloud a{text-decoration:none}
#labelCloud a:hover{text-decoration:underline}
#labelCloud li a{}
#labelCloud .label-cloud {}
#labelCloud .label-count {padding-left:0.2em;font-size:9px;color:#000}
#labelCloud .label-cloud li:before{content:"" !important}

This next section is the configuration section for the Cloud. It also goes in the head of the template, but outside of the stylesheet part. Easiest thing to do again is to find the closing stylesheet tag

]]></b:skin>

But this time place the code right AFTER that line, but BEFORE the </head> tag. Here it is.

<script type='text/javascript'>// Label Cloud User Variables
var cloudMin = 1;
var maxFontSize = 20;
var maxColor = [0,0,255];
var minFontSize = 10;
var minColor = [0,0,0];
var lcShowCount = false;
All of these settings can be changed but I'll explain them in a moment. The defaults will work for now.


Now the widget itself. Scroll down and find the label widget in your sidebar. It should look
something like this.


<b:widget id='Label1' locked='false' title='Labels' type='Label'/>


Copy the following code (from beginning widget tag to ending widget tag) and replace
the line above with it.

<b:widget id='Label1' locked='false' title='Label Cloud' type='Label'>
<b:includable id='main'>
  <b:if cond='data:title'>
    <h2><data:title/></h2>
  </b:if>

  <div class='widget-content'>
  <div id='labelCloud'/>
<script type='text/javascript'>

// Don't change anything past this point -----------------
// Cloud function s() ripped from del.icio.us
function s(a,b,i,x){
      if(a&gt;b){
          var m=(a-b)/Math.log(x),v=a-Math.floor(Math.log(i)*m)
             }
      else{
          var m=(b-a)/Math.log(x),v=Math.floor(Math.log(i)*m+a)
          }
      return v
   }

var c=[];
var labelCount = new Array();
var ts = new Object;
<b:loop values='data:labels' var='label'>
var theName = &quot;<data:label.name/>&quot;;
ts[theName] = <data:label.count/>;
</b:loop>

for (t in ts){
     if (!labelCount[ts[t]]){
           labelCount[ts[t]] = new Array(ts[t])
           }
        }
var ta=cloudMin-1;
tz = labelCount.length - cloudMin;
lc2 = document.getElementById('labelCloud');
ul = document.createElement('ul');
ul.className = 'label-cloud';
for(var t in ts){
    if(ts[t] &lt; cloudMin){
       continue;
       }
    for (var i=0;3 &gt; i;i++) {
             c[i]=s(minColor[i],maxColor[i],ts[t]-ta,tz)
              }    
         var fs = s(minFontSize,maxFontSize,ts[t]-ta,tz);
         li = document.createElement('li');
         li.style.fontSize = fs+'px';
         li.style.lineHeight = '1';
         a = document.createElement('a');
         a.title = ts[t]+' Posts in '+t;
         a.style.color = 'rgb('+c[0]+','+c[1]+','+c[2]+')';
         a.href = '/search/label/'+encodeURIComponent(t);
         if (lcShowCount){
             span = document.createElement('span');
             span.innerHTML = '('+ts[t]+') ';
             span.className = 'label-count';
             a.appendChild(document.createTextNode(t));
             li.appendChild(a);
             li.appendChild(span);
             }
          else {
             a.appendChild(document.createTextNode(t));
             li.appendChild(a);
             }
         ul.appendChild(li);
         abnk = document.createTextNode(' ');
         ul.appendChild(abnk);
    }
  lc2.appendChild(ul);  
</script>

<noscript>
    <ul>
    <b:loop values='data:labels' var='label'>
      <li>
        <b:if cond='data:blog.url == data:label.url'>
          <data:label.name/>
        <b:else/>
          <a expr:href='data:label.url'><data:label.name/></a>
        </b:if>
        (<data:label.count/>)
      </li>
    </b:loop>
    </ul>
</noscript>
    <b:include name='quickedit'/>
  </div>

</b:includable>
</b:widget>

Now if all has gone well, and you have posts already labeled, then if you preview the blog you should see some form of the Cloud appearing. If it doesn't appear, then something went wrong. You should probably back out and try it again from the start.

Update : I've found 2 things to check for first if the label cloud isn't showing.  First make sure that at least one of your labels has more than one entry. A bug in the script causes it to fail when all the labels have only one entry.(As soon as any label has more than one entry, then it should be ok from then on) Also, make sure that none of your labels contain quote marks " .  Apostrophes or single ticks ' are ok. ------

Most likely the cloud with it's default settings won't be what you ultimately want. But all
the colors and sizes are configurable to match your tastes. If the cloud is appearing in preview
then you can go about changing some of the variables so they suit.


The settings in the Variables section will be where you make most of your adjustments. Here I'll explain what each setting does.

var cloudMin= 1;

This setting you can use to limit the number of labels shown (for example if you have a lot of labels). Leave the setting at 1 to show ALL labels.  If you enter in a higher number, then only labels that have at least that number of entries will appear in the cloud.

var maxFontSize = 20;
var maxColor = [0,0,255];
var minFontSize = 10;
var minColor = [0,0,0];
var lcShowCount = false;
The lines for:

maxFontSize
maxColor
do what you may think they do. The first one sets the size (in pixels) of the label with the
most amount entries. The maxColor sets the color of that entry (in RGB format). Similiar with
the next two

minFontSize
minColor

Just these are for the label with the least amount of entries. Again the size is in pixels,
the color is in RGB format. Any labels between the two will get their color/sizes based on
how many labels they are, and where their entry count falls, giving the much desired cloud
effect.

From my experimenting, there are many factors that make up a pleasant looking cloud. From
color/size choice, to the number of actual labels, to how well dispersed the entries are amoung
the labels. 3 Labels don't make a good cloud as there isn't much to work with. You just have
to experiment around to see what looks good with your setup.

IMPORTANT, when change the color settings, Keep them in the format supplied. In between the [] and the numbers separated by commas. The default colors are BLUE for the max and BLACK for the min.

You can select any valid RGB color combination. If you don't know what RGB colors are, don't
worry. It's just a way of defining a color. You can use many charts on the Internet to
get the correct RGB value for the color you want to try. Here's one that is fairly good.

RGB Color Code Chart

Remember, if you get the 3 sets of numbers to enter them in correctly. Inside the [ ] separated by
commas.

Also experiment with different font sizes. Again it depends on how many entries, how dispersed
they are, and how much room for the cloud is available as to what looks good.

The last variable there is

lcShowCount

This can either be false (default) or true. All this does is turn off/on the post count displayed
next to the label. Usually in a 'traditional' cloud the count isn't used. But if you go to a
'flat' listing then it's sometimes useful to turn it on.

Now to the CSS section. Most people won't need to tweak these much, and it's not necessary to
understand what all those entries are for. Most are just to make sure that other styling
elements from the rest of your page don't inherit in and ruin the cloud. But there are a few
that you may want to change to suit.
The first line

#labelCloud {text-align:center;font-family:arial,sans-serif;}

You could change the fonts used in the cloud here if you wanted.
Also, the text-align statement can also be changed. I have it set to center by default but you
could use

text-align:justify;
text-align:right;
text-align:left;
If those suit better.

The next line

#labelCloud  .label-cloud li{display:inline;background-image:none !important;padding:0 5px;margin:0;vertical-align:baseline !important;border:0 !important;}
Well don't worry about most of it unless you are a hardcore CSS'er. The only one of real
importance is the first entry

display:inline;

You can change that to

display:block;

To get the 'Flat' (each entry on it's own separate line) listing of the weighted entries. Usually if that is set to block you would probably want to change the sort frequency from alphabetical to frequency.  

You do that by editing the widget from the Page Elements tab in Blogger.

And the last bit I'll mention is the line

#labelCloud .label-count

If you set the lcShowCount variable to true to show the post counts, you could change the
color/size of those numbered entries with that line. 

23 November, 2011

How to install Open VPN on Android Phone + Required FIles


 This Tutorial contains all information and files needed except one (just use google for that) for installing, Configuring and Running Open VPN on Android Phones.

Open vpn for android.

Requirements:
1.   "Rooted" Android Phone.
2.   Root explorer
3.   Openvpn installer
4.   Openvpn settings
5.   Terminal Emulator
6.   Busybox
7.   VPN Config Files
8.   tun.ko (This file is device and kernel specific. You cannot use a tun.ko that is NOT compiled for your device. just google for it and get your mobile kernel)

Steps:
1. Root your phone with the superuser.

2. Install openvpn installer and the binaries..

Installing Process:
Run openvpn installer using file explorer

Click install >choose /system/xbin/ > choose /system/xbin/bb
Check this directory if installation successfull: /system/xbin/openvpn

3. Install busybox 
Open the application and click install.
Wait and check directory: /system/xbin/busybox or /system/bin/busybox { it(busybox) should be there}

4. Configure openvpn settings
Go to option > advance >
Check load tun kernel module
Set path to openvpn binary: /system/xbin/openvpn
Go to tun module setting > load module using > insmod
Set path to tun module: /system/lib/modules/tun.ko

5. Open terminal emulator
and type this
$su
#mount -o remount,rw -t yaffs2 /dev/block/mtdblock2 /system
#chmod 700 /system/xbin/openvpn
#mkdir /system/xbin/bb
If The busybox is in the / system / bin /busybox
#busybox ln -s /system/bin/busybox /system/xbin/bb/ifconfig
#busybox ln -s /system/bin/busybox /system/xbin/bb/route

If The busybox is in the / system / xbin /busybox
#busybox ln -s /system/xbin/busybox /system/xbin/bb/ifconfig
#busybox ln -s /system/xbin/busybox /system/xbin/bb/route

#reboot
**if an error occurred after issuing such command please check if busybox is in this directory: /system/bin/busybox and if openvpn is in this directory: /system/xbin/openvpn

6. On your sdcard create a folder named "openvpn" w/o the quotes and Put all your config files there.

7. Now Run openvpn and connect with the visible settings.

Download Required Files Below:

Superuser.rar
Terminal_Emulator_v1.0.21.rar
Root_Explorer_v2.10.rar 

OpenVPN-Settings-0.4.7.rar 


21 November, 2011

Get Free Access to Premium Servers of Cyberghost VPN for 1-Month

The popular vpn Service Cyberghost now offering a promotional offer for their facebook users. You can access their all servers including U.S servers too.

The offer is very simple.

1) You have to just visit their facebook promotional offer page.

https://www.facebook.com/cyberghostEN?sk=app_181401061940054


 2) Login to your facebook account and hit like to their page.

3) After Liking the page Put your valid email address there, it takes around 2 seconds.

4) Now open your email and grab your 1 month premium activation serial number.

5) For this offer, I recommend create a new fresh cyberghost premium account and after registration put your serial in subscriptions area and then you have been successfully activated.

Note: - If you have already a cyberghost vpn account and in that if you are already using any promotional offer like using any promo code or if you are already purchased their any subscription, then don't put this serial number otherwise you will loose your other subscriptions like promotional or promo.

If you are using free account then you can use this premium code.

Validity = Your premium Activation key is only valid for 1 month from the day of activation.

You will get free premium vpn 1 GB usage data.

You can access their all servers without any limitations like disconnection problem and fastest speed.

To create an new account for Cyberghost VPN visit here

http://cyberghostvpn.com/page/registration.php

To download, latest version of Cyberghost vpn v 4.7.18 visit here.

http://www.brothersoft.com/cyberghost-vpn-230769.html

You can bound 1 license only at 1 pc.

To remove this limitation, you have to buy their subscription.

They also offer openvpn config files for windows, mac , linux and android.
But you can't use those configs because they can only used by valid paid subscribed users.

Not for any promotional user like us.

Happy Surfing ....

11 November, 2011

[Tutorial] How to hack windows xp administrator password

Hack windows administrator password


This is one of the best method to Hack Windows XP Administrator Password. For hacking admin you must have log in as guest or limited account. This methodod hacking sdmin is very easy, You don’t need any software or live cd. All hacking is done manual.To hack XP admin password follow these steps. Please backup your files which we are going to use here.

Method:

1.Go to C:/windows/system32

2.Copy cmd.exe and paste it on desktop

3.Rename cmd.exe to sethc.exe

4.Copy the new sethc.exe to system 32,when windows asks for overwriting the file,then click yes

5.Now press shift key 5 times you will get cmd prompt close that

6.Now Log out from your guest account and at the login screen,press shift key 5 times.

7.You will get commmand prompt there Now type “ NET USER ADMINISTRATOR mypassword” where “mypassword” can be any password and Administrator is name of admin account ,then press enter.

8.You will see “ The Command completed successfully” and then exit the command prompt.
Thats done…You have hacked administrator password

Please backup your cmd.exe and sethc.exe if you are trying this on your own computer.This works because of sethc.exe process Vulnerability in Windows XP. This method of hacking XP admin password can be used in your college lab where you have limited or guest access to computers.

08 November, 2011

Trick to Double your PayPal Money






Here is the Trick ...

1. Create 3 paypal accounts.
2. Put all your money in Paypal account #1. 

3. Send all your money to Paypal account #2.
4. Send all money in account #2 to account #3.
5. Chargeback from account #1.
6. Send money from account #3 to account #1.
DOUBLE MONEY !!!!!!!!!
Enjoy !!!!!!

[Tutorial] How to get PR4-6 backlinks in minutes

In this short tutorial, I’ll tell you how I get high PR (4-6) backlinks using Tumblr.

OKAY lets go...

Create a new account on tumblr.com (I recommend using mail.com emails for that as you can create as many emails as you want).
Make sure you use your keyword as your URL when signing up. It won’t let you use spaces but you can add hyphens instead.
So if your keyword is “Brooklyn gold training” then you’d put “Brooklyn-golf-training” in the URL field.
Now verify your email.

After verifying your email, login to your tumblr account.


On tumblr dashboard, click on “text” to create a new text post.
Your new post doesn’t have to be anything fancy. Just put up your keyword in title and body and you’re good.

Now click on “untitled” or whatever it is at the upper right corner of the page.




Then click on “customize appearance”




Then on “theme” :




And skip all those paid themes and scroll down to some free one.
Then click on “save + close” :



Now you see we have that “settings” link, click that. This one:



(If you don’t customize your theme, you won’t see that settings page there, so its important to customize your theme).


In the URL section, check the box saying “Use a custom domain name”. And then put in your money site URL (for which you want the backlinks). Make sure you don’t use any “http” or slashes whatsoever… Just a simple URL like example.com or Brooklyngolftraining.com.







Click on “save preferences”.



The next step is to find some high PR tumblr pages. You can easily do that by scraping Google using this footprint:

site:tumblr.com “liked this”
inurl:.tumblr.com "liked this"
(Whichever works well for you).
Once you have scraped some decent amount of pages, run a PR check using scrapebox or any other tools you have at your disposal. You can use SEOquake for this. Sort them by page rank (in decending order).
And you’ll see there are many high PR (4-6) pages. Now all you have to do is, visit that high PR tumblr page and click on that heart symbol at the top right of the page. Like this:



Make sure you’re logged in when visiting that tumblr page or you won’t see the heart symbol .

Now refresh the page (may need to do it a couple times) and see, your link is there right back to your site without any redirects whatsoever. The only drawback is, you can’t use your right anchor text with this method but hey, those are free PR6 backlinks.
That’s it, good luck

03 November, 2011

Get Free 1,000 Backlinks For Your Website


Using this service you can:
  • Drip or DROP Links: Create anywhere between 200 and 100,000 backlinks and receive a report within hours, all for the same low price of $0.001 USD per link!
  • Choose Your Weapon: There are currently 3,746 unique domains in our list of forums, which includes 820 unique domains in our list of forums with PageRank in their domains, each with a ~95% success rate. There are 1,035,477 unique domains in our list of blogs made up of over 3,125,687 unique blog URLs, which are typically in the ~3% success rate range. These statistics were last updated on 2011-11-01 and are checked regularly.
  • Experience Freedom: Add up to 10,000 URLs and 10,000 keywords to each backlink project. No more ridiculously small limits.
  • Schedule Flexibly: Schedule projects to run every weekday, every weekend, everyday, every monday, or some obscure date up to 9 months in the future.
  • Work at Your Own Pace: Since we don't force you to use or purchase a minimum number of backlinks per month, you can relax working with us.
  • Scale Easily: Promote as many backlink projects per day as you require.
  • Get Help Quickly: Receive free access to our private help forum filled with SEO tips, gurus and dedicated support staff at your service.

Megaupload Free Lifetime Premium Account


1.) Just go to this link and download Megakey software for FREE.
2.) Now, Install it on your pc and run the software.
3.) Go to megakey benefits --> Unlock free mega benefits --> Move ur slider to last.
5.) Now fill a simple form and once completed click ok.
6.) Wait for 24hrs.
7.) After 24hours you can download any file you want for free. Enjoy !!!!!
Note- To download files from megaupload.com just go to megauploadsearch.net (working fine).

02 November, 2011

Get Discounts Coupons for various Web Hostings


HOSTGATOR
  • Hatchling Plan -> 350gb space -> 3,000gb traffic -> 1dom -> $4.95
  • Baby Plan -> 600gb space -> 6,000gb traffic -> unlim-dom -> $7.95
  • Swamp -> 1000gb space -> unlimted traffic -> unlim-dom -> $12.95

COUPON-CODE:

GETDISCTEN = $9.94 hosting discount

- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -


DREAMHOST
  • Dreamhost-Shared-Hosting -> 500gb space -> 5,000gb traffic -> unlim-dom -> $10.95/mo when paid per month

$9.95/mo when prepaid 1 year, $8.95/mo when prepaid 2 years, $7.95/mo when prepaid 3 years, $6.95/mo when prepaid 5 years. $49.95 set up fee if you pay monthly


COUPON-CODE:
  • OFFER50 = $50.00 hosting discount
  • SETUPOFF = dont pay setup fee when you decide to pay monthly

- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -


HOSTICAN
  • Base-Host -> 600gb space -> 6,500gb traffic -> 2dom -> $6.95/month
  • Tera-Host -> 1,000gb space -> unmetered traffic -> unlim-dom -> $10.95/month


COUPON-CODE:
  • top50-12 = $50.00 hosting discount for Tera-Host package only!
  • top30-3 = $30.00 hosting discount only for hostican´s vps packages (virutaly private server)

- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -


VISTAPAGES
  • Dreamhost-Shared-Hosting -> 1,800gb space -> 18,000gb traffic -> unlim-dom -> $4.95/month

COUPON-CODE:
  • vistatops = $5.00 off hosting discount

16 October, 2011

Get a Free Website for your Blog



Use HyperWeb to ..
1. Get a Free website, get yoursitename.com instead of yoursitename.freeblogsite.com.
2. Build a full fledged content site and unleash the power of your site.
3. Get various addon scripts to your blog.
4. Take full control of your blog and customize per your needs.
5. Monetize, make money with your website.
1. Free website of your choice (yoursitename.com) for life time.
2. Unlimited webspace to host your website.
3. Unlimited bandwidth.
4. Unlimited emails (info@yoursitename.com,contact@yoursitename.com).
5. Scripts of your choice(Blog,CMS,Forum ..).
6. Technical support by email for your website.
7. Tips & tricks to improve your page rank and traffic.
8. Free renewal of your domain.
9. No hidden fee or payments.
10. Ads on your Blog.

Services:
1. Free Website like www.yoursitename.com based on avaialbility of the domain.
2. Multiple free websites also provided*.
3. Free web space of 1 GB.
4. Unlimited Bandwidth.
5. Unlimited email ids for your website( like info@yoursitename.com,contact@yoursitename.com).
6. Technology support :PHP 5. MYSQL, Apache.
7. Choice of more than 50 scritps,Installation of extra scripts on request.
8. Wide varitey of web templates to choose from.
9. Free tutorials, trips,tricks to improve content and website ranking.
10. Technical support by email.
11. Free renewal of your domain.
12. No hidden fee or payments. 

Click Here to get a free website for your blog

13 October, 2011

Get Traffic Travis Professional v-4 for FREE


Hi Friends,

Here's how you can get Traffic Travis Pro for free!

Go to the following link :
Click here to visit the web page 
Enter your name:
Email:

In the Email or Receipt: enter 10 random digits like 5637583756

You will receive the license key and Download Link to Traffic Travis Pro latest version! in your mailbox.

Enjoy Friends

10 October, 2011

GET WORLD CLASS PREMIUM WEBHOSTING FOR FREE !!!!




A professional company is offering all premium features of a webhosting without any cost. So what are you waiting for ??? Create your own webhosting account for FREE. HURRY !!!


Click Here to Create your Free Account

Major Features
cPannel
Disk space 10GB
Bandwidth 100GB
Addon domains Unlimited
No Advertisements
Email accounts 5
FTP accounts 5
MySQL database 5
Free Subdomains 5
Parked domain 5
Free Easiest Website builder & Publisher (no coding required)
Free Profesional Web Design Templates
No contract!
Free / Instant setup
Help Center & Support
Knowledge Base & FAQ
Weekly backups
99.9% Uptime
Support International Domain names
Nice Free Subdomains
Supported Technical Features And Databases
FTP Access
2 Web File Managers
MySQL 5 Database Server
PHP 5
ionCube Loaders v3.3.20
cURL
Custom Cron jobs
Web SSH console
GD
Hotlinking protection
.htaccess support
Customizable Error Pages
Zend Optimizer v3.3.9
E-mail Hosting features
POP3 Accounts
WebMail Access (RoundCube, SquirellMail)
E-mail alias
Spam Assasin Protection
Mail forwarding features
IMAP Support
Free Hosting Control Panel features & scripts
PhpMyAdmin
Fantastico 1 click Web site Installer
IP deny Manager
Instant Blogs
Instant Portals
Instant PHPnuke
Instant Forums
WordPress Hosting
Instant Guestbook
Instant counter
Instant FormMail
Redirect URL
Password protected directories
E-Commerce features
osCommerce one click install
ZenCart one click install
CubeCart one click install
Free SEO tools,
Search Engine submitter
BoxBilling one click install
Multimedia features
Streaming Audio / Video
Real Audio and Video support
DHTML Support
Flash Support
Shockwave Support
MIDI File Support
Support
Add custom MIME Types
World class Hosting Technologies
Dual Quad Processor Performance Servers
Linux Operating System
Customized and Optimized Apache Web Server
UPS Power Backup
Diesel Generator Backup Power
Courtesy Site Backups
24/7 Network Monitoring
Multiple 10 Gigabit Ethernet Connections

Click Here to Create your Free Account

09 October, 2011

BigBoss 5: Play and Win Double VAAT Contest

So here comes a Official contest of BIG Boss Season 5..
Its called the Double vaat contest.
Answer 5 simple questions and win exclusive prizes from Big Boss..
The website is held on their official website..

the link is shared below..
 

Link : Biggboss Season 5 Contest

04 October, 2011

How to Boost Indoor Signal Strength

Live Life without Walls:

Network signal has become as indespensible as Food &amp; Clothing. But, epp, Shelter does interfere with our new basic necessity.
With growing trend of urbanization and lack of living space, network penetration has become extremely difficult. High-rise buildings, metal windows, reflector glasses, congested housings and Network-interference has greatly pleagued our accessibility.
Even with a BTS mere 100 mtr, away, there is very ordinary coverage and network strength. So, when you plan to setup your room/flat/wireless setup keep in mind certain things. Use the following calculator to calculate and plan your personal Wireless setup.

Basic Tips:

1. Try to locate where is your nearest BTS (Transmission Tower) of your Service Provider

Direction and approximate distance... Take help from Google Maps if needed!

If you have two or more tower of your Service Provider, choose the nearer, if one is EDGE and other is GPRS only, prefer the EDGE. Prefer 3G Towers over 2G Towers, even if you are using 2G services. Amongst 3G protocols your Preference should be:

HSPA+ over HSUPA over HSDPA over HSPA over WCDMA


2. If you are planning to setup a stable wireless internet system, (i.e. you are not going to Move/Shift the system) remember the following:

Do NOT connect your USB Dongle/Stick/Modem directly to your USB port; rather use a USB Cable extension available in the market.



3. Where to Keep your Wireless Receiver/Modem?

This is the million dollar question; we are hunting for the answer.

Room: The Room in your Flat that is physically towards the direction of your Preferred Towers geographical location. Take help from Google Maps if needed! Keep your device near your window (But, keep them away from thieves!)
Keep it near the Opposite wall (instead of the Wall nearer to the Tower: IMPORTANT!!!), so that the wall may serve as a reflector (In case a Window is unsafe/not available).


USB Extension Cable: Do NOT connect your USB Dongle/Stick/Modem directly to your USB port, rather use a USB Cable extension available in the market. Keep your device near your window (But, keep them away from thieves!)


Modem Orientation: Vertical Modems/Vertically placed Modems are 20% more signal efficient compared to the horizontal/Conventional ones. So, place your Modem in a vertical position whenever possible.



Direction: Window Side is preferred. But, keep them away from thieves! as I said. This will help you avoid many Concrete/Brick Walls. Wood panels too absorb a lot of signal, so keep your Windows open if possible. Avoid Brick walls/ concrete structures as much as possible. This will help you Boost your Signal 10% to 90%. If a high-rise/ large Building interferes between your device and the tower, there is a way out too. Use a concave Metal Reflector!


Reflector: A 6 inch by 8 inch aluminium foil (commonly available in markets), make its centre depressed by 1 inch at the centre, so that it looks like a dish (concave shape). It will give a 20% to 40% gain if properly setup. Sounds odd? Ehh! Nope, try it. You'll thank me... Oh, IMPORTANT, keep your reflector, behind the Modem..






For Laptops/ Using on the Move: Not much to do apart from using a Vertical Modem or maximally an USB extension Cord.

How to Automatically Delete a Mail Once it Got Read

  1. First of all go to this website.
  2. In the text field type your message that you want to send to your friend.
  3. After writing your message, do check mark on “ Notify me when this note gets read “ box. Give your Email address and Reference Name where you want to get notify. The notifications email will be delivered in your Inbox folder or Spam folder.
  4. Click on Create Note button.
  5. Now a link will be generated.
  6. Copy/Paste this link in into your Email text field and send it to your friend instead of writing the text there.
  7. Now when your friend will click on this link he will read your note.Once the note is read it will automatically get destroyed. If your friend try to open that note again he/she will get a message saying This note was read before .
    That’s it. The only limitation of this trick is this you cannot write your text directly in the mail text field but you have to paste link of the note.

02 October, 2011

Trace any Mobile Phone Number in India

Now we can trace any mobile number in India, as we all know that landline number we can easily find with the help of telephone directories,

But for mobile number TRAI (Telephone Regulatory Authority of India) made it very secure and instructed all mobile phone operators not to reveal any mobile number information related to user’s identification. It used to be almost impossible to track or trace any mobile number to find the owner, location or address details.
For this there is some website available who help you to get Details about mobile number, You have to just visit this website and enter number which you want to trace ,than you will get all information regarding mobile number.

Tracking a Stolen Mobile Throug IMEI Number

If  Some one stole your mobile or you loss your mobile then what will you do?

Nothing much, But there is some option available which help you to get back your stolen mobile

All Mobile have unique IMEI(International Mobile Equipment Identity) Number, no two mobile have same number it is totally unique , to check your IMEI number dial *#06#

with this IMEI  Number you will get so many information about your handset and maker of the mobile and manufacture place ,etc

iphonebandit

 

If some one stole your mobile then Follow Below given step which will help you to get your mobile back

Follow this step

  • First submit your FIR if your mobile lost or stolen.
  • Then submit your FIR to your service provider.
  • Then ask your service provider to trace your number.
  • If your mobile is switched on and it has different Simcard then it will trace easily.
  • If your simcard is not activated then also your mobile can trace.
  • You can ask your service provider to Block your IMEI number.
  • Service provider use a shared hosting service for blocking IMEI numbers.
  • Witch mean if your mobile have different sim then also Your mobile  not work.
  • your service provider get that sim number which is used for you IMEI Number.

point to Remember :

  • when ever you purchased new mobile then take your IMEI number and note it.
  • if your mobile lost or stolen then  call to your service provider and block your number.
  • then go to your nearest police station and give written complete that is FIR.
  • and take one copy for you.
  • then submit this copy to your service provider.

Get a free unlimited texting SMS Phone Number of United States

Just follow this tutorial & you'll get a free texting number that sends free unlimited SMS. Enjoy free texting from the web.
Step 1: Head on over to this link





Step 2: Once there you should see a page like this, if not click on create an account.

Step 3: Fill it out with real info.

Step 4: Enter a US zip code, this is where your number will be from.



Step 5: Chose a number that tickles your fancy.



Step 6: Congratz you know have a free SMS phone number!

Any questions feel free to ask bu commenting below.

01 October, 2011

[Tutorial] How to know who has Un-Friended you on Facebook



* First of all Enable Timeline Feature in your Facebook Account .

* Now open your profile and click on the year in which you
want see the people who unfriended you.

* Scroll down the cursor till you find Friends column where you wil see list of new friends you made in that particular year. You can see I Made 3 New friends .

* Click on it and all your friends will be shown in a new pop-up window and if you find Add as Friend option next to any person it means he has un-friended you.

You can check all the years one by one to find out how many of your friends have un-friended you.

Check this post to know How to enable Facebook Timeline

[Tutorial] How To Enable Facebook Timeline



A few days ago Facebook announced Timeline, a crazy (and kind of creepy) omnibus look at everything that has ever happened in your Facebook lifespan. It’s like a story book of your life — or at least the online, documented parts.

Facebook said that Timeline would be on the way for everyone sometime in the coming weeks… which is great and all, for everyone else. You’re the type of person who reads TechCrunch, and are thus likely the type of person who likes their new and shiny things right now.

That’s okay. We can make it happen.

Fortunately, enabling Timeline a bit early isn’t too difficult — but it’s not at all straight forward, either.

You see, Facebook is enabling Timeline early for open graph developers. You, too, can be an open graph developer — even if you’re just looking to dabble.

A few things to note:
- You probably don’t want to do this unless you’re actually a developer. Expect bugs.
- Only you will see your timeline at first (unless you decide otherwise), but it will automatically go public after a few days. My timeline was automatically hard-set to go public on September 29th.
- It seems that if you login into Facebook on another machine, Timeline gets disabled automatically on all of your machines. With that said, it seems you can get back to your timeline (but ONLY after following the steps below) by navigating to http://www.facebook.com/YOURUSERNAMEHERE?sk=timeline
- You’ll need to have a “verified” account for one of the steps, which means you need a credit card or phone number attached to the account.

Here’s how to do it:

1. Log into Facebook.

2. Enable developer mode, if you haven’t already. To do this, type “developer” into the Facebook search box, click the first result (it should be an app made by Facebook with a few hundred thousand users), and add the app.

3. Jump into the developer app (if Facebook doesn’t put you there automatically, it should be in your left-hand tool bar)app.

4. Create a new app (don’t worry — you wont actually be submitting this for anyone else to see/use). Give your shiny new app any display name and namespace you see fit. Read through and agree to the Platform Privacy agreement. This is the step you need to be verified for.

5. Ensure you’re in your new app’s main settings screen. You should see your app’s name near the top of the page

6. Look for the “Open Graph” header, and click the “Get Started using open graph” link.

Create a test action for your app, like “read” a “book”, or “eat” a “sandwich”

7. This should drop you into an action type configuration page. Change a few of the default settings (I changed the past tense of “read” to “redd” — again, only you can see this unless you try and submit your application to the public directory), and click through all three pages of settings

8. Wait 2-3 minutes

9. Go back to your Facebook homescreen. An invite to try Timeline should be waiting at the top of the page

And you’re done! We’ve seen this work quite a few times now, so it should work without a hitch for just about anyone.

Twitter Delicious Facebook Digg Stumbleupon Favorites More