everything starts from small... i remember this was what i said when somebody from an establish MLM network look down into my small web page , mainly on herbs info 3 years back.The guy...accused me of not having a vision, don't dare to dream big and cursed me ...:) that i will stuck there forever. Well.. now more than three years on the road i still remember what i said..and still believed that everything starts from small....
now when it become less smaller (forgive me for the grammar), more and more people start to visualize a vision that i put years ago.I have one stand that i hold closely to my heart. If you cannot do what you like, like what you do but if you cannot like what you do, try to do what you like.hehe... it's not a tounge twister though...that's what i do ... try to develop something that i love with my heart soul into a money machine...(though now the machine is not fully functioning yet).
For all the support and backup..... i really want to express my gratitude to my beloved husband for believing in me, for strongly stand besides me through thick and thin. For always put his faith in me when others not.For keep on telling me that i'm heading to the right direction and the day of glory will come. To my three lovely daughters that have to spent most of their weekends watching CDs and doing homework in the car,I hope i'm not torturing them.I hope they can understand everything i do, i do it for their own future.(At least they should be grateful that i never left them at home by themselves like most busy mothers will do)...And i hope too... the days of struggling will be over soon. Insyaallah
haha....my blog entry today is so sentimental...anybody cries?
Sunday, August 5, 2007
Thursday, August 2, 2007
Tuesday, July 17, 2007
What is rich
Last night my eldest daughter ask me:
" Mama, what you will do when you rich,are you going to do the same thing,wrapping things for people?"
She asked when she saw me so busy wrapping all the customers order for this week.This few weeks are such a chalenging weeks as i have to coop to my paid job, my master degree and my side business(http://www.melur.com).
Rich...is so subjective...when i first graduated and heard some seniors can earn at least 2 to 2.5 k a month..wow ..that's a big money..never think about it.Then when i start work at a pay of 2700/month 2500 seems a very small amoount of money.Life is getting tougher when you have to coop with your marriage,newborn baby , new house, new cars and so many new commitment.Bak kata orang melayu "besar periuk besarlah keraknya"
so what is rich...? Now ten years have passed since the first time i hold my first salary with pride.Money is never enough but The most important thing is to seek for keberkatan of that money we earn.Never think litle about those who is less fortunate than you dan always willing to give.For me ich is when you can help people around you and never think yourself as rich.
" Mama, what you will do when you rich,are you going to do the same thing,wrapping things for people?"
She asked when she saw me so busy wrapping all the customers order for this week.This few weeks are such a chalenging weeks as i have to coop to my paid job, my master degree and my side business(http://www.melur.com).
Rich...is so subjective...when i first graduated and heard some seniors can earn at least 2 to 2.5 k a month..wow ..that's a big money..never think about it.Then when i start work at a pay of 2700/month 2500 seems a very small amoount of money.Life is getting tougher when you have to coop with your marriage,newborn baby , new house, new cars and so many new commitment.Bak kata orang melayu "besar periuk besarlah keraknya"
so what is rich...? Now ten years have passed since the first time i hold my first salary with pride.Money is never enough but The most important thing is to seek for keberkatan of that money we earn.Never think litle about those who is less fortunate than you dan always willing to give.For me ich is when you can help people around you and never think yourself as rich.
Wednesday, June 27, 2007
Convert elements in multidimensional array to single dimensional array
function to_single_array(aelement,arr_col)
' convert multidimension array to single array
if isarray(aelement) then
for i=0 to ubound(aelement,2)
strval=strval & aelement(arr_col,i) & ","
next
strval=left(strval,len(strval)-1)
to_single_array=split(strval,",")
'response.write strval & "strval"
end if
end function
aelement is the name of multi dimensional array while arr_col is the column number which we want to converts into single array
this is the example of the multidimensional array
tr>
Amy Jefferson
17
Mark Tan
25
John Grissam
29
Kathleen Rowling
35
so if the array name is ainfo, the way to extract the name into a single dimension array is
ainfo2=to_single_array(ainfo,0)
ainfo2 elements to will be:
Amy Jefferson
Mark Tan
John Grissam
Kathleen Rowling
any errors or feedback forward it to : nor@melur.com
' convert multidimension array to single array
if isarray(aelement) then
for i=0 to ubound(aelement,2)
strval=strval & aelement(arr_col,i) & ","
next
strval=left(strval,len(strval)-1)
to_single_array=split(strval,",")
'response.write strval & "strval"
end if
end function
aelement is the name of multi dimensional array while arr_col is the column number which we want to converts into single array
this is the example of the multidimensional array
tr>
| Name | Age |
|---|
Amy Jefferson
17
Mark Tan
25
John Grissam
29
Kathleen Rowling
35
so if the array name is ainfo, the way to extract the name into a single dimension array is
ainfo2=to_single_array(ainfo,0)
ainfo2 elements to will be:
Amy Jefferson
Mark Tan
John Grissam
Kathleen Rowling
any errors or feedback forward it to : nor@melur.com
Single Dimension Array concatenation
Single dimension array
Most of the time you will find that you need to concatenate 2 or more arrays.Somehow in classic asp there's no built in function that can combine array in one command. At least not that i know. Fill with the desperation to do it most of the time i wrote a simple function to concatenate 2 or more arrays
First i create a function call concat:
Function concat(array1,array2)
str1=join(array1,",")
str2=join(array2,",")
str3=str1 & "," &
str2 concat=split(str3,",")
end function
then I call the function anywhere when you need to concatenate arrays. For example, you want concatenate single dimension array
aitem1=array("A1","A1","A3")
aitem2=array("A4","A5","A6")
using this function:
aitem3=concat(aitem1,aitem2)
The elements for aitem3 are: "A1","A1","A3","A4","A5","A6"
Most of the time you will find that you need to concatenate 2 or more arrays.Somehow in classic asp there's no built in function that can combine array in one command. At least not that i know. Fill with the desperation to do it most of the time i wrote a simple function to concatenate 2 or more arrays
First i create a function call concat:
Function concat(array1,array2)
str1=join(array1,",")
str2=join(array2,",")
str3=str1 & "," &
str2 concat=split(str3,",")
end function
then I call the function anywhere when you need to concatenate arrays. For example, you want concatenate single dimension array
aitem1=array("A1","A1","A3")
aitem2=array("A4","A5","A6")
using this function:
aitem3=concat(aitem1,aitem2)
The elements for aitem3 are: "A1","A1","A3","A4","A5","A6"
I AM THE AUTHOR
Wednesday, May 30, 2007
Gloomy days
I feel so tired. All the energy has flow to my paid job that slowly dragging my attention from other thing. Sometime i wonder what is the priority in life? huh... live to work or work to live? The only good thing that happen last week is another one of the few plants from my husband US seed has bloomed.I think this flower is the prettiest among those which has bloom.So far only 4 out of 6 has bloomed.Have a look on the picture. It is know by the scientific name coreopsis tinctoria. the common name is golden tickseed or some call it calliopsis.The flower last quiet long. It can still beautifully bloom for more than 2 weeks.Seed is produced from the dried flower.It is an annual plant and will flowering between june to september.
below is the wikipedia link for golden tickseed:
http://en.wikipedia.org/wiki/Coreopsis_tinctoria
I really love the color and shape...savy...:)
below is the wikipedia link for golden tickseed:
http://en.wikipedia.org/wiki/Coreopsis_tinctoria
I really love the color and shape...savy...:)
Tuesday, May 22, 2007
God's gift

