Thursday, 7 February 2013

OKA Jewelry an online retail Fashion costume jewelry estore

Dear Readers,
     I am introducing a Best website for  Buying Unique and Attractive Jewelry Online.

Visit Here 



Costume jewelry is one of the most important fashion accessories for creating a look that is uniquely your own. Like Ring, Necklace, Bracelet, Earring or Necklace Earring Sets and more. The Costume jewellery it possible for women all over the world to cover themselves with unusual designs.


OKA JEWELRY

Costume jewelry is one of the most important fashion accessories for creating a look that is uniquely your own. Like Ring, Necklace, Bracelet, Earring or Necklace Earring Sets and more. The Costume jewellery it possible for women all over the world to cover themselves with unusual designs.OKAJewelry is famous online retail Fashion costume jewelry estore ,which already have More than 2000+ Products in stock, And add more at Future and continue take care of each products before shipping out.


Friday, 7 December 2012

Google launches Snapseed, an Instagram like app, for Android


Google has launched a content sharing app, called Snapseed. With Instagram like functions, the app allows users to edit images and share the same via Google+ or other social networks.
Snapseed has been developed by a company called Nik Software, which has been brought by Google sometime back. Notably, the Snapseed application was even adjudged as the best iPad app last year, and was available for $4.99 for Apple devices. However, the app is now available for free on both iOS and Android platforms, and will challenge Instagram which was bought by Facebook .
Vic Gundotra, senior vice president of Google, in an official blog post said, "Having welcomed Nik to the Google family, we're excited to bring their Snapseed app (last year's iPad app of the year) to Android."
The app includes ability to do basic adjustments like tune, straighten and crop, add creative filters like drama, black and white, and vintage that you can apply individually or in combination to images. You can also use one 'Point technology' to selectively enhance your photo-to brighten just a face, for instance, or deepen just the sky.
Meanwhile, Gundotra said Google+ also will be adding a new feature called "Communities," which makes the "hangouts" feature of the social network into permanent locations.
"Google+ has always been a place to crowd around common interests and meet new people. What's been missing, however, are more permanent homes for all the stuff you love: the wonderful, the weird, and yes, even the things that are way out there. With Google+ Communities there's now a gathering place for your passions," Gundotra added.

Friday, 30 November 2012

how to create strong and secure password

It may happens you may spend an hour or two regulary everyday on Internet,but obivous you  will use few more social networking sites,few more e mails to cloud storage,few more net banking,and so on....so this would definately requires a password. People in this case would mostly use same password for all the accounts,

Now problem arise that this would be kind of spell disaster to you.
It may happens that one of your account is hacked,all other associated online accounts and properties would be at risk.


Therefore it is recommended to use a strong and long password.

What does good and strong password means??

-> 7 to 8 characters long
->avoid names,birth dates,common nouns,etc
->include uppercase and lowercase combined...in special case it is preferable to use symbols too.
->use numbers too
->seperate two different words with a number...example: hello123bye
->to make stronger enough use digit 0 instead of letter 'o' hel00123bye
->now suppose you have different accounts then you can go for the same password but with a minor changes..for example
    facebook: Fhell00123bye
    Gmail: Ghell00123bye
    Yahoo: Yhell00123bye
->If you still are not satisfied you can go for free password-making services such as passwordsgenerator. net or www. strongpasswordgenerator. org

WhatsApp reportedly fixes status error bug, warns users of hoax messages


