Skip to main content

Tribute to my father...



This is an idea came to my mind several times that I should post into blog someday.This is a real story of my father which gave me an important lession -
"Never give up.Try and Try.One day
you'll be success".

So thought of sharing with others too.
Couple of years back,when my father was retired(on Jan 2009) he was so upset about it, with the mind of what else remian to do by him afterwards.So on first two months he spent it with a lazy plan-sleep,eat,a simple walk,read newspapers,so on.
But finally he got a different idea of starting back his hobby of planting.But then the major issue appeared.So is there any enough space remain in our garden,except cutting down current planted trees? No way.Why no way?Yaa there is a one way.Finally he found it.Ya he thought to him self "I must starting planting on the slab".



In our home,up-floor was not yet built.So slab is remaining.But when he told this idea to us,we were wondering how he could manage the task.No soil on the slab,only concrete.When we arose this question,he told 'I'm going to plant in bags.I can manage to carry prepared soil bags from ground to slab,then planting and looking after them'.So that's how the starting of slab plantation began.He planted vegetables as
  • Tomatoes,



  • Ladies Fingers,



  • String Beans,


  • Green Peppers,


  • Bitter Gourds,


  • 'Malu Miris'


  • 'pathola','dabala',someof leaves as mugunuwenna','gotukola','gendha','sarana','nivithi'


  • 'rathu thampala'


and also some of 'kulubadu' as 'kaha'and 'ighuru'.



(sorry I don't no m
eanings for some planted types.So I mentioned their sinhala names).
The important part of the story happened middle of it's going.Though I mentioned it as the important part , to me it's a very sad situation.because my father paralyzed as unexpected and one leg of his was unavailable to move while got a severe difficulty to talk. But even in such a situation he never lose his encourage,with the treatments and excercises he could able to recover and make his leg for some improving status -with able to walk.But it's not means he recovered 100% and doctors advised him to rest.But he was able to manage walking and talking. When he was in hospital,we looked after his plantation,since we knew he was worrying about it.So when he got back to home from hospital we had a doubt of whether he'll continue with his gardening.But you know,story happened in the other way.He again started his hobby.It's really hard and painful to step up to slab from ground with plant bags full of sand.But he never lose his courage.Any how he did it.All the time we couldn't give our support.But he put his effort and somehow manage it with keeping a smile.All the photos included in here express the result of his never loosing courage.
And the current story is,we are so lucky to get home made fresh vegetables,and leaves for our meals.That's because of your courage dear father.I know how hard and painful to do slab plantaion with having a problem in walking.But you succeded.Thank you very much dear father for your life time valuable lession tought us in a silent way.Any thing in our life can be made as our wish ,if we set our mind to 'wisdom'.

Comments

  1. so inspiring post Lala.. Send my regards and appreciations to your dad..

    Thank you.
    Kathiravelu Pradeeban.

    ReplyDelete
  2. Dear Lalaji,
    Sorry to hear about your father. Hope he's doing better now. A google search I made on "rathu thampala" directed me here. Myself and a friend are running a small nutritive therapy clinic in Colombo and we frequently prescribe "rathu thampala" as a medicine for our patients. We don't need large quantities but we need it as a regular supply of moderate amounts. Would you be able to supply us some? At a reasonable cost of course! If interested, please email me at bimsara@gmail.com.
    Keep up the good work.
    bimsara

    ReplyDelete

Post a Comment

Popular posts from this blog

Convert an InputStream to XML

For that we can use DocumentBuilder class in java. By using the method parse(InputStream) ; A new DOM Document object will return. InputStream input; DocumentBuilderFactory factory = DocumentBuilderFactory.newInstance(); DocumentBuilder parser = factory.newDocumentBuilder(); Document dc= parser.parse(input); In the above code segment,by using the created Document object,the corresponding XML file for the inputStream can be accessed. References: http://www.w3schools.com/dom/dom_intro.asp http:// download.oracle.com/javase/1.4.2/docs/api/javax/xml/parsers/DocumentBuilder.html

Concat two xml values with XSLT

The use-case described in this blog-post,is there's an WSO2 ESB node setup to proxy an incoming message to a particular back-end endpoint.  Before delivering the message to the back-end endpoint,from the ESB node itself,this incoming message need to processed and change its inside xml payload format. For eg: Below is the incoming message <?xml version="1.0" encoding="UTF-8"?> <CinemaHall name="liberty"> <OwnerData> <Name>John Smith</Name> <openedDate>12/12/80</openedDate> <quality>good</quality> </OwnerData> <CinemaHallData> <rows>100</rows> <seats> <seat>50</seat> <seat>60</seat> </seats> </CinemaHallData> </CinemaHall> This message need to be changed as  below; <?xml version="1.0" encoding="UTF-8"?> <CinemaHall name="liberty"...

Passing end-user details from client to real backend endpoint via JWT token

In real-world business system,WSO2 API Manager useful on exposing company APIs, in a secured and controlled manner with the features provided by APIManager as; OAuth support [To secure API invocations] Throttling support [To control API invocations] Monitoring support [To track API usage] More technically what happening is when a user sends a particular API request,it will goes to WSO2 APIManager node and from there,the request will route to the real implemented back-end endpoint of the particular API and get back the response and returned it to the API invoked user. There can be a use-case,that this back-end endpoint may expect the details of API invoked user as to pass those details to some internal company usage  as; Additional authentication/authorization Track usage data from an internal system. So how to support above requirement from WSO2 AM. There comes the use of JSON Web Token[JWT] implementation done inside WSO2 AM. JWT is a means of representing claims to...