Gift from god
When i was young, to be exact when i was nine and above after dad's business colapse , life was very hard , we survive mainly
on food from nature. we got the protein from fish that we caught from nearby bendang or taliair.Vegies from nearby bush.
Things that always made mum worried was what if we run out of rice, sugar and salt.The rest , we can always found it somewhere
around.
One of my favorite vegetable was / is pucuk pulut musang as my mother call it.My fathers kampung folk used to call it kerak
nasi or kerak-kerak nasi.It is a small plant, so much resemble to a very popular ornamental plant, chinese evergreen. Infact
, the first time i saw the chinese evergreen i thought it is the pulut musang plant and until now i still wonder, whether the
young shoot of the chinese evergreen can turn into a very delicious and mouth watering vegetable as the pucuk pulut musang
is.Never dare to try, perhaps i should i try it... who knows...:)
the part from the plant that can be cook is the young shoot.My mother used to cook it into a very delicious soup.She pounded
the black paper, grilled fish, shallot and garlic together. While pounding the ingridient, she told us the story when she was
young.My mum is the youngest among her siblings.When she was young she used to follow her father travel from place to place,
open new land, in the jungle.Along her journey she learnt many thing about various kind of plants which she always told
me.That's how i develop my interest in herbs and plant.My mum is like a walking plant library for me.
back to the delicious soup.After pounding the ingridient, she boiled it with water until the vegetable got tender.Any other
sayur kampung cannot challenge the sweetness of the plant.
recently when i visit one of my herbs collector, the pakcik show me this plant which he call pecah kelambu, i've saw a few
plant that is called pecah kelambu befor.Some even call galak tua (stemona tuberosa) as pecah kelambu too. but this one
really rang a bell in me.After more than 15 years i never see this plant , it is really like a deja vu for me. It's like you
see an old good friend...hehehe... too much? but that's how i feel...The pakcik told me ... this plant should be the woman
best companion.. why? because it is very beneficial to increase woman sexual desire ...(hahhhhh alamak , really??? , i have
ate so much of this plant during my young days, is there any side effect?) especially for the elder woman. the effect,
according to him is almost the same as kacip fatimah (No wonder the fruit looks almost the same...any direct relation? dont know...
:P)
Then, a litle chat with dad also gave me knowledge that this plant also can cure hemarrhoid(buasir).According to dad , one of
my aunt recovered from her severe hemarrhoid after drink the soup everyday for a few weeks.HOOOO.... it's so beneficial... i
never know...the only thing that i knew last time is it tasted good.
so i grab a few bags an try to nurture it in my garden.One thing about this plant is you can never expose it to the direct
sunlight.In a few days it will....die.You need to grow it under the shade or under a tree as the original habitat is in the
bush.
The great thing that i should always remember is Allah is great, with HIS Love and guide we (me and my siblings) grow up
healthily and happily during the very hard time in our life.Alhamdulillah.No matter how far we go or how many types of food
we eat, the food that give us life is always the most delicious food ever.
enclose is the picture of the plant botanically know as Terenia polygonaides
When i was young, to be exact when i was nine and above after dad's business colapse , life was very hard , we survive mainly
on food from nature. we got the protein from fish that we caught from nearby bendang or taliair.Vegies from nearby bush.
Things that always made mum worried was what if we run out of rice, sugar and salt.The rest , we can always found it somewhere
around.
One of my favorite vegetable was / is pucuk pulut musang as my mother call it.My fathers kampung folk used to call it kerak
nasi or kerak-kerak nasi.It is a small plant, so much resemble to a very popular ornamental plant, chinese evergreen. Infact
, the first time i saw the chinese evergreen i thought it is the pulut musang plant and until now i still wonder, whether the
young shoot of the chinese evergreen can turn into a very delicious and mouth watering vegetable as the pucuk pulut musang
is.Never dare to try, perhaps i should i try it... who knows...:)
the part from the plant that can be cook is the young shoot.My mother used to cook it into a very delicious soup.She pounded
the black paper, grilled fish, shallot and garlic together. While pounding the ingridient, she told us the story when she was
young.My mum is the youngest among her siblings.When she was young she used to follow her father travel from place to place,
open new land, in the jungle.Along her journey she learnt many thing about various kind of plants which she always told
me.That's how i develop my interest in herbs and plant.My mum is like a walking plant library for me.
back to the delicious soup.After pounding the ingridient, she boiled it with water until the vegetable got tender.Any other
sayur kampung cannot challenge the sweetness of the plant.
recently when i visit one of my herbs collector, the pakcik show me this plant which he call pecah kelambu, i've saw a few
plant that is called pecah kelambu befor.Some even call galak tua (stemona tuberosa) as pecah kelambu too. but this one
really rang a bell in me.After more than 15 years i never see this plant , it is really like a deja vu for me. It's like you
see an old good friend...hehehe... too much? but that's how i feel...The pakcik told me ... this plant should be the woman
best companion.. why? because it is very beneficial to increase woman sexual desire ...(hahhhhh alamak , really??? , i have
ate so much of this plant during my young days, is there any side effect?) especially for the elder woman. the effect,
according to him is almost the same as kacip fatimah (No wonder the fruit looks almost the same...any direct relation? dont know...
:P)
Then, a litle chat with dad also gave me knowledge that this plant also can cure hemarrhoid(buasir).According to dad , one of
my aunt recovered from her severe hemarrhoid after drink the soup everyday for a few weeks.HOOOO.... it's so beneficial... i
never know...the only thing that i knew last time is it tasted good.
so i grab a few bags an try to nurture it in my garden.One thing about this plant is you can never expose it to the direct
sunlight.In a few days it will....die.You need to grow it under the shade or under a tree as the original habitat is in the
bush.
The great thing that i should always remember is Allah is great, with HIS Love and guide we (me and my siblings) grow up
healthily and happily during the very hard time in our life.Alhamdulillah.No matter how far we go or how many types of food
we eat, the food that give us life is always the most delicious food ever.
enclose is the picture of the plant botanically know as Terenia polygonaides
Friday, May 4, 2007
Bunga Mayang Sari
White Fragrant Flower

