Thursday, September 27, 2007
The Architect Dream :-)
My background is: I know EJB concepts/UML/Networking layouts/Server architecture basics. But, this skill is really poor to take up such an exam. I was left with no clue. Sometimes, some strange things happen right! I got a mad curiosity towards architecture and started reading books so fast. I've never read a book that fast in my lifetime, and never had such a capability to understand/interpret/memorize the stuffs. But, it happened. Within 4 days I grabbed the confidence to pass the exam. In the last two days, I went through lots of mock exams, short notes.
I have myself created many Thumb rules for my understanding, from various sources of books, and sites.
Exam questions were really simple and I was able to score more.My score is 95%, missing two questions, on the whole. (good number, isnt it? ;-) )
I don't remember exactly why I choose this exam; I probably would have thought putting a full-stop to the certification hierarchy, because this certification is the highest level of Sun's Java Certification hierarchy. But one thing is for sue -- I like Sun's java exams. They are very good learning aids for Java/J2EE. The syllabus for every exam is designed with great care that the candidate should know the hardcore stuffs in the specific technology.
Refer the exam objectives here:
http://www.sun.com/training/catalog/courses/CX-310-051.xml
Thursday, September 20, 2007
Search Engine Listing and Optimization Tips
Its momentum with Google!
Tell me who wont just juggle in joy, if happens to see his name appearing in Google – with bunch of result!? I am now. I have a habit of tracking my name in Google. Whenever I am getting bored, I just enter my name in Google and see what happens. I do get some search results always -- but today, Damn! I have got 1010 results for my complete name
My name is associated with mostly Java/J2EE based sites/mailing achieves/forums. Anyway, happy to see google lists me!
Here are tips to optimize your pages (SEO - Search Engine Optimization)
1. Describe the purpose of your web page in the meta data link.
2. Let the title tag contain the actual keyword/theme of your web site.
3. Emphasize or Bold the keywords in your web pages.
4. If you have friends, who are running their own website, ask them to make reference to your website. In this case, search engine will give high importance to your sites.
5. Associate the keywords with your URL in many sites and forums.
Thursday, September 06, 2007
Framework ?
Software people should often hear this term ‘Framework’. What is it all about? The picture you see looks like an exploded building. But, you see the steel skeleton standing alone right? That’s Framework. That is some thing that supports the building architecture and gives a structural support.
I am thinking of writing a framework for my pet project. Especially for database persistence and queries. It might simplify coding complexity and speedup writing of code. Because, frameworks can provide basic structural support for projects. Also, it can help to eliminate boilerplate code found here and there in projects. When I imagined, how the coding style could change if I develop a framework, it turned me excited.
Few lines about Framework:
1. Usually, at the beginning of projects, Architects do some basic works -- one of them is building a Framework.
2. A Framework will offer basic structural support and services. For example, accessing a database is a common scenario in any project. We end up writing database access calls every where in project; every where we need to handle transaction, synchronization and etc. This plate of code can be moved into Framework and can be accessed from any part of the projects. Like wise, a Framework can have basic and structural functionalities for a project. Change/upgradation in code/functionalities can be done in one place, that’s in the Framework level, and dont need to change every part of the project.
A cool example,
Suppose, if you want to insert some values into database, you write painful code like this,
-------------------------------------------
DriverManager.registerDriver(new oracle.jdbc.driver.OracleDriver());
Connection con = DriverManager.getConnection(connectionURLThin, userID, userPassword);
PreparedStatement preparedStatement = con.prepareStatement("insert into emp(?,?,?,?)");
preparedStatement.setInt(1, 100);
preparedStatement.setString(2, "mani");
preparedStatement.setDate(3, new Date());
preparedStatement.setDouble(4, new Double(46000.50));
preparedStatement.executeUpdate();
con.commit();
preparedStatement.close();
con.close();
-------------------------------------------
Ssshh! Take a break and come back :-) Just think what will happen if one need to repeat this code everywhere? That’s something called 'boilerplate'.
Rather, this can be abstracted/wrapped into a Framework, like
-------------------------------------------
MyDatabaseFramework.persistValues(100, "mani", new Date(),
new Double(46000.5)); // this single line code will insert, commit & save your head.
-------------------------------------------
That’s what Framework is, and that’s something, I am planning to write. Now Framework can be abbreviated into single word, "COOL" -- isn't?
Tuesday, September 04, 2007
Books in wish list.
I wish to read the following books whenever get time,
1. Refactoring: Improving the Design of Existing Code
2. Design Patterns: Elements Of Reusable Object Oriented Software
3. Patterns of Enterprise Application Architecture
(I've just mentioned that thats my wish list -- no written/oral guarantee that I'll read those books!! God needs to consider extending a day's time beyond 24 hours.)
Monday, September 03, 2007
Art of designing it.
I might start coding slowly. I am expecting a developer gang to join for the code development. Let's see again how it goes. I dont have plan or schedule for release, because this is absolutely my personal project, based on personal interest, and a base for personal learning :-)
(Click on the image to enlarge it)
சலித்துப் போனேன் மனிதனாய் இருந்து...
I am very eager to see every one else I met at my little age. I couldn’t even find a trace for some people. This is the reason why I panic to leave my places. When I left my home, all the relations had gone. When I leave a city and move to another, a gang of friends and contacts vanish off. And because of this, I just dont want to move between places. I never even think of leaving this country at least. I can make my fortune here itself. If I can't, then I am really not going to feel bad. I am at least thinking of living my rest life or last years in my home town; in the places where I was born, I was roaming.
Nowadays I seriously like to live at my home. I like the rivers, temples, dams, and every dust around my home. I had lost all my stamina and peace in this hasty life. When I go home, I feel my heart easy. One simple solution for this, would be to change my profession. However, I dont know any job, other than 'Programming in Java'!
Saturday, September 01, 2007
I can not do any magic
This is my inner feeling since last fews weeks. "I can not do any magic to achieve my targets! I can just work, may be hard."