“Your browser cannot support how fast and awesome GT Racing: Motor Racing” error on Google+

This is really an awesome game to play but Is this error ruining all your excitement???

GT Racing

GT Racing

 Remember, every problem has a solution: 
1. Close all the running instances of Google Chrome.
2. Goto your Terminal and create a new instance.
google-chrome –ignore-gpu-blacklist


2011 in review

The WordPress.com stats helper monkeys prepared a 2011 annual report for this blog.

Here’s an excerpt:

A San Francisco cable car holds 60 people. This blog was viewed about 3,300 times in 2011. If it were a cable car, it would take about 55 trips to carry that many people.

Click here to see the complete report.


Geeky witty T-shirts quotes


How embedded YouTube videos can drive more traffic to Google+

These days most of the web-pages have youtube videos embedded but there is no easy way to share it on Google Plus. So, I believe that this is the salient way to drive more traffic to Google+ via embedded YouTube videos anywhere on the web even on Facebook  :-)

Hail Google+ Team

Youtube and G+

Youtube and G+


Gmail can be more awesome!!!

Hailo Gmail Team,

I have been using Gmail since many years now and I can not resist myself saying that I love it like Hell. You can imagine my love by the fact that I have imported my office emails into my gmail account even though my employer does not allow me. Like others I really admire the new look unveiled recently, but too much space taken by search bar and toobar nettles me (as well as others hopefully).

Gmail now looks more social with the new design. Hail Gmail Team.

Here is my version of Gmail+.

I’ll be thrilled If Gmail Team implements it.
I am writing a chrome extension for this. Stay Tuned!!!

Updates:  

Meanwhile, I have written a chrome extension which is available in the chrome webstore. If anybody is interested to try it out.

download it from here.

If you found any issues, please feel free to send in mail at amit[dot]2006[dot]it[at]gmail[dot]com


A Tribute to Steve Jobs

Three apples have changed the world…

The one offered to Adam who ate it.
The one that fell on Newton who did not eat it.
And the one of Steve Jobs which was already partially eaten.
No combinations left. No another Steve.

R.I.P. Steve Jobs.

    

We won’t miss you because APPLE itself will never let us do so!!!


Transformers lead actor Shia LaBeouf got his duplicate in India

Shia labeouf

Shia Saide LaBeouf is an American actor who starred as the leads in Disturbia and Transformers

Paras Arora

Paras Arora is to essay the legend role of Shivaji in Colors recently started historical drama Veer Shivaji


How to load content in jQueryUI accordion dynamically

Hey guys,

Do you aware of the fact that jQuery UI allows to load content dynamically for tabs but not for accordion?. So here I came up with a simple solution. You just have to pass a url in href attribute for each accordion header as shown below:

<div id="accordion">
	<h3><a href="ajax1.html">Section 1</a>>/h3>
	<div>
		<p>
		  Loading... Please wait.
		</p>
	</div>
	<h3><a href="ajax2.html">Section 2</a></h3>
	<div>
		<p>
		  Loading... Please wait.
		</p>
	</div>
</div>

Accordion UI provides many callback functions but we are going to use one of them, the most important callback function,  change which gets called when you click on any accordion panel to open it. We are going to use it to load content using AJAX.

<script>
  $(function() {
     $( "#accordion" ).accordion({
        collapsible: true,
        active : false,
        change: function (e, ui) {
          $url = $(ui.newHeader[0]).children('a').attr('href');
	  $.get($url, function (data) {
	     $(ui.newHeader[0]).next().html(data);
          });
        }
     });
  });
</script>

You can also download the code from github. Happy Coding :)


Turn Google+ Into Facebook without installing any extension or addon

How to turn Google+ into Facebook without installing any extension or addon?
Ans: Press Ctrl+minus once or twice (on keyboard)

P.S. Works in all browsers :-P


Way to Invite someone on Google+

Way to Invite someone on Google+
1. Add a new person’s Gmail Id into any of your circle
2. Share a message from home screen by selecting that circle
3. Those who are not on Google+, would get an invitation


Follow

Get every new post delivered to your Inbox.