Friday, November 27, 2009
Thursday, November 26, 2009
Saturday, November 21, 2009
Do it for the Country - Chetan Bhagat
Chetan Bhagat Session |
Friday, November 20, 2009
Google Chrome OS Revealed
publicly for the first time on Nov 19, 2009.
Wednesday, November 18, 2009
SEI Cloud Computing Webinar Q&A
What is the scope for Enterprise Cloud ?
Enterprise Cloud is the term that is currently associated to the implementation of private clouds within the enterprise. The goal of enterprise clouds is the virtualization of resources leading to reduced maintenance and acquisition costs from a business perspective and hiding IT complexity from a technical perspective.
How an existing Customer can scale their already purchased infrastructure to Cloud?
There is a term called cloud bursting that is associated to only using cloud resources when local resources are not enough. This is one way. Another way is one-time usage, which is to move to the cloud one-time processing or archiving.
How do you see the Standardization of the Cloud Computing vendors coming up, and the timeline for it ?
The only standardization effort that I know of is from Eucalyptus Systems. Standardization is going to be hard.
How do Cloud Computing Implementors convince Customers regarding Security of their data in the Cloud?
The only way would be to look at their SLAs and analyze the security clauses. If you are comfortable with placing your data given those clauses, then it should be acceptable. It is a matter of trust, both from a partner and a technology perspective.
Thanks to Shane McGraw for getting back to me with the answers.
Sunday, November 15, 2009
Is that God really wants ?
Wednesday, November 11, 2009
Database Taxonomy
and their classification in an intuitive
way.
Must read for all geeks
http://perspectives.mvdirona.com/2009/11/03/OneSizeDoesNotFitAll.aspx
Cheers!
Vivek
Tuesday, November 10, 2009
Monday, November 09, 2009
concat() method in String class uses StringBuilder
Good link to understand that concat() method in String
class uses StringBuilder class.
http://www.venishjoe.net/2009/11/java-string-concatenation-and.html
Also, included in the link is the performance analysis of
+ operator, concat method, StringBuffer and StringBuilder.
Bye,
Vivek
Sunday, November 08, 2009
My Library - Part 1
Friday, November 06, 2009
JAD Decompilation Log Analysis Tool
--------------------------------------
Lately, I was involved in some work revolving
Decompilation of a Java Web Application. The Source
Code is unavailable, and the Client requires some
immediate changes and features in the application.
JAD comes out to be the forefront of the solution
to this problem. Hence I used the same, and found
not everything is retrievable. But JAD really gives
an extensive Log to the users abou the problems
it faced with extracting the source code.
I also needed to generate some Documents stating
per Class file basis, the status of its Decompilation,
whether it generated errors/warnings and how many.
To Solve my woes, I wrote a simple Command Line
App in Java 5.0 that parses the Log file generated
by JAD, and creates an Onscreen report stating
the following :-
1. Per file, Status of Decompilation : PASS, PASS with Warnings,
FAIL and if Errors/Warnings, the list of the same neatly aligned
with the classname.
2. Summary of Result : No. of Files Decompiled without Errors/Warnings,
No. of Files Decompiled with Warnings, No. of Files Failed
3. Success Ratio.
I hope some of you would require this at any point of time,
and hope the tool serves that purpose. I will make available
the link around Evening today (6th Nov) once I am back
to home.
See you around and keep looking for this post for updates
(link first.. )