Archive
November, 2011
Browsing all articles from November, 2011
1

Google Wave Sunsetting in 2012

Google Wave

Google has finally announced exactly when it plans to stop google wave. After January 31,2012 Google Wave is read-only. and Google wave is shut-down after April 30, 2012 Below mail we got from google wave Team.

Dear Wavers,

More than a year ago, we announced that Google Wave would no longer be developed as a separate product. At the time, we committed to maintaining the site at least through to the end of 2010. Today, we are sharing the specific dates for ending this maintenance period and shutting down Wave. As of January 31, 2012, all waves will be read-only, and the Wave service will be turned off on April 30, 2012. You will be able to continue exporting individual waves using the existing PDF export feature until the Google Wave service is turned off. We encourage you to export any important data before April 30, 2012.

If you would like to continue using Wave, there are a number of open source projects, including Apache Wave. There is also an open source project called Walkaround that includes an experimental feature that lets you import all your Waves from Google. This feature will also work until the Wave service is turned off on April 30, 2012.

For more details, please see our help center.

Yours sincerely,

The Wave Team

2

Faster Way To Import Mysql Dump

How to import large mysql dump to database? or Fastest mysql dump importer
Hey guys, it is difficult to import large mysql dump file to database. See below for how to import mysql dump using only one file.

Step 1: Download dump file. (e.g. demodb.sql).
Step 2: Change connection, username, password, database variable values.
Step 3: Change dump file name with proper path.
Step 4: Run this page.

Import mysql dump file code.

'; print mysql_error(); $temp = ''; $count = 0; while($line = fgets($file)) { if ((substr($line, 0, 2) != '−−') && (substr($line, 0, 2) != '/*') && strlen($line) > 1) { $last = trim(substr($line, −2, 1)); $temp .= trim(substr($line, 0, −1)); if ($last == ';') { mysql_query($temp); $count++; $temp = ''; } } } echo mysql_error(); echo "Total {$count} queries fire(s).\n"; echo "Enjoing this fastest mysql dump importer..\n"; echo '

';
?>

Enjoying this fastest mysql dump importer.

Comments Off on Twitter Updates for 2011-11-16

Twitter Updates for 2011-11-16