It's quite sometime since my last blog.It's not i'm lazy or busy (since both words are so subjective...:). Perhaps the new layout and interface of the blog make me sick...Hmmm... it takes time to get use to this new look.
so today... here i am again, with new flower. I dont really know the name of this flower but i really love the smell. Wanginye....I try to figure out the name from friends and few other newsgroup. All that i found out is some of them said the flower is from genus Duranta (which i doubt it so much as the leave is totally different) The flower looks alike though....Some of them said it's duranta repens. The only duranta Erecta that bloom in my garden right now is deep purple in color...It's from the hybrid called "Geisha Girl". In contrast with this one, the purple duranta has a very mild smell (almost cannot be detect at all).
So i think this is not Duranta. Some said it is also called Bunga sundal malam... a typical Malay tag for the flower that has a strong fragrant at night.Some said it is called bunga kerak nasi..like bunga kesidang also called bunga kerak nasi.
so until i finish my quest for the real name for this white lady... do enjoy the picture...
greenest regards
Nor
so today... here i am again, with new flower. I dont really know the name of this flower but i really love the smell. Wanginye....I try to figure out the name from friends and few other newsgroup. All that i found out is some of them said the flower is from genus Duranta (which i doubt it so much as the leave is totally different) The flower looks alike though....Some of them said it's duranta repens. The only duranta Erecta that bloom in my garden right now is deep purple in color...It's from the hybrid called "Geisha Girl". In contrast with this one, the purple duranta has a very mild smell (almost cannot be detect at all).
So i think this is not Duranta. Some said it is also called Bunga sundal malam... a typical Malay tag for the flower that has a strong fragrant at night.Some said it is called bunga kerak nasi..like bunga kesidang also called bunga kerak nasi.
so until i finish my quest for the real name for this white lady... do enjoy the picture...
greenest regards
Nor
Thursday, March 1, 2007
Kesidang (vallaris glabra)