WhatsApp has reportedly fixed the glitch that sprung up earlier this week that showed “error:uknown” as contact status. According to reports, the glitch had affected thousands of users worldwide.
WhatsApp acknowledged the glitch on Twitterand said it was working on resolving soon-ish. Here's WhatApp's message on Twitter:
The bug was followed by a hoax message urging people who use the app to forward a message to all their contacts or face having their accounts deleted.
The viral message is from the CEO of WhatsApp, one 'Jim Balsamic', and reads, "We have had an over usage of user names on whatsapp Messenger. We are requesting all users to forward this message to their entire contact list.
"If you do not forward this message," the message continues, "we will take it as your account is invalid and it will be deleted within the next 48 hours.
"Please DO NOT ignore this message or whatsapp will no longer recognise your activation," the fake communcation orders, warning, "If you wish to re-activate your account after it has been deleted, a charge of 25.00 will be added to your monthly bill."
According to Naharnet, WhatsApp has assures its users on circulated messages calling them hoax. The site quotes a Whatsapp blog as saying “We have been getting a lot of emails and questions from you about a chain letter message circulating in our network. Please understand that this is a hoax and there is no truth to it.
“While we are flattered that we made it Hoax Slayer we would rather work on cool new features instead of debunking silly stories like these.”
It's not the first time such hoax message has surfaced. WhatsApp confirms on its blog that a very similar message went viral back in January. According to Cnet, the spam appears to have started “BlackBerry messaging service BBM -- hence Jim Balsamic, a vinegar-flavoured corruption of Jim Balsillie, former co-CEO of RIM”. Check out the past messages that have done rounds of WhatsApp

Thursday, 29 November 2012

Some Useful Java Links

Readers,
          These are some useful java links...A single line description has been tagged for your reference.



Wednesday, 28 November 2012

Download TC 3

Turbo C Free Download


Step 1
        Download the file from here

Step 2
        Extract the zip folder

Step 3
        Click on Install.exe in tc3 folder

Tuesday, 27 November 2012

Diffie Hellman (Java)

Diffie Hellman: Receiver

import java.io.*;
import java.net.*;
import java.util.*;

public class DeffieHellmanRcv {

DatagramSocket theSocket = null;

int serverPort = 9999;
Scanner sc;
int y,g,p,r2;

DatagramPacket theRecievedPacket;
DatagramPacket theSendPacket;
InetAddress clientAddress;
int clientPort;
byte[] outBuffer;
byte[] inBuffer;

public DeffieHellmanRcv()
{
try {
// create the server UDP end point
theSocket = new DatagramSocket(serverPort);

System.out.println("Bob");
} catch (SocketException ExceSocket)
{
System.out.println("Socket creation error : "+ ExceSocket.getMessage());
}
}

public void keyGen()
{

sc=new Scanner(System.in);

System.out.print("Enter p=");
p=sc.nextInt();

System.out.print("Enter g=");
g=sc.nextInt();


System.out.print("Enter y=");
y=sc.nextInt();

r2= (int)(Math.pow(g,y)) % p;
//System.out.println("R2= "+r2);

}

public void send()
{
try
{
String message =r2+"";
System.out.println("Message Send:"+message);
//System.out.println("Message  sent: "+message);
outBuffer=message.getBytes();

System.out.println(message);
// send some data to the client
theSendPacket = new DatagramPacket(outBuffer, outBuffer.length, clientAddress, clientPort);
theSocket.send(theSendPacket);
}

catch (Exception e)
{
System.out.println("Error with client request : "+e);
}
// close the server socket


}

public void receive()
{


// create some space for the text to send and recieve data
outBuffer = new byte[500];
inBuffer = new byte[50];

try
{
// create a place for the client to send data too
theRecievedPacket = new DatagramPacket(inBuffer, inBuffer.length);

// wait for a client to request a connection
theSocket.receive(theRecievedPacket);
//System.out.println("Client connected");

// get the client details
clientAddress = theRecievedPacket.getAddress();
clientPort = theRecievedPacket.getPort();



String message = new String(theRecievedPacket.getData(),0,theRecievedPacket.getLength());


String sendData = message+"";
System.out.println("Message Recieved: "+message);
System.out.println(sendData);
outBuffer = sendData.getBytes();


int k2=(int)(Math.pow((Integer.parseInt(message)),y))%p;


System.out.println("\n\nk2= "+k2);

}
catch(Exception e)
{
System.out.println("E2"+e);
}

}





public static void main(String[] args)
{
DeffieHellmanRcv dr = new DeffieHellmanRcv();
dr.keyGen();
dr.receive();
dr.send();
}
}

Download the code from here