We have released eBook useful for learning Software Testing and QTP (Quick Test professional), a Test automation tool.
This eBook will cover below topics.
Importance of Software Testing
Basics of Quality Assurance (QA) in Software Development
Writing Good Test Cases and Finding Bugs effectively
Tips and Tricks for doing AdHoc Testing
Best practices in Software Testing
Importance of Software Test Automation using tools such as QTP
Need of Domain Knowledge for Software Testers
Software Testing Questions and Answers
Introduction to QTP
How to Learn QTP?
Understanding Object Repository
Understanding Action Iteration and Test Iteration
Required Steps/Processes in QTP Automation
Best Practices in QTP Automation
Scheduling QTP Script Execution
Basics of vbscript
Links Useful for learning QTP
KeyWord Driven Testing and Framework in QTP
Disadvantage of Descriptive Programming in QTP
Tips for doing effective QTP script Development
QTP Questions and Answers
You can get this eBook forFreejust by sending the link(http://qualitypointtech.net/ebook/index.php) to more than 50 people with cc to rajamanickam.a@gmail.com. I will send the eBook once after getting the email. Make sure that you are sending email to only valid email ids without any duplicates.
Or, you can buy this ebook from here.
Click here to buy an eBook for learning Software Testing and QTP Automation
You can discuss about this eBook in our forum
We had sent below News Letter to our email contacts. If you want to receive future news letters you can send your email id to qualitypointmail@gmail.com.
Dear All,
Greetings fromQualityPoint Technologies.
Find below the updates from us.
- We have done more than60 projectssuccessfully for our clients. Refer our website to see some of thesample projects.
- Most of the projects are done using c#.net, php,mysql,Javascript,ajax,css and html.
- We extensively used many php modules such asmod_rewrite, gd2 andcurl.
- Done complex integration/conversion of Content Management System (e.g Joomla), Forum (e.g phpBB), Photo Management System (Gallery)
- Done many challenging web scrapping and autoposting projects usingwebharvest, c# webbrowser control and php curl.
- Effectively utilized paypal API and Twitter API in our projects.
- Handled Session hijacking prevention code and exceptions properly.
- Used to test the websites in different web browsers and versions.
Apart from doing projects for our clients, we are taking initiatives to do our own products.
- We are usingTimesheet developed by us.
- Many of our articles (e.g articles aboutQTP,Software Testing) inGoogle knolgot many awards such asTop Pickaward andTop viewedaward.
- Published many useful articles in ourblog so that our blog is gaining good Alexa traffic rank in short period. And many of the pages in our blog started gaining Google Page Rank.
-Delivering latest Newsin different topics aswebpage,tweetsandsms. And we are working hard to avoid any down time and for improving quality and timely delivery of the news.
- Gaining knowledge and experience in optmizing Google AdSense and AdWords.
- Gaining knowledge in both on-page and off-page SEO.
As any other Start-up company, we are also facing many challenges. Despite these challenges we are able to move towards achieving our visionwhile keeping our values.
We have released free widget for showing Christmas Quotes in your blog or website.
You can refer our Christmas blog to know the steps required for using this free widget in your website.
We are working on to release similar widget for showing News and motivational quotes. You can share your feedback or suggestions for improving our widgets thro' the comment section.
We can restrict the unwanted AdSense Ads using competitive filter in AdSense Setup by specifying domain/url of the Ads.
If we want to restrict Ads of particular category then we can use Category Filter option available in Ad Review Center Category filter can be reached from adsense Setup->adReviewCenter It will show below detail for each Category.
% Recent Earnings % Recent Ad Impressions
We can filter the Categories which are having low earnings but having high impressions. It will help to increase AdSense revenue. And also, it will help to show only relevant ads for our readers.
This Christmas news will be automatically collected from RSS feeds of many Chrismas specific websites and by searching "Christmas" in RSS feeds of many social booking marking sites such as Digg.
So, you can see the popular and latest Christmas related news in one place.
You can contact us if you want to include any of your Christmas related RSS Feeds.
Apart from this new blog, we have collected a Christmas knol collection which has more than 55 Christmas related knols. If you know any other good Christmas related knol, you can submit it into our knol collection.
Most of the stores including online stores are providing discounts during this Christmas holiday season. You can make use of the Hot deals.
We are using below function for getting webpage content using curl module of php.
function getmethod_request($ch,$ckfile,$urlValue) {
curl_setopt($ch, CURLOPT_COOKIEFILE, $ckfile); //The name of the file containing the cookie data. The cookie file can be in Netscape format, or just plain HTTP-style headers dumped into a file. curl_setopt($ch, CURLOPT_URL,$urlValue); // The URL to fetch. This can also be set when initializing a session with curl_init(). curl_setopt ($ch, CURLOPT_COOKIEJAR, $ckfile); // The name of a file to save all internal cookies to when the connection closes. curl_setopt($ch, CURLOPT_HEADER,1); // TRUE to include the header in the output. curl_setopt($ch,CURLOPT_AUTOREFERER,1); // TRUE to automatically set the Referer: field in requests where it follows a Location: redirect. curl_setopt($ch, CURLOPT_RETURNTRANSFER,1); // TRUE to return the transfer as a string of the return value of curl_exec() instead of outputting it out directly. curl_setopt($ch, CURLOPT_POST,0); //TRUE to do a regular HTTP POST. This POST is the normal application/x-www-form-urlencoded kind, most commonly used by HTML forms. curl_setopt($ch, CURLOPT_FOLLOWLOCATION,1); return $data = curl_exec($ch);
}
It worked fine for many websites.
But it started giving "500 Internal Server Error" message when using it for one specific website.
I came to know that some web servers will block the requests from non-identified user-agents (browsers).
We have resolved this issue by including below lines in the function for spoofing it as FireFox 2.0.
$useragent="Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.8.1.1) Gecko/20061204 Firefox/2.0.0.1"; curl_setopt($ch, CURLOPT_USERAGENT, $useragent);
Find below the latest articles for learning web development. These articles are getting displayed here by combining the data from different social bookmarking sites such as Digg. This articles list will be updated automatically using yahoo pipes and feedburner.
In PHP, we will be requiring to remove the last Character from a string variable.
For example, consider below query.
select * from employees where employee_id in (1,2,5,7)
Assume that the employee_id values 1,2,5,7 should be dynamically collected from a webpage provided with checkboxes to select some employees from a list of employees.
Using foreach loop we can create this employee_id string. But it will look like as below $employee_id_string="1,2,5,7,";
You can note the last comma.
Error will be thrown if we use this as it is
select * from employees where employee_id in ($employee_id_string)
PHP is having various functions for debugging a variable. Seeing values stored in an array or in any other object is important for doing any troubleshooting in a code.
Let us see some of them such as var_dump(), print_r() and var_export().
The var_dump function displays structured information about variables/expressions including its type and value. Arrays are explored recursively with values indented to show structure.
print_r() displays information about a variable in a way that's readable by humans. array values will be presented in a format that shows keys and elements. Similar notation is used for objects.
And it seems var_dump($someobject); shows only public properties , but print_r($someobject) shows all properties (explicitly identifying protected/private properties)
It was announced by project scientist Anthony Colaprete "I'm here today to tell you that indeed, yes, we found water. And we didn't find just a little bit; we found a significant amount" -- about a dozen, two-gallon bucketfuls, he said, holding up several white plastic containers.
Michael Wargo, chief lunar scientist at NASA headquarters in Washington, said the latest discovery also could unlock the mysteries of the solar system.
We can see the images from LCROSS (Lunar CRater Observation and Sensing Satellite)
NASA found water on the Moon by analyzing the impact data gathered by 'bombing' moon using LCROSS.
"We've got more (water) than we thought, maybe a lot more than we thought, so we're really quite excited about that," said Luke Sollitt, assistant professor of physics. The big question to answer next is how water is distributed on the moon.
Sollitt said he envisioned sending an unmanned lunar rover to dig in the soil for better data on how much water is there. "We have a whole new branch of science that we can start to explore," he said. Astronauts could use water on the moon for survival in space and to make rocket fuel at a lunar base, he said. Telegraph explains the significance of this discovery as below.
Nasa has been so keen to find water on the Moon because it brings the dream of a permanent lunar base one step closer. If water exists in the quantities that Nasa now believes, it could be drunk by astronauts, turned into oxygen to make stations inhabitable and – most excitingly – converted into fuel. The Moon could then become the space equivalent of a service station – acting as a staging post for manned missions to Mars.
"The presence of significant quantities of ice on the lunar surface catapults the moon from an interesting waypoint to a critical launching pad for humanity's exploration of the cosmos," said Peter Diamandis, CEO and chairman of the X Prize Foundation, which is running a $30 million contest for private moon rovers.
According to danamackenzie.com, LCROSS found lots of other volatile elements in the debris plume and/or the vapor cloud released by the impact. These may include:
carbon dioxide
methane
methanol
ethanol
ammonia
other organic molecules
There are lot of discussions and arguments going on about this announcement by NASA, whereas Chandrayan I of India already has informed about Water on Moon. Actually a US-built instrument on the Chandrayaan-I spacecraft already detected traces of water on the lunar surface.
Water on the moon could boost Marshall Space Flight Center programs to explore the lunar surface, asteroids or even Mars.
Find below some comments/opinions/discussions from people.
After teaching middle school science students for years that there is no water on the Moon, I am only too happy to apologize for my error!
This is probably the most expensive water we've ever found. But, if we go to the moon, it could turn out to be among the most valuable as well.
Any dollar spent on setting up a permanent colony on the Moon is of course better than a dollar spent on occupying Iraq.
Discovery of frozen water in the moon's permanently shaded polar craters could open the door to human colonization of the moon and beyond.more..
i'm not happy about this plan to bomb the moon. could we reallocate the money to instead come up with creative ways to use water more wisely on earth? just saying...
Could this also mean (since water contains oxygen) that we possible could breath without space suits?
This is indeed intriguing. All this talk about the Indian's discovering water and then some saying the American supplied the instruments for Chandrayan. The ISRO mission discovered tangible evidence for water in some locations on the moon. The following U.S mission narrowed in and confirmed it. It was a team effort. That's the problem with people in South Asia these days they are so embroiled in promoting their selfish agendas they ruin it for the few that actually put humanity as a whole in front of their personal interests. Just calm down and be glad that we are making progress as a planet.
Chandrayan saw water only along the thin surface layer of the Moon. It detected water bound to particles. LCross kicked up measurable water vapor and unbound amount. This indicates ice. Chandrayan and LCross complements each other and NASA acknowledges publicly as such.
This is very typical of US news, India's ISRO program had found the existence of water first. Yet when NASA takes a lot at it and says they found water on the Moon, it becomes their discovery because of the way the information is distributed by news sources. This could also be a part of the reason why many foreign people hate the US
The probe on the ISRO craft that found the water WAS made by NASA, so obviously NASA had reason to claim credit for it's own discovery. Get your facts straight before accusing them of deceiving the public.
I got news for you, Chandrayaan mission already found water on the moon. So what's the difference between Chandrayaan-1 and Nasa mission? Is Nasa grabbing the spotlight from the Indian mission that was done last september? Don't tell us what we already know.
How many hundreds of billions or even trillions of dollars are to spent on getting people on an airless rock or a low-gravity, toxic-atmosphere desert rock with 300 mph duststorms? To what end? Before you plan on having a purely curiosity-based waystation on the path to Mars, perhaps you need to figure out how to sustain a population of billions on Earth without destroying the biosphere of Earth, first.
The use would be to obtain water, oxygen and hydrogen for drinking, breathing and generating power respectively for further space exploration, because the moon has 1/6 the gravity that earth has and therefore launches from the moon would require less propulsion than from earth. I think both NASA and Obama think we need another mission because a current mission to the moon may reveal alot of very embarrassing lies and deceptions. None of this adds up. These knuckleheads are trying to get us to buy that they need to "reinvent" the wheel to get to the moon. Nonsense.
Can we PLEASE stop littering across the universe and calling it discovery? Its like humans have this desire to throw aluminum trash throughout space.
OK, so there's water, and where there is water there are fish. Alien fish. Now we all know that the Icelanders and Japanese are going to say that this stuff is more than 200 miles "offshore" but I, for one, will not stand idly by while lunar whales are harvested for so-called "scientific purposes" while actually being used to manufacture ineffective aphrodisiacs. And yes, I know perfectly well that whales are not fish, but you know perfectly well what I mean. So lets all stop bickering among ourselves and do something about this imminent biological catastrophe before it's too late.
79 Million worth it? You bet!!! How some people are against space exploration i don`t know. Far Better then giving 700 billion away. These kinds of research missions certainly should have been done more then decade ago. Just imagine the 700 billion spend on our first US Mission to MARS. You want to stimulate the Economy, Instant success. And what about building Telescopes large enough they could take the first quality pictures of Earth like Planets. With the knowledge and experience gained the Human species would never be the same. Space Research & Exploration FTW!!!
Wake up you people, this is the USA seeking ownership of the moon. should they discover there is oil on the Moon, you can bet they can lay claims to owning it. How come though, that if they supposedly landed on the moon back in 1963, that they haven't done so since then. It is one of the biggest lies told.
NASA needs to have its entire upper management replaced and needs to have the national space technology mission defined for it as Earth-focused.
well, you can make a moon base there, and from there you can do lots of things, besides looking for life. and here's a list : helium-3 extraction for fusion, space tourism, all sorts of research, mythbusters special editions, space paintball, alien treasurehunts and so on and so forth
Who cares if there is water on the moon? Or on Mars? Or anywhere else? How is that going to be of any value to anyone? The space program is one of the biggest wastes of money.
From an economic point of view, water on the Moon is the equivalent of finding “gold in the hills of California.” ...more
Forget about sending people to the moon to drink the water there, and instead spend the $3 billion a year on improving the drinking water here on earth. ...more
Didn't we land on the moon a while back? How did we miss "significant" amounts of water? I'm just wondering how accessible it is.
Mars has water. Various moons in the solar system have water. Water isn't that uncommon. And nothing says water = life.
US is pretty good at repeating discoveries done by other countries (especially developing like India) in the name of testing and then tagging them as DISCOVERED BY US. The same happened with this one.
This is huge. I repeat, HUGE. With several hundred kilograms of water observed in the ejecta, who knows how much more is below the surface? Congratulations to the visionary scientists and engineers at NASA.
Yeah how about you get me a cup of moon water...then you get your stinkin peace prize.
Lastly, ask yourself what the first letter A in NASA stands for and then ask yourself what NASA has done for that A. Zilch in my view.
Doesn't matter if you can extract oxygen for atmosphere if: 1. The moon doesn't have enough gravity to hold an atmosphere. 2. There isn't eight nitrogen molecules for every oxygen molecule. (Most of our atmosphere is nitrogen) The hydrogen and oxygen would be useful for fuel. We're talking about rockets from the moon to other planets here, not breathing. We can already artificially recycle air to breathe.
Beyond water, the moon is suspected to be packed with natural resources which could be used locally, or even brought back to Earth if of high enough value. ...more
I mean, come on, everyone. Humans live on Earth. Remember? We don't live on Mars. We don't live on the Moon. We don't live on a moon orbiting Jupiter. We live on Earth. And we always will, and it is probably best to focus our political and economic initiatives on making that a longer-term proposition than it currently seems to be.
Water on the moon. Blood on the earth. Tears on the Throne. We are not alone. ...Read full poem
It seems Chandrayaan discovers Magnet also on the Moon. Let us wait and see whether NASA confirms this new also.
physorg.com explains how Moon produces its own water as below.
The Moon is a big sponge that absorbs electrically charged particles given out by the Sun. These particles interact with the oxygen present in some dust grains on the lunar surface, producing water. This discovery, made by the ESA-ISRO instrument SARA onboard the Indian Chandrayaan-1 lunar orbiter, confirms how water is likely being created on the lunar surface.
Google celebrates discovery of Water on the Moon by showing Google Doodle representing Water on the Moon on home page of Google.com.
You can follow @nasa to get updates as tweets from NASA.
Google has selected a fourth standard student's doodle for showing on Home page of Google India (http://google.co.in)
Google has selected this Doodle by arranging Doodle competition for the Indian school students studying from Class 1 to Class 10th.
The contest was judged by a panel of judges that comprised renowned cartoonist N. Ponnappa, artist Raghava K.K. and the faculty of the National Institute of Design, Ahmedabad.
The Winning Doodle was drawn by Puru Pratap Singh, a 4th standard student living at Gurgaon.
Theme of his Doodle is "My India- full of life".
He has explained his Theme as below.
India is a country which has a blend of thousands of traditions and all religions like Hinduism, Christianity, Sikhism and Islam. It has developed a lot in the past few years. The discovery of water on the moon by the Indian scientists is a proof to this fact. The Indian culture is as vibrant as the colours of the peacock. Kashmir, the crown of India, is as serene as the peace bird and as pure as the lotus. We, the Indian citizens are also trying to fulfill Mahatma Gandhi’s dream of educating each and every Indian child.
Find below his Doodle. Let’s open up the Google home page on Tomorrow(November 14) with this doodle.
Besides having his doodle featured on the Google India homepage all day on Children's Day, Puru Pratap Singh has also been awarded a laptop computer and a t-shirt with his doodle. And, Google provides Rs.100,000 technology grant for his school.
Google India MD Shailesh Rao said, "This was first ever Doodle competition in India. This is the first 'made in India' Doodle."
Dennis Hwang, the Master Doodler says "India is a land of creative minds. For centuries, Indian art has continued to fascinate people from across the globe. It was amazing to see how young kids could come out with highly creative Doodles that truly define the culture and tradition of this incredible country. Choosing the successful entry was not easy as every Doodle depicts India in a unique manner."
It seems yahoo is imposing limit based on IP address. And, it looks like the IP address of the server which hosted our program exceeds the limit as it is a shared hosting. Someone else also might have made yahoo api calls.
In the yahoo developer site it has been mentioned as below.
Our service rate limits are imposed as a limit on the number of API calls made per IP address during a specific time window. If your IP address changes during that time period, you may find yourself with more "credit" available. However, if someone else had been using the address and hit the limit, you'll need to wait until the end of the time period to be allowed to make more API calls.
I am just wondering why they are doing this ineffective way of limiting the API calls.
Actually, they are providing appid for every user to make the API call.
I think they can manage limiting of the API calls effectively using this appid. I couldn't understand why they are considering IP address instead of this appid for limiting the API calls.
Anyway, there should be some solid reason for doing IP based restriction which I couldn't understand currently.
If anybody knows the reason you can share it here thro' comment section.
To solve this issue I have changed the hosting server as it will change the IP address time being. Now our inbound link checking program is working correctly. But anyway it may face issue later as this server is also a shared hosting server. Please let us know (qualitypointmail@gmail.com) if you face any difficulty in using this inbound checking program/service.
You can enter the URL in the below input box for getting inbound links.
If you are having any suggestion for improving this program you can mention it here thro' comments.
Google has introduced a new system programming language named as "Go".
It is open source language. You can see more details about this language at http://golang.org/
Google is saying that Computers are fast now but software development is still slow. So it has taken this initiative of introducing this open source experiment language which combines the development speed of working in a dynamic language like Python with the performance and safety of a compiled language like C or C++ and the compiled code runs close to the speed of C.
19 func main() { 20 flag.Parse(); // Scans the arg list and sets up flags 21 var s string = ""; 22 for i := 0; i <> 0 { 24 s += Space 25 } 26 s += flag.Arg(i) 27 } 28 if !*omitNewline { 29 s += Newline 30 } 31 os.Stdout.WriteString(s); 32 }
The below screen is appearing in Twitter after getting loged in.
It seems this feature in still in Beta only. And it is available only for some users only.
Just I assume that currently Twitter is providing this feature only for the users whose followers count is greater than following count. But I am not sure about it. If you know more about it you can share it thro' comments.
It is showing new icon for identifying reweets.
It seems some people are not satisfied with this feature, still they are willing to use third-party applications only.
Blogger is providing an option for posting the articles thro' email. This service is called as Mail2Blogger. For enabling this option you have to specify a secret word in your blogger settings.
i-e you have to navigate settings->Email&Mobile to get an email id by specifying the secret world for (Also known as Mail2Blogger )
Once after enabling this service we can post the articles just by sending email to this email id.
First time trying this option, and I am posting this article from my email.
We are displaying News in this blog using Yahoo pipe and Feedburner.
Today, I have noticed that the News in our blog was not updated.
I could successfully run the yahoo pipe for getting updated News as RSS Feed. When I tried to reSync this RSS feed in FeedBurder, below error message was shown.
Error getting URL: 999 - Unknown
After searching the Internet, I came to know that many people faced this error/issue few months back also.
It seems this issue is related with migration of Feedburner accounts into Google accounts. And, it seems yahoo pipe is blocking the ip address of Google/Feedburner.
Google Group discussion suggests to use atom feed instead of rss feed. But, I think yahoo pipe is not having an option to get atom feed.
So, as of now we are displaying our Tech News using some workaround. So, it may be little slow. We will put the news using feedburner, once Google or yahoo resolves this pipe-feedburder issue.
Blogger is selecting interesting and worthy blogger blog (i-e blogspot.com blog) on each working day and display in their blog at http://blogsofnote.blogspot.com/. The blog will list the blogs of note starting from year 2001 to till date.
It seems all the blogs listed in this list are really interesting and useful.
You can see below some of the latest selections. If you like these blogs you can book mark this page. It will be updated daily.
If you are new to our blog, you can bookmark this blog for further reading, or you can subscribe to our blog feed.
As I mentioned in the Software Testing Best practices, Providing Screenshot of error message and screenshots of each step for reproducing bug will help to fix the bug easily.
PrintScreen Key will be useful for taking screenshots. You can simply press this button to capture the image of screen and you can paste it in your word document or paint program.
But it will take the entire image of your screen. i.e It will include screenshots of all windows in your computer screen.
It will be nice if you take screenshot of only the Active window.
It can be easily done by pressing Alt key along with the print screen key.
Autonumber column/field in MS-Access database table will be automatically incremented when adding any new row of data.
Assume that you are having some set of rows in a table, and you are deleting those rows and willing to add new rows. In this scenario, the autonumber column of the new rows will not be restarted. They will continue from previous set of rows.
If you want to reset or restart the autonumber column you can follow any one of below approach.
After deleting the old rows, we can click Tools->Database Utilities->Compact and Repair.. for reseting the autonumber column.
Or alternatively, after deleting the old rows in a table we can copy and paste the table as a new table with "structure only" option.
Twitter list is a new feature from twitter for allowing users to create different groups (e.g team, family, friends).
Till today, it was available only for few people. It seems twitter is making it available for everyone today.
We can create our own list and we can follow the list also.
Lists can be either private or public, Others can view and subscribe to your public list for getting tweets from each user in your list without following each user individually.
For example, you can simply subscribe to our News list for getting tweets from many news providing Twitter Users.
Each twitter profile is now showing number of lists in which they are listed.
I was surprised to see that @google is listed in more than 4K lists in very short period.
As I mentioned in my previous post, we are continuously working on for improving our News Channels.
Currently the latest news is getting displayed in this blog. But we can not read the old news.
So, recently we have created new blogs for showing the old news also.
You can read the old Technical news and News about Google in http://readnewsarchive.blogspot.com (Update: now it News Site is moved to RtoZ.org)
If you face any difficulty or any issue in reading the current news and/or reading the news archive, you can inform us thro' comment section or by sending email to qualitypointmail@gmail.com.
And, we welcome your suggestions for improving the News Channels.
This new feature will be very useful for narrow downing the search for seeing the required image. So, ultimately it will save our time.
When I searched for flower I got the below search results which include "Find similar images" link for each image.
If I click the "Find similar images" for Rose, then it is showing only the images of rose.
If I click the "Find similar images" link of any sketch image, the search result is showing only the sketch images.
We can do further "Similar image search" from the search result itself.
I have tried lot of scenarios for evaluating this new feature. It seems this feature is working in Excellent and unbelievable manner.
You can share your review about this new feature thro' the comment section.
And, if you have any idea to improve Google image, you can submit it here. You can see more than 27 ideas that are submitted by others, and you can vote for an idea which attracts you more.
Google Voice is enabling us to use single number for all our phones.
Currently we have to choose a new Google Voice number for using this facility. Today Google has announced that it will be providing an option to choose our existing phone number while registering for Google Voice. i-e We can use Google Voice without changing our current phone number.
But anyway, it seems this option won't support all features of normal Google voice service (i-e Google voice with new number).
Google Wave can be easily embedded into blog post.
Here I will explain about embedding the Wave into a blogger blog (i-e blogspot.com).
First, you have to get the Wave ID of your wave.
This article will explain the steps for getting the Wave ID.
And, then we need to specify the below code in our post. <div id="wave_<wave_id>" ></div> And we have to include javascript code before </body > tag in the blogger html code.
You can follow the steps/code specified in this blog post for embedding the Wave.
I have created one public wave. Wave ID for this wave is "VkPxeecSL". I have embedded this wave below.
If you logged in with your activated Google wave account you will see the the embebbed wave saying "Testing public wave creation". Others won't see the embedded wave, instead they may see some default message/video from Google Wave.
Yesterday I got invitation for Google Wave, and I started exploring the features of the Google Wave.
But the important thing is, I couldn't explore many features without having other participants in my Wave.
If you want to include myself as participant in your waves you can add me (rajamanickam.a@googlewave.com).
Anyway, I came to know that we can search public waves and then we can participate in the pubic waves.
public waves can be easily searched by entering with:public in the search bar of the Wave.
If you want to limit the search results, you can include the search keyword also as with:public <keyword> (e.g with:public software). You can refer the below screenshot.
By doing search for public waves, I came to know that there are lot of public waves available. People have created lot of public waves based on name of the cities and name of the universities.
One thing I have noticed in the search results is, non-english waves are also getting displayed in the search results. I am just looking for a way to show only english (and Tamil) waves.
I was surprised to see many public waves with Tamil content.
Now, let us see how to make your Wave public.
Just do the below steps. - Add public@a.googlewave.com in your contact list. You will get error message (e.g public@a.googlewave.com is not a Google Wave account.). You can just ignore the error message and just proceed. You can add easypublic@appspot.com also as specified in the Google support forum.
-Create a new Wave and add public@a.googlewave.com as participant. This new Wave will become public and it can be searched by anyone and anyone can participate in this wave.
Refer the below screenshot which shows one public wave created my me.
I can send 20 invitations. But, according to Google "Invitations will not be sent immediately"
I have planned to use these invitations for our blog readers. So, if you really want to use/explore Google Wave, let me know thro' comment section. Before requesting Google Wave, better you can read about Google Wave.
It will be nice if you write feedback/review (both positives and short-comings) about our Google Wave article or about our blog/website/knol/quiz/news along with your request for the Google Wave invitation.
And you can request an invitation for Wave from Google.
You can follow @googlewave to get updates from Google Wave Team.
I have noticed error message when loading our blog. I wanted to know more details of this error. i-e I wanted to know whether this issue occurs in all blogger blogs or occurs only in our blog. And, I wanted to know when it will be rectified.
So, I did google search for the keywords "blogger" and the error code returned from our blog. But it didn't give any useful search result.
After that I did a search in Twitter search, and got more information about this issue.
I came to know that more people are facing this issue, and also I came to know that blogger (Google) is working on to resolve this issue.
This incident clearly indicates the need for real-time search.
Both Microsoft and Google are knowing the importance of this real-time search.
So, they are trying to integrate feature of searching tweets with their search engine.
You can vote for a Doodle in each of below three groups. 1. Standards 1-3 2. Standards 4-6 3. Standards 7-10
From the 3 winners Google will select one Doodle for displaying it on Novermber 14.
Are you able to predict the winning doodle which will be displayed in Google home page on November 14?
In this case you can specify your prediction here thro' comments.
Let us see on November 14, who's prediction is correct.
Specify the group number (1 or 2 or 3) and the Doodle number in the group. For example if you predict this Doodle as winning Doodle then specify it as 1-13 in the comment. And, if you predict this Doodle as winning Doodle then specify it as 3-13.