All posts by Udit Malhotra

Udit Malhotra is fond of Technology, Music, Event Management and Social Media. He has studied in-depth about Mobile & Desktop Platforms and Software Applications thereof. A keen Learner, he draws inspiration from his work experience from a few small businesses and leading global organizations including DELL where he has worked directly at the front-end with Consumers of Technology Products. He enjoys sharing his knowledge by helping other Users. You can also find him on Google+ ! +Udit Malhotra

LG Optimus devices to get an upgrade to Android Ice Cream Sandwich

Earlier during the day LG’s Official Facebook Page posted its initial models that will be eligible to Android Ice Cream Sandwich 4.0 Upgrade. The Optimus 2X, Optimus Black, Optimus 3D and Optimus LTE were among the upper end phones to be a part of upgrade program. The manufacturer also promises to evaluate the compatibility, features and performance of the ICS OS across multiple LG smartphones and plan to upgrade as many of them.

A complete list of models eligible for the upgrade would be available by December this year, although there is no specific time frame revealed by LG as to when the update would be released.

5 Positives and 10 Negatives of the Nokia E5

Pros:

1. Very Feature Rich compared to other E series phones like the older E63 and even the newer Nokia upper-end model E6 (except there’s No Touch in E5).

2. The Best Symbian OS version in its class till date.

3. Excellent Camera with Flash. However, Not with Auto Focus.

4. Nice Grip and overall Dimensions of the Phone. Convenient for Shirt Top Pocket.

5. The Nokia Suite aka OVI Suite aka PC Suite Software has appreciably improved.

Cons :

1. Flimsy Plastic Panel around the Navigation Key above the QWERTY Keypad. However, there is nothing wrong with the Navigation Key.

2. Home & Messaging Keys get Stuck in the 6 Key Panel and Tilt upon pressing.

3. The entire 6 Key Panel above the QWERTY Keypad makes Squeaking Sounds upon pressing towards the Display.

4. The Display is Vivid but with 256K Colors unlike 16 Million Colors Display on other Popular Nokia Phones. Cost Cutting by Nokia.

5. The QWERTY Keypad is slightly different from E63. Takes a while for an E series user to migrate. The transition is worse for someone using an E63 or an E6.

6. The SIM Card is placed under the Battery and can be inserted/ removed only after removing the Battery. Inconvenient for Users who do have to change SIMs often.

7. The SD Card is also placed under the Battery and can be inserted/removed only after Battery Removal. This is Very Inconvenient.

8. The SD Card has to be inserted/ removed in or from an Obsolete Mechanical Push/Pull Tray. The Mechanical Tray can get Permanently Damaged, if the SD Card  is removed and inserted frequently.

9. A very small ~4″ long USB Cable has been provided, it is Very Impractical specially for those Users who connect the Phone to Front USB Ports on their Desktop PCs. Laptop Owners have to place the phone right next to the Laptop. It is Not Convenient to Answer/Make Calls with such a small USB cable connected to the Laptop. Nokia, Do Cost Cutting Elsewhere.

10. Don’t Recommend buying the very attractive looking Original Nokia Silicon Cover for this Phone. When placed on a Table, the E5 rocks on the left and right in it, due to a protruding Rectangular Silicon block with Nokia printed on it.

For Nokia Loyalists, in this price range the only Phone which does not have the above mentioned Negatives is the older Nokia Model E63. It is Most Stable and  Most Reliable albeit has lower Specs.

Till a better Symbian QWERTY Phone is launched by Nokia in this Price Range…Like the E5 or Sulk or Move-On to Android based Smartphones 🙁

WhatsApp Update For Symbian Users

A few days back Nokia Symbian Users got Support for Smileys. Although the feature had been an integral part for Android, Blackberry, IPhone Devices, Symbian seemed to be last one in the league to be updated.

Symbian Anna and Belle users might not able to use the application until they update the same, as a notification would appear to update the app before using it.

Users can download the latest copy of the application either from Nokia Store or from www.whatsapp.com

Happy Messaging ! Keeping Chatting 🙂

Integrating Facebook Social Plugins to your WordPress Blog [How-to]

WordPress is among the worlds best blogging tools, allowing users with a fully customizable environment and an easeful backend interface for content administration and management.

