http://www.facebook.com/event.php?eid=168717183163900
Monday, December 20, 2010
Great G2G of CSE 04 KU
http://www.facebook.com/event.php?eid=168717183163900
Great G2G of CSE 04 KU
http://www.facebook.com/event.php?eid=168717183163900
Sunday, December 12, 2010
Enjoyed Concert of Shahrukh Night
Enjoyed Concert of Shahrukh Night
Thursday, December 9, 2010
If you try to kill emotion, emotion will kill you
From my childhood, I was a emotional boy and during my college life, I really could not control myself from shedding tears after getting some misbehavior from senior brothers (which was up to class 8) in the first time, but, after coming out of the college I became a changed man. Actually, J.C.C taught me something that just mixed with the blood.
Now I don't become upset due to a rough behave from anyone (except one) but, sometimes, past reminds me that we are running with the time which is irreversible and we are just a part of game of nature. In deed, we won't exist for long, there creates a deep cry in the heart if I can go back to the past.....! I don't wanna leave this world, I love this world
If you try to kill emotion, emotion will kill you
From my childhood, I was a emotional boy and during my college life, I really could not control myself from shedding tears after getting some misbehavior from senior brothers (which was up to class 8) in the first time, but, after coming out of the college I became a changed man. Actually, J.C.C taught me something that just mixed with the blood.
Now I don't become upset due to a rough behave from anyone (except one) but, sometimes, past reminds me that we are running with the time which is irreversible and we are just a part of game of nature. In deed, we won't exist for long, there creates a deep cry in the heart if I can go back to the past.....! I don't wanna leave this world, I love this world
Wednesday, December 8, 2010
How to configure DHCP in windows server 2003?
Here is some links for configuring DHCP in the local network:
1. http://www.windowsreference.com/windows-server-2003/install-and-configure-dhcp-server-in-win-server-2003-step-by-step-guide/
2. http://www.windowsnetworking.com/articles_tutorials/DHCP_Server_Windows_2003.html
Tuesday, December 7, 2010
Negative things in I gained in CC
Wednesday, November 24, 2010
Greedy knapsack problem
Started thinking about Algorithms
Can I be a great programmer?
Can I be a great programmer?
Tuesday, November 23, 2010
Early Result for 2009-2010 Session
How to get the path of AppData for an application?
Here is the link
http://stackoverflow.com/questions/946420/allow-access-permission-to-write-in-program-files-of-windows-7
And here is my code for getting the AppData folder
XmlDocument xmldoc = new XmlDocument();
string xmlfilepath = Environment.GetFolderPath(Environment.SpecialFolder.ApplicationData);
//loading the file
xmldoc.Load(xmlfilepath + "/" + "enstatics.xml");
//returning the xmldoc
return xmldoc;
DNS setup in Ubuntu Linux
Here is a post I created for DNS setup in Ubuntu Linux with BIND software.
DNS setup in ubuntu
Here is the link http://cseku.technopeople.net/setting-up-dns-linux.aspx
Working with xml file in C#
1. Creating xml file dynamically
2. Modifying the xml file
3. Reading from the xml file.
Creating XML file dynamically
//code for creating and saving default config public void create_config_xml_file() { try { //xml doc XmlDocument xmldoc = new XmlDocument(); //xml declaration XmlDeclaration xmldeclaration = xmldoc.CreateXmlDeclaration("1.0", "utf-8", null); //create root element XmlElement rootNode = xmldoc.CreateElement("myconfigdata"); xmldoc.InsertBefore(xmldeclaration, xmldoc.DocumentElement); xmldoc.AppendChild(rootNode); //adding more children to the root node //imageformatindex XmlElement ifiElement = xmldoc.CreateElement("imageformatindex"); ifiElement.InnerText = "1"; rootNode.AppendChild(ifiElement); //currentdirectory XmlElement currDirElement = xmldoc.CreateElement("currentdirectory"); currDirElement.InnerText = Environment.GetFolderPath(Environment.SpecialFolder.MyDocuments); rootNode.AppendChild(currDirElement); //fileprefix XmlElement fpElement = xmldoc.CreateElement("fileprefix"); fpElement.InnerText = "ISeeStand"; rootNode.AppendChild(fpElement); //filesuffixid XmlElement fsElement = xmldoc.CreateElement("filesuffixid"); fsElement.InnerText = "2"; rootNode.AppendChild(fsElement); //sequential XmlElement seqElement = xmldoc.CreateElement("sequential"); seqElement.InnerText = "0"; rootNode.AppendChild(seqElement); //sequentialvid XmlElement seqVidElement = xmldoc.CreateElement("sequentialvid"); seqVidElement.InnerText = "0"; rootNode.AppendChild(seqVidElement); //videncoder XmlElement videncElement = xmldoc.CreateElement("videncoder"); videncElement.InnerText = "WMVideo9 Encoder DMO"; rootNode.AppendChild(videncElement); //framesize XmlElement fsizeElement = xmldoc.CreateElement("framesize"); fsizeElement.InnerText = "800 x 600 @5.00 fps"; rootNode.AppendChild(fsizeElement); //framerate XmlElement frateElement = xmldoc.CreateElement("framerate"); frateElement.InnerText = "5.00 fps"; rootNode.AppendChild(frateElement); //getting appdata folder string app_path = Environment.GetFolderPath(Environment.SpecialFolder.ApplicationData); //saving that document xmldoc.Save(app_path+"/"+"enstatics.xml"); } catch (Exception exc) { MessageBox.Show("Failed to create the xml configuration file."+exc.Message); } }From the above code, we can see how to use XMLDocument object and XmlNode for creating a XML file.
Modifying the XML file
The following code saves some info into the xml file accessing a particular XmlNode
//saving the image format index to the xml file try { XmlDocument xmldoc = MyStaticMgr.loadMyXMLDoc(); XmlNode formatIndexNode = xmldoc.GetElementsByTagName("imageformatindex")[0]; //setting the preferences to the xml node formatIndexNode.InnerText = (ImageformatComboBox.SelectedIndex + 1).ToString(); //now saving the xml file int result=MyStaticMgr.saveMyXMLDoc(xmldoc); } catch (Exception exc) { MessageBox.Show("Failed to save the preferences"+exc.Message); }Reading from XML file
The following code will demonstrate how to access a particular node of the xml file for a particular information//making a default choice try { XmlDocument xmldoc = MyStaticMgr.loadMyXMLDoc(); XmlNode formatIndexNode = xmldoc.GetElementsByTagName("imageformatindex")[0]; int format_index = int.Parse(formatIndexNode.InnerText); //now setting that index to the combobox ImageformatComboBox.SelectedIndex = format_index - 1; } catch (Exception exc) { string messageBoxText = exc.Message; string caption = "Exception Occurred"; MessageBox.Show(messageBoxText, caption); }From the above codes we found a particular section like this
XmlDocument xmldoc = MyStaticMgr.loadMyXMLDoc();and
//now saving the xml file int result=MyStaticMgr.saveMyXMLDoc(xmldoc);Actually, MyStaticMgr is a static class which handles the basic operation like opening an xml document and returning the document object or saving the xmldocument object. Here is the code
using System;using System.Collections.Generic;using System.Linq;using System.Text;using System.Xml;using System.Windows.Forms;namespace ISeeStand{ public static class MyStaticMgr { //code for loading the xml document public static XmlDocument loadMyXMLDoc() { XmlDocument xmldoc = new XmlDocument(); string xmlfilepath = Environment.GetFolderPath(Environment.SpecialFolder.ApplicationData); //loading the file xmldoc.Load(xmlfilepath + "/" + "enstatics.xml"); //returning the xmldoc return xmldoc; } //code for saving to the xml file public static int saveMyXMLDoc(XmlDocument xmldoc) { int saved = 0; try { string xmlfilepath = Environment.GetFolderPath(Environment.SpecialFolder.ApplicationData); //loading the file xmldoc.Save(xmlfilepath + "/" + "enstatics.xml"); //yes the file is saved saved = 1; } catch (Exception exc) { string messageBoxText = exc.Message; string caption = "Exception Occurred"; MessageBox.Show(messageBoxText, caption); } //returning the result return saved; } }}
Thursday, November 4, 2010
Nostalgic Past
I remember my stay at JCC, that house, that fields, that academy blocks, my age, my thoughts staying at JCC everything. I forgot a lot of things and everyday I am forgetting gradually, but I will never forget my JCC, because that's the real emotional life for every cadet.
So, we people have both some aspiration to visit past and future of our life. Past soothes our mind and future reminds us hope for better.
May we go back to JCC again!!!
Monday, October 18, 2010
Love -secret thoughts
Generally, I am a practical boy and aware of duties and responsibilities, but sometimes it looks to me that I need to have some time only for myself and herself whom I think of forgetting rest of the world. This feeling looks like a heavenly feeling in this ugly world.
From the childhood, I was very optimistic and full of aspiration about life, progress, establishment, honor and of course love. And there some time comes in my life when just like to think of some romantic moments that soothe my mind and prepare for the next days coming ahead.
Recently I am thinking: which day is better> working day or holiday. As working day is frequent,so I should seek something that energizes me in that way which will be beneficial to life and work.
Sorry if you read so far. But, I just wanted to write this post without any purpose and sometimes I like to enjoy my freedom...after all, its my blog.
Masud.
Love -secret thoughts
Generally, I am a practical boy and aware of duties and responsibilities, but sometimes it looks to me that I need to have some time only for myself and herself whom I think of forgetting rest of the world. This feeling looks like a heavenly feeling in this ugly world.
From the childhood, I was very optimistic and full of aspiration about life, progress, establishment, honor and of course love. And there some time comes in my life when just like to think of some romantic moments that soothe my mind and prepare for the next days coming ahead.
Recently I am thinking: which day is better> working day or holiday. As working day is frequent,so I should seek something that energizes me in that way which will be beneficial to life and work.
Sorry if you read so far. But, I just wanted to write this post without any purpose and sometimes I like to enjoy my freedom...after all, its my blog.
Masud.
Saturday, October 9, 2010
The first night at JCC
At the evening, cadets are told to go to the mosque for evening prayer. I along with other boys went to say prayers and I found that I was the smallest boy of my class. I felt really sad as senior guys started calling me 'picci'.
After the prayer, we came back to dorm-1o Hunanin house. Dorm leaders are Zahid vai (H-1769) who is recently my colleague in CSE,KU faculty and Imam vai. Those guys were not very aggressive, but not friendly also. Actually, cadet college is a tough place for junior cadets and I experienced it toughly.
At 7:30pm we were told to fall in for dinner. At the first day, Adjutant of the college had some speech in the dining hall and there occurred some interesting and scary events took place there which I will describe in the next post.
thanks
Saturday, September 25, 2010
My JCC started
One of our teachers named Wazed sir was very enthusiastic about our admission in cadet college and he used to share his experience about cadet students. We were thrilled about the cadet life and started reading with full effort.
One day, I, razib and his home tutor started for JCC to buy the admission form in JCC. When we reached JCC, we are really amused about the beauty and heritage of JCC and inside me, I felt like being cadet.
Anyway, gradually, the date for admission came and I reached jessore in Shahanur uncle's mess to attend the written exam which was supposed to be held on Jessore Cantonment College. The whole night I read a lot and attended the exam in the morning. My Math was bad, GK was good, Bangla and English was awesome. After completing the exam, I with my father, who is the pillar of my being Masud, reached home.
Then many days were gone, one day result came out and we found that I, Hafiz and Rajib-all we got chance in written exam. We are greatly congratulated for the result and sunrise started to think of a better dream of having cadet college students.......!
that's for now. I will be back soon.
Masud.
Guitar
thanks.
Guitar
thanks.
Thursday, September 2, 2010
Deep interest to music
Masud (03-09-2010)
Deep interest to music
Masud (03-09-2010)
Ramadan Vacation
Good luck on Ramadan vacation.
Ahalan Sahalan, Saharu Ramadan
Eid Mubarak
Masud (02-09-2010)
Mat sleep
Masud(02-09-2010)
Mat sleep
Masud(02-09-2010)
Decision about programming
thanks. Masud (02-09-2010)
Decision about programming
thanks. Masud (02-09-2010)
Sunday, August 29, 2010
Handling event from Context Menu strip after a Right Click
- Windows form
- ListView Control
- ContextMenu Strip
Step-1:Loading listview items::
The following code loads the items to listview control.
protected void load_courses()
{
//code for loading the courses
try {
OleDbConnection conn = new OleDbConnection(StaticData.connection_string);
conn.Open();
string select_courses = "select * from Course";
OleDbDataAdapter oda = new OleDbDataAdapter(select_courses, conn);
DataTable dt = new DataTable();
oda.Fill(dt);
//databinding to the listview
TestlistView.Items.Clear();
for(int i=0;i < dt.Rows.Count;i++)
{
DataRow row = dt.Rows[i];
ListViewItem lvi = new ListViewItem(row["CourseNo"].ToString());
lvi.SubItems.Add(row["CourseID"].ToString());
lvi.SubItems.Add(row["Credit"].ToString());
TestlistView.Items.Add(lvi);
}
}
catch (Exception exc) { }
}
private void Form1_Load(object sender, EventArgs e)
{
//code for loading the courses
load_courses();
}
Step-2:Handling the right click event on listview items:
private void TestlistView_MouseClick(object sender, MouseEventArgs e)
{
if (e.Button == MouseButtons.Right)
{
Point pt = TestlistView.PointToScreen(e.Location);
contextMenuStrip1.Show(pt);
}
}
Step-3:Handling context menu strip event
private void contextMenuStrip1_ItemClicked(object sender, ToolStripItemClickedEventArgs e)
{
if (e.ClickedItem.Text == "Upload")
{
MessageBox.Show("Upload started for:" + TestlistView.SelectedItems[0].Text);
}
}
Thats how we can use right click event to show a context menu strip and handle menu strip click events.
thanks. Masud(29-08-2010)
Friday, June 18, 2010
Random thoughts..............
- Should I work sincerely always?
- Should I dodge in my works to get relief?
- Should I leave the job?
- I am doing good. Should I do more good?
- Should I work like a machine leaving all human senses?
- Should I reach the peak of success?
- What is called success? Am I happy with the success?
- If I am successful why not I am happy?
- Am I unhappy?
- What I should exactly do then?
- May be I need some rests and entertainment in works?
- What about the long term planning? how to implement?
- Am I unsocial? Nope I am not. So?
- Do I have a lot of friends?
- Am I not friendly? Do I communicate with them regularly?
- What is the real benefit of this communication?
- Why people communicate? Is communication really needed?
- If yes,then why I didn't so many days?
- I was busy for what, for job and establishment?
- Yes! I was busy to have this time for communication!!!!
- And this communication will remove the boredom of job....yes that's the answer!
Random thoughts..............
- Should I work sincerely always?
- Should I dodge in my works to get relief?
- Should I leave the job?
- I am doing good. Should I do more good?
- Should I work like a machine leaving all human senses?
- Should I reach the peak of success?
- What is called success? Am I happy with the success?
- If I am successful why not I am happy?
- Am I unhappy?
- What I should exactly do then?
- May be I need some rests and entertainment in works?
- What about the long term planning? how to implement?
- Am I unsocial? Nope I am not. So?
- Do I have a lot of friends?
- Am I not friendly? Do I communicate with them regularly?
- What is the real benefit of this communication?
- Why people communicate? Is communication really needed?
- If yes,then why I didn't so many days?
- I was busy for what, for job and establishment?
- Yes! I was busy to have this time for communication!!!!
- And this communication will remove the boredom of job....yes that's the answer!
Thursday, June 10, 2010
Technopeople Team
Current team configuration:
Chief Architect: Md. Masudur Rahman, Lecturer, CSE,Khulna University.
Lead Application Developer: Shamima Yeasmin Mukta, Lecturer, CSE, Khulna University.
Marketing Analyst: Ashif Rubaiyat Hossain Shovon, Assistant Programmer, Controller Office, KU.
We planning to have local projects from different local business organizations and we also soon use to have international contracts. Lets hope for the best for
http://www.technopeople.net
We wish to have a good stand in the era of explosion of digital technology in Bangladesh as well as all over the world.
Technopeople Team
Current team configuration:
Chief Architect: Md. Masudur Rahman, Lecturer, CSE,Khulna University.
Lead Application Developer: Shamima Yeasmin Mukta, Lecturer, CSE, Khulna University.
Marketing Analyst: Ashif Rubaiyat Hossain Shovon, Assistant Programmer, Controller Office, KU.
We planning to have local projects from different local business organizations and we also soon use to have international contracts. Lets hope for the best for
http://www.technopeople.net
We wish to have a good stand in the era of explosion of digital technology in Bangladesh as well as all over the world.
Thursday, June 3, 2010
New company started
The url is:
http://technopeople.net
Please visit the site and if you have any projects to be done, post into my site.
thx.
New company started
The url is:
http://technopeople.net
Please visit the site and if you have any projects to be done, post into my site.
thx.
Observation about relationship
Observation about relationship
Sunday, May 16, 2010
Need to change the habit
Need to change the habit
Monday, May 10, 2010
What can happen at khulna in next 10 years?
(Its necessary to write down because, in later time I will forget what I am just thinking.)
What may happen in next 10 years in Khulna:
1. Khulna is having submarine cable in Mongla which is the second submarine cable of the country which will provide a good access to Internet.
2. When internet will be available here in low cost, then people will be encouraged to look into internet.
3. After few days, people will try to get some means to earn money or try to use internet to get their job done by internet.
4. Then internet related business will burst out.
5. Several ICT firms will be established and with sufficient amount of capital and Jalil tower will the BCS city of Khulna.
6. khulna has a huge number of students looking for higher education go to dhaka or outside khulna everywhere.
7. More private universities will have to be established to meet the demands of those students.
8. Bangladesh is still away to require very high quality-software, but it will start having benefit of IT facilities.
9. There will be more diversity in resources and knowledge and digital divide may occur which govt. need to take care.
10. After completion my masters and PhD there may be some switching:
11.a. may join a renowned big company
11.b. may start a consulting company / firm beside teaching in KU
11.c. may start a software firm (outsourcing & local sourcing) besides teaching with the gained expertise.
So, far I have thought. Lets see what comes to mind in next few days.
Masud.
Friday, May 7, 2010
Listening a lot of songs
1. When it rains, I had a habit to stare at the rains and listening to the sound of raining. we had a house of tin shaded. I used to sleep there. I passed the most interesting time when it rains in the night. It seems to me world is really beautiful when its rains like that.
2. I am listening to lots of songs. Each of these songs is giving me something like ecstasy which I really need now.
3. I decided to have a huge collection of musics that will help me to pass good times.
4. Music really makes me forget the bad events and mishaps of my life for some time. When one of my favorite songs plays, it reminds me some events good and I used to feel that in my life...that's why I like the music.
5. Probably, I had a secret desire to be singer and Almighty gave me a good voice and may be one day I may be a singer, but it is evident that I have some real interest about music and songs.
Masud.
Listening a lot of songs
1. When it rains, I had a habit to stare at the rains and listening to the sound of raining. we had a house of tin shaded. I used to sleep there. I passed the most interesting time when it rains in the night. It seems to me world is really beautiful when its rains like that.
2. I am listening to lots of songs. Each of these songs is giving me something like ecstasy which I really need now.
3. I decided to have a huge collection of musics that will help me to pass good times.
4. Music really makes me forget the bad events and mishaps of my life for some time. When one of my favorite songs plays, it reminds me some events good and I used to feel that in my life...that's why I like the music.
5. Probably, I had a secret desire to be singer and Almighty gave me a good voice and may be one day I may be a singer, but it is evident that I have some real interest about music and songs.
Masud.
What am I alike?
It may be the causes, I am having jobs and established to some extent at this stage of life and having two jobs with handsome salary in total, but whats next. What am I running for? Why I can't stop? What is the goal of my life? I am working for University (teaching the students) and Company, but what I am doing for myself? Or, does myself not exist or something unrealistic. From the childhood, I found I have targets to fulfill and finally I have succeeded to do that, but why I am not happy?
I generally did not want anything much from anyone, probably I am not confident enough to ask for something. To speak the truth, I feel shame to ask for any favor for me...that's why it is not easy for me to ask out a girl. Why does this hesitation come to me?....am I coward...actually not. Actually, I can't depend on others properly except my family still. Do I depend on myself? of course...! Do I want to be changed? actually I wanna be happy...............I want to know the meaning of this life provided to me by the One who gave others. I want to be happy with all in all respects..
This blog contains very personal matters. Those who read this blog already have known much about me and I guess I could consider you as friends.
Masud.
What am I alike?
It may be the causes, I am having jobs and established to some extent at this stage of life and having two jobs with handsome salary in total, but whats next. What am I running for? Why I can't stop? What is the goal of my life? I am working for University (teaching the students) and Company, but what I am doing for myself? Or, does myself not exist or something unrealistic. From the childhood, I found I have targets to fulfill and finally I have succeeded to do that, but why I am not happy?
I generally did not want anything much from anyone, probably I am not confident enough to ask for something. To speak the truth, I feel shame to ask for any favor for me...that's why it is not easy for me to ask out a girl. Why does this hesitation come to me?....am I coward...actually not. Actually, I can't depend on others properly except my family still. Do I depend on myself? of course...! Do I want to be changed? actually I wanna be happy...............I want to know the meaning of this life provided to me by the One who gave others. I want to be happy with all in all respects..
This blog contains very personal matters. Those who read this blog already have known much about me and I guess I could consider you as friends.
Masud.
Thursday, May 6, 2010
Hard times
I said earlier, I have a mentality of middle class family. And for middle class family, establishment in life and supporting the family is sacred duty which I always remember from my childhood and believe it heart and soul.
Many years of my life passed and by this time, many things happened in my life, but this thoughts never changed.
Now lets come to the point.At the first, I was not much enthusiastic about the higher education of the girls and its because of having no example of successful girls in front of me. But when, I came along to some type of successful one, I became hopeful that yup its a good point and good success to be observed. But regarding the higher educated girls I have some observations to deliver in this blog.
a. For a long time, girls are deprived of higher education and different other facilities and they are really oppressed and dominated by the so called society conducted by man. So, when a girl came to a success defeating other boys and girls, then she consider it a great victory and I also believe that as they overcome lots of obstacles in the society for being in such positions despite of their merits.
b. Some girls are by born stubborn and if that success came to them like I mentioned they really became too much proud of their success and really ignore the contributors of their success. Of course, the most contribution to this success goes to her, but sometimes, they really try to ignore the others contribution. There is a cause behind this----so called society always try to dominate the girls and they can't believe that girls can go so high. So, those girls try to hide others contribution to her success. those who are generous enough, later they pay gratitude to those contributors, but some others may forget to pay gratitude and even if the contributor is male, then may be she forget it willingly.
c. My family education says that, may be I am a university professor, senior software developer or so on...but I am a son in my home. I am a family member to my family. And I like to do family works with others. From my childhood, I used to pay more time in study and was not involved in household chores much but that does not mean that I cant do that and I hate to do that. I feel good to be in a good position but I never hurt those well wishers.
d. I have a personal observation about education and establishment. Education is like a light that enlightens one's life and enlightens others life around him/her. Education teaches people adaptation with different environment efficiently and if anyone is boast of one's education too much then this enlightenment is not possible. Because, he/she keep him/herself busy in considering whether he/she is being paid the proper respect. May be, I am talking too long words and there may be a question, whether I follow those words or not. But, I will say, I follow these what I say, at least in my family and also tries elsewhere as much I can. I also respect my relatives who care about me and also respect some would be families also and always try to consider whether I am on right track or not.
e. I had such an incident with my partner yet. I don't know she will be my permanent partner or not, but I think I should write this down now, because few times later, may be all things I wont be able remember as I have some forgetting problems. Story started in this way:
Suppose, my mother is a housewife. She has to handle a lot of household chores in our house. We tried to have helping woman in our house but in rural area, it is a difficult task and you can never satisfy people with anything. Anyway, mother works a lot and she looks tired most of the time. We are four brothers and sometimes I feel bad that I am not helping her much in her works. Mother also does not want me to be involved in those work also as I was long-range investment for the family. But, when I used to help my mother I feel good.
But in case of her family (partner's) they have a kazer bua and their mother pays a lot of care behind them and house hold chores are shared with the bua. So, from that environment it is observed that the children of that family are habituated to see that room cleaning mainly done by bua and food-cooking done by their mother. So, from the childhood, they hate the bua's work and consider it as bua's work and cooking is their mother's work. So, according to this family, there is a clear classification of labor in their family. Actually, the problem is they used to hate bua as well as their works. May be, the bua was poor and illiterate. So, they hated her (silently) and as well as hated her works also.
Now, in case of my family, there were some working women in our family, whom we address using some relationship like kaki,vabi and we remember we never hate them and we feel grateful that they are helping my mother. The basic difference of these two families are that we were grateful despite of paying her, but they (other family) thought that they are buying the labor and they thought money can do everything. This is actually the cause of economic differences. When a family has some strong economic background, then slowly they become dominating over other families or persons in the society.
So, I was talking about different works of my family done by mother, that time I found she was very reluctant and non-interested with those works and actually, she hates those works. She thinks she is a higher educated woman and why she will do that kind of works and she is having a greater status...why she will lose it by doing so? But she forgot, the household chores are such things that everyone needs to do and there is nothing losing prestige in doing so.
There may be another explanation, probably, she is not thinking my home as homely and she is thinking she will be bound to do some serious physical works that she never experienced that will make her life horrible. So, she boldly protested that, 'I will never do those works'. Apparently, she is correct from her sense, but lets analyze the fact. As well as family background experience, she is boast of her success and she has a concept that nobody wont be able to make her done any works she does not want to do. And it is also true that it cant be done by her.
Now lets analyze my parents expectation from their daughter in law. Lets point out
1. She should be obedient to the family.
2. She may be qualified girl but in that family, she will have to behave like a daughter in law---means she cant be boast of her qualification, she should be gentle and and friendly.
3. They does not expect too much from her, but wants her to behave like their daughter as they don't have daughter.
4. They never want to get their job done by her, rather they wanna see she is taking care of me.
5. Last thing, they wanna see hospitality and cordiality from the other family.
Now lets equalize the things. I think she can be a good girl to my parents as my father already likes her, but I discovered a problem few days ago.
a. she will face a lot of problem in matching with my family and may not cope up properly if unfortunate.
b.There are some economical imbalance between these two families which may differentiate their choices, interests, thoughts,targets etc.
c. There may be a lack of hospitality due to socioeconomic and locational problem.
Problems in my cases:
a. She is a careerist girl and she will never tolerate anything that hampers her career probably. She does not have clear concept actually about careerism, but has a lot interest to be a careerist and she can sacrifice a lot for it. Apparently, its a good sign, but the problem is the same thing is true for me and that's why, I need and opposite person to take care of the family and whose main concern will be family and me.
b. So, should I feel guilty that, I am deleting someone's possibility of being famous? Actually, let me clarify things: Everybody, wants a shelter which is very necessary for the life to lead. Matter is the depth of love, if the love is there, both of them handle this thing quite easily and that does not require to warn that 'family will sacrifice if needed'.---this sentence expresses that she is not strong enough to handle careerism and family same time and that family is a load for her which sounded painful to me. Because, I myself also busy and will be busy but I never say that family has to sacrifice for that and I handle it smartly...may be she is not strong enough.
c.She has lack of gratefulness and she really forgets what other does for her. Probably, it is one of the characteristics of current modern girl that they want to be established in any cost and sometimes like a selfish also.
Now what I did:
a. Every time I planned I had a plan for her so that both of us can succeed and output is maximized. But her attitude does not reflect my contribution to her life all the time and sometimes she behaves like a stranger specially when she is angry...she cant recognize me when she is angry.
b. Actually, she hit my soft feelings about my family education and ours family educations don't match to some points and not sure it is not enough to make clash.
c. There may be domination in decision making by the family depending upon their current status.
d. Moreover, I hate boasting in people. People who are proud of themselves very much, actually they can perform the least and showing is bad. There may be self-confidence in people, but showing-off in words and attitude is quite bad though she never crossed me...but...she can hurt my family...as I think.
e. Especially, my parents may assume as their girl and may request for something from her and suddenly it may be found that she wont do that as it is not in her habit and when her stubbornness exposes to my parents, then it will create a bad situation and I will be a colored....that how I am living with her.....who cant compromise a simple little.....
Anyway, except me who has read so far, she already knew a lot about me and her. So, pray for us for a stable situation as I am not talking to her for 3 days.
thanks.
Hard times
I said earlier, I have a mentality of middle class family. And for middle class family, establishment in life and supporting the family is sacred duty which I always remember from my childhood and believe it heart and soul.
Many years of my life passed and by this time, many things happened in my life, but this thoughts never changed.
Now lets come to the point.At the first, I was not much enthusiastic about the higher education of the girls and its because of having no example of successful girls in front of me. But when, I came along to some type of successful one, I became hopeful that yup its a good point and good success to be observed. But regarding the higher educated girls I have some observations to deliver in this blog.
a. For a long time, girls are deprived of higher education and different other facilities and they are really oppressed and dominated by the so called society conducted by man. So, when a girl came to a success defeating other boys and girls, then she consider it a great victory and I also believe that as they overcome lots of obstacles in the society for being in such positions despite of their merits.
b. Some girls are by born stubborn and if that success came to them like I mentioned they really became too much proud of their success and really ignore the contributors of their success. Of course, the most contribution to this success goes to her, but sometimes, they really try to ignore the others contribution. There is a cause behind this----so called society always try to dominate the girls and they can't believe that girls can go so high. So, those girls try to hide others contribution to her success. those who are generous enough, later they pay gratitude to those contributors, but some others may forget to pay gratitude and even if the contributor is male, then may be she forget it willingly.
c. My family education says that, may be I am a university professor, senior software developer or so on...but I am a son in my home. I am a family member to my family. And I like to do family works with others. From my childhood, I used to pay more time in study and was not involved in household chores much but that does not mean that I cant do that and I hate to do that. I feel good to be in a good position but I never hurt those well wishers.
d. I have a personal observation about education and establishment. Education is like a light that enlightens one's life and enlightens others life around him/her. Education teaches people adaptation with different environment efficiently and if anyone is boast of one's education too much then this enlightenment is not possible. Because, he/she keep him/herself busy in considering whether he/she is being paid the proper respect. May be, I am talking too long words and there may be a question, whether I follow those words or not. But, I will say, I follow these what I say, at least in my family and also tries elsewhere as much I can. I also respect my relatives who care about me and also respect some would be families also and always try to consider whether I am on right track or not.
e. I had such an incident with my partner yet. I don't know she will be my permanent partner or not, but I think I should write this down now, because few times later, may be all things I wont be able remember as I have some forgetting problems. Story started in this way:
Suppose, my mother is a housewife. She has to handle a lot of household chores in our house. We tried to have helping woman in our house but in rural area, it is a difficult task and you can never satisfy people with anything. Anyway, mother works a lot and she looks tired most of the time. We are four brothers and sometimes I feel bad that I am not helping her much in her works. Mother also does not want me to be involved in those work also as I was long-range investment for the family. But, when I used to help my mother I feel good.
But in case of her family (partner's) they have a kazer bua and their mother pays a lot of care behind them and house hold chores are shared with the bua. So, from that environment it is observed that the children of that family are habituated to see that room cleaning mainly done by bua and food-cooking done by their mother. So, from the childhood, they hate the bua's work and consider it as bua's work and cooking is their mother's work. So, according to this family, there is a clear classification of labor in their family. Actually, the problem is they used to hate bua as well as their works. May be, the bua was poor and illiterate. So, they hated her (silently) and as well as hated her works also.
Now, in case of my family, there were some working women in our family, whom we address using some relationship like kaki,vabi and we remember we never hate them and we feel grateful that they are helping my mother. The basic difference of these two families are that we were grateful despite of paying her, but they (other family) thought that they are buying the labor and they thought money can do everything. This is actually the cause of economic differences. When a family has some strong economic background, then slowly they become dominating over other families or persons in the society.
So, I was talking about different works of my family done by mother, that time I found she was very reluctant and non-interested with those works and actually, she hates those works. She thinks she is a higher educated woman and why she will do that kind of works and she is having a greater status...why she will lose it by doing so? But she forgot, the household chores are such things that everyone needs to do and there is nothing losing prestige in doing so.
There may be another explanation, probably, she is not thinking my home as homely and she is thinking she will be bound to do some serious physical works that she never experienced that will make her life horrible. So, she boldly protested that, 'I will never do those works'. Apparently, she is correct from her sense, but lets analyze the fact. As well as family background experience, she is boast of her success and she has a concept that nobody wont be able to make her done any works she does not want to do. And it is also true that it cant be done by her.
Now lets analyze my parents expectation from their daughter in law. Lets point out
1. She should be obedient to the family.
2. She may be qualified girl but in that family, she will have to behave like a daughter in law---means she cant be boast of her qualification, she should be gentle and and friendly.
3. They does not expect too much from her, but wants her to behave like their daughter as they don't have daughter.
4. They never want to get their job done by her, rather they wanna see she is taking care of me.
5. Last thing, they wanna see hospitality and cordiality from the other family.
Now lets equalize the things. I think she can be a good girl to my parents as my father already likes her, but I discovered a problem few days ago.
a. she will face a lot of problem in matching with my family and may not cope up properly if unfortunate.
b.There are some economical imbalance between these two families which may differentiate their choices, interests, thoughts,targets etc.
c. There may be a lack of hospitality due to socioeconomic and locational problem.
Problems in my cases:
a. She is a careerist girl and she will never tolerate anything that hampers her career probably. She does not have clear concept actually about careerism, but has a lot interest to be a careerist and she can sacrifice a lot for it. Apparently, its a good sign, but the problem is the same thing is true for me and that's why, I need and opposite person to take care of the family and whose main concern will be family and me.
b. So, should I feel guilty that, I am deleting someone's possibility of being famous? Actually, let me clarify things: Everybody, wants a shelter which is very necessary for the life to lead. Matter is the depth of love, if the love is there, both of them handle this thing quite easily and that does not require to warn that 'family will sacrifice if needed'.---this sentence expresses that she is not strong enough to handle careerism and family same time and that family is a load for her which sounded painful to me. Because, I myself also busy and will be busy but I never say that family has to sacrifice for that and I handle it smartly...may be she is not strong enough.
c.She has lack of gratefulness and she really forgets what other does for her. Probably, it is one of the characteristics of current modern girl that they want to be established in any cost and sometimes like a selfish also.
Now what I did:
a. Every time I planned I had a plan for her so that both of us can succeed and output is maximized. But her attitude does not reflect my contribution to her life all the time and sometimes she behaves like a stranger specially when she is angry...she cant recognize me when she is angry.
b. Actually, she hit my soft feelings about my family education and ours family educations don't match to some points and not sure it is not enough to make clash.
c. There may be domination in decision making by the family depending upon their current status.
d. Moreover, I hate boasting in people. People who are proud of themselves very much, actually they can perform the least and showing is bad. There may be self-confidence in people, but showing-off in words and attitude is quite bad though she never crossed me...but...she can hurt my family...as I think.
e. Especially, my parents may assume as their girl and may request for something from her and suddenly it may be found that she wont do that as it is not in her habit and when her stubbornness exposes to my parents, then it will create a bad situation and I will be a colored....that how I am living with her.....who cant compromise a simple little.....
Anyway, except me who has read so far, she already knew a lot about me and her. So, pray for us for a stable situation as I am not talking to her for 3 days.
thanks.
I had a class on digital Bangladesh in Rotory Club
Masud
Full functional LAN set up
A Web server
Here is the necessary help for that1. http://blog.ifitcangowrong.com/windows/install-iis-60-on-windows-server-2003
2. http://technet.microsoft.com/en-us/library/aa998483%28EXCHG.65%29.aspx
3. http://www.microsoft.com/technet/prodtechnol/WindowsServer2003/Library/IIS/750d3137-462c-491d-b6c7-5f370d7f26cd.mspx?mfr=true
A DNS Server
Here is necessary help for that I think:1.http://www.petri.co.il/install_and_configure_windows_2003_dns_server.htm
2.http://helpdeskgeek.com/networking/install-and-configure-dns-on-windows-server-2003/
3. http://support.microsoft.com/kb/814591
An Email sever (POP and SMTP)
1. http://www.ilopia.com/Articles/WindowsServer2003/EmailServer.aspx2. http://www.windowsreference.com/windows-server-2003/step-by-step-email-server-setup-in-windows-server-2003/
3. http://articles.techrepublic.com.com/5100-10878_11-5035180.html
4. http://www.windowsnetworking.com/articles_tutorials/Windows_POP3_Service.html
Friday, April 23, 2010
I am using air-pillow
thanks.
I am using air-pillow
thanks.
Thursday, April 22, 2010
To Err is human
To Err is human
Tuesday, April 20, 2010
Using image map and popupcontrol extender
Step-1: We have to register the AjaxControlToolkit for using its control which we are calling here PopupControlExtender.
<%@ Register Assembly="AjaxControlToolkit" Namespace="AjaxControlToolkit" TagPrefix="cc1" %>
Step-2:
Consider an image containing lots of hot spot and when there is a click on that hot spot certain popup-winow will show up. So, here is the code for image and map.
< img id="homeimg" src="maps/map-bg-w-dots.jpg" style="border-width:0px" runat="server" alt="" usemap="#homemap" / >
< map name="homemap" id="homemap">
< area id="hole1area" runat="server" target="_self" onclick="showdetails(1)" shape="circle" style="cursnor:pointer" alt="" coords="314,178,7"/>
< area id="hole2area" runat="server" target="_self" onclick="showdetails(2)" shape="circle" style="cursor:pointer" alt="" coords="285,56,7"/>
< /map>
Here, onclick="showdetails(1)" can be used to populate data from some xml file relevant to hole1area if needed. As for example I have done in
my map project
Step-3:
Now we need the popup control extender that will generate a popup. So, here is the code below:
< asp:ScriptManager runat="server">< /asp:ScriptManager>
< cc1:PopupControlExtender runat="server" ID="MyPopupExtender1" OffsetX="550" OffsetY="300" PopupControlID="popupwindow1" TargetControlID="hole1area">
< /cc1:PopupControlExtender>
< cc1:PopupControlExtender runat="server" ID="MyPopupExtender2" OffsetX="550" OffsetY="300" PopupControlID="popupwindow2" TargetControlID="hole2area">
< /cc1:PopupControlExtender>
< div id='popupwindow1'>
Description for hole1...............
< /div>
< div id='popupwindow2'>
Description for hole2................
< /div>
Here, several thing to notice:
TargetControlID= the control which will be clicked on.
PopupControlID= the control which will be shown as popup.
OffsetX= the X position where popup will be shown
OffsetY= the Y position where popup will be shown.
So, this is the simplest way to use image map and popupcontrolextender. And whenever I started working client become excited as I was not using his solution but finally I ended up with good solution and he was quite satisfied. So, this project was one of the challenging task to me.
thanks. Masud.
The challenging task in interactive map project
http://cpdemo.com/vistaverde/development.html
From this project I got an outline professional work and fancy works. Anyway, I was satisfying client's requirements and at time I found client has made an easy requirements visually but technically it is a tough one which I didn't perform ever. Actually, the life software engineer is quite thrilling in that sense that it is full of challenges and that's why I could not leave this despite of being a university lecturer. Anyway, here the way I solved the problem.
Requirement: to stop hiding the popup-window at click outside the popup window.
Relevance description: I was using asp.net ajax control toolkit to make a popup-window after a mouse click on some hot spot on an image map. And default behavior of the popup window as designed by the toolkit developers was to be hidden at the mouse click outside the popup window. I tried a lots of ways but I could not stop the mouse click. I used e.stopPropagation(){for FF} and e.cancelBubble=true {for IE} but nothing works for me and lastly I found some tutorials and several combination of them works.
Steps to solution:
step-1: to override the default behavior of the toolkit we need to override the function. For example, I was using popupcontrolExtender control for making popup-window. Anyone can easily download source from this URL to see the behavior of the control as set by the developers:
http://ajaxcontroltoolkit.codeplex.com/releases/view/16488#DownloadId=41941
Here, I found that _onBodyClick: handler is managing the click on the body of html page and making the __VisiblePopup hidden. So I need to override this handler as I found. This whole modification will be contained inside a dll. So I created a dll project on Visual Studio called MypopupControl
Step-2:
To override this handler I created a javascript file that contains the overridden handler which looks like the following. It is named as 'myjsfile.js' in my solution.
//starting of javascript codetry{AjaxControlToolkit.myPopupControlBehavior= function(element){ AjaxControlToolkit.myPopupControlBehavior.initializeBase(this,[element]); };AjaxControlToolkit.myPopupControlBehavior.prototype ={_onBodyClick:function(){if(this._popupVisible){ return false;}}};AjaxControlToolkit.myPopupControlBehavior.inheritsFrom(AjaxControlToolkit.PopupControlBehavior);AjaxControlToolkit.myPopupControlBehavior.registerClass('AjaxControlToolkit.myPopupControlBehavior', AjaxControlToolkit.PopupControlBehavior);if(typeof(Sys)!=='undefined')Sys.Application.notifyScriptLoaded();}catch(exc){}Here we can see that _onBodyClick handler is modified so that a visible popup wont be hidden by the mouse click on the body.
Step-3:
I also created a C# file called 'myPopupControlExtender.cs' that contains the following contents: Please note that myPopupControlExtender class inherits PopupControlExtender class of AjaxControlToolkit namespace that means it will have all the properties of PopupControlExtender class.
using System;using System.Collections.Generic;using System.Linq;using System.Text;using System.Web;using System.Web.UI;using AjaxControlToolkit;[assembly: WebResource("MyPopupControl.myjsfile.js", "text/javascript")] //the custom/override javascript file is an embedded resourcenamespace MyPopupControl{ [ClientScriptResource("AjaxControlToolkit.myPopupControlBehavior", "MyPopupControl.myjsfile.js")] public class myPopupControlExtender : PopupControlExtender { }}Here, we can see that an assembly entry is used to embed the javascript file and it will be resided inside the C# dll we will be creating.
Step-4: The mostly important step of this process is to declared the javascript file as the embedded resource and without this whole process wont be effective. So, to do this:
Right click on js file>Properties> Build Action >Embedded Resource
Step-5: Now we need to just build the project and we will get a brand new dll called MyPopupControl which is containing the modified behavior of PopupControl and in my case I created new popupcontrolextender which was named as 'myPopupControlExtender' and as its inherits all the properties of popupcontrolExtender plus containing the modified behavior of _onBodyClick:function()...so that serves my purpose of the project.
thanks. Masud.
Wednesday, April 14, 2010
Campus shut down
1. There should be a neutral and honest investigation team from inside or outside the university.
2. There should be thorough review of events for the past days before this mishap.
3. The main duty is to find out the culprits whoever may be students or teachers. Shahnawaj who is the worst culprit will have to be punished severely and anybody who gave him shelter will have to suffer and we have to be strong enough to punish any evil.
4. If anybody is trying to gain some interest from this event, we have to stop them.
5. No mercy will be paid to anyone for the overall welfare and future of this university.
6. I want welfare of this university not only teachers or not only students.
7. We all have our conscience and we have to use it for every step of this trial.
Lets hope we overcome this bad time of khulna university history.