Friday, 7 August 2015

Get free domain For your blog (.tk) with Adsense approved

Get free domain For your blog (.tk) with Adsense approved

hi have you seen my blog its .tk domain.People asked me why you put .tk  domain for my blog.For newcomer its not always Easy to invest in domains so better get free domain.
Now if you have doubt regarding adsense then you must see my site ;My site adsense approved they will consider your request for .tk domain too if your content and aesthetics are up to date.

Steps for getting .tk domain
1.sign up here http://www.freenom.com/en/index.html?lang=en
2.Later steps are explained in video. (Atleast get PC for domain setup)

Use WhatsApp without Any Mobile Phone Number

Use WhatsApp without Any Mobile Phone Number
This is possible! First, uninstall WhatsApp if already installed. Save image files / video on WhatsApp. Now download and install new WhatsApp. You must lock messaging service via changing the flight mode. Open WhatsApp and add your number to it. This way, it will not send message to the server to verify your mobile number. Since the verification is still unfinished and messages are blocked, the application will ask you to select an alternative system to confirm. Now simply choose ‘Check through SMS’. Now you must enter your email address. Click ‘Submit’.
Don’t wait and click “Cancel”. Forge messages and install the message Spoof text message. Use Fake-a-Message for iPhone. Now visit the Outbox and copy details of messages and select Spoofer Application. Send the details to false verification. Now the details should be used in false message:


WhatsApp without Any Mobile Phone Number
  • To: +447900347295
  • From: + (country code )
  • (mobile number )
Now message your e-mail address. A message is sent to fake number. It is now possible to use the number to get connected to friends.

Hack Friends WhatsApp Conversation


Hack Friends WhatsApp Conversation




Hack Friends WhatsApp Conversation
This is an awesome WhatsApp trick that can be used to hack WhatsApp conversation of your friends. You can effortlessly grasp the .crypt files from SD Card of your friends. Thereafter, you can view them on the internet using the website ‘RecoverMessages’. Explore the friends SD Card and then navigate to:
  • SD Card
  • Whatsapp
  • Database folder
This is where you will get two files – ‘msgstore-yyyy..dd..db.crypt’. This will precisely contain date and year whenever the backup was created. All you need to do is copy the files to your PC and upload to “RecoverMesages.com”. This will help you view these online. This is the best way to hack Whatsapp Database of your friend. You can now view all the conversation.
Now You Can Access WhatsApp On Your Google Chrome Browser Via Web.WhatsApp.Com.
I Made One Video of WhatsApp Tricks and Tips, Check Out Below Video of WhatsApp Tips. I Hope that You will Like this Video, Please Share It On Social Media and Enjoy..

Tuesday, 4 August 2015

Zopper Coupon: Get Instant Rs555 on Zopper App

Zopper Coupon: Get Instant Rs555 on Zopper App

Welcome to HiTricks Deals. We are back with an awesome deal for you. Now get instant Rs555 on Zopper when you use promo code: O14MS3. Zopper app is a shopping app for android users where it brings offline sellers in an online marketplace. Hurry! Avail the offer before it runs out.
Zopper Coupon: Get Instant Rs555 on Zopper App Loot

Offer Details:
Using zopper you can shop for a wide range of electronic goods from your home. You can avail cash on delivery for your peace of mind.
Zopper is available in Bengaluru, Delhi, Gurgaon, Mumbai, Noida, Jaipur, Chandigarh, Kolkata, Hyderabad.
Join Zopper using promo code: and get Rs555 instantly. This money can be used to shop products on Zopper.
Steps to Avail the Offer:
  1. Download Zopper App from here: 1. Google Play Link 2. Direct Link
  2. Install and Open App. Choose your location and locality.
  3. Click Login via Facebook. Accept Permissions.
  4. Enter your mobile number to receive OTPConfirm it.
  5. Enter Referral Code:  O14MS3
Now you will come to main screen. That’s all. You have received Rs555 on your Zopper account instantly.
You can find your referral code on Top Left Menu > Refer and Earn. Share your referral code and earn 10% of your friend’s purchase.

Just Download Plus Recharge and Get Free Rs 20 Recharge

Just Download Plus Recharge and Get Free Rs 20 Recharge


I Hope All the Users had Already Enjoyed My Posted All Best Free Rechrge Offers and Waiting for New Free Recharge Loot Offer to Get Free Recharge on Downloading Some Apps So Today i Am Sharing New Free Recharge Loot Offer :- Just Download Plus Recharge and Get Free Rs 20 Recharge
Plus Recharge is Newly launched Free Recharge App by Plus Recharge Team And Giving Upto Rs 15 on Every App Downloading Offer Also Rs 10 on Every Refer. Users Can Refer Unlimited Friends on Recharge plus. This Time Plus Recharge is Offering Free Rs 20 Recharge on Just Register on Recharge Plus so Follow my All Steps and Earn Unlimited Recharge on Recharge plus
grey Just Download Plus Recharge and Get Free Rs 20 Recharge

