It used to be quite irritating when you see the prompt “Updating your computer is almost complete. you must restart your computer for the updates to take effect” after installing the windows patches. I stumbled upon an article which tells how to disable this prompt from coming up. Not a great discovery, but quite useful.
Archive Page 2
ICICI Bank has been at the top of the charts in terms of customer complaints. There are even blogs dedicated to and this has been quite famous among the icici hate group. So far I didnt have any major problem with ICICI Bank till the day I downloaded the following document from them
http://content.icicidirect.com/mailimages/SpecimenOfFilledUpForm.doc.
Thanks to the corporate antivirus, it immediately warned me that the downloaded file had the HTML/Scoati virus. It was really surprising that you cant even trust the contents from such leading banking institutions. On notifying them about the incident, it was stock reply that I got( maybe it is an automated one, who knows:-)).
And well, i didnt try to see if they had rectified the issue in the file. Here is the reply and that is one heck of a mail
“Dear Mr. Sumesh,
We appreciate your feedback on the functioning of our website. We have forwarded this matter to our technical team for investigation.
ICICI Web Trade’s online trading services through Internet depend inter-alia on various systems, applications, hardware, equipment, network and communication lines, exchange links, satellite links etc. You might even face access problems to our website when your internal networks does not perform adequately.
These would include the browser being used by you, the internet service provider used by you. You might also face access problems through a proxy network.
In a technological environment it is not always possible to predict any sudden malfunctions in processes.
However, to minimize such unforeseen malfunctions we do review and take periodical maintenance activity of our systems, hardware etc. Also, as and when any malfunctions are noticed, we take immediate corrective action and try to restore the services as early as possible to minimize the inconvenience to the customers.
Sincerely,
Accounts Manager
ICICI Bank Limited.
We value your feedback on your experience with our response to this query.
Please click the “Feedback” tab and give us your views.
I have been working on AJAX framework, mainly DWR, for quite sometime. One of the interesting requirements which came through was about a dynamic tooltip. This tooltip is supposed to pull out the attributes of an object from a web-application server and show it to the user in the tooltip and this use case will be triggered from a normal search results page. Sounds cool for the user and in one way, it looks like we can have an optimal solution in terms of retrieving minimal data. Any details the user wants will be pulled out at runtime and shown as a tooltip. The optimal solution is based on how the caching is implemented so that we don’t generate multiple hits for the same object.However, if we dont have built in caching for this, the very implementation can turn out to be a problem in that the user can literally pound the server with calls of repeated nature and returning the same set of data. Caching on the client side was an option and eventually the whole caching approach had to be abandoned due to the lack of time on the client’s part.
Since the user base is small and we dont anticipate a huge growth in the user base, the decision to abandon the caching mechanism may not be as critical an issue as thought out to be.