Skip to main content

Posts

Plan for the day

If you are planning something after getting up from the bed at early morning then you may know this how much difficult it is to plan your entire days work at this moment of time.I am taking my example its 7.33  am of Monday ,what i know about my todays work is i have to go to office at 9.30 which is seems to be  very crucial after two days of holiday.I don't want to plan my office related work at this time because i  believe there should be a septation between personal and professional life so i am leaving planning of  office work for office hours.I think managers have all this type of qualities like planning ,finishing the task by pre allocated time of questions.Now "Do managers really have the qualities to completing the task on time?"  i am glad you asked!..well not 100%.They have a strategy that if they have not completed the task in predefined time they can manage it by there plan B,they always have...

Time to keep secure your Account

Now a days every one is crazy about social networking and visiting orkut and facebook is becoming an important part of our daily life.This has become as important as food for life, even for some folks social networking tops the chart in priority list.Not everything is wrong with this, infact some of the things that social networking sites brings are really nice like they help us to staying in touch with family and friends. But if you are sharing your personal information and photographs then eventually security concerns comes in the fore front of social networking world. With my limited understanding, I have come up with following points that you have to keep in your mind before creating the social networking account 1. Don't expose all your information in social networking site if not in the web.     Any one can use these information against you, for example your     date of birth ,college name,place of birth or any thing     will be more than s...

Power of Open source Flex

Adobe flex is back with lots of new features ,the rich GUI provided by this framework is sufficient for building rock solid and stable GUI with good look .I have decided that I will explore it as much as possible.I am a java developer by profession  and for GUI purpose we generally use the GWT (GWT is most popular these days, not sure for how many years) ,It is also one of the good technology to develope the GUI but I dont want to limit my self to one specific tecnology. Few things that I liked about the adobe flex are Flex SDK is opensource. Availibility of good training materials and tutorials including the video tutorials (free of cost offcourse). You can integrate flex application with Java, ColdFusion, Php and .Net. Full support with service oriented archetecture as it is backbone of the distributed applications. Availiblity Powerful frameworks like Cairngorm,TurboGears,MATE,PUREMVC,SWIZ. if you want more details about these frameworks please visit this nice and...

Speed up Firefox

Forevergeek.com has a useful guide on speeding up firefox for broadband users. basically after getting to the hidden config settings you set the browser to request more data that it usually does. 1.Type “about:config” into the address bar and hit return. Scroll down and look for the following entries: network.http.pipelining network.http.proxy.pipelining network.http.pipelining.maxrequests Normally the browser will make one request to a web page at a time. When you enable pipelining it will make several at once, which really speeds up page loading. 2. Alter the entries as follows: Set “network.http.pipelining” to “true” Set “network.http.proxy.pipelining” to “true” Set “network.http.pipelining.maxrequests” to some number like 30. This means it will make 30 requests at once. 3. Lastly right-click anywhere and select New-> Integer. Name it “nglayout.initialpaint.delay” and set its value to “0″. This value is the amount of time the browser waits before it acts on...

Indian Education System

“ Real education must ultimately be limited to men who insist on knowing, the rest is mere               sheep-herding . ” - Ezra Pound   The education system in India is considered to be one of the largest and in the ancient world it was most valued. The relationship between the Guru and students have been valued most in this country. The history of the education system in India dates back to the first centuries, when the young children were taught in the Gurukuls and the Guru-Shishya system was the most common means of education. After that the famous universities like Nalanda, Takshashila, Ujjain and Vikramshila came into existence and enhanced the scope for the students. The Mughal period shows us the inception of Madarasah. Now in this era modern schools and university are providing top notch and high quality education to students around the world. Online courses are even popular as they can be subscribed by peo...

Fundamentals of the Organization Success

Read this article by keeping in mind that i am talking about Small medium business corporations. Today i was thinking about the organization success ,according to the top managers and business gurus companies top asset is the human asset and unfortunatily we are wasting this asset a lot,problem may be any thing like communication skills,unplanned work misunderstanding of responsibility etc.But these are the things which we can improve easily and the peoples are improving also may be others don't have time to notice or may be i am wrong but this is the general case.According to me the fundamental pillars of success is the step by step process of utilizing the human assets.Now a days what companies are doing is they recruits the candidates fix them in certain project from there first day and they give pressure gradually,if the person is able to satisfy the management by his performance than ok otherwise fire him and conduct second round of recruitment,i dont know we have a gre...

SingleTon DesignPattern

Singleton pattern comes into creational design pattern category, the main objective of the creational pattern is to instantiate an object and with Singleton Pattern we will allow only one instance of the class to be created. Here in this article we will understand how we can create an Singleton class in Java. Singleton Class Code: package designpattern.creational.singleton ; public class MySingleTon { private MySingleTon ( ) { } private static MySingleTon instance = null ; public static synchronized MySingleTon getInstance ( ) { if ( instance == null ) { System . out . println ( "Creating New Instance" ) ; instance = new MySingleTon ( ) ; } else { System . out . println ( "Returning Existing Instance" ) ; } return instance ; } public Object clone ( ) throws CloneNotSupportedException { throw new CloneNotSupportedException ( ) ; } } Code Explanation: W...