Steps :-

  • 2) After Installing Open it And Click Register Account
  • 3) Now Enter your Moible Number and Verify it using Otp Code
  • 4) After Verification You Will see Plus Recharge Home page
  • 5) Now Goto Menu and Click on Redeem Coupon
  • 6) Now Enter Coupon Code :- plusrecharge and Apply it
  • 7) After Applying Coupon Code You Will Received Rs 20 Plus Recharge Credit on Your Mobile Check Screenshot of Rs 20 Plus Recharge Credit
grey Just Download Plus Recharge and Get Free Rs 20 Recharge
  • 8) to Redeem Your Credit Simply Goto Menu and Click Wallet Money
  • 8) Now Click Recharge and Enter Your Mobile Number Details and Give them to Recharge Request
  • 9) After Giving Recharge Request You Will Received Your Recharge Within 5 Minutes Becouse Recharge System is Instantly
  • 10) to Earn More Plus Recharge Credit Simply Refer Friends and Earn Rs 10 Per Refer or Download Some android Apps

Terms and Conditions :-

  • 1) Offer Valid for New Plus Recharge Users Only
  • 2) Offer Valid for Limited Times Only
  • 3) Recharge Will Received Within 5 Minutes After Giving Recharge Request
  • 4) Plus Recharge Credit Will Received Instantly After Applying Coupon Code
  • 5) Offer Valid for Android Users Only

Tuesday, 27 January 2015

program to find the shortest path between any two routers in a given subnet using Dijkstra’s shortest path routing algorithm.


Write a program to find the shortest path between any two routers in a given subnet using Dijkstra’s shortest path routing algorithm.

import java.util.*;

class Dijkstra
{
            int g[][];
            int v, e;
            int d[], p[], vis[];
           
            void CreateGraph()
            {
                        int a, b, w;
                        Scanner is=new Scanner(System. in);
                        System.out.println("Enter the Number of Nodes:");
                        v=is.nextInt();
                        System.out.println("Enter the Number of Edges:");
                        e=is.nextInt();
                        g=new int[v+1][v+1];
                        for(int i=1;i<=v;i++)
                                    for(int j=1;j<=v;j++)
                                                g[i][j]=0;
                                   
                        for(int i=1;i<=e;i++)
                        {
                                    System.out.println("Enter the Edges Info:");
                                    a=is.nextInt();
                                    b=is.nextInt();
                                   
                                    System.out.println("Enter the Weight of these Edges:");
                                    w=is.nextInt();
                                    g[a][b]=g[b][a]=w;
                        }
            }
           
            void CallDij()
            {
                        vis=new int[v+1];
                        d=new int[v+1];
                        p=new int[v+1];
                       
                        for(int i=1;i<=v;i++)
                                    p[i]=vis[i]=0;
                        for(int i=1;i<=v;i++)
                                    d[i]=32767;
                        Dij();
            }
           
            void Dij()
            {
                        int c, cur, min, src, dest;
                        System.out.println("Enter the Source and Destination Vertex:");
                        Scanner is=new Scanner(System.in);
                        src=is.nextInt();
                        dest=is.nextInt();
                        cur=src;
                        vis[cur]=1;
                        d[cur]=0;
                       
                        while(cur!=dest)
                        {
                                    int dc=d[cur];
                                    for(int i=1;i<=v;i++)
                                    {
                                                if(g[cur][i]!=0 && vis[i]!=1)
                                                            if(g[cur][i]+dc<d[i])
                                                            {
                                                                        d[i]=g[cur][i]+dc;
                                                                        p[i]=cur;
                                                            }
                                    }
                                    min=32767;
                                    for(int i=1;i<=v;i++)
                                    {
                                                if(vis[i]!=1 && d[i]<min)
                                                {
                                                            min=d[i];
                                                            cur=i;
                                                }
                                    }
                                    vis[cur]=1;
                        }
                        System.out.println("shortest distance ="+d[dest]);
            }
}

public class Exp2Dijkstra
{
            public static void main(String s[])
            {
                        Dijkstra g=new Dijkstra();
                        g.CreateGraph();
                        g.CallDij();
            }
}
/*Output: -
Microsoft Windows XP [Version 5.1.2600]
(C) Copyright 1985-2001 Microsoft Corp.

C:\Documents and Settings\Sameer Kobal>cd\

C:\>set path="C:\Program Files\Java\jdk1.6.0_17\bin"

C:\>javac Exp2Dijkstra.java

C:\>java Exp2Dijkstra
Enter the Number of Nodes:
5
Enter the Number of Edges:
5
Enter the Edges Info:
1 3
Enter the Weight of these Edges:
10
Enter the Edges Info:
3 5
Enter the Weight of these Edges:
20
Enter the Edges Info:
5 2
Enter the Weight of these Edges:
15
Enter the Edges Info:
2 4
Enter the Weight of these Edges:
9
Enter the Edges Info:
4 1
Enter the Weight of these Edges:
2
Enter the Source and Destination Vertex:
1 5
shortest distance =26

*/