While building a blog or a website on WordPress the user has many options to integrate social features into one’s site which might include leading platforms like Google +, Facebook, Twitter and so on.

We discuss integration of Facebook Social Plugins, which will allow the site to indulge more with its users allowing them to comment, discuss and share what they like in a user-friendly manner. One can come across various plugins available across wordpress.org plugin directory or one can even directly integrate the WordPress Theme as well.  Depending on what you find easy you can implement the same.

Facebook Social Plugins

Social Plugins can allow your site users to comment on posts, like and share them on Facebook. The ones that are majorly used include:

  • Comments
  • Like Box
  • Like Button

Facebook Application Creation

To use these plugins we will first require the creating of a Facebook application that would allow cross platform communication between Facebook and our website. To create an application we go to: https://developers.facebook.com/apps. Choose the option on right corner “Create New App”, upon pressing the button a pop-up window appears that allows the creating on a new application.

As shown in the image above we choose a Display Name for the application this can be your Website Name. App Namespace defines how the application would be known internally within Facebook, once done with the creation of the application you will have to adjust some application settings. The user is automatically directed to a summary page for the application. The summary page has various sections out on which will be currently just two of them.

Under basic info section change we change the App Domain value to www.Your-Website.com, going further we tell Facebook as how our application works with Facebook. We do so by highlighting the Option Website and then again entering our website address, once all done we press save changes.

Social Plugin Implementation

From the above plugins lets consider the Comments Plugin to be integrated as a part of your themes code.  Go to: https://developers.facebook.com/docs/reference/plugins/comments/

When the page opens you will see a box which would be identical to the image above, fill in the required fields include your website address, posts to display and color type you would like and click on Get Code. This generates a code that can be implemented within various pages of your site.

Now we are close to the implementation of the plugin, to finalize the implementation we need to follow a two-step process and we are done.

First we need to implement JavaScript SDK into the theme body tags, body tags can be found both in header.php and footer.php file of your WordPress Themes. The ideal placement area lies just after opening body tag. The JavaScript SDK Code is as below:

<div id=”fb-root”></div>

<script>

window.fbAsyncInit = function() {

FB.init({

appId      : ‘YOUR_APP_ID’, // App ID

channelURL : ‘//WWW.YOUR_DOMAIN.COM/channel.html’, // Channel File

status     : true, // check login status

cookie     : true, // enable cookies to allow the server to access the session

oauth      : true, // enable OAuth 2.0

xfbml      : true  // parse XFBML

});

// Additional initialization code here

};

// Load the SDK Asynchronously

(function(d){

var js, id = ‘facebook-jssdk’; if (d.getElementById(id)) {return;}

js = d.createElement(‘script’); js.id = id; js.async = true;

js.src = “//connect.facebook.net/en_US/all.js”;

d.getElementsByTagName(‘head’)[0].appendChild(js);

}(document));

</script>

In the above-mentioned code we will replace YOUR_APP_ID with the App ID generated in the comments code, for those of you who not aware of what App ID, check the highlighted part in the code below.

<div id=”fb-root”></div>

<script>(function(d, s, id) {

var js, fjs = d.getElementsByTagName(s)[0];

if (d.getElementById(id)) {return;}

js = d.createElement(s); js.id = id;

js.src = “//connect.facebook.net/en_US/all.js#xfbml=1&appId=119352884837162“;

fjs.parentNode.insertBefore(js, fjs);

}(document, ‘script’, ‘facebook-jssdk’));</script>

The second element to be changed from the JavaScript SDK is WWW.YOUR_DOMAIN.COM/channel.html, here we create an html file named as channel.html, and the purpose of creation of this file is to resolve cross-domain communication issue with certain browsers. The code that goes into the file is just one single line, which is described below.

<script src=”//connect.facebook.net/en_US/all.js”></script>

One the file is created upload to the root directory of your webhosting and change the value in the JavaScript SDK.

The Last step to complete the implementation is to edit the comments.php file of your WordPress theme and paste the code mentioned below.

<div class=”fb-comments” data-href=”YOUR-WEBSITE.COM” data-num-posts=”2″ data-width=”500″></div>

Just replace “YOUR-WEBSITE.COM” by your Website URL and you are done.

Alternatively if you are a newbie and don’t want to code or get confused with the same you can try popular WordPress Plugins Like DISQUS, Intense Debate Etc.