my kesidang (vallaris glabra) is blooming. Every night when i reach home, the rich sweet pandan smell is in the air. Some people who like the pandan smell will really love it.My mother hate the smell, infact she said the smell will trigger her migrain. The smell of the kesidang flower is said to be resemble to the rice smell, describe why in nothern region of Malaysia it is called kerak nasi which literally means rice leftover.The flower also known in western as bread flower, perhaps because of the white color? hahh... just my wild guest.
Kesidang is a climber which make it a very nice companion to your trellis or pergola.It can be easily propagated by layering technic.Layering can be done by pull the branch until it touch the ground or the medium , then put something heavy , like a brick on the branch to make it always touch the ground. after +- 2 weeks, new root will come out for the part that touch the ground. Cut the branch and plant it somewhere else. It can be grown in a pot too...Other way to propagate is grafting. although stem cutting will grow into new plant if you are lucky, by the chance to stem cutting to root is quite low. A little help from root hormone might increase the chances to survive...:)
The leave is quite big, from a far it look like mango leave...:) the leave surface is shiny.Kesidang leave can easily turn yellow and drop if you give not enough water, esp in dry season like now. This the kesidang photo from my garden... Really love the clean white flower with the unique petals and the smellll.....so refereshing....My mother will hate me for this. Next time when she come to visit I'll make sure no buds is allow to bloom....:)
p/s: kesidang is said to be the symbol of malay folks, whic always rich with adab, budi bahasa dan kesopanan.
Kesidang is a climber which make it a very nice companion to your trellis or pergola.It can be easily propagated by layering technic.Layering can be done by pull the branch until it touch the ground or the medium , then put something heavy , like a brick on the branch to make it always touch the ground. after +- 2 weeks, new root will come out for the part that touch the ground. Cut the branch and plant it somewhere else. It can be grown in a pot too...Other way to propagate is grafting. although stem cutting will grow into new plant if you are lucky, by the chance to stem cutting to root is quite low. A little help from root hormone might increase the chances to survive...:)
The leave is quite big, from a far it look like mango leave...:) the leave surface is shiny.Kesidang leave can easily turn yellow and drop if you give not enough water, esp in dry season like now. This the kesidang photo from my garden... Really love the clean white flower with the unique petals and the smellll.....so refereshing....My mother will hate me for this. Next time when she come to visit I'll make sure no buds is allow to bloom....:)
p/s: kesidang is said to be the symbol of malay folks, whic always rich with adab, budi bahasa dan kesopanan.
Subscribe to:
Posts (Atom)


