Monday, November 24, 2008
Women balancing their personal & professional life.
Saturday, November 15, 2008
International Software Testing Certified Engineers in CI
- This certificate is issued only to those participants who got a minimum of 70% of marks
- The questions for the exam and correction of answers are done by the author of the book, Mr Srinivasan Desikan
- A class room section by the author is part of this certification introducing various topics on testing
- The certification process includes exercises that are implemented in live projects, a combined internal assessments by Organization and Certification boards
- The certification process involves approx 30 days of preparation time (attending class room training, reading the book, practicing techniques in live project and preparing for written exam)
Topics covered
- Basic principles, concepts of testing
- Black box testing and techniques
- White box testing techniques
- Component testing standards
- Integration testing types and methodologies
- System testing types and methodologies
- Acceptance testing
- Regression testing methodology
- Software test automation
- Adhoc testing types
- People aspects in testing
Of course, this certification is at the basic level or foundation level only. There are 2 more levels in the certification, which CI will undertake shortly.
If you or your company is interested, do let me know I can be a bridge for you to get introduced to either founders of this society.
Friday, November 14, 2008
CI at Sage Summit
The Sage summit is focused towards the end users of the Sage product lines. with CI expertise in handling the custom programming requests of the end users through the resellers, CI makes it a point to be in the Summit where it can exhibit its Products and Services to the user community. The flagship product is Mobile SalesPerson which is providing the last mile connectivity for the Sales team to the ERP package by providing a complete solution for Order Entry on the move. Not only that, the Mobile Inventory suite, caters to the needs of the Warehouses too. The other software Commission Manager is an excellent product which provides the Accountants to give out the commissions based on various in house rules that they can set in the software.
Just check out in the booth for further information.
Wishing the CI team at Denver all the best for great show.
Thursday, November 13, 2008
CI.COM becomes " Gold Certified Partner"
CI.COM has become a “Gold Level Development Partner of Sage”. The Gold Level Partnership with Sage has been the biggest and best yet and a perfect way to highlight the talent readily on display in all areas of CI.
To become a Gold Level Partner the important pre-requisite, inter alia, was that one of our products should be Sage Certified.
We submitted our flagship product “MobileSales Person” for Sage Certification. On behalf of Sage, Lionbridge VeriTest (globally ranked the #1 Outsourced Testing & QA provider) has subjected our product to a rigorous testing and declared that it has ‘passed’ all the necessary requirements.
The Gold Level DP of Sage is an endorsement of how far we have come and will undoubtedly affirm our commitment and increased credibility of our service range to product development companies and their resellers and end users.
Bringing something new into the marketplace and getting the same certified by a world renowned international company is never easy and and I have to acknowledge the great work done by all the CIians past and present who have made the company come this much ahead.
This is an external certification news. In my next post let me share with you the internal certification that has happened.
Sunday, November 9, 2008
ajax
Ajax is the acronym for asynchronous JavaScript and XML and is one of the main usage technique in web 2.0. It is highly helpful in loading the data onto the browser and enables the user to get that interactive nature of the web 2.0. In commercial applications, by the virtue of Ajax, the user can customize the reports as she or he wants it. It was made very popular by the Google with Google suggest. Ajax is not a new programming language but a new way to use the existing standards which enables you to create better, faster and more user friendly web applications.
Coming to the technicality of Ajax - it is is a group of interrelated web development techniques used for creating interactive web applications or rich Internet applications. Ajax enables the web applications to retrieve data from the remote server not in the conventional way of loading all the information at one go, but those data that is requested only in an asynchronous manner. Data is retrieved by the use of remote scripting or the XMLHttp Request Object
The first coinage of the term was done in the article written by Jesse James Garreet who explained how it is used
While XHTML and CSS are used for presentation, the document object model is used for the dynamic display, and XML for interchange and XSLT for manipulation of data, and XMLHttpRequest object for asynchronous communication. The JavaScript helps bring all these technologies together. Even VBScript is also capable of doing the same functionality.
The main Advantages comes where the pages on a website consist of much content that is common between them. Using traditional methods, that content would have to be reloaded on every request. However, using Ajax, a web application can request only the content that needs to be updated, thus drastically reducing bandwidth usage and load time. The use of asynchronous requests allows the client's Web browser UI to be more interactive and to respond quickly to inputs, and sections of pages can also be reloaded individually. Users may perceive the application to be faster or more responsive, even if the application has not changed on the server side. The use of Ajax can reduce connections to the server, since scripts and style sheets only have to be requested once
The main Disadvantages of not being in a position to create a history or bookmark the page and the dynamically loaded/changed state can be overcome by only workarounds.
Any user whose browser does not support Ajax or JavaScript, or simply has JavaScript disabled, will not be able to use its functionality.
In the next post, let me write some more in depth about Ajax