Posts

Showing posts from January, 2015

WhatsApp for Web

Image
Now WhatsApp users have the ability to use the app mirrored on a web browser. The web client is simply an extension of a phone: the web browser mirrors conversations and messages from a mobile device - this means all the messages are still live on the phone.     Supported only on Chrome Browser To connect web browser to the WhatsApp client, simply open https://web.whatsapp.com in your Google Chrome browser ( Chrome only supports this ) . One will see a QR code. Simply scan the code inside of WhatsApp, and the user is ready to go.  Your phone needs to stay connected to the internet for the web client to work. For thisthe latest version of WhatsApp must be installed on your phone. Unfortunately for now, the feature is not available for iOS users due to Apple platform limitations. With more than 600 million users, WhatsApp is one of the largest chat clients in the world, and the app's growth has fueled rumors concerning the company's next move.  The Messaging Center Notifications

Windows 10: The Next Chapter

Image
Holo Studio in Action Holographic computing is here, enabled by Windows 10 Surface Hub in Action Surface Hub Xbox Spartan : The new Browser Spartan : The new Browser Spartan : The new Browser 25 languages supported in Windows 10  Contacts Messaging Music App Photos App Settings on Windows Phone Notification Center Windows 10 Start Screen on Phone Windows 10 for Phone Calender App : Universal Office PowerPoint Cortana on PC: Notebook Cortana on PC Cortana on PC Cortana on PC Cortana on PC Cortana on PC Similar experience on all devices Settings as an App The Start Menu Windows 10: The New Look Joe Belfiore shows up Windows 10  Photo Courtesy: TheNextWeb Story: Microsoft

Java Basic Syntax

Image
When we consider a Java program, it can be defined as a collection of objects that communicate via invoking each other's methods. Let us now briefly look into what do class, object, methods and instance variables mean. ·          Object - Objects have states and behaviours. Example: A dog has states-colour, name, and breed as well as behaviours -wagging, barking, and eating. An object is an instance of a class. ·          Class - A class can be defined as a template/blue print that describes the behaviours/states that object of its type support. ·          Methods - A method is basically behaviour. A class can contain many methods. It is in methods where the logics are written, data is manipulated and all the actions are executed. ·          Instance Variables - Each object has its unique set of instance variables. An object's state is created by the values assigned to these instance variables. First Java Program: Let us look at a simple code that would print the words Hel